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

Unified Diff: test/inspector/debugger/get-possible-breakpoints-master-expected.txt

Issue 2893313002: [inspector] removed call break location from for-of loop (Closed)
Patch Set: removed each_keyword_pos Created 3 years, 7 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: test/inspector/debugger/get-possible-breakpoints-master-expected.txt
diff --git a/test/inspector/debugger/get-possible-breakpoints-master-expected.txt b/test/inspector/debugger/get-possible-breakpoints-master-expected.txt
index d83a4aa137e66243aa46e2a4cfd7694e74632bbf..acd0966923871844c2919840e4a3128845580a63 100644
--- a/test/inspector/debugger/get-possible-breakpoints-master-expected.txt
+++ b/test/inspector/debugger/get-possible-breakpoints-master-expected.txt
@@ -95,10 +95,10 @@ function testForLoop() {
|R|}
function testForOfLoop() {
- for (var k |C|of []) {}
- for (var k |C|of |_|[1]) |_|k;
+ for (var |_|k of []) {}
+ for (var |_|k of |_|[1]) |_|k;
var a = |_|[];
- for (var k |C|of |_|a) {}
+ for (var |_|k of |_|a) {}
|R|}
function testForInLoop() {

Powered by Google App Engine
This is Rietveld 408576698