TypeScript/tests/baselines/reference/templateStringWithEmbeddedInOperator.js

9 lines
219 B
TypeScript
Raw Normal View History

//// [templateStringWithEmbeddedInOperator.ts]
var x = `abc${ "hi" in { hi: 10, hello: 20} }def`;
//// [templateStringWithEmbeddedInOperator.js]
var x = "abc" + ("hi" in {
hi: 10,
hello: 20
}) + "def";