Allow 16 arguments, and handle going over that correctly.

This commit is contained in:
Bob Nystrom
2013-11-29 15:08:27 -08:00
parent 5f1d5cfa85
commit 325bb281a5
10 changed files with 123 additions and 5 deletions
+4
View File
@@ -0,0 +1,4 @@
class Foo {
// 17 parameters.
method(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q) { "!" } // expect error
}