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

Unified Diff: test/mjsunit/object-literal.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/object-get-own-property-names.js ('k') | test/mjsunit/object-literal-overwrite.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/object-literal.js
diff --git a/test/mjsunit/object-literal.js b/test/mjsunit/object-literal.js
index 3d0b33bd99195584829d67db2af31ed123ce6d31..993ec4dc0c680ad649dec915b0932e2b7ec6252d 100644
--- a/test/mjsunit/object-literal.js
+++ b/test/mjsunit/object-literal.js
@@ -29,7 +29,7 @@ var obj = {
a: 7,
b: { x: 12, y: 24 },
c: 'Zebra'
-}
+};
assertEquals(7, obj.a);
assertEquals(12, obj.b.x);
@@ -42,7 +42,7 @@ var obj2 = {
a: 7,
b: { x: 12, y: z },
c: 'Zebra'
-}
+};
assertEquals(7, obj2.a);
assertEquals(12, obj2.b.x);
@@ -55,7 +55,7 @@ for (var i = 0; i < 2; i++) {
a: 7,
b: { x: 12, y: 24 },
c: 'Zebra'
- }
+ };
}
arr[0].b.x = 2;
« no previous file with comments | « test/mjsunit/object-get-own-property-names.js ('k') | test/mjsunit/object-literal-overwrite.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698