Support exporting deep destructuring (#5953)

This commit is contained in:
Justin Ridgewell
2017-07-18 15:07:09 -04:00
committed by Brian Ng
parent 8a5488e59f
commit 827c70e015
6 changed files with 35 additions and 53 deletions

View File

@@ -11,9 +11,9 @@ define(["exports"], function (exports) {
var foo3 = exports.foo3 = function () {};
var foo4 = exports.foo4 = undefined;
var foo4 = exports.foo4 = void 0;
let foo5 = exports.foo5 = 2;
let foo6 = exports.foo6 = undefined;
let foo6 = exports.foo6 = void 0;
const foo7 = exports.foo7 = 3;
function foo8() {}
@@ -21,4 +21,4 @@ define(["exports"], function (exports) {
class foo9 {}
exports.foo9 = foo9;
});
});