Complete support for renaming procedures/functions in a class

Issue #6 new
Former user created an issue

Take the following code:

unit Test;

interface

type
  TParent = class
        procedure DoSomething;
  end;

  TChild = class(TParent)
        procedure DoSomething; override;
  end;

implementation

{ TParent }

procedure TParent.DoSomething;
begin

end;

{ TChild }

procedure TChild.DoSomething;
begin

end;

end.

Put the cursor on the DoSomething method anywhere, do a Refactor-Rename. The renaming will affect only the current classe, not both parent and child. Usually, JetBrains IDE would ask you if you want to rename the base method.

Comments (1)

  1. Log in to comment