()
| 173 | } |
| 174 | |
| 175 | func (Foo) Method() Bar { |
| 176 | return Bar{ |
| 177 | Baz: "baz (from Foo.Method)", |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | func (f Foo) MethodWithArgs(prefix string) string { |
| 182 | return prefix + f.Value |
nothing calls this directly
no outgoing calls
no test coverage detected