(type, value)
| 280 | return cont(); |
| 281 | } |
| 282 | function vardef2(type, value) { |
| 283 | if (value == "=") return cont(expression, vardef2); |
| 284 | if (type == ",") return cont(vardef1); |
| 285 | } |
| 286 | function forspec1(type) { |
| 287 | if (type == "var") return cont(vardef1, forspec2); |
| 288 | if (type == ";") return pass(forspec2); |