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