* Get the real pointer from offset values. * Note that the returned value becomes obsolete if alloc is called on the stack. * @param offset The allocated offset.
(offset: PtrOffset)
| 392 | * @param offset The allocated offset. |
| 393 | */ |
| 394 | ptrFromOffset(offset: PtrOffset): Pointer { |
| 395 | return this.basePtr + offset; |
| 396 | } |
| 397 | |
| 398 | // Store APIs |
| 399 | storePtr(offset: PtrOffset, value: Pointer): void { |
no outgoing calls
no test coverage detected