(type, value)
| 417 | return expressionInner(type, value, false); |
| 418 | } |
| 419 | function expressionNoComma(type, value) { |
| 420 | return expressionInner(type, value, true); |
| 421 | } |
| 422 | function parenExpr(type) { |
| 423 | if (type != "(") return pass() |
| 424 | return cont(pushlex(")"), maybeexpression, expect(")"), poplex) |
nothing calls this directly
no test coverage detected