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

Unified Diff: test/mjsunit/harmony/trailing-commas-length.js

Issue 2094463002: Allow trailing commas in function parameter lists (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 4 years, 6 months 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/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/trailing-commas-length.js
diff --git a/test/mjsunit/harmony/trailing-commas-length.js b/test/mjsunit/harmony/trailing-commas-length.js
new file mode 100644
index 0000000000000000000000000000000000000000..9d5e59c16b6dd81519dc3773a10043b1eef1bac9
--- /dev/null
+++ b/test/mjsunit/harmony/trailing-commas-length.js
@@ -0,0 +1,31 @@
+// Copyright 2016 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Flags: --harmony-trailing-commas
+
+function f1(a,) {}
+function f2(a,b,) {}
+function f3(a,b,c,) {}
+assertEquals(1, f1.length);
+assertEquals(2, f2.length);
+assertEquals(3, f3.length);
+
+function* g1(a,) {}
+function* g2(a,b,) {}
+function* g3(a,b,c,) {}
+assertEquals(1, g1.length);
+assertEquals(2, g2.length);
+assertEquals(3, g3.length);
+
+assertEquals(1, (function(a,) {}).length);
+assertEquals(2, (function(a,b,) {}).length);
+assertEquals(3, (function(a,b,c,) {}).length);
+
+assertEquals(1, (function*(a,) {}).length);
+assertEquals(2, (function*(a,b,) {}).length);
+assertEquals(3, (function*(a,b,c,) {}).length);
+
+assertEquals(1, ((a,) => {}).length);
+assertEquals(2, ((a,b,) => {}).length);
+assertEquals(3, ((a,b,c,) => {}).length);
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698