restructure test directory
This commit is contained in:
1
test/fixtures/syntax/destructuring/multiple/actual.js
vendored
Normal file
1
test/fixtures/syntax/destructuring/multiple/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
var { x, y } = coords, foo = "bar";
|
||||
3
test/fixtures/syntax/destructuring/multiple/expected.js
vendored
Normal file
3
test/fixtures/syntax/destructuring/multiple/expected.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var x = coords.x;
|
||||
var y = coords.y;
|
||||
var foo = "bar";
|
||||
Reference in New Issue
Block a user