(type)
| 377 | return pass(pushlex("stat"), expression, expect(";"), poplex); |
| 378 | } |
| 379 | function expression(type) { |
| 380 | return expressionInner(type, false); |
| 381 | } |
| 382 | function expressionNoComma(type) { |
| 383 | return expressionInner(type, true); |
| 384 | } |
nothing calls this directly
no test coverage detected