(type)
| 411 | return pass(pushlex("stat"), expression, expect(";"), poplex); |
| 412 | } |
| 413 | function maybeCatchBinding(type) { |
| 414 | if (type == "(") return cont(funarg, expect(")")) |
| 415 | } |
| 416 | function expression(type, value) { |
| 417 | return expressionInner(type, value, false); |
| 418 | } |