TypeScript/tests/baselines/reference/templateStringWithEmbeddedObjectLiteralES6.js

6 lines
188 B
TypeScript

//// [templateStringWithEmbeddedObjectLiteralES6.ts]
var x = `abc${ { x: 10, y: 20 } }def`;
//// [templateStringWithEmbeddedObjectLiteralES6.js]
var x = `abc${{ x: 10, y: 20 }}def`;