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

6 lines
188 B
JavaScript

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