Support exporting deep destructuring (#5953)
This commit is contained in:
committed by
Brian Ng
parent
8a5488e59f
commit
827c70e015
@@ -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;
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user