1module GHC.Driver.Session where
2
3import GHC.Prelude
4import GHC.Platform
5import {-# SOURCE #-} GHC.Utils.Outputable
6
7data DynFlags
8
9targetPlatform           :: DynFlags -> Platform
10hasPprDebug              :: DynFlags -> Bool
11hasNoDebugOutput         :: DynFlags -> Bool
12initSDocContext          :: DynFlags -> PprStyle -> SDocContext
13