TypeScript/tests/baselines/reference/templateStringWithEmbeddedConditional.types
Daniel Rosenwasser e7096280b4 Added support for tagged template strings, updated baselines.
Still need to implement some error recovery and add tests.
2014-10-23 16:54:11 -07:00

6 lines
185 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedConditional.ts ===
var x = `abc${ true ? false : " " }def`;
>x : string
>true ? false : " " : string | boolean