TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunction.js

5 lines
187 B
TypeScript

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