Reorganisation of the source tree
[ghc-hetmet.git] / ghc / compiler / deSugar / Match.lhs-boot
diff --git a/ghc/compiler/deSugar/Match.lhs-boot b/ghc/compiler/deSugar/Match.lhs-boot
deleted file mode 100644 (file)
index 5f99f5c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-\begin{code}
-module Match where
-import Var     ( Id )
-import TcType  ( TcType )
-import DsMonad ( DsM, EquationInfo, MatchResult )
-import CoreSyn ( CoreExpr )
-import HsSyn   ( LPat, HsMatchContext, MatchGroup )
-import Name    ( Name )
-
-match  :: [Id]
-        -> TcType
-       -> [EquationInfo]
-       -> DsM MatchResult
-
-matchWrapper
-       :: HsMatchContext Name
-        -> MatchGroup Id
-       -> DsM ([Id], CoreExpr)
-
-matchSimply
-       :: CoreExpr
-       -> HsMatchContext Name
-       -> LPat Id
-       -> CoreExpr
-       -> CoreExpr
-       -> DsM CoreExpr
-
-matchSinglePat
-       :: CoreExpr
-       -> HsMatchContext Name
-       -> LPat Id
-        -> TcType
-       -> MatchResult
-       -> DsM MatchResult
-\end{code}