-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go/types: dot imports might cause errors where (types.Error).Pos
is not part of the (types.Error).Fset
#71272
Comments
This happens because of the default FileSet here: go/src/go/importer/importer.go Lines 72 to 84 in bd80d89
It can be fixed by using the Importer: importer.ForCompiler(fset, runtime.Compiler, nil), Also (not tested) but i guess it cannot happen with |
Thanks. Superficially this seems like it may also be a source of gopls bug reports. |
Change https://go.dev/cl/643795 mentions this issue: |
Change https://go.dev/cl/643777 mentions this issue: |
I don't think this anything to do with dot imports: it's entirely about the use of the ugly old importer.Default function in go/types tests (and similar tests). I've sent two CLs to clarify that the importer package is old and bad, and to avoid using the Default function in go/types tests, instead passing the correct FileSet where available. FWIW gopls does not use importer.Default, so I don't think this affects it at all. |
Arguably it should be deprecated, but that's a process. Updates #71272 Change-Id: I69de1f9709c45dfea0fe67d96a7bd15d3df4e2f1 Reviewed-on: https://go-review.googlesource.com/c/go/+/643795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Findley <rfindley@google.com> Auto-Submit: Alan Donovan <adonovan@google.com>
@adonovan You have a fix ready, do you intend to land it for Go 1.24 or 1.25? (Asking because the CL doesn't have a wait-release hashtag, and there's no milestone set on this issue.) It's quite late in the Go 1.24 release cycle, so the balance favors rejecting a fix, unless a case can be made that the fix is both low risk and high reward, and this doesn't seem critical at a glance. Thanks. Edit: When asking the question above, I missed that the fix was entirely a test-only change, making it much easier to be confident in its safety (keeping in mind even test-only changes carry some risk, e.g., of introducing new flakiness or new failures). |
Indeed, it's just commentary (first CL) and test cleanups (second CL). I agree test CLs are not entirely without risk, but this one seems very safe to me. Either way it's definitely not critical for 1.24. |
I was contemplating when I reviewed this whether it should be wait-release, but it I think since these are deterministic tests, this is safe even for 1.24. |
The docs of Lines 46 to 48 in 608acff
right? It might be a file set for interpretation of Pos, it does not have to be a right one. It is basically the same |
The only FileSet the type-checker knows about is the one passed to NewChecker; clients may assume this is the same one. |
Reproducer:
Note the second error
other declaration of Request 2883740 -
, which tries to reference the file in thenet/http
package.CC @adonovan @griesemer @findleyr
The text was updated successfully, but these errors were encountered: