(type, value)
| 538 | return pass(pattern, maybetype); |
| 539 | } |
| 540 | function className(type, value) { |
| 541 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 542 | } |
| 543 | function classNameAfter(type, value) { |
| 544 | if (value == "extends") return cont(expression, classNameAfter); |
| 545 | if (type == "{") return cont(pushlex("}"), classBody, poplex); |