()
| 2686 | // 11.2 Left-Hand-Side Expressions |
| 2687 | |
| 2688 | function parseArguments() { |
| 2689 | var args = []; |
| 2690 | |
| 2691 | expect('('); |
| 2692 | |
| 2693 | if (!match(')')) { |
| 2694 | while (startIndex < length) { |
| 2695 | args.push(parseAssignmentExpression()); |
| 2696 | if (match(')')) { |
| 2697 | break; |
| 2698 | } |
| 2699 | expectCommaSeparator(); |
| 2700 | } |
| 2701 | } |
| 2702 | |
| 2703 | expect(')'); |
| 2704 | |
| 2705 | return args; |
| 2706 | } |
| 2707 | |
| 2708 | function parseNonComputedProperty() { |
| 2709 | var token, node = new Node(); |
no test coverage detected