Re: [go-nuts] Does invoking a method with an interface variable avoid dependency analysis?

2019-07-08 Thread Martin Schnabel
sorry. i misunderstood your question. the paragraph you quoted refers to reference to methods values (t.m) or expressions (T.m) and not method calls t.m() as in your example. does that help solve the question? On 08.07.19 20:09, Martin Schnabel wrote: On 08.07.19 02:51, Il-seob Bae wrote: As

Re: [go-nuts] Does invoking a method with an interface variable avoid dependency analysis?

2019-07-08 Thread Martin Schnabel
On 08.07.19 02:51, Il-seob Bae wrote: As per the spec , A reference to a method m is a method value or method expression of the form t.m, where the (static) type of t is not an interface type, and the method m is in the method

[go-nuts] Does invoking a method with an interface variable avoid dependency analysis?

2019-07-08 Thread Il-seob Bae
As per the spec , > A reference to a method m is a method value or method expression of the > form t.m, where the (static) type of t is not an interface type, and the > method m is in the method set of t. It is immaterial whether the resulting