File: typeParameterConstrainedToOuterTypeParameter.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (32 lines) | stat: -rw-r--r-- 1,620 bytes parent folder | download | duplicates (7)
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
=== tests/cases/compiler/typeParameterConstrainedToOuterTypeParameter.ts ===
interface A<T> {
>A : Symbol(A, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 0))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 12))

    <U extends T>(x: U[])
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 5))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 12))
>x : Symbol(x, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 18))
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 1, 5))
}

interface B<T> {
>B : Symbol(B, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 2, 1))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 4, 12))

    <U extends T>(x: U)
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 5))
>T : Symbol(T, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 4, 12))
>x : Symbol(x, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 18))
>U : Symbol(U, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 5, 5))
}

var a: A<string>
>a : Symbol(a, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 8, 3))
>A : Symbol(A, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 0, 0))

var b: B<string> = a; // assignment should be legal (both U's get instantiated to any for comparison)
>b : Symbol(b, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 9, 3))
>B : Symbol(B, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 2, 1))
>a : Symbol(a, Decl(typeParameterConstrainedToOuterTypeParameter.ts, 8, 3))