Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Unified Diff: runtime/observatory/lib/src/elements/class_view.dart

Issue 1000933004: Display ICData entries at call sites, with links to the targets and guarded classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: super calls Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/function_view.dart » ('j') | runtime/vm/coverage.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/class_view.dart
diff --git a/runtime/observatory/lib/src/elements/class_view.dart b/runtime/observatory/lib/src/elements/class_view.dart
index ac49f7ab6c2b607ce424fd64199fbaf2bfc2dcaa..c707f6e861b4517ca6aa4aa5851391d8dcd74e72 100644
--- a/runtime/observatory/lib/src/elements/class_view.dart
+++ b/runtime/observatory/lib/src/elements/class_view.dart
@@ -52,6 +52,7 @@ class ClassViewElement extends ObservatoryElement {
}
void refreshCoverage(var done) {
- cls.refreshCoverage().whenComplete(done);
+ Future.wait([cls.refreshCoverage(),
Cutch 2015/03/17 17:05:04 Can we kill this redundancy?
rmacnak 2015/03/18 19:24:05 Yes, now computing this from the IC data response.
+ cls.refreshCallSiteData()]).whenComplete(done);
}
}
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/function_view.dart » ('j') | runtime/vm/coverage.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698