TypeScript/tests/baselines/reference/templateStringInFunctionExpression.types

16 lines
360 B
Plaintext
Raw Normal View History

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