TypeScript/tests/baselines/reference/templateStringWithEmbeddedFunctionExpressionES6.js
2014-10-23 15:06:05 -07:00

7 lines
224 B
JavaScript

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