(type, value)
| 355 | return pass(statement, block); |
| 356 | } |
| 357 | function vardef1(type, value) { |
| 358 | if (type == "variable"){register(value); return cont(typeuse, vardef2);} |
| 359 | return cont(); |
| 360 | } |
| 361 | function vardef2(type, value) { |
| 362 | if (value == "=") return cont(expression, vardef2); |
| 363 | if (type == ",") return cont(vardef1); |