TypeScript/tests/baselines/reference/computedPropertyNamesSourceMap1_ES5.js
2015-02-03 17:43:31 -08:00

17 lines
356 B
TypeScript

//// [computedPropertyNamesSourceMap1_ES5.ts]
class C {
["hello"]() {
debugger;
}
}
//// [computedPropertyNamesSourceMap1_ES5.js]
var C = (function () {
function C() {
}
C.prototype["hello"] = function () {
debugger;
};
return C;
})();
//# sourceMappingURL=computedPropertyNamesSourceMap1_ES5.js.map