You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an rsc file is renamed in the Explorer, the name change isn't applied to the module name in the file, nor in any of the other modules that import it.
Example
Before renaming:
src/main/rascal/Foo.rsc:
moduleFooimportBar;
src/main/rascal/Bar.rsc:
moduleBar
After renaming Bar to Baz -- expected:
src/main/rascal/Foo.rsc:
moduleFooimportBaz;
src/main/rascal/Baz.rsc:
moduleBaz
After renaming Bar to Bazin the Explorer -- actual:
src/main/rascal/Foo.rsc:
moduleFooimportBar; // <-- not changed
src/main/rascal/Baz.rsc:
moduleBar// <-- not changed
The text was updated successfully, but these errors were encountered:
Problem
When an
rsc
file is renamed in the Explorer, the name change isn't applied to the module name in the file, nor in any of the other modules that import it.Example
Before renaming:
src/main/rascal/Foo.rsc
:src/main/rascal/Bar.rsc
:After renaming
Bar
toBaz
-- expected:src/main/rascal/Foo.rsc
:src/main/rascal/Baz.rsc
:After renaming
Bar
toBaz
in the Explorer -- actual:src/main/rascal/Foo.rsc
:src/main/rascal/Baz.rsc
:The text was updated successfully, but these errors were encountered: