VisitChildrenExtension<A, R> extension

on

Methods

visitChildren(AstNode e, A arg) → R?
Visits all children of the node e, in the order of AstNode.childNodes.
visitExcept(AstNode node, AstNode? skip, A arg) → void
Visits all children of node, except for skip.
visitList(Iterable<AstNode> nodes, A arg) → R?
Visits all nodes in sequence.