TypeScript/tests/baselines/reference/parserComputedPropertyName33.js

18 lines
262 B
JavaScript
Raw Normal View History

//// [parserComputedPropertyName33.ts]
class C {
// No ASI
[e] = 0
[e2]() { }
}
//// [parserComputedPropertyName33.js]
var C = (function () {
function C() {
// No ASI
this[e] = 0[e2]();
}
return C;
})();
{
}