blob: b3f8e1d770a5ba16cda7d54dccc57c5343e4c0c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
\documentstyle{report}
\input{lit-style}
\begin{document}
\centerline{{\Large{rename}}}
\tableofcontents
\input{Rename} % {Renaming and dependency analysis passes}
\input{RnSource} % {Main pass of renamer}
\input{RnMonad} % {The monad used by the renamer}
\input{RnEnv} % {Environment manipulation for the renamer monad}
\input{RnHsSyn} % {Specialisations of the @HsSyn@ syntax for the renamer}
\input{RnNames} % {Extracting imported and top-level names in scope}
\input{RnExpr} % {Renaming of expressions}
\input{RnBinds} % {Renaming and dependency analysis of bindings}
\input{RnIfaces} % {Cacheing and Renaming of Interfaces}
\end{document}
|