TypeScript/tests/baselines/reference/ternaryExpressionSourceMap.js

9 lines
260 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [ternaryExpressionSourceMap.ts]
var x = 1;
var foo = x ? () => 0 : () => 0;
//// [ternaryExpressionSourceMap.js]
var x = 1;
var foo = x ? function () { return 0; } : function () { return 0; };
2014-07-13 01:04:16 +02:00
//# sourceMappingURL=ternaryExpressionSourceMap.js.map