Open
Description
openedon Aug 28, 2024
Add a new code action to move the selected method implementation to the parent class. For example:
# BEFORE
class Parent
end
class Child < Parent
def foo
end
end
# AFTER
class Parent
def foo
end
end
class Child < Parent
end
Here's an example PR adding a refactor end to end #2372.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment