()
| 233 | } |
| 234 | |
| 235 | consumeFunction(): Function | null { |
| 236 | let value = this.codes[this.i++]; |
| 237 | if (value === null || typeof value === 'function') { |
| 238 | return value; |
| 239 | } |
| 240 | throw new Error('expecting function in OpCode'); |
| 241 | } |
| 242 | |
| 243 | consumeNumberOrString(): number | string { |
| 244 | let value = this.codes[this.i++]; |