()
| 144198 | return expr; |
| 144199 | } // 11.2 Left-Hand-Side Expressions |
| 144200 | function parseArguments() { |
| 144201 | const args = []; |
| 144202 | expect("("); |
| 144203 | if (!match(")")) while(index < length){ |
| 144204 | args.push(parseConditionalExpression()); |
| 144205 | if (match(")")) break; |
| 144206 | expect(","); |
| 144207 | } |
| 144208 | expect(")"); |
| 144209 | return args; |
| 144210 | } |
| 144211 | function parseNonComputedProperty() { |
| 144212 | index = lookahead.start; |
| 144213 | const token = lex(); |
no test coverage detected