File: constructSignatureAssignabilityInInheritance6.types

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (209 lines) | stat: -rw-r--r-- 3,512 bytes parent folder | download | duplicates (2)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
=== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance6.ts ===
// checking subtype relations for function types as it relates to contextual signature instantiation
// same as subtypingWithConstructSignatures4 but using class type parameters instead of generic signatures
// all are errors

class Base { foo: string; }
>Base : Base
>foo : string

class Derived extends Base { bar: string; }
>Derived : Derived
>Base : Base
>bar : string

class Derived2 extends Derived { baz: string; }
>Derived2 : Derived2
>Derived : Derived
>baz : string

class OtherDerived extends Base { bing: string; }
>OtherDerived : OtherDerived
>Base : Base
>bing : string

interface A { // T
>A : A

    // M's
    a: new <T>(x: T) => T[];
>a : new <T>(x: T) => T[]
>T : T
>x : T
>T : T
>T : T

    a2: new <T>(x: T) => string[];
>a2 : new <T>(x: T) => string[]
>T : T
>x : T
>T : T

    a3: new <T>(x: T) => void;
>a3 : new <T>(x: T) => void
>T : T
>x : T
>T : T

    a4: new <T, U>(x: T, y: U) => string;
>a4 : new <T, U>(x: T, y: U) => string
>T : T
>U : U
>x : T
>T : T
>y : U
>U : U

    a5: new <T, U>(x: (arg: T) => U) => T;
>a5 : new <T, U>(x: (arg: T) => U) => T
>T : T
>U : U
>x : (arg: T) => U
>arg : T
>T : T
>U : U
>T : T

    a6: new <T extends Base>(x: (arg: T) => Derived) => T;
>a6 : new <T extends Base>(x: (arg: T) => Derived) => T
>T : T
>Base : Base
>x : (arg: T) => Derived
>arg : T
>T : T
>Derived : Derived
>T : T

    a11: new <T>(x: { foo: T }, y: { foo: T; bar: T }) => Base;
>a11 : new <T>(x: { foo: T; }, y: { foo: T; bar: T; }) => Base
>T : T
>x : { foo: T; }
>foo : T
>T : T
>y : { foo: T; bar: T; }
>foo : T
>T : T
>bar : T
>T : T
>Base : Base

    a15: new <T>(x: { a: T; b: T }) => T[];
>a15 : new <T>(x: { a: T; b: T; }) => T[]
>T : T
>x : { a: T; b: T; }
>a : T
>T : T
>b : T
>T : T
>T : T

    a16: new <T extends Base>(x: { a: T; b: T }) => T[];
>a16 : new <T extends Base>(x: { a: T; b: T; }) => T[]
>T : T
>Base : Base
>x : { a: T; b: T; }
>a : T
>T : T
>b : T
>T : T
>T : T
}

// S's
interface I<T> extends A {
>I : I<T>
>T : T
>A : A

    a: new (x: T) => T[]; 
>a : new (x: T) => T[]
>x : T
>T : T
>T : T
}

interface I2<T> extends A {
>I2 : I2<T>
>T : T
>A : A

    a2: new (x: T) => string[]; 
>a2 : new (x: T) => string[]
>x : T
>T : T
}

interface I3<T> extends A {
>I3 : I3<T>
>T : T
>A : A

    a3: new (x: T) => T;
>a3 : new (x: T) => T
>x : T
>T : T
>T : T
}

interface I4<T> extends A {
>I4 : I4<T>
>T : T
>A : A

    a4: new <U>(x: T, y: U) => string; 
>a4 : new <U>(x: T, y: U) => string
>U : U
>x : T
>T : T
>y : U
>U : U
}

interface I5<T> extends A {
>I5 : I5<T>
>T : T
>A : A

    a5: new <U>(x: (arg: T) => U) => T; 
>a5 : new <U>(x: (arg: T) => U) => T
>U : U
>x : (arg: T) => U
>arg : T
>T : T
>U : U
>T : T
}

interface I7<T> extends A {
>I7 : I7<T>
>T : T
>A : A

    a11: new <U>(x: { foo: T }, y: { foo: U; bar: U }) => Base; 
>a11 : new <U>(x: { foo: T; }, y: { foo: U; bar: U; }) => Base
>U : U
>x : { foo: T; }
>foo : T
>T : T
>y : { foo: U; bar: U; }
>foo : U
>U : U
>bar : U
>U : U
>Base : Base
}

interface I9<T> extends A {
>I9 : I9<T>
>T : T
>A : A

    a16: new (x: { a: T; b: T }) => T[]; 
>a16 : new (x: { a: T; b: T; }) => T[]
>x : { a: T; b: T; }
>a : T
>T : T
>b : T
>T : T
>T : T
}