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

Unified Diff: test/mjsunit/debug-scopes.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years 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/mjsunit/debug-return-value.js ('k') | test/mjsunit/debug-script.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/debug-scopes.js
diff --git a/test/mjsunit/debug-scopes.js b/test/mjsunit/debug-scopes.js
index 942bd2bb073804571bf39b01db88b07d25f44479..0fdb41029a0b6ea3f9dfd14e2cbc0da88190ac07 100644
--- a/test/mjsunit/debug-scopes.js
+++ b/test/mjsunit/debug-scopes.js
@@ -466,7 +466,7 @@ function closure_1(a) {
function f() {
debugger;
return a;
- };
+ }
return f;
}
@@ -491,7 +491,7 @@ function closure_2(a, b) {
function f() {
debugger;
return a + x;
- };
+ }
return f;
}
@@ -517,7 +517,7 @@ function closure_3(a, b) {
function f() {
debugger;
return a + b + x + y;
- };
+ }
return f;
}
@@ -546,7 +546,7 @@ function closure_4(a, b) {
if (f) {
return a + b + x + y;
}
- };
+ }
return f;
}
@@ -574,7 +574,7 @@ function closure_5(a, b) {
eval('');
debugger;
return 1;
- };
+ }
return f;
}
@@ -806,7 +806,7 @@ listener_delegate = function(exec_state) {
debug.ScopeType.Closure,
debug.ScopeType.Closure,
debug.ScopeType.Global], exec_state);
-}
+};
closure_in_with_3();
EndTest();
@@ -844,7 +844,7 @@ function catch_block_1() {
} catch (e) {
debugger;
}
-};
+}
listener_delegate = function(exec_state) {
@@ -866,7 +866,7 @@ function catch_block_2() {
debugger;
}
}
-};
+}
listener_delegate = function(exec_state) {
@@ -891,7 +891,7 @@ function catch_block_3() {
} catch (e) {
debugger;
}
-};
+}
listener_delegate = function(exec_state) {
@@ -917,7 +917,7 @@ function catch_block_4() {
debugger;
}
}
-};
+}
listener_delegate = function(exec_state) {
CheckScopeChain([debug.ScopeType.With,
@@ -978,7 +978,7 @@ function catch_block_7() {
} catch (e) {
debugger;
}
-};
+}
listener_delegate = function(exec_state) {
« no previous file with comments | « test/mjsunit/debug-return-value.js ('k') | test/mjsunit/debug-script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698