TypeScript/tests/baselines/reference/templateStringInTaggedTemplate.js
Ivo Gabe de Wolff 8e16e1d010 Update baselines
2015-02-07 12:13:17 +01:00

6 lines
305 B
JavaScript

//// [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"));
var _a;