-
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
x/tools/gopls: allow 'any' in completion results everywhere (remove filtering to constraints) #47669
Comments
Change https://golang.org/cl/341850 mentions this issue: |
The predeclared 'any' type is only valid when completing constraints. We should support that properly, but for now exclude it from results so that our completion tests don't fail on Go 1.18. For golang/go#47669 Change-Id: I7852f844684a6c03da90bf367d45d732e5d1e9bb Reviewed-on: https://go-review.googlesource.com/c/tools/+/341850 Trust: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> gopls-CI: kokoro <noreply+kokoro@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Repurposing this issue: now any is allowed everywhere! So we need to revert the above CL, as as well as other places where we exclude any. |
I just looked into this, and we seem to be suggesting completion to 'any' in places where we shouldn't. Needs more investigation. |
Ok, it seems that completion just includes more results than I had assumed. For example, from
We suggest Given that we downrank, this is fine, but it does seem a bit noisy. @muirdm do you have an opinion on whether we should be suggesting I don't think this it is a high priority to resolve this for v0.8.0, so moving it to the v0.8.1 milestone while we discuss. |
I think you want to add "any" to tools/internal/lsp/tests/util.go:isBuiltin. That is used to filter buiiltin candidates in completion tests. We don't filter type names in general because it's hard to predict what the user wants to do. For example, they may want to complete to an incompatible type "someType" so they can write "someType(foo).someMethod()". Or maybe they don't realize the type is incompatible and would be confused by it not showing up. Or maybe they are composing an expression inside-out where they first insert "someType{}" and then wrap it in "somethingElse(someType{})". "any" in particular doesn't seem useful, but unless there is a compelling reason to filter it I wouldn't bother. |
Haven't gotten to this, and it's a low priority because including 'any' in results doesn't add a huge amount of value. Bumping to the backlog. |
Change https://go.dev/cl/463139 mentions this issue: |
When built with Go 1.18, gopls completion results erroneously include the new predefined type
any
in contexts where it is invalid (any
is only valid for constraints).We should exclude it whenever we are not completing constraints.
CC @stamblerre @griesemer
The text was updated successfully, but these errors were encountered: