(code: number)
| 90 | } |
| 91 | |
| 92 | checkCall(code: number): void { |
| 93 | if (code != 0) { |
| 94 | const msgPtr = (this.exports |
| 95 | .TVMFFIWasmGetLastError as ctypes.FTVMFFIWasmGetLastError)(); |
| 96 | throw new Error(this.memory.loadCString(msgPtr)); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | getOrAllocCallStack(): CachedCallStack { |
| 101 | if (this.recycledCallStacks.length != 0) { |
no test coverage detected