(type, value)
| 593 | if (type == ",") return cont(vardef); |
| 594 | } |
| 595 | function maybeelse(type, value) { |
| 596 | if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); |
| 597 | } |
| 598 | function forspec(type) { |
| 599 | if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex); |
| 600 | } |