TypeScript/tests/baselines/reference/templateStringWithEmbeddedTemplateStringES6.js

6 lines
256 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedTemplateStringES6.ts]
var x = `123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321`;
//// [templateStringWithEmbeddedTemplateStringES6.js]
var x = `123${`456 ${" | "} 654`}321 123${`456 ${" | "} 654`}321`;