Function: visitDescendants()
function visitDescendants(node: Node, visitor: (child: Node) => void): void;
Defined in: _internal/test-ast.ts:366
Visit every descendant node under a starting AST node.
Parametersโ
nodeโ
Node
visitorโ
(child: Node) => void
Returnsโ
void