A generator that walks the whole AST starting from the children of the given node.
the starting node (excluded from the walk).
a function that generates a sequence of nodes. By default this is the depth-first "walk" function. For post-order traversal, use "walkLeavesFirst".
A generator that walks the whole AST starting from the provided node, depth-first.
the starting node.
Generated using TypeDoc
A generator that walks the whole AST starting from the children of the given node.