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

209 lines
4.3 KiB
TypeScript

//// [derivedClassParameterProperties.ts]
// ordering of super calls in derived constructors matters depending on other class contents
class Base {
x: string;
}
class Derived extends Base {
constructor(y: string) {
var a = 1;
super(); // ok
}
}
class Derived2 extends Base {
constructor(public y: string) {
var a = 1;
super(); // error
}
}
class Derived3 extends Base {
constructor(public y: string) {
super(); // ok
var a = 1;
}
}
class Derived4 extends Base {
a = 1;
constructor(y: string) {
var b = 2;
super(); // error
}
}
class Derived5 extends Base {
a = 1;
constructor(y: string) {
super(); // ok
var b = 2;
}
}
class Derived6 extends Base {
a: number;
constructor(y: string) {
this.a = 1;
var b = 2;
super(); // ok
}
}
class Derived7 extends Base {
a = 1;
b: number;
constructor(y: string) {
this.a = 3;
this.b = 3;
super(); // error
}
}
class Derived8 extends Base {
a = 1;
b: number;
constructor(y: string) {
super(); // ok
this.a = 3;
this.b = 3;
}
}
// generic cases of Derived7 and Derived8
class Base2<T> { x: T; }
class Derived9<T> extends Base2<T> {
a = 1;
b: number;
constructor(y: string) {
this.a = 3;
this.b = 3;
super(); // error
}
}
class Derived10<T> extends Base2<T> {
a = 1;
b: number;
constructor(y: string) {
super(); // ok
this.a = 3;
this.b = 3;
}
}
//// [derivedClassParameterProperties.js]
// ordering of super calls in derived constructors matters depending on other class contents
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 Base = (function () {
function Base() {
}
return Base;
})();
var Derived = (function (_super) {
__extends(Derived, _super);
function Derived(y) {
var a = 1;
_super.call(this); // ok
}
return Derived;
})(Base);
var Derived2 = (function (_super) {
__extends(Derived2, _super);
function Derived2(y) {
this.y = y;
var a = 1;
_super.call(this); // error
}
return Derived2;
})(Base);
var Derived3 = (function (_super) {
__extends(Derived3, _super);
function Derived3(y) {
_super.call(this); // ok
this.y = y;
var a = 1;
}
return Derived3;
})(Base);
var Derived4 = (function (_super) {
__extends(Derived4, _super);
function Derived4(y) {
this.a = 1;
var b = 2;
_super.call(this); // error
}
return Derived4;
})(Base);
var Derived5 = (function (_super) {
__extends(Derived5, _super);
function Derived5(y) {
_super.call(this); // ok
this.a = 1;
var b = 2;
}
return Derived5;
})(Base);
var Derived6 = (function (_super) {
__extends(Derived6, _super);
function Derived6(y) {
this.a = 1;
var b = 2;
_super.call(this); // ok
}
return Derived6;
})(Base);
var Derived7 = (function (_super) {
__extends(Derived7, _super);
function Derived7(y) {
this.a = 1;
this.a = 3;
this.b = 3;
_super.call(this); // error
}
return Derived7;
})(Base);
var Derived8 = (function (_super) {
__extends(Derived8, _super);
function Derived8(y) {
_super.call(this); // ok
this.a = 1;
this.a = 3;
this.b = 3;
}
return Derived8;
})(Base);
// generic cases of Derived7 and Derived8
var Base2 = (function () {
function Base2() {
}
return Base2;
})();
var Derived9 = (function (_super) {
__extends(Derived9, _super);
function Derived9(y) {
this.a = 1;
this.a = 3;
this.b = 3;
_super.call(this); // error
}
return Derived9;
})(Base2);
var Derived10 = (function (_super) {
__extends(Derived10, _super);
function Derived10(y) {
_super.call(this); // ok
this.a = 1;
this.a = 3;
this.b = 3;
}
return Derived10;
})(Base2);