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

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: 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
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..505ba7569ca1553b5d56dd44a548666fb4663fb5 100644
--- a/test/mjsunit/regress/regress-524.js
+++ b/test/mjsunit/regress/regress-524.js
@@ -27,6 +27,6 @@
// Test allocation of a large number of maps.
-var i = 500000
-var a = new Array(i)
+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; }
Rico 2011/12/08 10:24:37 put body on individual lines

Powered by Google App Engine
This is Rietveld 408576698