(value)
| 2170 | // Return true if the next token matches the specified punctuator. |
| 2171 | |
| 2172 | function match(value) { |
| 2173 | return lookahead.type === Token.Punctuator && lookahead.value === value; |
| 2174 | } |
| 2175 | |
| 2176 | // Return true if the next token matches the specified keyword |
| 2177 |
no outgoing calls
no test coverage detected