TypeScript/tests/baselines/reference/taggedTemplateStringsHexadecimalEscapesES6.types

13 lines
562 B
Plaintext
Raw Normal View History

2015-02-21 14:48:10 +01:00
=== tests/cases/compiler/taggedTemplateStringsHexadecimalEscapesES6.ts ===
function f(...args: any[]) {
2015-04-13 23:01:57 +02:00
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 0))
>args : any[], Symbol(args, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 11))
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
2015-04-13 23:01:57 +02:00
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 0))
2015-04-13 21:36:11 +02:00
>`\x0D${ "Interrupted CRLF" }\x0A` : string
>"Interrupted CRLF" : string
2015-02-21 14:48:10 +01:00