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

Unified Diff: test/mjsunit/regress/regress-crbug-3867.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-crbug-37853.js ('k') | test/mjsunit/regress/regress-crbug-39160.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-3867.js
diff --git a/test/mjsunit/regress/regress-crbug-3867.js b/test/mjsunit/regress/regress-crbug-3867.js
index 03001b6c79721855bf71c6997dc8bfc74fb4ecac..a88d545cbec24510173bc30e68c15bd0d1ab13cc 100644
--- a/test/mjsunit/regress/regress-crbug-3867.js
+++ b/test/mjsunit/regress/regress-crbug-3867.js
@@ -56,22 +56,22 @@ assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
-var a = new A()
+var a = new A();
a.a0 = 0;
a.a4 = 0;
assertArrayEquals(["a1", "a2", "a3", "a0", "a4"], props(a));
-var b = new B()
+var b = new B();
b.b4 = 0;
b.b0 = 0;
assertArrayEquals(["b3", "b2", "b1", "b4", "b0"], props(b));
-var o1 = {s1: 0, s2: 0, s3: 0}
+var o1 = {s1: 0, s2: 0, s3: 0};
o1.s0 = 0;
o1.s4 = 0;
assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
-var o2 = {s3: 0, s2: 0, s1: 0}
+var o2 = {s3: 0, s2: 0, s1: 0};
o2.s4 = 0;
o2.s0 = 0;
assertArrayEquals(["s3", "s2", "s1", "s4", "s0"], props(o2));
« no previous file with comments | « test/mjsunit/regress/regress-crbug-37853.js ('k') | test/mjsunit/regress/regress-crbug-39160.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698