()
| 144242 | return expr; |
| 144243 | } // 11.3 Postfix Expressions |
| 144244 | function parsePostfixExpression() { |
| 144245 | const expr = parseLeftHandSideExpressionAllowCall(); |
| 144246 | if (lookahead.type === TokenPunctuator) { |
| 144247 | if (match("++") || match("--")) throw new Error(DISABLED); |
| 144248 | } |
| 144249 | return expr; |
| 144250 | } // 11.4 Unary Operators |
| 144251 | function parseUnaryExpression() { |
| 144252 | var token, expr; |
| 144253 | if (lookahead.type !== TokenPunctuator && lookahead.type !== TokenKeyword) expr = parsePostfixExpression(); |
no test coverage detected