Visit all nodes reachable from the start node in the control flow graph, traversing the dependencies in execution order but ignoring cycles.
The control flow graph.
The nodes to start the traversal from.
The visitor function to call for each node, if you return true the traversal from this node will be stopped.
visitCfgInReverseOrder for a traversal in reversed order
Visit all nodes reachable from the start node in the control flow graph, traversing the dependencies in execution order but ignoring cycles.