TypeScript/tests/baselines/reference/computedPropertyNames3_ES6.js

41 lines
998 B
JavaScript
Raw Normal View History

//// [computedPropertyNames3_ES6.ts]
2015-01-06 23:19:43 +01:00
var id;
class C {
[0 + 1]() { }
static [() => { }]() { }
get [delete id]() { }
set [[0, 1]](v) { }
static get [<String>""]() { }
static set [id.toString()](v) { }
}
//// [computedPropertyNames3_ES6.js]
2015-01-06 23:19:43 +01:00
var id;
var C = (function () {
function C() {
}
C.prototype[0 + 1] = function () { };
C[() => { }] = function () { };
2015-01-06 23:19:43 +01:00
Object.defineProperty(C.prototype, delete id, {
get: function () { },
2015-01-06 23:19:43 +01:00
enumerable: true,
configurable: true
});
Object.defineProperty(C.prototype, [0, 1], {
set: function (v) { },
2015-01-06 23:19:43 +01:00
enumerable: true,
configurable: true
});
Object.defineProperty(C, "", {
get: function () { },
2015-01-06 23:19:43 +01:00
enumerable: true,
configurable: true
});
Object.defineProperty(C, id.toString(), {
set: function (v) { },
2015-01-06 23:19:43 +01:00
enumerable: true,
configurable: true
});
return C;
})();