Type returns the type of the argument.
()
| 137 | |
| 138 | // Type returns the type of the argument. |
| 139 | func (a Arg) Type() reflect.Type { |
| 140 | return a.typ |
| 141 | } |
| 142 | |
| 143 | // extractConstructorArgs returns the list of argument metadata for a given function type. |
| 144 | func extractConstructorArgs(fnType reflect.Type) []Arg { |
no outgoing calls