summaryrefslogtreecommitdiff
path: root/test/fixtures/breakpoints.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/breakpoints.js')
-rw-r--r--test/fixtures/breakpoints.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures/breakpoints.js b/test/fixtures/breakpoints.js
index 4ea4c129c2..c22a560676 100644
--- a/test/fixtures/breakpoints.js
+++ b/test/fixtures/breakpoints.js
@@ -6,10 +6,10 @@ function a(x) {
while (--i != 0);
debugger;
return i;
-};
+}
function b() {
return ['hello', 'world'].join(' ');
-};
+}
a();
a(1);
b();