()
| 129148 | |
| 129149 | |
| 129150 | function parsePostfixExpression() { |
| 129151 | var expr = parseLeftHandSideExpressionAllowCall(); |
| 129152 | |
| 129153 | if (lookahead.type === TokenPunctuator) { |
| 129154 | if (match('++') || match('--')) { |
| 129155 | throw new Error(DISABLED); |
| 129156 | } |
| 129157 | } |
| 129158 | |
| 129159 | return expr; |
| 129160 | } // 11.4 Unary Operators |
| 129161 | |
| 129162 | |
| 129163 | function parseUnaryExpression() { |
no test coverage detected