(value)
| 5207 | // Return true if the next token matches the specified punctuator. |
| 5208 | |
| 5209 | function match(value) { |
| 5210 | return lookahead.type === Token.Punctuator && lookahead.value === value; |
| 5211 | } |
| 5212 | |
| 5213 | // Return true if the next token matches the specified keyword |
| 5214 |
no outgoing calls
no test coverage detected