mirror of
https://github.com/golang/go
synced 2024-11-18 19:34:41 -07:00
d79e56da46
When searching for implementations we look at all packages in the workspace. We do a full parse since we need to look for non-exported types and look in functions for type declarations. However, we always type check a package's dependencies in export-only mode to save work. This leads to what I call the "two world" syndrome where you have both the export-only and full-parse versions of a package in play at once. This is problematic because mirror objects in each version do not compare equal. For example: -- a/a.go -- package a type Breed int const Mutt Breed = 0 type Dog interface{ Breed() Breed } -- b/b.go -- package b import "a" type dog struct{} func (dog) Breed() a.Breed { return a.Mutt } --- In this situation, the problem is "b" loads its dependency "a" in export only mode so it gets one version of the "a.Breed" type. The user opens package "a" directly so it gets fully type checked and has a second version of "a.Breed". The user searches for "a.Dog" implementations, but "b.dog" does not implement the fully-loaded "a.Dog" because it returns the export-only version of the "a.Breed" type. Fix it by always loading in-workspace dependencies in full parse mode. We need to load them in full parse mode anyway if the user does find references or find implementations. In writing a test I fixed an incorrect import in the testdata. This uncovered an unrelated bug which made a different implementation test very flaky. I disabled it for now since I couldn't see a fix simple enough to slip into this commit. Fixes golang/go#35857. Change-Id: I01509f57d54d593e62c895c7ecb93eb5f780bec7 Reviewed-on: https://go-review.googlesource.com/c/tools/+/209759 Run-TryBot: Muir Manders <muir@mnd.rs> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org> |
||
---|---|---|
.. | ||
other | ||
implementation.go |