(type, value)
| 734 | } |
| 735 | } |
| 736 | function funarg(type, value) { |
| 737 | if (value == "@") cont(expression, funarg) |
| 738 | if (type == "spread") return cont(funarg); |
| 739 | if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(funarg); } |
| 740 | if (isTS && type == "this") return cont(maybetype, maybeAssign) |
| 741 | return pass(pattern, maybetype, maybeAssign); |
| 742 | } |
| 743 | function classExpression(type, value) { |
| 744 | // Class expressions may have an optional name. |
| 745 | if (type == "variable") return className(type, value); |
nothing calls this directly
no test coverage detected