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

7 lines
380 B
Plaintext

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