(node)
| 98655 | return node; |
| 98656 | } |
| 98657 | function callExpressionVisitor(node) { |
| 98658 | if (node.kind === 106 /* SyntaxKind.SuperKeyword */) { |
| 98659 | return visitSuperKeyword(/*isExpressionOfCall*/ true); |
| 98660 | } |
| 98661 | return visitor(node); |
| 98662 | } |
| 98663 | function visitorWorker(node, expressionResultIsUnused) { |
| 98664 | switch (node.kind) { |
| 98665 | case 124 /* SyntaxKind.StaticKeyword */: |
nothing calls this directly
no test coverage detected