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

6 lines
270 B
TypeScript

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