TypeScript/tests/baselines/reference/computedPropertyNames21.js

20 lines
334 B
JavaScript
Raw Normal View History

//// [computedPropertyNames21.ts]
class C {
bar() {
return 0;
}
[this.bar()]() { }
}
//// [computedPropertyNames21.js]
var C = (function () {
function C() {
}
C.prototype.bar = function () {
return 0;
};
C.prototype[this.bar()] = function () {
};
return C;
})();