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