TypeScript/tests/baselines/reference/twoAccessorsWithSameName.js

86 lines
1.3 KiB
TypeScript

//// [twoAccessorsWithSameName.ts]
class C {
get x() { return 1; }
get x() { return 1; } // error
}
class D {
set x(v) { }
set x(v) { } // error
}
class E {
get x() {
return 1;
}
set x(v) { }
}
var x = {
get x() {
return 1;
},
// error
get x() {
return 1;
}
}
var y = {
get x() {
return 1;
},
set x(v) { }
}
//// [twoAccessorsWithSameName.js]
var C = (function () {
function C() {
}
Object.defineProperty(C.prototype, "x", {
get: function () { return 1; },
enumerable: true,
configurable: true
});
return C;
})();
var D = (function () {
function D() {
}
Object.defineProperty(D.prototype, "x", {
set: function (v) { },
enumerable: true,
configurable: true
});
return D;
})();
var E = (function () {
function E() {
}
Object.defineProperty(E.prototype, "x", {
get: function () {
return 1;
},
set: function (v) { },
enumerable: true,
configurable: true
});
return E;
})();
var x = {
get x() {
return 1;
},
// error
get x() {
return 1;
}
};
var y = {
get x() {
return 1;
},
set x(v) { }
};