(type, value)
| 739 | } |
| 740 | } |
| 741 | function funarg(type, value) { |
| 742 | if (value == "@") cont(expression, funarg) |
| 743 | if (type == "spread") return cont(funarg); |
| 744 | if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(funarg); } |
| 745 | if (isTS && type == "this") return cont(maybetype, maybeAssign) |
| 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); |
nothing calls this directly
no test coverage detected