TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpressionES6.js

6 lines
218 B
TypeScript

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