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

14 lines
No EOL
285 B
JavaScript

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