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

12 lines
246 B
JavaScript

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