From: simonpj Date: Thu, 28 Apr 2005 23:09:24 +0000 (+0000) Subject: [project @ 2005-04-28 23:09:24 by simonpj] X-Git-Tag: Initial_conversion_from_CVS_complete~643 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ed60e5f80f2f585554fb1570dd2f2aede23edf18;p=ghc-hetmet.git [project @ 2005-04-28 23:09:24 by simonpj] A couple of hs-boot files --- diff --git a/ghc/compiler/deSugar/Match.lhs-boot b/ghc/compiler/deSugar/Match.lhs-boot index acd6762..5f99f5c 100644 --- a/ghc/compiler/deSugar/Match.lhs-boot +++ b/ghc/compiler/deSugar/Match.lhs-boot @@ -2,7 +2,7 @@ module Match where import Var ( Id ) import TcType ( TcType ) -import DsMonad ( DsM, DsMatchContext, EquationInfo, MatchResult ) +import DsMonad ( DsM, EquationInfo, MatchResult ) import CoreSyn ( CoreExpr ) import HsSyn ( LPat, HsMatchContext, MatchGroup ) import Name ( Name ) diff --git a/ghc/compiler/iface/TcIface.lhs-boot b/ghc/compiler/iface/TcIface.lhs-boot index 51a5f9f..25191fc 100644 --- a/ghc/compiler/iface/TcIface.lhs-boot +++ b/ghc/compiler/iface/TcIface.lhs-boot @@ -1,9 +1,13 @@ \begin{code} module TcIface where -import IfaceSyn ( IfaceDecl ) +import IfaceSyn ( IfaceDecl, IfaceInst, IfaceRule ) import TypeRep ( TyThing ) import TcRnTypes ( IfL ) +import InstEnv ( Instance ) +import CoreSyn ( CoreRule ) tcIfaceDecl :: IfaceDecl -> IfL TyThing +tcIfaceInst :: IfaceInst -> IfL Instance +tcIfaceRule :: IfaceRule -> IfL CoreRule \end{code}