(node)
| 94392 | return ts.visitEachChild(node, visitor, context); |
| 94393 | } |
| 94394 | function discardedValueVisitor(node) { |
| 94395 | return visitorWorker(node, /*valueIsDiscarded*/ true); |
| 94396 | } |
| 94397 | function visitor(node) { |
| 94398 | return visitorWorker(node, /*valueIsDiscarded*/ false); |
| 94399 | } |
nothing calls this directly
no test coverage detected