Merge branch 'master' into experimental
# Conflicts: # src/babel/transformation/transformers/internal/strict.js
This commit is contained in:
2
test/fixtures/transformation/es6-destructuring/assignment-expression-pattern/actual.js
vendored
Normal file
2
test/fixtures/transformation/es6-destructuring/assignment-expression-pattern/actual.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
var z = {};
|
||||
var { x: { y } = {} } = z;
|
||||
6
test/fixtures/transformation/es6-destructuring/assignment-expression-pattern/expected.js
vendored
Normal file
6
test/fixtures/transformation/es6-destructuring/assignment-expression-pattern/expected.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
|
||||
var z = {};
|
||||
var _z$x = z.x;
|
||||
_z$x = _z$x === undefined ? {} : _z$x;
|
||||
var y = _z$x.y;
|
||||
Reference in New Issue
Block a user