(type)
| 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 | } |
| 601 | function forspec1(type) { |
| 602 | if (type == "var") return cont(vardef, expect(";"), forspec2); |
| 603 | if (type == ";") return cont(forspec2); |