module TcRnDriver where import GhcPrelude import GHC.Core.Type(TyThing) import TcRnTypes (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