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

Unified Diff: test/mjsunit/object-literal-overwrite.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-literal.js ('k') | test/mjsunit/object-prevent-extensions.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/object-literal-overwrite.js
diff --git a/test/mjsunit/object-literal-overwrite.js b/test/mjsunit/object-literal-overwrite.js
index 5a3584df8ae853da36577b19376ba51692e0e2eb..ff3ee217973aad1f67a38776ee1248e1307e389a 100644
--- a/test/mjsunit/object-literal-overwrite.js
+++ b/test/mjsunit/object-literal-overwrite.js
@@ -50,23 +50,23 @@ var foo3 = {
var foo4 = {
bar: function(b){},
bar: 7,
- bar: function(){return 7},
+ bar: function(){return 7;},
};
var foo5 = {
13: function(a){},
13: 7
-}
+};
var foo6 = {
14.31: function(a){},
14.31: 7
-}
+};
var foo7 = {
15: 6,
15: 7
-}
+};
assertEquals(7, foo1.bar);
assertEquals(7, foo2.bar);
« no previous file with comments | « test/mjsunit/object-literal.js ('k') | test/mjsunit/object-prevent-extensions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698