File: missingTypeArguments3.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 (172 lines) | stat: -rw-r--r-- 9,097 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
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
=== tests/cases/compiler/missingTypeArguments3.ts ===
declare module linq {
>linq : Symbol(linq, Decl(missingTypeArguments3.ts, 0, 0))

    interface Enumerable<T> {
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))

        OrderByDescending(keySelector?: string): OrderedEnumerable<T>;
>OrderByDescending : Symbol(Enumerable.OrderByDescending, Decl(missingTypeArguments3.ts, 2, 29))
>keySelector : Symbol(keySelector, Decl(missingTypeArguments3.ts, 3, 26))
>OrderedEnumerable : Symbol(OrderedEnumerable, Decl(missingTypeArguments3.ts, 7, 5))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))

        GroupBy<TKey>(keySelector: (element: T) => TKey): Enumerable<Grouping<TKey, T>>;
>GroupBy : Symbol(Enumerable.GroupBy, Decl(missingTypeArguments3.ts, 3, 70), Decl(missingTypeArguments3.ts, 4, 88))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 4, 16))
>keySelector : Symbol(keySelector, Decl(missingTypeArguments3.ts, 4, 22))
>element : Symbol(element, Decl(missingTypeArguments3.ts, 4, 36))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 4, 16))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>Grouping : Symbol(Grouping, Decl(missingTypeArguments3.ts, 11, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 4, 16))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))

        GroupBy<TKey, TElement>(keySelector: (element: T) => TKey, elementSelector: (element: T) => TElement): Enumerable<Grouping<TKey, TElement>>;
>GroupBy : Symbol(Enumerable.GroupBy, Decl(missingTypeArguments3.ts, 3, 70), Decl(missingTypeArguments3.ts, 4, 88))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 5, 16))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 5, 21))
>keySelector : Symbol(keySelector, Decl(missingTypeArguments3.ts, 5, 32))
>element : Symbol(element, Decl(missingTypeArguments3.ts, 5, 46))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 5, 16))
>elementSelector : Symbol(elementSelector, Decl(missingTypeArguments3.ts, 5, 66))
>element : Symbol(element, Decl(missingTypeArguments3.ts, 5, 85))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 5, 21))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>Grouping : Symbol(Grouping, Decl(missingTypeArguments3.ts, 11, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 5, 16))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 5, 21))

        ToDictionary<TKey>(keySelector: (element: T) => TKey): Dictionary<TKey, T>;
>ToDictionary : Symbol(Enumerable.ToDictionary, Decl(missingTypeArguments3.ts, 5, 148))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 6, 21))
>keySelector : Symbol(keySelector, Decl(missingTypeArguments3.ts, 6, 27))
>element : Symbol(element, Decl(missingTypeArguments3.ts, 6, 41))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 6, 21))
>Dictionary : Symbol(Dictionary, Decl(missingTypeArguments3.ts, 22, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 6, 21))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 2, 25))
    }

    interface OrderedEnumerable<T> extends Enumerable<T> {
>OrderedEnumerable : Symbol(OrderedEnumerable, Decl(missingTypeArguments3.ts, 7, 5))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 9, 32))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 9, 32))

        ThenBy<TCompare>(keySelector: (element: T) => TCompare): OrderedEnumerable<T>; // used to incorrectly think this was missing a type argument
>ThenBy : Symbol(OrderedEnumerable.ThenBy, Decl(missingTypeArguments3.ts, 9, 58))
>TCompare : Symbol(TCompare, Decl(missingTypeArguments3.ts, 10, 15))
>keySelector : Symbol(keySelector, Decl(missingTypeArguments3.ts, 10, 25))
>element : Symbol(element, Decl(missingTypeArguments3.ts, 10, 39))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 9, 32))
>TCompare : Symbol(TCompare, Decl(missingTypeArguments3.ts, 10, 15))
>OrderedEnumerable : Symbol(OrderedEnumerable, Decl(missingTypeArguments3.ts, 7, 5))
>T : Symbol(T, Decl(missingTypeArguments3.ts, 9, 32))
    }

    interface Grouping<TKey, TElement> extends Enumerable<TElement> {
>Grouping : Symbol(Grouping, Decl(missingTypeArguments3.ts, 11, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 13, 23))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 13, 28))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 13, 28))

        Key(): TKey;
>Key : Symbol(Grouping.Key, Decl(missingTypeArguments3.ts, 13, 69))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 13, 23))
    }

    interface Lookup<TKey, TElement> {
>Lookup : Symbol(Lookup, Decl(missingTypeArguments3.ts, 15, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 17, 21))
>TElement : Symbol(TElement, Decl(missingTypeArguments3.ts, 17, 26))

        Count(): number;
>Count : Symbol(Lookup.Count, Decl(missingTypeArguments3.ts, 17, 38))

        Get(key): Enumerable<any>;
>Get : Symbol(Lookup.Get, Decl(missingTypeArguments3.ts, 18, 24))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 19, 12))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))

        Contains(key): boolean;
>Contains : Symbol(Lookup.Contains, Decl(missingTypeArguments3.ts, 19, 34))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 20, 17))

        ToEnumerable(): Enumerable<Grouping<TKey, any>>;
>ToEnumerable : Symbol(Lookup.ToEnumerable, Decl(missingTypeArguments3.ts, 20, 31))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>Grouping : Symbol(Grouping, Decl(missingTypeArguments3.ts, 11, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 17, 21))
    }

    interface Dictionary<TKey, TValue> {
>Dictionary : Symbol(Dictionary, Decl(missingTypeArguments3.ts, 22, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 24, 30))

        Add(key: TKey, value: TValue): void;
>Add : Symbol(Dictionary.Add, Decl(missingTypeArguments3.ts, 24, 40))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 25, 12))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))
>value : Symbol(value, Decl(missingTypeArguments3.ts, 25, 22))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 24, 30))

        Get(ke: TKey): TValue;
>Get : Symbol(Dictionary.Get, Decl(missingTypeArguments3.ts, 25, 44))
>ke : Symbol(ke, Decl(missingTypeArguments3.ts, 26, 12))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 24, 30))

        Set(key: TKey, value: TValue): boolean;
>Set : Symbol(Dictionary.Set, Decl(missingTypeArguments3.ts, 26, 30))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 27, 12))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))
>value : Symbol(value, Decl(missingTypeArguments3.ts, 27, 22))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 24, 30))

        Contains(key: TKey): boolean;
>Contains : Symbol(Dictionary.Contains, Decl(missingTypeArguments3.ts, 27, 47))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 28, 17))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))

        Clear(): void;
>Clear : Symbol(Dictionary.Clear, Decl(missingTypeArguments3.ts, 28, 37))

        Remove(key: TKey): void;
>Remove : Symbol(Dictionary.Remove, Decl(missingTypeArguments3.ts, 29, 22))
>key : Symbol(key, Decl(missingTypeArguments3.ts, 30, 15))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))

        Count(): number;
>Count : Symbol(Dictionary.Count, Decl(missingTypeArguments3.ts, 30, 32))

        ToEnumerable(): Enumerable<KeyValuePair<TKey, TValue>>;
>ToEnumerable : Symbol(Dictionary.ToEnumerable, Decl(missingTypeArguments3.ts, 31, 24))
>Enumerable : Symbol(Enumerable, Decl(missingTypeArguments3.ts, 0, 21))
>KeyValuePair : Symbol(KeyValuePair, Decl(missingTypeArguments3.ts, 33, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 24, 25))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 24, 30))
    }

    interface KeyValuePair<TKey, TValue> {
>KeyValuePair : Symbol(KeyValuePair, Decl(missingTypeArguments3.ts, 33, 5))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 35, 27))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 35, 32))

        Key: TKey;
>Key : Symbol(KeyValuePair.Key, Decl(missingTypeArguments3.ts, 35, 42))
>TKey : Symbol(TKey, Decl(missingTypeArguments3.ts, 35, 27))

        Value: TValue;
>Value : Symbol(KeyValuePair.Value, Decl(missingTypeArguments3.ts, 36, 18))
>TValue : Symbol(TValue, Decl(missingTypeArguments3.ts, 35, 32))
    }
}