Skip to content
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: go/parser work-arounds #37451

Open
stamblerre opened this issue Feb 25, 2020 · 0 comments
Open

x/tools/gopls: go/parser work-arounds #37451

stamblerre opened this issue Feb 25, 2020 · 0 comments
Labels
gopls Issues related to the Go language server, gopls. Thinking Tools This label describes issues relating to any tools in the x/tools repository.

Comments

@stamblerre
Copy link
Contributor

This issue tracks all of the workarounds implemented in gopls to handle places where go/parser loses information. Most of this code can be found in golang.org/x/tools/internal/lsp/cache/parse.go and was written by @muirdm.

The current list of workarounds includes handling:

  • Missing curly braces in if statements (if foo -> if foo {})
  • Missing selectors (x. -> x._)
  • Partial identifiers that are keywords (foo.var -> foo._)
  • Missing conditional statements in if statements with initialization statements (if i := 0)
  • Unexpected array types ([]int -> []int{})
  • Incomplete go or defer statements (go foo -> go foo()).
  • Dangling selectors in go or defer statements
go foo.
y := 1

becomes

go foo._
y := 1
@stamblerre stamblerre added this to the gopls/v1.0.0 milestone Feb 25, 2020
@gopherbot gopherbot added Tools This label describes issues relating to any tools in the x/tools repository. gopls Issues related to the Go language server, gopls. labels Feb 25, 2020
@stamblerre stamblerre modified the milestones: gopls/v1.0.0, Unreleased Mar 12, 2020
@stamblerre stamblerre removed this from the gopls/v1.0.0 milestone Jun 24, 2020
@stamblerre stamblerre added this to the gopls/unplanned milestone Oct 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
gopls Issues related to the Go language server, gopls. Thinking Tools This label describes issues relating to any tools in the x/tools repository.
Projects
None yet
Development

No branches or pull requests

2 participants