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

Unified Diff: runtime/vm/coverage_test.cc

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
Index: runtime/vm/coverage_test.cc
diff --git a/runtime/vm/coverage_test.cc b/runtime/vm/coverage_test.cc
index c4c62e13da8285b40ed0ec17592a3bf33cc3d17b..2301d3a5d8108666357407011c023a7dc69b77b9 100644
--- a/runtime/vm/coverage_test.cc
+++ b/runtime/vm/coverage_test.cc
@@ -45,7 +45,7 @@ TEST_CASE(Coverage_Empty) {
ASSERT(!lib.IsNull());
JSONStream js;
- CodeCoverage::PrintJSON(isolate, &js, NULL);
+ CodeCoverage::PrintJSON(isolate, &js, NULL, false);
char buf[1024];
OS::SNPrint(buf, sizeof(buf),
@@ -78,7 +78,7 @@ TEST_CASE(Coverage_MainWithClass) {
ASSERT(!lib.IsNull());
JSONStream js;
- CodeCoverage::PrintJSON(isolate, &js, NULL);
+ CodeCoverage::PrintJSON(isolate, &js, NULL, false);
char buf[1024];
// Coverage data is printed per class, i.e., there should be two sections
@@ -128,7 +128,7 @@ TEST_CASE(Coverage_FilterFunction) {
JSONStream js;
FunctionCoverageFilter filter(func);
- CodeCoverage::PrintJSON(isolate, &js, &filter);
+ CodeCoverage::PrintJSON(isolate, &js, &filter, false);
// Only expect coverage data for Foo.yetAnother() on line 6.
char buf[1024];
OS::SNPrint(buf, sizeof(buf),
« runtime/vm/coverage.cc ('K') | « runtime/vm/coverage.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698