(keyword)
| 488 | // (where an identifier is sometimes a keyword depending on the context) |
| 489 | |
| 490 | matchContextualKeyword(keyword) { |
| 491 | return this.lookahead.type === Token.Identifier && this.lookahead.value === keyword; |
| 492 | } |
| 493 | |
| 494 | // Return true if the next token is an assignment operator |
| 495 |
no outgoing calls
no test coverage detected