TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditional.js
2014-10-23 15:06:05 -07:00

6 lines
189 B
TypeScript

//// [templateStringWithEmbeddedConditional.ts]
var x = `abc${ true ? false : " " }def`;
//// [templateStringWithEmbeddedConditional.js]
var x = "abc" + (true ? false : " ") + "def";