Re: [go-nuts] Re: navigating through interface calls

2018-12-10 Thread Robert Engels
When using IntelliJ, did you restrict the search to “project files”? Otherwise you will get implantations anywhere in the standard library or other projects. > On Dec 10, 2018, at 6:21 AM, David Wahlstedt > wrote: > > Hi, and thanks for your answers! > Yes, I realize that the possible

[go-nuts] Re: navigating through interface calls

2018-12-10 Thread David Wahlstedt
Hi, and thanks for your answers! Yes, I realize that the possible results of calling an interface method depends on runtime. But in many cases there is only one possible alternative, or just a few ones, dependent of the state of the program. It should still be possible for the tool to compute

[go-nuts] Re: navigating through interface calls

2018-12-07 Thread howardcshaw
It is rather the point of interfaces that there IS no fixed definition of an instance of an Interface call. The definition could be that of ANY struct that matches that interface, depending on what is passed. So yes, you have to find AN instance of a call to the function that accepts an