File: subtypingWithCallSignaturesWithSpecializedSignatures.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 (132 lines) | stat: -rw-r--r-- 2,827 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
=== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithSpecializedSignatures.ts ===
// same as subtypingWithCallSignatures but with additional specialized signatures that should not affect the results

module CallSignature {
    interface Base { // T
        // M's
        (x: 'a'): void;
>x : "a"

        (x: string, y: number): void;
>x : string
>y : number
    }

    // S's
    interface I extends Base {
        // N's
        (x: 'a'): number; // ok because base returns void
>x : "a"

        (x: string, y: number): number; // ok because base returns void
>x : string
>y : number

        <T>(x: T): string; // ok because base returns void
>x : T
    }

    interface Base2 { // T
        // M's
        (x: 'a'): number;
>x : "a"

        (x: string): number;
>x : string
    }

    // S's
    interface I2 extends Base2 {
        // N's
        (x: 'a'): string;
>x : "a"

        (x: string): string; // error because base returns non-void;
>x : string
    }

    // S's
    interface I3 extends Base2 {
        // N's
        <T>(x: T): string; // ok, adds a new call signature
>x : T
    }
}

module MemberWithCallSignature {
    interface Base { // T
        // M's
        a: {
>a : { (x: 'a'): void; (x: string): void; }

            (x: 'a'): void;
>x : "a"

            (x: string): void;
>x : string
        }
        a2: {
>a2 : { (x: 'a', y: number): void; (x: string, y: number): void; }

            (x: 'a', y: number): void;
>x : "a"
>y : number

            (x: string, y: number): void;
>x : string
>y : number
        }
        a3: <T>(x: T) => void;
>a3 : <T>(x: T) => void
>x : T
    }

    // S's
    interface I extends Base {
        // N's
        a: (x: string) => number; // ok because base returns void
>a : (x: string) => number
>x : string

        a2: (x: string, y: number) => boolean; // ok because base returns void
>a2 : (x: string, y: number) => boolean
>x : string
>y : number

        a3: <T>(x: T) => string; // ok because base returns void
>a3 : <T>(x: T) => string
>x : T
    }

    interface Base2 { // T
        // M's
        a: {
>a : { (x: 'a'): number; (x: string): number; }

            (x: 'a'): number;
>x : "a"

            (x: string): number;
>x : string
        }
        a2: <T>(x: T) => T;
>a2 : <T>(x: T) => T
>x : T
    }

    // S's
    interface I2 extends Base2 {
        // N's
        a: (x: string) => string; // error because base returns non-void;
>a : (x: string) => string
>x : string
    }

    // S's
    interface I3 extends Base2 {
        // N's
        a2: <T>(x: T) => string; // error because base returns non-void;
>a2 : <T>(x: T) => string
>x : T
    }
}