TypeScript/tests/baselines/reference/templateStringWithEmbeddedTypeOfOperatorES6.types

8 lines
290 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedTypeOfOperatorES6.ts ===
var x = `abc${ typeof "hi" }def`;
2015-04-13 23:01:57 +02:00
>x : string, Symbol(x, Decl(templateStringWithEmbeddedTypeOfOperatorES6.ts, 0, 3))
2015-04-13 21:36:11 +02:00
>`abc${ typeof "hi" }def` : string
>typeof "hi" : string
2015-04-13 21:36:11 +02:00
>"hi" : string