ParamAnnotationKey allows the Lookup of a function parameter's Annotation in the Annotation map Only construct these using ParamKeyFromArgNum and ParamKeyFromName
| 185 | // ParamAnnotationKey allows the Lookup of a function parameter's Annotation in the Annotation map |
| 186 | // Only construct these using ParamKeyFromArgNum and ParamKeyFromName |
| 187 | type ParamAnnotationKey struct { |
| 188 | FuncDecl *types.Func |
| 189 | ParamNum int |
| 190 | } |
| 191 | |
| 192 | // ParamName returns the *types.Var naming the parameter associate with this key |
| 193 | // nilable(result 0) |
nothing calls this directly
no outgoing calls
no test coverage detected