TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpression.js

6 lines
217 B
TypeScript

//// [templateStringWithEmbeddedFunctionExpression.ts]
var x = `abc${ function y() { return y; } }def`;
//// [templateStringWithEmbeddedFunctionExpression.js]
var x = "abc" + function y() { return y; } + "def";