* Calculates a bottom up profile for a node with the specified label. * If no name specified, returns the whole bottom up calls tree. * * @param {string} opt_label Node label.
(opt_label)
| 764 | * @param {string} opt_label Node label. |
| 765 | */ |
| 766 | getBottomUpProfile(opt_label) { |
| 767 | return this.getTreeProfile_(this.bottomUpTree_, opt_label); |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * Helper function for calculating a tree profile. |
no test coverage detected