(type, value)
| 746 | return pass(pattern, maybetype, maybeAssign); |
| 747 | } |
| 748 | function classExpression(type, value) { |
| 749 | // Class expressions may have an optional name. |
| 750 | if (type == "variable") return className(type, value); |
| 751 | return classNameAfter(type, value); |
| 752 | } |
| 753 | function className(type, value) { |
| 754 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 755 | } |
nothing calls this directly
no test coverage detected