TypeScript/tests/baselines/reference/declFileWithClassNameConflictingWithClassReferredByExtendsClause.js
2015-05-01 10:49:54 -07:00

85 lines
2 KiB
TypeScript

//// [declFileWithClassNameConflictingWithClassReferredByExtendsClause.ts]
declare module A.B.Base {
export class W {
id: number;
}
}
module X.Y.base {
export class W extends A.B.Base.W {
name: string;
}
}
module X.Y.base.Z {
export class W<TValue> extends X.Y.base.W {
value: boolean;
}
}
//// [declFileWithClassNameConflictingWithClassReferredByExtendsClause.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var X;
(function (X) {
var Y;
(function (Y) {
var base;
(function (base) {
var W = (function (_super) {
__extends(W, _super);
function W() {
_super.apply(this, arguments);
}
return W;
})(A.B.Base.W);
base.W = W;
})(base = Y.base || (Y.base = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));
var X;
(function (X) {
var Y;
(function (Y) {
var base;
(function (base) {
var Z;
(function (Z) {
var W = (function (_super) {
__extends(W, _super);
function W() {
_super.apply(this, arguments);
}
return W;
})(X.Y.base.W);
Z.W = W;
})(Z = base.Z || (base.Z = {}));
})(base = Y.base || (Y.base = {}));
})(Y = X.Y || (X.Y = {}));
})(X || (X = {}));
//// [declFileWithClassNameConflictingWithClassReferredByExtendsClause.d.ts]
declare module A.B.Base {
class W {
id: number;
}
}
declare module X.Y.base {
class W extends A.B.Base.W {
name: string;
}
}
declare module X.Y.base.Z {
class W<TValue> extends X.Y.base.W {
value: boolean;
}
}