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/regress/regress-962.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/regress/regress-95920.js ('k') | test/mjsunit/regress/regress-96523.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-962.js
diff --git a/test/mjsunit/regress/regress-962.js b/test/mjsunit/regress/regress-962.js
index 85ada0c8abb905929d2c32c406aa9e94698681c0..b76e3afc434553c257b6ec33be39019b336d7224 100644
--- a/test/mjsunit/regress/regress-962.js
+++ b/test/mjsunit/regress/regress-962.js
@@ -29,7 +29,7 @@
function L(scope) { this.s = new Object(); }
-L.prototype.c = function() { return true; }
+L.prototype.c = function() { return true; };
function F() {
this.l = [new L, new L];
@@ -43,11 +43,11 @@ F.prototype.foo = function () {
g = b[e];
f = g.c.apply(g.s, d);
if (f === false) {
- break
+ break;
}
}
- return f
-}
+ return f;
+};
var ctx = new F;
« no previous file with comments | « test/mjsunit/regress/regress-95920.js ('k') | test/mjsunit/regress/regress-96523.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698