TypeScript/tests/baselines/reference/taggedTemplateStringsWithUnicodeEscapes.types

13 lines
633 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/taggedTemplateStringsWithUnicodeEscapes.ts ===
function f(...args: any[]) {
2015-04-13 23:01:57 +02:00
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsWithUnicodeEscapes.ts, 0, 0))
>args : any[], Symbol(args, Decl(taggedTemplateStringsWithUnicodeEscapes.ts, 0, 11))
}
f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'`;
2015-04-13 21:36:11 +02:00
>f `'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : void
2015-04-13 23:01:57 +02:00
>f : (...args: any[]) => void, Symbol(f, Decl(taggedTemplateStringsWithUnicodeEscapes.ts, 0, 0))
2015-04-13 21:36:11 +02:00
>`'\u{1f4a9}'${ " should be converted to " }'\uD83D\uDCA9'` : string
>" should be converted to " : string