TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditionalES6.js

6 lines
188 B
TypeScript
Raw Normal View History

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