(type, value)
| 760 | return pass(pattern, maybetype, maybeAssign); |
| 761 | } |
| 762 | function classExpression(type, value) { |
| 763 | // Class expressions may have an optional name. |
| 764 | if (type == "variable") return className(type, value); |
| 765 | return classNameAfter(type, value); |
| 766 | } |
| 767 | function className(type, value) { |
| 768 | if (type == "variable") {register(value); return cont(classNameAfter);} |
| 769 | } |
nothing calls this directly
no test coverage detected