File: incompatibleTypes.types

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (189 lines) | stat: -rw-r--r-- 3,835 bytes parent folder | download | duplicates (4)
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
=== tests/cases/compiler/incompatibleTypes.ts ===
interface IFoo1 {
    p1(): number;
>p1 : () => number
}

class C1 implements IFoo1 { // incompatible on the return type
>C1 : C1

    public p1() {
>p1 : () => string

        return "s";
>"s" : "s"
    }
}

interface IFoo2 {
    p1(s:string): number;
>p1 : (s: string) => number
>s : string
}

class C2 implements IFoo2 { // incompatible on the param type
>C2 : C2

    public p1(n:number) {
>p1 : (n: number) => number
>n : number

        return 0;
>0 : 0
    }
}

interface IFoo3 {
    p1: string;
>p1 : string
}

class C3 implements IFoo3 { // incompatible on the property type
>C3 : C3

    public p1: number;
>p1 : number
}

interface IFoo4 {
    p1: { a: { a: string; }; b: string; };
>p1 : { a: {    a: string;}; b: string; }
>a : { a: string; }
>a : string
>b : string
}

class C4 implements IFoo4 { // incompatible on the property type
>C4 : C4

    public p1: { c: { b: string; }; d: string; };
>p1 : { c: {    b: string;}; d: string; }
>c : { b: string; }
>b : string
>d : string
}

function if1(i: IFoo1): void;
>if1 : { (i: IFoo1): void; (i: IFoo2): void; }
>i : IFoo1

function if1(i: IFoo2): void;
>if1 : { (i: IFoo1): void; (i: IFoo2): void; }
>i : IFoo2

function if1(a: any) { }
>if1 : { (i: IFoo1): void; (i: IFoo2): void; }
>a : any

var c1: C1;
>c1 : C1

var c2: C2;
>c2 : C2

if1(c1);
>if1(c1) : void
>if1 : { (i: IFoo1): void; (i: IFoo2): void; }
>c1 : C1


function of1(n: { a: { a: string; }; b: string; }): number;
>of1 : { (n: {    a: {        a: string;    };    b: string;}): number; (s: { c: { b: string; }; d: string; }): string; }
>n : { a: {    a: string;}; b: string; }
>a : { a: string; }
>a : string
>b : string

function of1(s: { c: { b: string; }; d: string; }): string;
>of1 : { (n: { a: { a: string; }; b: string; }): number; (s: {    c: {        b: string;    };    d: string;}): string; }
>s : { c: {    b: string;}; d: string; }
>c : { b: string; }
>b : string
>d : string

function of1(a: any) { return null; }
>of1 : { (n: { a: { a: string; }; b: string; }): number; (s: { c: { b: string; }; d: string; }): string; }
>a : any
>null : null

of1({ e: 0, f: 0 });
>of1({ e: 0, f: 0 }) : never
>of1 : { (n: { a: { a: string; }; b: string; }): number; (s: { c: { b: string; }; d: string; }): string; }
>{ e: 0, f: 0 } : { e: number; f: number; }
>e : number
>0 : 0
>f : number
>0 : 0

interface IMap {
 [key:string]:string;
>key : string
}

function foo(fn:() => void) {
>foo : (fn: () => void) => void
>fn : () => void
 
}

function bar() {
>bar : () => void

 var map:IMap;
>map : IMap

 foo(() => {
>foo(() => {  map = {}; }) : void
>foo : (fn: () => void) => void
>() => {  map = {}; } : () => void

  map = {};
>map = {} : {}
>map : IMap
>{} : {}

 });
}

var o1: { a: { a: string; }; b: string; } = { e: 0, f: 0 };
>o1 : { a: {    a: string;}; b: string; }
>a : { a: string; }
>a : string
>b : string
>{ e: 0, f: 0 } : { e: number; f: number; }
>e : number
>0 : 0
>f : number
>0 : 0

var a1 = [{ e: 0, f: 0 }, { e: 0, f: 0 }, { e: 0, g: 0 }];
>a1 : ({ e: number; f: number; g?: undefined; } | { e: number; g: number; f?: undefined; })[]
>[{ e: 0, f: 0 }, { e: 0, f: 0 }, { e: 0, g: 0 }] : ({ e: number; f: number; } | { e: number; g: number; })[]
>{ e: 0, f: 0 } : { e: number; f: number; }
>e : number
>0 : 0
>f : number
>0 : 0
>{ e: 0, f: 0 } : { e: number; f: number; }
>e : number
>0 : 0
>f : number
>0 : 0
>{ e: 0, g: 0 } : { e: number; g: number; }
>e : number
>0 : 0
>g : number
>0 : 0



var i1c1: { (): string; } = 5;
>i1c1 : () => string
>5 : 5

var fp1: () =>any = a => 0;
>fp1 : () => any
>a => 0 : (a: any) => number
>a : any
>0 : 0