diff options
author | Austin Seipp <austin@well-typed.com> | 2014-12-03 12:42:50 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-12-03 12:42:50 -0600 |
commit | 9fc4382ced4357b03b169c36934d7acd3ac4dd59 (patch) | |
tree | 9364bed341f1de55a45f3573c602d0905863cb6c /compiler/rename/RnExpr.lhs-boot | |
parent | dc00fb1b5e75fda17384af612a98a8c99f874cff (diff) | |
download | haskell-9fc4382ced4357b03b169c36934d7acd3ac4dd59.tar.gz |
compiler: de-lhs rename/
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'compiler/rename/RnExpr.lhs-boot')
-rw-r--r-- | compiler/rename/RnExpr.lhs-boot | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/compiler/rename/RnExpr.lhs-boot b/compiler/rename/RnExpr.lhs-boot deleted file mode 100644 index 0a00a9e2bc..0000000000 --- a/compiler/rename/RnExpr.lhs-boot +++ /dev/null @@ -1,21 +0,0 @@ -\begin{code} -module RnExpr where -import HsSyn -import Name ( Name ) -import NameSet ( FreeVars ) -import RdrName ( RdrName ) -import TcRnTypes -import SrcLoc ( Located ) -import Outputable ( Outputable ) - -rnLExpr :: LHsExpr RdrName - -> RnM (LHsExpr Name, FreeVars) - -rnStmts :: --forall thing body. - Outputable (body RdrName) => HsStmtContext Name - -> (Located (body RdrName) -> RnM (Located (body Name), FreeVars)) - -> [LStmt RdrName (Located (body RdrName))] - -> ([Name] -> RnM (thing, FreeVars)) - -> RnM (([LStmt Name (Located (body Name))], thing), FreeVars) -\end{code} - |