-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
gopls/internal/golang: improve extract variable edits #482
base: master
Are you sure you want to change the base?
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
This PR (HEAD: 4abfb1d) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/567977. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/567977. |
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be Please don’t reply on this GitHub thread. Visit golang.org/cl/567977. |
The previous implementation use common edits to support both scenarios where a assignment/declaration exist and did not exist. This cause a additional text edit with lhs values in the new line when the extraction was done on a expression which was not part of a assignment/declaration. The new changes address this scenarios by computing edits based on the scenario to avoid the additional lhs in new line when extracted expression is not part of a assignment/declaration. Fixes golang/tools#65944
4abfb1d
to
ebc1a8b
Compare
This PR (HEAD: ebc1a8b) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/567977. Important tips:
|
Message from Gayan Perera: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/567977. |
The previous implementation use common edits to support both scenarios
where a assignment/declaration exist and did not exist. This cause a
additional text edit with lhs values in the new line when the
extraction was done on a expression which was not part of a
assignment/declaration. The new changes address this scenarios by
computing edits based on the scenario to avoid the additional lhs in
new line when extracted expression is not part of a
assignment/declaration.
Fixes golang/tools#65944