restructure test directory
This commit is contained in:
1
test/fixtures/syntax/destructuring/array/actual.js
vendored
Normal file
1
test/fixtures/syntax/destructuring/array/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
var [a, [b], [c], d] = ["hello", [", ", "junk"], ["world"]];
|
||||
5
test/fixtures/syntax/destructuring/array/expected.js
vendored
Normal file
5
test/fixtures/syntax/destructuring/array/expected.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
var _ref = ["hello", [", ", "junk"], ["world"]];
|
||||
var a = _ref[0];
|
||||
var b = _ref[1][0];
|
||||
var c = _ref[2][0];
|
||||
var d = _ref[3];
|
||||
Reference in New Issue
Block a user