Added tests.

This commit is contained in:
Daniel Rosenwasser 2015-06-22 15:07:49 -07:00
parent db316b94d8
commit c1d2f60d3a
6 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,5 @@
function f([]) {
var x, y, z;
}

View file

@ -0,0 +1,5 @@
function f(a, []) {
var x, y, z;
}

View file

@ -0,0 +1,5 @@
function f(a, []) {
var x, y, z;
}

View file

@ -0,0 +1,5 @@
function f({}) {
var x, y, z;
}

View file

@ -0,0 +1,5 @@
function f(a, {}) {
var x, y, z;
}

View file

@ -0,0 +1,5 @@
function f({}, a) {
var x, y, z;
}