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

17 lines
255 B
TypeScript

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