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 f08f8a20ddd160c42a76aa92a84c8b762708e62c..7a118e6c3df92c402658107b8ed93914abf26af5 100644 |
--- a/test/inspector/debugger/get-possible-breakpoints-master-expected.txt |
+++ b/test/inspector/debugger/get-possible-breakpoints-master-expected.txt |
@@ -24,7 +24,7 @@ function returnTrue() { |
function testIf() { |
var a; |
- |_|if (true) |_|a = true; |
+ if (true) |_|a = true; |
|_|if (!a) { |
|_|a = true; |
} else { |
@@ -110,7 +110,7 @@ function testForInLoop() { |
|R|} |
function testSimpleExpressions() { |
- |_|1 + 2 + 3; |
+ 1 + 2 + 3; |
var a = |_|1; |
|_|++a; |
|_|a--; |
@@ -172,7 +172,7 @@ function testGenerator() { |
function throwException() { |
|_|throw |C|new Error(); |
-|R|} |
+} |
function testCaughtException() { |
try { |