1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
//// [declarationEmitNameConflicts2.ts]
module X.Y.base {
export function f() { }
export class C { }
export module M {
export var v;
}
export enum E { }
}
module X.Y.base.Z {
export var f = X.Y.base.f; // Should be base.f
export var C = X.Y.base.C; // Should be base.C
export var M = X.Y.base.M; // Should be base.M
export var E = X.Y.base.E; // Should be base.E
}
//// [declarationEmitNameConflicts2.js]
var X;
(function (X) {
var Y;
(function (Y) {
var base;
(function (base) {
function f() { }
base.f = f;
var C = /** @class */ (function () {
function C() {
}
return C;
}());
base.C = C;
var M;
(function (M) {
})(M = base.M || (base.M = {}));
var E;
(function (E) {
})(E = base.E || (base.E = {}));
})(base = Y.base || (Y.base = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));
(function (X) {
var Y;
(function (Y) {
var base;
(function (base) {
var Z;
(function (Z) {
Z.f = X.Y.base.f; // Should be base.f
Z.C = X.Y.base.C; // Should be base.C
Z.M = X.Y.base.M; // Should be base.M
Z.E = X.Y.base.E; // Should be base.E
})(Z = base.Z || (base.Z = {}));
})(base = Y.base || (Y.base = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));
//// [declarationEmitNameConflicts2.d.ts]
declare module X.Y.base {
function f(): void;
class C {
}
module M {
var v: any;
}
enum E {
}
}
declare module X.Y.base.Z {
var f: typeof base.f;
var C: typeof base.C;
var M: typeof base.M;
var E: typeof base.E;
}
|