TypeScript/tests/baselines/reference/computedPropertyNamesSourceMap2_ES5.js
2015-02-23 17:44:48 -08:00

16 lines
314 B
TypeScript

//// [computedPropertyNamesSourceMap2_ES5.ts]
var v = {
["hello"]() {
debugger;
}
}
//// [computedPropertyNamesSourceMap2_ES5.js]
var v = (_a = {},
_a["hello"] = function () {
debugger;
},
_a
);
var _a;
//# sourceMappingURL=computedPropertyNamesSourceMap2_ES5.js.map