()
| 315 | } |
| 316 | |
| 317 | popInt(): number { |
| 318 | const value = this.intStack[--this.isp]; |
| 319 | if (!value) { |
| 320 | return 0; |
| 321 | } |
| 322 | return toInt32(value); |
| 323 | } |
| 324 | |
| 325 | popInts(amount: number): number[] { |
| 326 | const ints = Array<number>(amount); |
no test coverage detected