(type, value)
| 626 | return pass(pattern, maybetype, maybeAssign); |
| 627 | } |
| 628 | function classExpression(type, value) { |
| 629 | // Class expressions may have an optional name. |
| 630 | if (type == "variable") return className(type, value); |
| 631 | return classNameAfter(type, value); |
| 632 | } |
| 633 | function className(type, value) { |
| 634 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 635 | } |
nothing calls this directly
no test coverage detected