(type, value)
| 718 | if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); |
| 719 | } |
| 720 | function forspec(type, value) { |
| 721 | if (value == "await") return cont(forspec); |
| 722 | if (type == "(") return cont(pushlex(")"), forspec1, poplex); |
| 723 | } |
| 724 | function forspec1(type) { |
| 725 | if (type == "var") return cont(vardef, forspec2); |
| 726 | if (type == "variable") return cont(forspec2); |