[project @ 2005-07-19 22:55:10 by simonpj]
authorsimonpj <unknown>
Tue, 19 Jul 2005 22:55:10 +0000 (22:55 +0000)
committersimonpj <unknown>
Tue, 19 Jul 2005 22:55:10 +0000 (22:55 +0000)
remove RnSource.lhs-boot and add RnExpr.lhs-boot

ghc/compiler/rename/RnExpr.lhs-boot [new file with mode: 0644]
ghc/compiler/rename/RnSource.lhs-boot [deleted file]

diff --git a/ghc/compiler/rename/RnExpr.lhs-boot b/ghc/compiler/rename/RnExpr.lhs-boot
new file mode 100644 (file)
index 0000000..b03f50a
--- /dev/null
@@ -0,0 +1,17 @@
+\begin{code}\r
+module RnExpr where\r
+import HsSyn\r
+import Name    ( Name )\r
+import NameSet ( FreeVars )\r
+import RdrName ( RdrName )\r
+import TcRnTypes\r
+\r
+rnLExpr :: LHsExpr RdrName\r
+       -> RnM (LHsExpr Name, FreeVars)\r
+\r
+rnStmts :: forall thing.\r
+          HsStmtContext Name -> [LStmt RdrName] \r
+       -> RnM (thing, FreeVars)\r
+       -> RnM (([LStmt Name], thing), FreeVars)\r
+\end{code}\r
+\r
diff --git a/ghc/compiler/rename/RnSource.lhs-boot b/ghc/compiler/rename/RnSource.lhs-boot
deleted file mode 100644 (file)
index 28b4aed..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-\begin{code}
-module RnSource where
-import HsSyn     ( HsBindGroup, HsGroup, HsSplice )
-import NameSet   ( FreeVars, DefUses )
-import TcRnTypes  ( RnM, TcGblEnv )
-import RdrName   ( RdrName )
-import Name      ( Name )
-
-rnBindGroupsAndThen :: forall b . [HsBindGroup RdrName]
-       -> ([HsBindGroup Name]
-       -> RnM (b, FreeVars))
-       -> RnM (b, FreeVars)
-
-rnBindGroups :: [HsBindGroup RdrName] -> RnM ([HsBindGroup Name], DefUses)
-
-rnSrcDecls :: HsGroup RdrName  -> RnM (TcGblEnv, HsGroup Name)
-rnSplice   :: HsSplice RdrName -> RnM (HsSplice Name, FreeVars)
-\end{code}
-
-