TypeScript/tests/baselines/reference/extBaseClass1.js
2014-07-12 17:30:19 -07:00

69 lines
1.3 KiB
TypeScript

//// [extBaseClass1.ts]
module M {
export class B {
public x=10;
}
export class C extends B {
}
}
module M {
export class C2 extends B {
}
}
module N {
export class C3 extends M.B {
}
}
//// [extBaseClass1.js]
var __extends = 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 M;
(function (M) {
var B = (function () {
function B() {
this.x = 10;
}
return B;
})();
M.B = B;
var C = (function (_super) {
__extends(C, _super);
function C() {
_super.apply(this, arguments);
}
return C;
})(B);
M.C = C;
})(M || (M = {}));
var M;
(function (M) {
var C2 = (function (_super) {
__extends(C2, _super);
function C2() {
_super.apply(this, arguments);
}
return C2;
})(M.B);
M.C2 = C2;
})(M || (M = {}));
var N;
(function (N) {
var C3 = (function (_super) {
__extends(C3, _super);
function C3() {
_super.apply(this, arguments);
}
return C3;
})(M.B);
N.C3 = C3;
})(N || (N = {}));