[project @ 2005-04-28 23:09:24 by simonpj]
[ghc-hetmet.git] / ghc / compiler / iface / TcIface.lhs-boot
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}