Merge branch 'master' into experimental

# Conflicts:
#	src/babel/transformation/transformers/internal/strict.js
This commit is contained in:
Sebastian McKenzie
2015-03-17 12:14:32 +11:00
6 changed files with 33 additions and 10 deletions

View File

@@ -0,0 +1,2 @@
var z = {};
var { x: { y } = {} } = z;

View 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;