(value)
| 475 | // Return true if the next token matches the specified punctuator. |
| 476 | |
| 477 | match(value) { |
| 478 | return this.lookahead.type === Token.Punctuator && this.lookahead.value === value; |
| 479 | } |
| 480 | |
| 481 | // Return true if the next token matches the specified keyword |
| 482 |
no outgoing calls
no test coverage detected