1
0
mirror of https://github.com/golang/go synced 2024-11-18 18:24:48 -07:00
go/internal/lsp/testdata
Muir Manders 8a925fa4c0 internal/lsp/source: improve completions at file scope
Add support for var/func/const/type/import keywords at the file scope.
I left out "package" because, currently, if you are completing
something that means you must already have a package declaration. The
main hurdle was that anything other than a decl keyword shows up as
an *ast.BadDecl at the file scope. To properly detect the prefix we
manually scan for the token containing the position.

I also made a couple small drive-by improvements:
 - Also suggest "goto" and "type" keywords in functions.
 - Allow completing directly before a comment, e.g. "foo<>//". I
   needed this for a test that would have been annoying to write
   otherwise.

Updates golang/go#34009.

Change-Id: I290e7bdda9e66a16f996cdc291985a54bf375231
Reviewed-on: https://go-review.googlesource.com/c/tools/+/217500
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com>
2020-02-20 22:48:06 +00:00
..
indirect internal/lsp: add codelens for go.mod dependency upgrades 2020-02-14 14:15:08 +00:00
lsp internal/lsp/source: improve completions at file scope 2020-02-20 22:48:06 +00:00
missingdep internal/lsp: add codelens for go.mod dependency upgrades 2020-02-14 14:15:08 +00:00
missingtwodep internal/lsp: add codelens for go.mod dependency upgrades 2020-02-14 14:15:08 +00:00
unused internal/lsp: add codelens for go.mod dependency upgrades 2020-02-14 14:15:08 +00:00
upgradedep internal/lsp: add codelens for go.mod dependency upgrades 2020-02-14 14:15:08 +00:00