(keyword)
| 2176 | // Return true if the next token matches the specified keyword |
| 2177 | |
| 2178 | function matchKeyword(keyword) { |
| 2179 | return lookahead.type === Token.Keyword && lookahead.value === keyword; |
| 2180 | } |
| 2181 | |
| 2182 | // Return true if the next token is an assignment operator |
| 2183 |
no outgoing calls
no test coverage detected