You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nameTypeMap:=make(map[string]ddptypes.ParameterType, len(fields)) // map that holds the parameter names contained in the alias and their corresponding type
908
908
args:=make(map[string]ddptypes.Type, len(fields)) // the arguments of the alias
909
+
genericUnifiedMap:=make(map[string]bool, len(fields)*2) // holds wether a generic type is unified
909
910
for_, v:=rangefields {
910
911
nameTypeMap[v.Name()] = ddptypes.ParameterType{
911
912
Type: v.Type,
912
913
IsReference: false, // fields are never references
0 commit comments