fix array unpacking test

This commit is contained in:
Sebastian McKenzie 2015-02-22 22:46:27 +11:00
parent e387da7c2b
commit 04d79c1740
2 changed files with 1 additions and 2 deletions

View File

@ -1 +1 @@
var [a, [b], [c], d] = ["hello", [", ", "junk"], ["world"]]; var [a, [b], [c]] = ["hello", [", ", "junk"], ["world"]];

View File

@ -4,4 +4,3 @@ var a = "hello";
var _ref = [", ", "junk"]; var _ref = [", ", "junk"];
var b = _ref[0]; var b = _ref[0];
var c = "world"; var c = "world";
var d;