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

Unified Diff: test/mjsunit/regress/regress-392.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-386.js ('k') | test/mjsunit/regress/regress-394.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-392.js
diff --git a/test/mjsunit/regress/regress-392.js b/test/mjsunit/regress/regress-392.js
index 3cabcacf113c5164d23026b2c94ff0b2b27be9e2..9738246c96daec65781b3a318095c5803d02cd98 100644
--- a/test/mjsunit/regress/regress-392.js
+++ b/test/mjsunit/regress/regress-392.js
@@ -28,7 +28,7 @@
// Regression test for issue 392 reported by nth10sd; see
// http://code.google.com/p/v8/issues/detail?id=392
-assertTrue(isNaN((function(){return arguments++})()));
-assertTrue(isNaN((function(){return ++arguments})()));
-assertTrue(isNaN((function(){return arguments--})()));
-assertTrue(isNaN((function(){return --arguments})()));
+assertTrue(isNaN((function(){return arguments++;})()));
+assertTrue(isNaN((function(){return ++arguments;})()));
+assertTrue(isNaN((function(){return arguments--;})()));
+assertTrue(isNaN((function(){return --arguments;})()));
« no previous file with comments | « test/mjsunit/regress/regress-386.js ('k') | test/mjsunit/regress/regress-394.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698