Closed randall77 closed 3 years ago
Method types are just function types with the receiver parameter still in place. As far as expression typing goes, you can generally just ignore the receiver part: method(A) func(B) C
is identical to func(B) C
within the Go type system.
Off hand, I think they only show up in ODOTMETH
, ODOTINTER
, and OCALLPART
. But even there, we could probably change them to use the bare function signatures if desirable. (We used to rely on these nodes referencing the exact *types.Type
of the function, so we could get back to the corresponding *ir.Name
/*ir.Func
. But that's no longer necessary since we added ir.SelectorExpr.Selection
.)
Method expressions will instead have a new type like func(B, C)
anyway.
Thanks for the example. Method values are definitely an untested area. I think I already have another example of method values not working when I tried an adjusted version of ./cmd/compile/internal/types2/fixedbugs/issue44688.go2.
FYI, the other big areas that are not handled correctly yet related to generic functions/types are: embedded fields & interfaces and type aliases.
I eventually plan to go through all of ./cmd/compile/internal/types2/fixedbugs, but it will be easier once we have basic export/import working.
Change https://golang.org/cl/318089 mentions this issue: cmd/compile: fix use of method values with stenciled methods
Change https://golang.org/cl/319589 mentions this issue: cmd/compile: fix use of method values with stenciled methods
Fixed by https://golang.org/cl/319589. I guess the issue wasn't closed automatically, because the CL was checked in on dev.typeparams? But I think we can close this issue, since we're doing all the testing/dev on dev.typeparams.
This should work, I think. It looks like it got the type of
f
correct, which means:=
worked. But then later it decided the RHS was a different type...I think this might be happening during stenciling. Beforehand, the RHS of the assignment is
afterward, the RHS is
The former looks superficially ok, but I'm not entirely sure as I don't really understand what method types are. The latter definitely looks like a problem.
Adding
-l
to the command line makes the compiler crash :(@griesemer @findleyr @mdempsky @danscales