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

Unified Diff: test/mjsunit/keyed-call-generic.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/json.js ('k') | test/mjsunit/keyed-call-ic.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/keyed-call-generic.js
diff --git a/test/mjsunit/keyed-call-generic.js b/test/mjsunit/keyed-call-generic.js
index 03146984872c44e8ad3e2040a901a7d6d7943860..2b3abbb5db3461588485395b356e974351088ff0 100644
--- a/test/mjsunit/keyed-call-generic.js
+++ b/test/mjsunit/keyed-call-generic.js
@@ -46,8 +46,8 @@ toStringNonSymbol += 'String';
function TypeOfThis() { return typeof this; }
-Number.prototype.square = function() { return this * this; }
-Number.prototype.power4 = function() { return this.square().square(); }
+Number.prototype.square = function() { return this * this; };
+Number.prototype.power4 = function() { return this.square().square(); };
Number.prototype.type = TypeOfThis;
String.prototype.type = TypeOfThis;
« no previous file with comments | « test/mjsunit/json.js ('k') | test/mjsunit/keyed-call-ic.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698