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

41 lines
990 B
JavaScript

//// [computedPropertyNames3.ts]
var id;
class C {
[0 + 1]() { }
static [() => { }]() { }
get [delete id]() { }
set [[0, 1]](v) { }
static get [<String>""]() { }
static set [id.toString()](v) { }
}
//// [computedPropertyNames3.js]
var id;
var C = (function () {
function C() {
}
C.prototype[0 + 1] = function () { };
C[() => { }] = function () { };
Object.defineProperty(C.prototype, delete id, {
get: function () { },
enumerable: true,
configurable: true
});
Object.defineProperty(C.prototype, [0, 1], {
set: function (v) { },
enumerable: true,
configurable: true
});
Object.defineProperty(C, "", {
get: function () { },
enumerable: true,
configurable: true
});
Object.defineProperty(C, id.toString(), {
set: function (v) { },
enumerable: true,
configurable: true
});
return C;
})();