TypeScript/tests/baselines/reference/templateStringWithOpenCommentInStringPortionES6.js

6 lines
239 B
TypeScript
Raw Normal View History

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