TypeScript/tests/baselines/reference/getAndSetNotIdenticalType.js

23 lines
439 B
TypeScript

//// [getAndSetNotIdenticalType.ts]
class C {
get x(): number {
return 1;
}
set x(v: string) { }
}
//// [getAndSetNotIdenticalType.js]
var C = (function () {
function C() {
}
Object.defineProperty(C.prototype, "x", {
get: function () {
return 1;
},
set: function (v) { },
enumerable: true,
configurable: true
});
return C;
})();