(value)
| 37675 | // Return true if the next token matches the specified punctuator. |
| 37676 | |
| 37677 | function match(value) { |
| 37678 | return lookahead.type === Token.Punctuator && lookahead.value === value; |
| 37679 | } |
| 37680 | |
| 37681 | // Return true if the next token matches the specified keyword |
| 37682 |
no outgoing calls
no test coverage detected