Reorganisation of the source tree
[ghc-hetmet.git] / compiler / typecheck / TcMatches.lhs-boot
diff --git a/compiler/typecheck/TcMatches.lhs-boot b/compiler/typecheck/TcMatches.lhs-boot
new file mode 100644 (file)
index 0000000..18a79fa
--- /dev/null
@@ -0,0 +1,17 @@
+\begin{code}
+module TcMatches where
+import HsSyn   ( GRHSs, MatchGroup, ExprCoFn )
+import Name    ( Name )
+import Var     ( Id )
+import TcType  ( BoxyRhoType )
+import TcRnTypes( TcM )
+
+tcGRHSsPat    :: GRHSs Name
+             -> BoxyRhoType
+             -> TcM (GRHSs Id)
+
+tcMatchesFun :: Name
+            -> MatchGroup Name
+            -> BoxyRhoType
+            -> TcM (ExprCoFn, MatchGroup Id)
+\end{code}