()
| 11467 | return this.next_tokens[0]; |
| 11468 | } |
| 11469 | lookahead() { |
| 11470 | if (!this.next_tokens[1].kind) { |
| 11471 | this.position += this.cur().text().length; |
| 11472 | this.lex(this.next_tokens[1]); |
| 11473 | } |
| 11474 | return this.next_tokens[1]; |
| 11475 | } |
| 11476 | next() { |
| 11477 | const [cur] = this.next_tokens; |
| 11478 | [, this.next_tokens[0], this.next_tokens[1], this.next_tokens[2]] = this.next_tokens; |
no test coverage detected