* Allocate space for pointers. * @param count Number of pointers. * @returns The allocated pointer array.
(count: number)
| 383 | * @returns The allocated pointer array. |
| 384 | */ |
| 385 | allocPtrArray(count: number): PtrOffset { |
| 386 | return this.allocRawBytes(this.memory.sizeofPtr() * count); |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Get the real pointer from offset values. |
no test coverage detected