restructure test directory
This commit is contained in:
1
test/fixtures/syntax/destructuring/assignment/actual.js
vendored
Normal file
1
test/fixtures/syntax/destructuring/assignment/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[a, b] = f();
|
||||
3
test/fixtures/syntax/destructuring/assignment/expected.js
vendored
Normal file
3
test/fixtures/syntax/destructuring/assignment/expected.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var _ref = f();
|
||||
a = _ref[0];
|
||||
b = _ref[1];
|
||||
Reference in New Issue
Block a user