Visit all nodes reachable from the start node in the control flow graph, traversing the dependencies 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.
visitCfgInOrder for a traversal in order
Visit all nodes reachable from the start node in the control flow graph, traversing the dependencies but ignoring cycles.