X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2FdeSugar%2FMatch.lhs-boot;fp=ghc%2Fcompiler%2FdeSugar%2FMatch.lhs-boot;h=0000000000000000000000000000000000000000;hb=0065d5ab628975892cea1ec7303f968c3338cbe1;hp=5f99f5cc1ab7c05c3de30d7919782a7ec77495e8;hpb=28a464a75e14cece5db40f2765a29348273ff2d2;p=ghc-hetmet.git diff --git a/ghc/compiler/deSugar/Match.lhs-boot b/ghc/compiler/deSugar/Match.lhs-boot deleted file mode 100644 index 5f99f5c..0000000 --- a/ghc/compiler/deSugar/Match.lhs-boot +++ /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}