TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunction.types

9 lines
416 B
Plaintext
Raw Normal View History

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