TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpression.types

9 lines
284 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpression.ts ===
var x = `abc${ function y() { return y; } }def`;
>x : string
2015-04-13 21:36:11 +02:00
>`abc${ function y() { return y; } }def` : string
>function y() { return y; } : () => any
>y : () => any
>y : () => any