TypeScript/tests/baselines/reference/templateStringWithOpenCommentInStringPortion.js

6 lines
243 B
TypeScript
Raw Normal View History

//// [templateStringWithOpenCommentInStringPortion.ts]
` /**head ${ 10 } // still middle ${ 20 } /* still tail `
//// [templateStringWithOpenCommentInStringPortion.js]
" /**head " + 10 + " // still middle " + 20 + " /* still tail ";