visitChildren method
Visits all children of the node e, in the order of AstNode.childNodes.
Implementation
R? visitChildren(AstNode e, A arg) {
return visitList(e.childNodes, arg);
}
Visits all children of the node e, in the order of AstNode.childNodes.
R? visitChildren(AstNode e, A arg) {
return visitList(e.childNodes, arg);
}