TypeScript/tests/baselines/reference/collisionSuperAndParameter.js
2015-06-16 12:18:31 -07:00

136 lines
4 KiB
TypeScript

//// [collisionSuperAndParameter.ts]
class Foo {
a() {
var lamda = (_super: number) => { // No Error
return x => this; // New scope. So should inject new _this capture
}
}
b(_super: number) { // No Error
var lambda = () => {
return x => this; // New scope. So should inject new _this capture
}
}
set c(_super: number) { // No error
}
}
class Foo2 extends Foo {
x() {
var lamda = (_super: number) => { // Error
return x => this; // New scope. So should inject new _this capture
}
}
y(_super: number) { // Error
var lambda = () => {
return x => this; // New scope. So should inject new _this capture
}
}
set z(_super: number) { // Error
}
public prop3: {
doStuff: (_super: number) => void; // no error - no code gen
}
public prop4 = {
doStuff: (_super: number) => { // should be error
}
}
constructor(_super: number) { // should be error
super();
}
}
declare class Foo3 extends Foo {
x();
y(_super: number); // No error - no code gen
constructor(_super: number); // No error - no code gen
public prop2: {
doStuff: (_super: number) => void; // no error - no code gen
};
public _super: number; // No error
}
class Foo4 extends Foo {
constructor(_super: number); // no code gen - no error
constructor(_super: string);// no code gen - no error
constructor(_super: any) { // should be error
super();
}
y(_super: number); // no code gen - no error
y(_super: string); // no code gen - no error
y(_super: any) { // Error
var lambda = () => {
return x => this; // New scope. So should inject new _this capture
}
}
}
//// [collisionSuperAndParameter.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 Foo = (function () {
function Foo() {
}
Foo.prototype.a = function () {
var _this = this;
var lamda = function (_super) {
return function (x) { return _this; }; // New scope. So should inject new _this capture
};
};
Foo.prototype.b = function (_super) {
var _this = this;
var lambda = function () {
return function (x) { return _this; }; // New scope. So should inject new _this capture
};
};
Object.defineProperty(Foo.prototype, "c", {
set: function (_super) {
},
enumerable: true,
configurable: true
});
return Foo;
})();
var Foo2 = (function (_super) {
__extends(Foo2, _super);
function Foo2(_super) {
_super.call(this);
this.prop4 = {
doStuff: function (_super) {
}
};
}
Foo2.prototype.x = function () {
var _this = this;
var lamda = function (_super) {
return function (x) { return _this; }; // New scope. So should inject new _this capture
};
};
Foo2.prototype.y = function (_super) {
var _this = this;
var lambda = function () {
return function (x) { return _this; }; // New scope. So should inject new _this capture
};
};
Object.defineProperty(Foo2.prototype, "z", {
set: function (_super) {
},
enumerable: true,
configurable: true
});
return Foo2;
})(Foo);
var Foo4 = (function (_super) {
__extends(Foo4, _super);
function Foo4(_super) {
_super.call(this);
}
Foo4.prototype.y = function (_super) {
var _this = this;
var lambda = function () {
return function (x) { return _this; }; // New scope. So should inject new _this capture
};
};
return Foo4;
})(Foo);