* Computes total weights in the call graph.
()
| 1099 | * Computes total weights in the call graph. |
| 1100 | */ |
| 1101 | computeTotalWeights() { |
| 1102 | if (this.totalsComputed_) return; |
| 1103 | this.root_.computeTotalWeight(); |
| 1104 | this.totalsComputed_ = true; |
| 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * Traverses the call graph in preorder. This function can be used for |
no test coverage detected