(value)
| 1930 | // Return true if the next token matches the specified punctuator. |
| 1931 | |
| 1932 | function match(value) { |
| 1933 | return lookahead.type === Token.Punctuator && lookahead.value === value; |
| 1934 | } |
| 1935 | |
| 1936 | // Return true if the next token matches the specified keyword |
| 1937 |
no outgoing calls
no test coverage detected