TypeScript/tests/baselines/reference/templateStringWithEmbeddedComments.types
Daniel Rosenwasser cce4bfbc7c
Revert changes for template literal types, keeping tests. (#42588)
* Revert changes for template literal types, keeping tests.

* Update Baselines and/or Applied Lint Fixes

Co-authored-by: TypeScript Bot <typescriptbot@microsoft.com>
2021-02-03 14:49:03 -08:00

19 lines
342 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 : 10
}
middle${
/* Multi-
* line
* comment
*/
20
>20 : 20
// closing comment
}
tail`;