@@ -69,23 +69,34 @@ type namedType struct {
69
69
DataType string
70
70
}
71
71
72
+ type equalsI interface {
73
+ equals (equalsI ) bool
74
+ }
75
+
72
76
type funcData struct {
73
77
Params []namedType
74
78
Results []namedType
75
79
}
76
80
77
- type equalsI interface {
78
- equals (equalsI ) bool
79
- }
80
-
81
81
func (x funcData ) equals (yI equalsI ) bool {
82
82
y := yI .(funcData )
83
- return len (x .Params ) == len (y .Params ) &&
84
- len (x .Results ) == len (y .Results ) &&
85
- slices .Equal (x .Params , y .Params ) &&
83
+ return slices .Equal (x .Params , y .Params ) &&
86
84
slices .Equal (x .Results , y .Results )
87
85
}
88
86
87
+ type genericFuncData struct {
88
+ Params []namedType
89
+ Results []namedType
90
+ TypeParams []string
91
+ }
92
+
93
+ func (x genericFuncData ) equals (yI equalsI ) bool {
94
+ y := yI .(genericFuncData )
95
+ return slices .Equal (x .Params , y .Params ) &&
96
+ slices .Equal (x .Results , y .Results ) &&
97
+ slices .Equal (x .TypeParams , y .TypeParams )
98
+ }
99
+
89
100
type typeData struct {
90
101
Underlying string
91
102
}
@@ -102,6 +113,17 @@ func (x structDef) equals(yI equalsI) bool {
102
113
return slices .Equal (x .Fields , yI .(structDef ).Fields )
103
114
}
104
115
116
+ type genericStructDef struct {
117
+ Fields []namedType
118
+ TypeParams []string
119
+ }
120
+
121
+ func (x genericStructDef ) equals (yI equalsI ) bool {
122
+ y := yI .(genericStructDef )
123
+ return slices .Equal (x .Fields , y .Fields ) &&
124
+ slices .Equal (x .TypeParams , y .TypeParams )
125
+ }
126
+
105
127
type alias struct {
106
128
Target string
107
129
}
@@ -117,30 +139,36 @@ func (x iface) equals(yI equalsI) bool {
117
139
}
118
140
119
141
type pkgData struct {
120
- Funcs map [string ]funcData
121
- Types map [string ]typeData
122
- Structs map [string ]structDef
123
- Aliases map [string ]alias
124
- Interfaces map [string ]iface
142
+ Funcs map [string ]funcData
143
+ GenericFuncs map [string ]genericFuncData
144
+ Types map [string ]typeData
145
+ Structs map [string ]structDef
146
+ GenericStructs map [string ]genericStructDef
147
+ Aliases map [string ]alias
148
+ Interfaces map [string ]iface
125
149
}
126
150
127
151
func newPkgData () * pkgData {
128
152
return & pkgData {
129
- Funcs : make (map [string ]funcData ),
130
- Types : make (map [string ]typeData ),
131
- Structs : make (map [string ]structDef ),
132
- Aliases : make (map [string ]alias ),
133
- Interfaces : make (map [string ]iface ),
153
+ Funcs : make (map [string ]funcData ),
154
+ GenericFuncs : make (map [string ]genericFuncData ),
155
+ Types : make (map [string ]typeData ),
156
+ Structs : make (map [string ]structDef ),
157
+ GenericStructs : make (map [string ]genericStructDef ),
158
+ Aliases : make (map [string ]alias ),
159
+ Interfaces : make (map [string ]iface ),
134
160
}
135
161
}
136
162
137
163
func (pkgD * pkgData ) Clone () * pkgData {
138
164
return & pkgData {
139
- Funcs : maps .Clone (pkgD .Funcs ),
140
- Types : maps .Clone (pkgD .Types ),
141
- Structs : maps .Clone (pkgD .Structs ),
142
- Aliases : maps .Clone (pkgD .Aliases ),
143
- Interfaces : maps .Clone (pkgD .Interfaces ),
165
+ Funcs : maps .Clone (pkgD .Funcs ),
166
+ GenericFuncs : maps .Clone (pkgD .GenericFuncs ),
167
+ Types : maps .Clone (pkgD .Types ),
168
+ Structs : maps .Clone (pkgD .Structs ),
169
+ GenericStructs : maps .Clone (pkgD .GenericStructs ),
170
+ Aliases : maps .Clone (pkgD .Aliases ),
171
+ Interfaces : maps .Clone (pkgD .Interfaces ),
144
172
}
145
173
}
146
174
@@ -171,19 +199,23 @@ func MapAndIn[V equalsI](x, y map[string]V) {
171
199
// get pkgData with definitions existing in both pkg And y
172
200
func (pkg * pkgData ) And (y * pkgData ) * pkgData {
173
201
return & pkgData {
174
- Funcs : MapAnd (pkg .Funcs , y .Funcs ),
175
- Types : MapAnd (pkg .Types , y .Types ),
176
- Structs : MapAnd (pkg .Structs , y .Structs ),
177
- Aliases : MapAnd (pkg .Aliases , y .Aliases ),
178
- Interfaces : MapAnd (pkg .Interfaces , y .Interfaces ),
202
+ Funcs : MapAnd (pkg .Funcs , y .Funcs ),
203
+ GenericFuncs : MapAnd (pkg .GenericFuncs , y .GenericFuncs ),
204
+ Types : MapAnd (pkg .Types , y .Types ),
205
+ Structs : MapAnd (pkg .Structs , y .Structs ),
206
+ GenericStructs : MapAnd (pkg .GenericStructs , y .GenericStructs ),
207
+ Aliases : MapAnd (pkg .Aliases , y .Aliases ),
208
+ Interfaces : MapAnd (pkg .Interfaces , y .Interfaces ),
179
209
}
180
210
}
181
211
182
212
// in-place and
183
213
func (pkg * pkgData ) AndIn (y * pkgData ) {
184
214
MapAndIn (pkg .Funcs , y .Funcs )
215
+ MapAndIn (pkg .GenericFuncs , y .GenericFuncs )
185
216
MapAndIn (pkg .Types , y .Types )
186
217
MapAndIn (pkg .Structs , y .Structs )
218
+ MapAndIn (pkg .GenericStructs , y .GenericStructs )
187
219
MapAndIn (pkg .Aliases , y .Aliases )
188
220
MapAndIn (pkg .Interfaces , y .Interfaces )
189
221
}
@@ -210,19 +242,23 @@ func MapAndNotIn[V equalsI](x, y map[string]V) {
210
242
// return map with key-value pairs from pkg that do not have an equal pair in y
211
243
func (pkg * pkgData ) AndNot (y * pkgData ) * pkgData {
212
244
return & pkgData {
213
- Funcs : MapAndNot (pkg .Funcs , y .Funcs ),
214
- Types : MapAndNot (pkg .Types , y .Types ),
215
- Structs : MapAndNot (pkg .Structs , y .Structs ),
216
- Aliases : MapAndNot (pkg .Aliases , y .Aliases ),
217
- Interfaces : MapAndNot (pkg .Interfaces , y .Interfaces ),
245
+ Funcs : MapAndNot (pkg .Funcs , y .Funcs ),
246
+ GenericFuncs : MapAndNot (pkg .GenericFuncs , y .GenericFuncs ),
247
+ Types : MapAndNot (pkg .Types , y .Types ),
248
+ Structs : MapAndNot (pkg .Structs , y .Structs ),
249
+ GenericStructs : MapAndNot (pkg .GenericStructs , y .GenericStructs ),
250
+ Aliases : MapAndNot (pkg .Aliases , y .Aliases ),
251
+ Interfaces : MapAndNot (pkg .Interfaces , y .Interfaces ),
218
252
}
219
253
}
220
254
221
255
// in-place version of andNot
222
256
func (pkg * pkgData ) AndNotIn (y * pkgData ) {
223
257
MapAndNotIn (pkg .Funcs , y .Funcs )
258
+ MapAndNotIn (pkg .GenericFuncs , y .GenericFuncs )
224
259
MapAndNotIn (pkg .Types , y .Types )
225
260
MapAndNotIn (pkg .Structs , y .Structs )
261
+ MapAndNotIn (pkg .GenericStructs , y .GenericStructs )
226
262
MapAndNotIn (pkg .Aliases , y .Aliases )
227
263
MapAndNotIn (pkg .Interfaces , y .Interfaces )
228
264
}
@@ -236,19 +272,23 @@ func MapMerge[T any](x, y map[string]T) map[string]T {
236
272
// return merged map with both x and y
237
273
func (pkg * pkgData ) Merge (y * pkgData ) * pkgData {
238
274
return & pkgData {
239
- Funcs : MapMerge (pkg .Funcs , y .Funcs ),
240
- Types : MapMerge (pkg .Types , y .Types ),
241
- Structs : MapMerge (pkg .Structs , y .Structs ),
242
- Aliases : MapMerge (pkg .Aliases , y .Aliases ),
243
- Interfaces : MapMerge (pkg .Interfaces , y .Interfaces ),
275
+ Funcs : MapMerge (pkg .Funcs , y .Funcs ),
276
+ GenericFuncs : MapMerge (pkg .GenericFuncs , y .GenericFuncs ),
277
+ Types : MapMerge (pkg .Types , y .Types ),
278
+ Structs : MapMerge (pkg .Structs , y .Structs ),
279
+ GenericStructs : MapMerge (pkg .GenericStructs , y .GenericStructs ),
280
+ Aliases : MapMerge (pkg .Aliases , y .Aliases ),
281
+ Interfaces : MapMerge (pkg .Interfaces , y .Interfaces ),
244
282
}
245
283
}
246
284
247
285
// in-place version of merge
248
286
func (pkg * pkgData ) MergeIn (y * pkgData ) {
249
287
maps .Copy (pkg .Funcs , y .Funcs )
288
+ maps .Copy (pkg .GenericFuncs , y .GenericFuncs )
250
289
maps .Copy (pkg .Types , y .Types )
251
290
maps .Copy (pkg .Structs , y .Structs )
291
+ maps .Copy (pkg .GenericStructs , y .GenericStructs )
252
292
maps .Copy (pkg .Aliases , y .Aliases )
253
293
maps .Copy (pkg .Interfaces , y .Interfaces )
254
294
}
@@ -273,22 +313,26 @@ func mapNotIn[T any](x, y map[string]T) {
273
313
// remove keys existing in y from pkg
274
314
func (pkg * pkgData ) Not (y * pkgData ) * pkgData {
275
315
return & pkgData {
276
- Funcs : mapNot (pkg .Funcs , y .Funcs ),
277
- Types : mapNot (pkg .Types , y .Types ),
278
- Structs : mapNot (pkg .Structs , y .Structs ),
279
- Aliases : mapNot (pkg .Aliases , y .Aliases ),
280
- Interfaces : mapNot (pkg .Interfaces , y .Interfaces ),
316
+ Funcs : mapNot (pkg .Funcs , y .Funcs ),
317
+ GenericFuncs : mapNot (pkg .GenericFuncs , y .GenericFuncs ),
318
+ Types : mapNot (pkg .Types , y .Types ),
319
+ Structs : mapNot (pkg .Structs , y .Structs ),
320
+ GenericStructs : mapNot (pkg .GenericStructs , y .GenericStructs ),
321
+ Aliases : mapNot (pkg .Aliases , y .Aliases ),
322
+ Interfaces : mapNot (pkg .Interfaces , y .Interfaces ),
281
323
}
282
324
}
283
325
284
326
func (pkg * pkgData ) NotIn (y * pkgData ) {
285
327
mapNotIn (pkg .Funcs , y .Funcs )
328
+ mapNotIn (pkg .GenericFuncs , y .GenericFuncs )
286
329
mapNotIn (pkg .Types , y .Types )
287
330
mapNotIn (pkg .Structs , y .Structs )
331
+ mapNotIn (pkg .GenericStructs , y .GenericStructs )
288
332
mapNotIn (pkg .Aliases , y .Aliases )
289
333
mapNotIn (pkg .Interfaces , y .Interfaces )
290
334
}
291
335
292
336
func (pkg * pkgData ) empty () bool {
293
- return (len (pkg .Funcs ) + len (pkg .Types ) + len (pkg .Structs ) + len (pkg .Aliases ) + len (pkg .Interfaces )) == 0
337
+ return (len (pkg .Funcs ) + len (pkg .GenericFuncs ) + len ( pkg . Types ) + len (pkg .Structs ) + len ( pkg . GenericStructs ) + len (pkg .Aliases ) + len (pkg .Interfaces )) == 0
294
338
}
0 commit comments