(index: number)
| 352 | } |
| 353 | |
| 354 | public indexToString(index: number): string { |
| 355 | const str = this.lua.luaL_tolstring(this.address, index, null) |
| 356 | // Pops the string pushed by luaL_tolstring |
| 357 | this.pop() |
| 358 | return str |
| 359 | } |
| 360 | |
| 361 | public dumpStack(log = console.log): void { |
| 362 | const top = this.getTop() |
no test coverage detected