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

9 lines
306 B
Plaintext

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