Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Renamed fields are not repaired when referenced via a class instance #69

@roncain

Description

@roncain

If you have a class and field like this:

   public class MyClass {
       private bool myBool;
   }

It will be renamed _myBool, and all references it to it will be replaced correctly.
But when it is referenced via an instance of that class (inside the class), it is not renamed, leading to compiler error:

   private void SomeMethodInsideMyClass(MyClass mc) {
      if (mc.myBool)...
   }

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions