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
Using the Frege Eclipse IDE, I can define a module M under package 'org.example1':
module org.example1.M where
data M = M
Now I want to move it to a different package 'org.example2'.
My options are drag&drop or (right-click) Refactor -> Move. The file moves, but the module definition doesn't change:
module org.example1.M where
data M = M
It would be nice to have the module definition change from module org.example1.M to module org.example2.M.
The text was updated successfully, but these errors were encountered:
Using the Frege Eclipse IDE, I can define a module M under package 'org.example1':
Now I want to move it to a different package 'org.example2'.
My options are drag&drop or (right-click) Refactor -> Move. The file moves, but the module definition doesn't change:
It would be nice to have the module definition change from
module org.example1.M
tomodule org.example2.M
.The text was updated successfully, but these errors were encountered: