(name string, args int, receiverStyle bool)
| 173 | } |
| 174 | |
| 175 | func makeMacroKey(name string, args int, receiverStyle bool) string { |
| 176 | return fmt.Sprintf("%s:%d:%v", name, args, receiverStyle) |
| 177 | } |
| 178 | |
| 179 | func makeVarArgMacroKey(name string, receiverStyle bool) string { |
| 180 | return fmt.Sprintf("%s:*:%v", name, receiverStyle) |
no outgoing calls
no test coverage detected