diff options
Diffstat (limited to 'compiler/GHC/Utils/Error.hs-boot')
-rw-r--r-- | compiler/GHC/Utils/Error.hs-boot | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/compiler/GHC/Utils/Error.hs-boot b/compiler/GHC/Utils/Error.hs-boot deleted file mode 100644 index a455e730f2..0000000000 --- a/compiler/GHC/Utils/Error.hs-boot +++ /dev/null @@ -1,31 +0,0 @@ -{-# LANGUAGE RankNTypes #-} - -module GHC.Utils.Error where - -import GHC.Prelude -import GHC.Utils.Outputable (SDoc, PprStyle ) -import {-# SOURCE #-} GHC.Driver.Session ( DynFlags ) - -type DumpAction = DynFlags -> PprStyle -> DumpOptions -> String - -> DumpFormat -> SDoc -> IO () - -type TraceAction = forall a. DynFlags -> String -> SDoc -> a -> a - -data DumpOptions = DumpOptions - { dumpForcedToFile :: Bool - , dumpSuffix :: String - } - -data DumpFormat - = FormatHaskell - | FormatCore - | FormatSTG - | FormatByteCode - | FormatCMM - | FormatASM - | FormatC - | FormatLLVM - | FormatText - -defaultDumpAction :: DumpAction -defaultTraceAction :: TraceAction |