diff options
Diffstat (limited to 'ghc/compiler/rename/RnExpr.lhs-boot')
-rw-r--r-- | ghc/compiler/rename/RnExpr.lhs-boot | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ghc/compiler/rename/RnExpr.lhs-boot b/ghc/compiler/rename/RnExpr.lhs-boot deleted file mode 100644 index b03f50a890..0000000000 --- a/ghc/compiler/rename/RnExpr.lhs-boot +++ /dev/null @@ -1,17 +0,0 @@ -\begin{code}
-module RnExpr where
-import HsSyn
-import Name ( Name )
-import NameSet ( FreeVars )
-import RdrName ( RdrName )
-import TcRnTypes
-
-rnLExpr :: LHsExpr RdrName
- -> RnM (LHsExpr Name, FreeVars)
-
-rnStmts :: forall thing.
- HsStmtContext Name -> [LStmt RdrName]
- -> RnM (thing, FreeVars)
- -> RnM (([LStmt Name], thing), FreeVars)
-\end{code}
-
|