(type)
| 537 | if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, statement, popcontext); |
| 538 | } |
| 539 | function funarg(type) { |
| 540 | if (type == "spread") return cont(funarg); |
| 541 | return pass(pattern, maybetype); |
| 542 | } |
| 543 | function className(type, value) { |
| 544 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 545 | } |