TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpressionES6.symbols
2015-04-15 16:44:20 -07:00

7 lines
392 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.ts ===
var x = `abc${ function y() { return y; } }def`;
>x : Symbol(x, Decl(templateStringWithEmbeddedFunctionExpressionES6.ts, 0, 3))
>y : Symbol(y, Decl(templateStringWithEmbeddedFunctionExpressionES6.ts, 0, 14))
>y : Symbol(y, Decl(templateStringWithEmbeddedFunctionExpressionES6.ts, 0, 14))