(amount: number)
| 323 | } |
| 324 | |
| 325 | popInts(amount: number): number[] { |
| 326 | const ints = Array<number>(amount); |
| 327 | for (let i = amount - 1; i >= 0; i--) { |
| 328 | ints[i] = this.popInt(); |
| 329 | } |
| 330 | return ints; |
| 331 | } |
| 332 | |
| 333 | pushInt(value: number) { |
| 334 | this.intStack[this.isp++] = toInt32(value); |
no test coverage detected