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

Unified Diff: test/mjsunit/compiler/regress-2.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/compiler/regress-1394.js ('k') | test/mjsunit/compiler/regress-3249650.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/regress-2.js
diff --git a/test/mjsunit/compiler/regress-2.js b/test/mjsunit/compiler/regress-2.js
index a26ef32a6cd81d399e4e8ab5e4fa6ef9c6a7389c..10d883f72b3fe93a96a9a379f6ec682d5c9a411d 100644
--- a/test/mjsunit/compiler/regress-2.js
+++ b/test/mjsunit/compiler/regress-2.js
@@ -27,12 +27,10 @@
// The compilation of this function currently fails when resolving
// control flow in the register allocator.
-function TestCreateString(n)
-{
+function TestCreateString(n) {
var l = n * 1;
var r = 'r';
- while (r.length < n)
- {
+ while (r.length < n) {
r = r + r;
}
return r;
« no previous file with comments | « test/mjsunit/compiler/regress-1394.js ('k') | test/mjsunit/compiler/regress-3249650.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698