(tokType)
| 34611 | } |
| 34612 | |
| 34613 | expect(tokType) { |
| 34614 | if (this.token.type === tokType) { |
| 34615 | this.next(); |
| 34616 | } else { |
| 34617 | this.unexpected(); |
| 34618 | } |
| 34619 | } |
| 34620 | |
| 34621 | eat(tokType) { |
| 34622 | if (this.token.type === tokType) { |
no test coverage detected