blob: 2748c769e41b9e195c76c5b9ad868163584a7b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module GHC.Tc.Module where
import GHC.Prelude
import GHC.Types.TyThing(TyThing)
import GHC.Tc.Types (TcM)
import GHC.Utils.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
|