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