(type)
| 380 | return expressionInner(type, false); |
| 381 | } |
| 382 | function expressionNoComma(type) { |
| 383 | return expressionInner(type, true); |
| 384 | } |
| 385 | function parenExpr(type) { |
| 386 | if (type != "(") return pass() |
| 387 | return cont(pushlex(")"), expression, expect(")"), poplex) |
nothing calls this directly
no test coverage detected