summaryrefslogtreecommitdiff
path: root/compiler/rename/RnExpr.lhs-boot
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-12-03 12:42:50 -0600
committerAustin Seipp <austin@well-typed.com>2014-12-03 12:42:50 -0600
commit9fc4382ced4357b03b169c36934d7acd3ac4dd59 (patch)
tree9364bed341f1de55a45f3573c602d0905863cb6c /compiler/rename/RnExpr.lhs-boot
parentdc00fb1b5e75fda17384af612a98a8c99f874cff (diff)
downloadhaskell-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-boot21
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}
-