* Calculates a top down profile for a node with the specified label. * If no name specified, returns the whole top down calls tree. * * @param {string} opt_label Node label.
(opt_label)
| 754 | * @param {string} opt_label Node label. |
| 755 | */ |
| 756 | getTopDownProfile(opt_label) { |
| 757 | return this.getTreeProfile_(this.topDownTree_, opt_label); |
| 758 | } |
| 759 | |
| 760 | /** |
| 761 | * Calculates a bottom up profile for a node with the specified label. |
no test coverage detected