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
Param types are extracted with fmt.Sprint(param.Type) which produces garbage like &{context Context} instead of context.Context. Result types already use types.ExprString correctly, so we just need the same for params.
Param types are extracted with
fmt.Sprint(param.Type)which produces garbage like&{context Context}instead ofcontext.Context. Result types already usetypes.ExprStringcorrectly, so we just need the same for params.