TypeScript/tests/baselines/reference/templateStringWithEmbeddedComments.types
2015-04-13 12:36:11 -07:00

19 lines
350 B
Plaintext

=== tests/cases/conformance/es6/templates/templateStringWithEmbeddedComments.ts ===
`head${ // single line comment
>`head${ // single line comment10}middle${/* Multi- * line * comment */ 20 // closing comment}tail` : string
10
>10 : number
}
middle${
/* Multi-
* line
* comment
*/
20
>20 : number
// closing comment
}
tail`;