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

Unified Diff: test/mjsunit/object-seal.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-prevent-extensions.js ('k') | test/mjsunit/object-toprimitive.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/object-seal.js
diff --git a/test/mjsunit/object-seal.js b/test/mjsunit/object-seal.js
index f21baed37711d954d309bc9009d534c998583778..6608aa6aeeef26c6606929638553cbe8575c1ba3 100644
--- a/test/mjsunit/object-seal.js
+++ b/test/mjsunit/object-seal.js
@@ -99,8 +99,8 @@ assertEquals("43", obj.x);
// Test on accessors.
var obj2 = {};
-function get() { return 43; };
-function set() {};
+function get() { return 43; }
+function set() {}
Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
desc = Object.getOwnPropertyDescriptor(obj2, 'x');
« no previous file with comments | « test/mjsunit/object-prevent-extensions.js ('k') | test/mjsunit/object-toprimitive.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698