TypeScript/tests/baselines/reference/templateStringWithEmbeddedArrowFunction.js

6 lines
187 B
JavaScript
Raw Normal View History

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