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

34 lines
793 B
JavaScript

//// [classExtendsShadowedConstructorFunction.ts]
class C { foo: string; }
module M {
var C = 1;
class D extends C { // error, C must evaluate to constructor function
bar: string;
}
}
//// [classExtendsShadowedConstructorFunction.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 C = (function () {
function C() {
}
return C;
})();
var M;
(function (M) {
var C = 1;
var D = (function (_super) {
__extends(D, _super);
function D() {
_super.apply(this, arguments);
}
return D;
})(C);
})(M || (M = {}));