TypeScript/tests/baselines/reference/computedPropertyNames23.js
2015-02-06 18:45:09 -08:00

21 lines
367 B
JavaScript

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