TypeScript/tests/baselines/reference/templateStringWithEmbeddedInstanceOfES6.js

6 lines
200 B
TypeScript
Raw Normal View History

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