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