-
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: embed errors don't always appear #44342
Comments
Lines 174 to 273 in c73232d
|
Change https://golang.org/cl/295415 mentions this issue: |
Change https://golang.org/cl/295412 mentions this issue: |
Change https://golang.org/cl/296549 mentions this issue: |
go/packages.Error has filenames relative to the go command's working directory. We need to interpret them as such. This would perhaps be better done in go/packages but with no release process in place I'm leery of making changes to it. Updates golang/go#44342. Change-Id: I95bcdff0368efe09ec7059394e59a39bf195310b Reviewed-on: https://go-review.googlesource.com/c/tools/+/295412 Trust: Heschi Kreinick <heschi@google.com> Run-TryBot: Heschi Kreinick <heschi@google.com> gopls-CI: kokoro <noreply+kokoro@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
Updates golang/go#44342. Change-Id: I8518874fb20ae0a95f6fb2b62033e70a7d057067 Reviewed-on: https://go-review.googlesource.com/c/tools/+/295415 Trust: Heschi Kreinick <heschi@google.com> Run-TryBot: Heschi Kreinick <heschi@google.com> gopls-CI: kokoro <noreply+kokoro@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
When a //go:embed or //go:build (//+build) line changes, we need to invalidate metadata. Do so. It might be preferable to only invalidate on save, but we don't currently have an approach for doing that. So for now we'll load on each keystroke in a magic comment. Fixes golang/go#38732, golang/go#44342. Change-Id: Id05fb84f44215ea6242a7cf8b2bca4e85f74680e Reviewed-on: https://go-review.googlesource.com/c/tools/+/296549 Trust: Heschi Kreinick <heschi@google.com> Run-TryBot: Heschi Kreinick <heschi@google.com> gopls-CI: kokoro <noreply+kokoro@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
I think this issue should be closed according to the commit golang/tools@6422c5c:
|
Oh good catch, thanks @ShoshinNikita! Closing. |
This program shows no error on the embed pattern:
When I add an import, the error appears, but only if it's not in the stdlib:
At first I thought this was because we should invalidate metadata when a
//go:embed
comment changes, but even when I restart gopls the IWL doesn't pick up the error. So there's something weird going on here that I didn't dig into. (We should probably still invalidate metadata on embed comment changes, or implement embed pattern checking ourselves.)Reported by @myitcv in Slack.
The text was updated successfully, but these errors were encountered: