* Visits the body of a WithStatement to hoist declarations. * * @param node The node to visit.
(node)
| 106855 | * @param node The node to visit. |
| 106856 | */ |
| 106857 | function visitWithStatement(node) { |
| 106858 | return factory.updateWithStatement(node, ts.visitNode(node.expression, visitor, ts.isExpression), ts.visitNode(node.statement, topLevelNestedVisitor, ts.isStatement, factory.liftToBlock)); |
| 106859 | } |
| 106860 | /** |
| 106861 | * Visits the body of a SwitchStatement to hoist declarations. |
| 106862 | * |
no outgoing calls
no test coverage detected
searching dependent graphs…