(type, value)
| 704 | if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex); |
| 705 | } |
| 706 | function forspec(type, value) { |
| 707 | if (value == "await") return cont(forspec); |
| 708 | if (type == "(") return cont(pushlex(")"), forspec1, poplex); |
| 709 | } |
| 710 | function forspec1(type) { |
| 711 | if (type == "var") return cont(vardef, forspec2); |
| 712 | if (type == "variable") return cont(forspec2); |