(index)
| 2566 | */ |
| 2567 | |
| 2568 | get(index) { |
| 2569 | if (index < 0) |
| 2570 | index += this.code.length; |
| 2571 | |
| 2572 | if (index < 0 || index >= this.code.length) |
| 2573 | return null; |
| 2574 | |
| 2575 | return this.code[index]; |
| 2576 | } |
| 2577 | |
| 2578 | pop() { |
| 2579 | const op = this.code.pop(); |
no outgoing calls
no test coverage detected