2 export default class CommonBase {
4 ptrs_to: object[] = []; // new LinkedList(); TODO: build linked list implementation
5 protected constructor(ptr: number) { this.ptr = ptr; }
6 public _test_only_get_ptr(): number { return this.ptr; }
8 // TODO: finalize myself