(type)
| 349 | return pass(pushlex("stat"), expression, expect(";"), poplex); |
| 350 | } |
| 351 | function expression(type) { |
| 352 | return expressionInner(type, false); |
| 353 | } |
| 354 | function expressionNoComma(type) { |
| 355 | return expressionInner(type, true); |
| 356 | } |
nothing calls this directly
no test coverage detected