(type, value)
| 414 | if (type == "(") return cont(funarg, expect(")")) |
| 415 | } |
| 416 | function expression(type, value) { |
| 417 | return expressionInner(type, value, false); |
| 418 | } |
| 419 | function expressionNoComma(type, value) { |
| 420 | return expressionInner(type, value, true); |
| 421 | } |
nothing calls this directly
no test coverage detected