TypeScript/tests/baselines/reference/thisInSuperCall2.js
2015-12-14 21:51:36 -08:00

48 lines
1.1 KiB
TypeScript

//// [thisInSuperCall2.ts]
class Base {
constructor(a: any) {}
}
class Foo extends Base {
public x: number;
constructor() {
super(this); // error: "super" has to be called before "this" accessing
}
}
class Foo2 extends Base {
public x: number = 0;
constructor() {
super(this); // error
}
}
//// [thisInSuperCall2.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; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var Base = (function () {
function Base(a) {
}
return Base;
}());
var Foo = (function (_super) {
__extends(Foo, _super);
function Foo() {
_super.call(this, this); // error: "super" has to be called before "this" accessing
}
return Foo;
}(Base));
var Foo2 = (function (_super) {
__extends(Foo2, _super);
function Foo2() {
_super.call(this, this); // error
this.x = 0;
}
return Foo2;
}(Base));