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

9 lines
297 B
Plaintext

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