We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A workspace command that extracts an anonymous function to a private one.
Example:
defmodule Example do def run(list) do square = fn x -> x * x end Enum.map(list, square) end end
Hovering the variable of the anonymous function or the anonymous function definition and using the workspace command should result in:
defmodule Example do def run(list) do Enum.map(list, &square/1) end defp square(x) do x * x end end
Consider the following scenarios:
square_sum = fn x -> x * x + constant end # should result in: defp square_sum(x, constant), do: ...
square.(3)
square(3)
The text was updated successfully, but these errors were encountered:
similar to #437 , i think i would expect this work work as follows
refactors to
defmodule Example do def run(list) do square = &square/1 Enum.map(list, square) end defp square(x) do x * x end end
this reduces complexity, and fits with the more intuitive (IMO) behavior if you were to transform an inline anonymous function, like this
defmodule Example do def run(list) do Enum.map(list, fn x -> x * x end) end end
Sorry, something went wrong.
No branches or pull requests
A workspace command that extracts an anonymous function to a private one.
Example:
Hovering the variable of the anonymous function or the anonymous function definition and using the workspace command should result in:
Consider the following scenarios:
square.(3)
->square(3)
The text was updated successfully, but these errors were encountered: