-
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: rearranging struct fields deletes comments #43735
Comments
cc @leitzler @heschik found https://go-review.googlesource.com/c/tools/+/278872 |
I don't think we should have a feature that unexpectedly deletes user's code. If |
Yes, as per CL 278872 this is indeed how it works (also see #20744). I agree that it isn't optimal. Given the niched nature of this analyser (and the fact that it is opt-in), how about adding a note to the documentation? That would be the entry-point for users. Updating the title to "Rearrange fields (removes comments)" could add confusion, especially to those who wouldn't notice since they don't have comments. In that case, I'd rather see that we only update the title if there are any comments. The long term goal is to keep the comments, but as I see it (with very limited experience of AST) it isn't trivial. If there are ideas on how to achieve that please let me know. |
FWIW, I think having the suffix appear only when there are comments that will be destroyed is a good idea and should be completely possible. My understanding matches yours: there is a long-standing feature request in goimports that is blocked by poor comment support in the AST. So I think noting the problem in the title is actually the best path forward to get this on by default :-/ |
Just to clarify, I think that fieldalignment is a bit too niched to ever be on by default. It does have its place but will probably generate too much irrelevant noise for the average user. In most cases readability-ordered structs gives more than optimal aligned. I'll see if I can send a CL for updating the title based on comment removal when time allows. |
Can the severity of this check be changed from |
+1 about this |
What version of Go, VS Code & VS Code Go extension are you using?
go version
to get version of Gogo1.15.6 darwin/amd64
gopls -v version
to get version of Gopls if you are using the language server.code -v
orcode-insiders -v
to get version of VS Code or VS Code InsidersCheck your installed extensions to get the version of the VS Code Go extension
0.20.2
Run
go env
to get the go development environment detailsShare the Go related settings you have added/edited
Run
Preferences: Open Settings (JSON)
command to open your settings.json file.Share all the settings with the
go.
or["go"]
orgopls
prefixes.Describe the bug
One of the recommended refactoring actions is to rearrange the struct fields to better align and save memory. When this action is carried out, the comments written for the fields get deleted.
Steps to reproduce the behavior:
Example struct:
If you rearrange the struct fields using the suggested action, the comments are deleted (check the attached recording).
Screenshots or recordings
Screen.Recording.2021-01-15.at.2.10.16.PM.mov
The text was updated successfully, but these errors were encountered: