(node)
| 96571 | return visitorWorker(node, /*expressionResultIsUnused*/ false); |
| 96572 | } |
| 96573 | function visitorWithUnusedExpressionResult(node) { |
| 96574 | return visitorWorker(node, /*expressionResultIsUnused*/ true); |
| 96575 | } |
| 96576 | function visitorNoAsyncModifier(node) { |
| 96577 | if (node.kind === 131 /* SyntaxKind.AsyncKeyword */) { |
| 96578 | return undefined; |
nothing calls this directly
no test coverage detected