()
| 144375 | return expr; |
| 144376 | } // 11.14 Comma Operator |
| 144377 | function parseExpression() { |
| 144378 | const expr = parseConditionalExpression(); |
| 144379 | if (match(",")) throw new Error(DISABLED); // no sequence expressions |
| 144380 | return expr; |
| 144381 | } |
| 144382 | function parser(code) { |
| 144383 | source = code; |
| 144384 | index = 0; |
no test coverage detected