()
| 129080 | |
| 129081 | |
| 129082 | function parseArguments() { |
| 129083 | var args = []; |
| 129084 | expect('('); |
| 129085 | |
| 129086 | if (!match(')')) { |
| 129087 | while (index < length) { |
| 129088 | args.push(parseConditionalExpression()); |
| 129089 | |
| 129090 | if (match(')')) { |
| 129091 | break; |
| 129092 | } |
| 129093 | |
| 129094 | expect(','); |
| 129095 | } |
| 129096 | } |
| 129097 | |
| 129098 | expect(')'); |
| 129099 | return args; |
| 129100 | } |
| 129101 | |
| 129102 | function parseNonComputedProperty() { |
| 129103 | var token; |
no test coverage detected