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

Unified Diff: test/mjsunit/code-coverage-ad-hoc.js

Issue 2696163002: [debugger] implement inspector-facing API for code coverage. (Closed)
Patch Set: one more shared export Created 3 years, 10 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 | « test/cctest/test-debug.cc ('k') | test/mjsunit/code-coverage-precise.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/code-coverage-ad-hoc.js
diff --git a/test/mjsunit/code-coverage-ad-hoc.js b/test/mjsunit/code-coverage-ad-hoc.js
index ee233eb53555ec428316bcd24c72f732ceca7601..5dd2da2964a65be2d916a590cfd4d1caf1c17d77 100644
--- a/test/mjsunit/code-coverage-ad-hoc.js
+++ b/test/mjsunit/code-coverage-ad-hoc.js
@@ -45,7 +45,7 @@ f();
`
[[function f() {}](f:2)
f();
-f();](anonymous:1)
+f();](:1)
`
);
@@ -59,7 +59,7 @@ f();
`
[var f = [() => 1](f:2);
f();
-f();](anonymous:1)
+f();](:1)
`
);
@@ -81,7 +81,7 @@ f();
g();
}](f:2)
f();
-f();](anonymous:1)
+f();](:1)
`
);
@@ -100,6 +100,6 @@ fib(5);
if (x < 2) return 1;
return fib(x-1) + fib(x-2);
}](fib:15)
-fib(5);](anonymous:1)
+fib(5);](:1)
`
);
« no previous file with comments | « test/cctest/test-debug.cc ('k') | test/mjsunit/code-coverage-precise.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698