(type, value)
| 505 | if (type == ",") return cont(vardef); |
| 506 | } |
| 507 | function maybeelse(type, value) { |
| 508 | if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); |
| 509 | } |
| 510 | function forspec(type) { |
| 511 | if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex); |
| 512 | } |