(type, value)
| 422 | return expressionInner(type, value, false); |
| 423 | } |
| 424 | function expressionNoComma(type, value) { |
| 425 | return expressionInner(type, value, true); |
| 426 | } |
| 427 | function parenExpr(type) { |
| 428 | if (type != "(") return pass() |
| 429 | return cont(pushlex(")"), maybeexpression, expect(")"), poplex) |
nothing calls this directly
no test coverage detected