(type)
| 351 | }; |
| 352 | } |
| 353 | function block(type) { |
| 354 | if (type == "}") return cont(); |
| 355 | return pass(statement, block); |
| 356 | } |
| 357 | function vardef1(type, value) { |
| 358 | if (type == "variable"){register(value); return cont(typeuse, vardef2);} |
| 359 | return cont(); |