| Index: runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart b/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart
|
| index 1e244df0b4527370901f4e04a254fd44b427f229..14391e1d0f0bc75cc0570184b5e67439869c6a88 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/elements/isolate_profile.dart
|
| @@ -77,7 +77,7 @@ class ProfileCallerTreeRow extends TableTreeRow {
|
| var totalSamples = profile['samples'];
|
| // When the row is created, fill out the columns.
|
| if (parent == null) {
|
| - var root = profile.isolate.codes.tagRoot();
|
| + var root = profile.isolate.tagRoot();
|
| var totalAttributedCalls = root.callersCount(code);
|
| var totalParentCalls = root.sumCallersCount();
|
| columns.add(formatPercent(totalAttributedCalls, totalParentCalls));
|
| @@ -188,7 +188,7 @@ class IsolateProfileElement extends ObservatoryElement {
|
|
|
| void _buildCallersTree() {
|
| assert(profile != null);
|
| - var root = profile.isolate.codes.tagRoot();
|
| + var root = profile.isolate.tagRoot();
|
| if (root == null) {
|
| Logger.root.warning('No profile root tag.');
|
| }
|
|
|