FuncSet is the set of overloaded variants of a function. If the function is not overloaded, its FuncSet contains one entry.
| 59 | // If the function is not overloaded, its FuncSet contains |
| 60 | // one entry. |
| 61 | type FuncSet struct { |
| 62 | Name string |
| 63 | GoName string |
| 64 | Funcs []*Func |
| 65 | CommonSig |
| 66 | } |
| 67 | |
| 68 | // CommonSig is a signature compatible with every |
| 69 | // overloaded variant of a FuncSet. |
nothing calls this directly
no outgoing calls
no test coverage detected