(keyword)
| 481 | // Return true if the next token matches the specified keyword |
| 482 | |
| 483 | matchKeyword(keyword) { |
| 484 | return this.lookahead.type === Token.Keyword && this.lookahead.value === keyword; |
| 485 | } |
| 486 | |
| 487 | // Return true if the next token matches the specified contextual keyword |
| 488 | // (where an identifier is sometimes a keyword depending on the context) |
no outgoing calls
no test coverage detected