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

6 lines
187 B
JavaScript

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