TypeScript/tests/baselines/reference/taggedTemplateStringsHexadecimalEscapesES6.types

13 lines
348 B
Plaintext
Raw Normal View History

2015-02-21 14:48:10 +01:00
=== tests/cases/compiler/taggedTemplateStringsHexadecimalEscapesES6.ts ===
function f(...args: any[]) {
>f : (...args: any[]) => void
>args : any[]
2015-02-21 14:48:10 +01:00
}
f `\x0D${ "Interrupted CRLF" }\x0A`;
2015-04-13 21:36:11 +02:00
>f `\x0D${ "Interrupted CRLF" }\x0A` : void
>f : (...args: any[]) => void
2015-04-13 21:36:11 +02:00
>`\x0D${ "Interrupted CRLF" }\x0A` : string
>"Interrupted CRLF" : string
2015-02-21 14:48:10 +01:00