summaryrefslogtreecommitdiff
path: root/compiler/rename/RnExpr.hi-boot-6
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rename/RnExpr.hi-boot-6')
-rw-r--r--compiler/rename/RnExpr.hi-boot-611
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/rename/RnExpr.hi-boot-6 b/compiler/rename/RnExpr.hi-boot-6
new file mode 100644
index 0000000000..8f6c7f154b
--- /dev/null
+++ b/compiler/rename/RnExpr.hi-boot-6
@@ -0,0 +1,11 @@
+module RnExpr where
+
+rnLExpr :: HsExpr.LHsExpr RdrName.RdrName
+ -> TcRnTypes.RnM (HsExpr.LHsExpr Name.Name, NameSet.FreeVars)
+
+rnStmts :: forall thing.
+ HsExpr.HsStmtContext Name.Name -> [HsExpr.LStmt RdrName.RdrName]
+ -> TcRnTypes.RnM (thing, NameSet.FreeVars)
+ -> TcRnTypes.RnM (([HsExpr.LStmt Name.Name], thing), NameSet.FreeVars)
+
+