summaryrefslogtreecommitdiff
path: root/compiler/rename/RnExpr.lhs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rename/RnExpr.lhs-boot')
-rw-r--r--compiler/rename/RnExpr.lhs-boot17
1 files changed, 17 insertions, 0 deletions
diff --git a/compiler/rename/RnExpr.lhs-boot b/compiler/rename/RnExpr.lhs-boot
new file mode 100644
index 0000000000..b03f50a890
--- /dev/null
+++ b/compiler/rename/RnExpr.lhs-boot
@@ -0,0 +1,17 @@
+\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}
+