* Visits and possibly transforms any node. * * @param node The node to visit.
(node)
| 91707 | * @param node The node to visit. |
| 91708 | */ |
| 91709 | function visitorWorker(node) { |
| 91710 | if (node.transformFlags & 1 /* TransformFlags.ContainsTypeScript */) { |
| 91711 | return visitTypeScript(node); |
| 91712 | } |
| 91713 | return node; |
| 91714 | } |
| 91715 | /** |
| 91716 | * Specialized visitor that visits the immediate children of a SourceFile. |
| 91717 | * |
no test coverage detected
searching dependent graphs…