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

6 lines
200 B
TypeScript

//// [templateStringWithEmbeddedInstanceOfES6.ts]
var x = `abc${ "hello" instanceof String }def`;
//// [templateStringWithEmbeddedInstanceOfES6.js]
var x = `abc${"hello" instanceof String}def`;