* Performs a BF traversal of the bottom up call graph. * * @param {function(CallTreeNode)} f Visitor function.
(f)
| 744 | * @param {function(CallTreeNode)} f Visitor function. |
| 745 | */ |
| 746 | traverseBottomUpTree(f) { |
| 747 | this.bottomUpTree_.traverse(f); |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * Calculates a top down profile for a node with the specified label. |