Add a new code action to move the selected method implementation to the parent class. For example: ```ruby # 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 https://github.com/Shopify/ruby-lsp/pull/2372.