1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
=== tests/cases/compiler/destructureTupleWithVariableElement.ts ===
// repro from #52302
type NonEmptyStringArray = [string, ...Array<string>]
>NonEmptyStringArray : [string, ...string[]]
const strings: NonEmptyStringArray = ['one', 'two']
>strings : [string, ...string[]]
>['one', 'two'] : [string, string]
>'one' : "one"
>'two' : "two"
const [s0, s1, s2] = strings;
>s0 : string
>s1 : string | undefined
>s2 : string | undefined
>strings : [string, ...string[]]
s0.toUpperCase()
>s0.toUpperCase() : string
>s0.toUpperCase : () => string
>s0 : string
>toUpperCase : () => string
s1.toUpperCase()
>s1.toUpperCase() : string
>s1.toUpperCase : () => string
>s1 : string | undefined
>toUpperCase : () => string
s2.toUpperCase()
>s2.toUpperCase() : string
>s2.toUpperCase : () => string
>s2 : string | undefined
>toUpperCase : () => string
declare const strings2: [string, ...Array<string>, string]
>strings2 : [string, ...string[], string]
const [s3, s4, s5] = strings2;
>s3 : string
>s4 : string | undefined
>s5 : string | undefined
>strings2 : [string, ...string[], string]
s3.toUpperCase()
>s3.toUpperCase() : string
>s3.toUpperCase : () => string
>s3 : string
>toUpperCase : () => string
s4.toUpperCase()
>s4.toUpperCase() : string
>s4.toUpperCase : () => string
>s4 : string
>toUpperCase : () => string
s5.toUpperCase()
>s5.toUpperCase() : string
>s5.toUpperCase : () => string
>s5 : string | undefined
>toUpperCase : () => string
|