(value)
| 5709 | // Return true if the next token matches the specified punctuator. |
| 5710 | |
| 5711 | function match(value) { |
| 5712 | return lookahead.type === Token.Punctuator && lookahead.value === value |
| 5713 | } |
| 5714 | |
| 5715 | // Return true if the next token matches the specified keyword |
| 5716 |
no outgoing calls
no test coverage detected
searching dependent graphs…