TypeScript/tests/baselines/reference/templateStringWithEmbeddedTemplateString.types

10 lines
357 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTemplateString.ts ===
var x = `123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321`;
>x : string
2015-04-13 21:36:11 +02:00
>`123${ `456 ${ " | " } 654` }321 123${ `456 ${ " | " } 654` }321` : string
>`456 ${ " | " } 654` : string
>" | " : string
>`456 ${ " | " } 654` : string
>" | " : string