(value)
| 144098 | if (token.type !== TokenPunctuator || token.value !== value) throwUnexpected(token); |
| 144099 | } // Return true if the next token matches the specified punctuator. |
| 144100 | function match(value) { |
| 144101 | return lookahead.type === TokenPunctuator && lookahead.value === value; |
| 144102 | } // Return true if the next token matches the specified keyword |
| 144103 | function matchKeyword(keyword) { |
| 144104 | return lookahead.type === TokenKeyword && lookahead.value === keyword; |
| 144105 | } // 11.1.4 Array Initialiser |
no outgoing calls
no test coverage detected