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

13 lines
220 B
JavaScript

//// [parserComputedPropertyName12.ts]
class C {
[e]() { }
}
//// [parserComputedPropertyName12.js]
var C = (function () {
function C() {
}
C.prototype[e] = function () { };
return C;
})();