module GHC.Tc.Module where import GhcPrelude import GHC.Core.Type(TyThing) import GHC.Tc.Types (TcM) import Outputable (SDoc) import GHC.Types.Name (Name) checkBootDeclM :: Bool -- ^ True <=> an hs-boot file (could also be a sig) -> TyThing -> TyThing -> TcM () missingBootThing :: Bool -> Name -> String -> SDoc badReexportedBootThing :: Bool -> Name -> Name -> SDoc