* Performs a BF traversal of the top down call graph. * * @param {function(CallTreeNode)} f Visitor function.
(f)
| 735 | * @param {function(CallTreeNode)} f Visitor function. |
| 736 | */ |
| 737 | traverseTopDownTree(f) { |
| 738 | this.topDownTree_.traverse(f); |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * Performs a BF traversal of the bottom up call graph. |