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

Unified Diff: test/mjsunit/compiler/simple-global-access.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/compiler/simple-binary-op.js ('k') | test/mjsunit/compiler/simple-inlining.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/simple-global-access.js
diff --git a/test/mjsunit/compiler/simple-global-access.js b/test/mjsunit/compiler/simple-global-access.js
index 87a641cc9c9b8fea745f343fa88d6a4107ce98e0..7c128721e4ebf89752da58377bbc4b62d674b27e 100644
--- a/test/mjsunit/compiler/simple-global-access.js
+++ b/test/mjsunit/compiler/simple-global-access.js
@@ -35,7 +35,7 @@ function f1() { this.x = this.y = this.z = g1; }
function f2() { this.x = g1; this.y = g2; this.z = g3; }
function f3() { this.x = g4; }
-var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 }
+var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 };
o.test1();
assertEquals(42, o.x);
« no previous file with comments | « test/mjsunit/compiler/simple-binary-op.js ('k') | test/mjsunit/compiler/simple-inlining.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698