TypeScript/tests/baselines/reference/computedPropertyNamesSourceMap1.js
2015-01-21 11:01:05 -08:00

17 lines
344 B
JavaScript

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