add destructuring support
This commit is contained in:
1
test/fixtures/destructuring/object-basic/actual.js
vendored
Normal file
1
test/fixtures/destructuring/object-basic/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
var { x, y } = coords;
|
||||
2
test/fixtures/destructuring/object-basic/expected.js
vendored
Normal file
2
test/fixtures/destructuring/object-basic/expected.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
var x = coords.x;
|
||||
var y = coords.y;
|
||||
Reference in New Issue
Block a user