(type)
| 415 | return pass(pushlex("stat"), expression, expect(";"), poplex); |
| 416 | } |
| 417 | function maybeCatchBinding(type) { |
| 418 | if (type == "(") return cont(funarg, expect(")")) |
| 419 | } |
| 420 | function expression(type, value) { |
| 421 | return expressionInner(type, value, false); |
| 422 | } |