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