(keyword, contextual)
| 5213 | // Return true if the next token matches the specified keyword |
| 5214 | |
| 5215 | function matchKeyword(keyword, contextual) { |
| 5216 | var expectedType = contextual ? Token.Identifier : Token.Keyword; |
| 5217 | return lookahead.type === expectedType && lookahead.value === keyword; |
| 5218 | } |
| 5219 | |
| 5220 | // Return true if the next token matches the specified contextual keyword |
| 5221 |
no outgoing calls
no test coverage detected