TypeScript/tests/baselines/reference/thisInAccessors.js

87 lines
2 KiB
TypeScript

//// [thisInAccessors.ts]
// this capture only in getter
class GetterOnly {
get Value() {
var fn = () => this;
return '';
}
set Value(val) {
}
}
// this capture only in setter
class SetterOnly {
get Value() {
return '';
}
set Value(val) {
var fn = () => this;
}
}
// this capture only in both setter and getter
class GetterAndSetter {
get Value() {
var fn = () => this;
return '';
}
set Value(val) {
var fn = () => this;
}
}
//// [thisInAccessors.js]
// this capture only in getter
var GetterOnly = (function () {
function GetterOnly() {
}
Object.defineProperty(GetterOnly.prototype, "Value", {
get: function () {
var _this = this;
var fn = function () { return _this; };
return '';
},
set: function (val) {
},
enumerable: true,
configurable: true
});
return GetterOnly;
})();
// this capture only in setter
var SetterOnly = (function () {
function SetterOnly() {
}
Object.defineProperty(SetterOnly.prototype, "Value", {
get: function () {
return '';
},
set: function (val) {
var _this = this;
var fn = function () { return _this; };
},
enumerable: true,
configurable: true
});
return SetterOnly;
})();
// this capture only in both setter and getter
var GetterAndSetter = (function () {
function GetterAndSetter() {
}
Object.defineProperty(GetterAndSetter.prototype, "Value", {
get: function () {
var _this = this;
var fn = function () { return _this; };
return '';
},
set: function (val) {
var _this = this;
var fn = function () { return _this; };
},
enumerable: true,
configurable: true
});
return GetterAndSetter;
})();