TypeScript/tests/baselines/reference/templateStringWithEmbeddedObjectLiteral.js

5 lines
187 B
TypeScript

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