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

8 lines
223 B
JavaScript

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