Open dorchard opened 1 year ago
I've noticed that the renaming/freshening pass is part of the Analysis submodule: https://github.com/camfort/fortran-src/blob/94248231fd0eedf1fffb46582a3687e85ecaa58a/src/Language/Fortran/Analysis/Renaming.hs#L214
Analysis
But doesn't it make sense for this to go in Transformation instead since this pertains to basic syntax transformations applied after parsing (like the grouping transformation)?
Transformation
Happy to make this change if other people agree, or leave it if someone's got a good reason why it should live here.
I've noticed that the renaming/freshening pass is part of the
Analysis
submodule: https://github.com/camfort/fortran-src/blob/94248231fd0eedf1fffb46582a3687e85ecaa58a/src/Language/Fortran/Analysis/Renaming.hs#L214But doesn't it make sense for this to go in
Transformation
instead since this pertains to basic syntax transformations applied after parsing (like the grouping transformation)?