swc/crates/swc_ecma_parser/tests/tsc/templateStringWithEmbeddedCommentsES6.ts

13 lines
129 B
TypeScript

// @target: ES6
`head${ // single line comment
10
}
middle${
/* Multi-
* line
* comment
*/
20
// closing comment
}
tail`;