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: add refactor.inline.variable and variable-all code actions #70085

Open
xzbdmw opened this issue Oct 29, 2024 · 10 comments
Open

x/tools/gopls: add refactor.inline.variable and variable-all code actions #70085

xzbdmw opened this issue Oct 29, 2024 · 10 comments
Labels
FeatureRequest Issues asking for a new feature that does not need a proposal. gopls Issues related to the Go language server, gopls. Refactoring Issues related to refactoring tools Tools This label describes issues relating to any tools in the x/tools repository.
Milestone

Comments

@xzbdmw
Copy link

xzbdmw commented Oct 29, 2024

[Update: extract.variable and extract-variable.all are done. Retitled to narrower scope of inline{,-all}. --adonovan]

Original title: codeaction: replace every use-case of a variable with its defined expression, extract every identical expression
within function to a new variable

gopls version

Build info

golang.org/x/tools/gopls (devel)
golang.org/x/tools/gopls@(devel)
github.com/BurntSushi/[email protected] h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
github.com/google/[email protected] h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
golang.org/x/exp/[email protected] h1:2O2DON6y3XMJiQRAS1UWU+54aec2uopH3x7MAiqGW6Y=
golang.org/x/[email protected] h1:vvrHzRwRfVKSiLrG+d4FMl/Qi4ukBCE6kZlTUkDYRT0=
golang.org/x/[email protected] h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
golang.org/x/[email protected] h1:PfPrmVDHfPgLVpiYnf2R1uL8SCXBjkqT51+f/fQHR6Q=
golang.org/x/[email protected] h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM=
golang.org/x/[email protected] => ../
golang.org/x/[email protected] h1:SP0mPeg2PmGCu03V+61EcQiOjmpri2XijexKdzv8Z1I=
honnef.co/go/[email protected] h1:9MDAWxMoSnB6QoSqiVr7P5mtkT9pOc1kSxchzPCnqJs=
mvdan.cc/[email protected] h1:bg91ttqXmi9y2xawvkuMXyvAA/1ZGJqYAEGjXuP0JXU=
mvdan.cc/xurls/[email protected] h1:lyBNOm8Wo71UknhUs4QTFUNNMyxy2JEIaKKo0RWOh+8=
go: go1.23.2

go env

GO111MODULE='auto'
GOARCH='arm64'
GOBIN=''
GOCACHE='/Users/xzb/Library/Caches/go-build'
GOENV='/Users/xzb/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMODCACHE='/Users/xzb/go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='darwin'
GOPATH='/Users/xzb/go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/usr/local/go'
GOSUMDB='sum.golang.org'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/usr/local/go/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.23.2'
GODEBUG=''
GOTELEMETRY='local'
GOTELEMETRYDIR='/Users/xzb/Library/Application Support/go/telemetry'
GCCGO='gccgo'
GOARM64='v8.0'
AR='ar'
CC='clang'
CXX='clang++'
CGO_ENABLED='1'
GOMOD=''
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/gv/r110hgbx1gbgzp95kf_q71x40000gn/T/go-build1846322804=/tmp/go-build -gno-record-gcc-switches -fno-common'

What did you do?

iShot_2024-10-29_11.52.53.mp4

the first half part is :Rafactor inline_var, and second part is :Rafactor extract_var new_var, it is from a nvim plugin refactoring.nvim using treesitter under the hood, I use this two quite frequently to eliminate unnecessary variable as well as introduce new variable for some repeated expression, the problem is it fails (or not accurate) in complex situations, so I wish gopls would support this directly.

What did you see happen?

Currently gopls supports extract a single expression to a new variable, I'd say extract every repeated expression under selection would be more useful, since the latter contains the former.

What did you expect to see?

see above

Editor and settings

No response

Logs

No response

@xzbdmw xzbdmw added gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository. labels Oct 29, 2024
@gopherbot gopherbot added this to the Unreleased milestone Oct 29, 2024
@gopherbot
Copy link
Contributor

Change https://go.dev/cl/623637 mentions this issue: gopls/internal/golang: use correct imports in HTML pkg doc links

@adonovan adonovan changed the title x/tools/gopls: codeaction to replace every use-case of a variable with its defined expression, extract every identical expression within function to a new variable x/tools/gopls: "replace all occurrences" variants of refactor.{inline,extract}.variable Oct 30, 2024
@adonovan adonovan added the Refactoring Issues related to refactoring tools label Oct 30, 2024
@xzbdmw
Copy link
Author

xzbdmw commented Oct 31, 2024

Hmm, how could I know two expression is identical regardless their tok.Pos value? Am I supposed to write a util function similar to types.Identical()?

@gopherbot
Copy link
Contributor

Change https://go.dev/cl/624035 mentions this issue: gopls/internal/codeaction: replace all occurrences of expression (refactor.extract.variable.all)

@ansaba ansaba modified the milestones: Unreleased, gopls/backlog Nov 7, 2024
@adonovan adonovan added the FeatureRequest Issues asking for a new feature that does not need a proposal. label Nov 10, 2024
@xzbdmw
Copy link
Author

xzbdmw commented Nov 13, 2024

@adonovan Hey Alan, may you take a look? The logic is relatively simple :)

@adonovan
Copy link
Member

Sorry for the delay and thanks for the contribution, but I am overwhelmed with reviews at the moment and am also out of office at a Go conference. I will attend to this next week.

@xzbdmw
Copy link
Author

xzbdmw commented Nov 13, 2024

Thanks! No rush—enjoy the conference!

gopherbot pushed a commit to golang/tools that referenced this issue Dec 18, 2024
…actor.extract.variable.all)

This change introduces a new refactoring code action
 "Extract n occurrences of expression".

The original "Extract Variable" is treated as a limited version
of "Extract n occurrences of expression", they share the same
underlying implementation. The difference is that
"extract_all" utilizes a slice of structural equal expression
by searching through the entire function body, while the limited
version simply append the expression under selection to that slice.

Also:
- change default variable name from "x" to "newVar",
default const name from "k" to "newConst",
users will almost always perform a rename after
extraction, so this change make it more discoverable,
especially when there are multiple matches.
- add marker test extract_expressions.txt and
extract_expressions_resolve.txt.

Updates golang/go#70085
Fixes golang/go#70563

Change-Id: I767b82be8a60d39c7aff087197c65d435b138826
GitHub-Last-Rev: b66a18d
GitHub-Pull-Request: #539
Reviewed-on: https://go-review.googlesource.com/c/tools/+/624035
Reviewed-by: Alan Donovan <[email protected]>
Reviewed-by: Robert Findley <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
@adonovan
Copy link
Member

https://go.dev/cl/624035 added "extract n occurrences of expr to a variable"; "inline all" has not one but two dedicated issues (#68567 and #66370). Therefore this issue is complete.

@xzbdmw
Copy link
Author

xzbdmw commented Feb 12, 2025

#66370 only mentions inline functions, this issue is about inlining expressions, are they essentially the same?

@adonovan
Copy link
Member

Ah, good point. Let's reopen this issue and narrow its scope to inlining var/const expressions.

@adonovan adonovan reopened this Feb 12, 2025
@adonovan adonovan changed the title x/tools/gopls: "replace all occurrences" variants of refactor.{inline,extract}.variable x/tools/gopls: add refactor.inline.variable and variable-all code actions Feb 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FeatureRequest Issues asking for a new feature that does not need a proposal. gopls Issues related to the Go language server, gopls. Refactoring Issues related to refactoring tools Tools This label describes issues relating to any tools in the x/tools repository.
Projects
None yet
Development

No branches or pull requests

5 participants