()
| 227 | } |
| 228 | |
| 229 | consumeString(): string { |
| 230 | let value = this.codes[this.i++]; |
| 231 | assertString(value, 'expecting string in OpCode'); |
| 232 | return value; |
| 233 | } |
| 234 | |
| 235 | consumeFunction(): Function | null { |
| 236 | let value = this.codes[this.i++]; |
no test coverage detected