[project @ 2005-04-28 23:09:24 by simonpj]
authorsimonpj <unknown>
Thu, 28 Apr 2005 23:09:24 +0000 (23:09 +0000)
committersimonpj <unknown>
Thu, 28 Apr 2005 23:09:24 +0000 (23:09 +0000)
A couple of hs-boot files

ghc/compiler/deSugar/Match.lhs-boot
ghc/compiler/iface/TcIface.lhs-boot

index acd6762..5f99f5c 100644 (file)
@@ -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 )
index 51a5f9f..25191fc 100644 (file)
@@ -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}