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

52 lines
1.3 KiB
TypeScript

//// [collisionSuperAndLocalVarInProperty.ts]
var _super = 10; // No Error
class Foo {
public prop1 = {
doStuff: () => {
var _super = 10; // No error
}
}
public _super = 10; // No error
}
class b extends Foo {
public prop2 = {
doStuff: () => {
var _super = 10; // Should be error
}
}
public _super = 10; // No error
}
//// [collisionSuperAndLocalVarInProperty.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; }
__.prototype = b.prototype;
d.prototype = new __();
};
var _super = 10; // No Error
var Foo = (function () {
function Foo() {
this.prop1 = {
doStuff: function () {
var _super = 10; // No error
}
};
this._super = 10; // No error
}
return Foo;
})();
var b = (function (_super) {
__extends(b, _super);
function b() {
_super.apply(this, arguments);
this.prop2 = {
doStuff: function () {
var _super = 10; // Should be error
}
};
this._super = 10; // No error
}
return b;
})(Foo);