TypeScript/tests/baselines/reference/templateStringInTaggedTemplate.js

7 lines
307 B
TypeScript
Raw Normal View History

//// [templateStringInTaggedTemplate.ts]
`I AM THE ${ `${ `TAG` } ` } PORTION` `I ${ "AM" } THE TEMPLATE PORTION`
//// [templateStringInTaggedTemplate.js]
(_a = ["I ", " THE TEMPLATE PORTION"], _a.raw = ["I ", " THE TEMPLATE PORTION"], ("I AM THE " + "TAG" + " " + " PORTION")(_a, "AM"));
2015-02-06 17:02:30 +01:00
var _a;