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

17 lines
249 B
TypeScript

//// [templateStringWithEmbeddedComments.ts]
`head${ // single line comment
10
}
middle${
/* Multi-
* line
* comment
*/
20
// closing comment
}
tail`;
//// [templateStringWithEmbeddedComments.js]
"head" + 10 + "\nmiddle" + 20 + "\ntail";