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

Unified Diff: test/mjsunit/regress/regress-524.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-515.js ('k') | test/mjsunit/regress/regress-526.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-524.js
diff --git a/test/mjsunit/regress/regress-524.js b/test/mjsunit/regress/regress-524.js
index b37ad8ad7f1bec06530df701ef9a07a318c70727..23955218734ac3b6ef9b85b456c9f70eb0a5d1eb 100644
--- a/test/mjsunit/regress/regress-524.js
+++ b/test/mjsunit/regress/regress-524.js
@@ -27,6 +27,11 @@
// Test allocation of a large number of maps.
-var i = 500000
-var a = new Array(i)
-for (var j = 0; j < i; j++) { var o = {}; o.x = 42; delete o.x; a[j] = o; }
+var i = 500000;
+var a = new Array(i);
+for (var j = 0; j < i; j++) {
+ var o = {};
+ o.x = 42;
+ delete o.x;
+ a[j] = o;
+}
« no previous file with comments | « test/mjsunit/regress/regress-515.js ('k') | test/mjsunit/regress/regress-526.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698