TypeScript/tests/baselines/reference/internalAliasInitializedModuleInsideTopLevelModuleWithExport.js
Wesley Wigham c6c2c4c8d5
Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar (#37093)
* Hoist initial assignment to exported names in cjs to they are not blocked by bindings made by __exportStar

* Copy hoisted identifiers so they do not create sourcemaps

* Accept updated baselines
2020-02-28 13:25:28 -08:00

41 lines
911 B
TypeScript

//// [internalAliasInitializedModuleInsideTopLevelModuleWithExport.ts]
export module a {
export module b {
export class c {
}
}
}
export import b = a.b;
export var x: b.c = new b.c();
//// [internalAliasInitializedModuleInsideTopLevelModuleWithExport.js]
"use strict";
exports.__esModule = true;
exports.x = exports.b = exports.a = void 0;
var a;
(function (a) {
var b;
(function (b) {
var c = /** @class */ (function () {
function c() {
}
return c;
}());
b.c = c;
})(b = a.b || (a.b = {}));
})(a = exports.a || (exports.a = {}));
exports.b = a.b;
exports.x = new exports.b.c();
//// [internalAliasInitializedModuleInsideTopLevelModuleWithExport.d.ts]
export declare module a {
module b {
class c {
}
}
}
export import b = a.b;
export declare var x: b.c;