TypeScript/tests/baselines/reference/taggedTemplateStringsHexadecimalEscapesES6.types
2015-04-13 14:29:37 -07:00

13 lines
562 B
Plaintext

=== tests/cases/compiler/taggedTemplateStringsHexadecimalEscapesES6.ts ===
function f(...args: any[]) {
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 0))
>args : any[], Symbol(args, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 11))
}
f `\x0D${ "Interrupted CRLF" }\x0A`;
>f `\x0D${ "Interrupted CRLF" }\x0A` : void
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsHexadecimalEscapesES6.ts, 0, 0))
>`\x0D${ "Interrupted CRLF" }\x0A` : string
>"Interrupted CRLF" : string