(keyword)
| 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 |
| 144106 | function parseArrayInitialiser() { |
| 144107 | const elements = []; |
| 144108 | index = lookahead.start; |
no outgoing calls
no test coverage detected