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

Unified Diff: test/mjsunit/arguments.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/argument-named-arguments.js ('k') | test/mjsunit/arguments-apply.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/arguments.js
diff --git a/test/mjsunit/arguments.js b/test/mjsunit/arguments.js
index 78b7722e6d37fccaeeab95fc429b709adefc8a22..6b5605bedad1344ab72ff84a3bdc5b957805adcb 100644
--- a/test/mjsunit/arguments.js
+++ b/test/mjsunit/arguments.js
@@ -91,7 +91,7 @@ assertEquals(9, argv2(7, 8, 9));
// Test that calling a lazily compiled function with
// an unexpected number of arguments works.
-function f(a) { return arguments.length; };
+function f(a) { return arguments.length; }
assertEquals(3, f(1, 2, 3));
function f1(x, y) {
@@ -136,7 +136,7 @@ function f5(x, y, z) {
y = "three";
a[1] = "drei";
a[2] = "fuenf";
- };
+ }
g(arguments);
assertEquals("two", x);
« no previous file with comments | « test/mjsunit/argument-named-arguments.js ('k') | test/mjsunit/arguments-apply.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698