From: simonmar Date: Tue, 25 Oct 2005 15:04:58 +0000 (+0000) Subject: [project @ 2005-10-25 15:04:58 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~135 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=7662a4ce52204f8f131c95670e29065394087113 [project @ 2005-10-25 15:04:58 by simonmar] add missing boot files --- diff --git a/ghc/compiler/main/ErrUtils.hi-boot-6 b/ghc/compiler/main/ErrUtils.hi-boot-6 new file mode 100644 index 0000000..fd98ca3 --- /dev/null +++ b/ghc/compiler/main/ErrUtils.hi-boot-6 @@ -0,0 +1,11 @@ +module ErrUtils where + +data Severity + = SevInfo + | SevWarning + | SevError + | SevFatal + +type Message = Outputable.SDoc + +mkLocMessage :: SrcLoc.SrcSpan -> Message -> Message diff --git a/ghc/compiler/main/ErrUtils.lhs-boot b/ghc/compiler/main/ErrUtils.lhs-boot new file mode 100644 index 0000000..77d6cfd --- /dev/null +++ b/ghc/compiler/main/ErrUtils.lhs-boot @@ -0,0 +1,16 @@ +\begin{code} +module ErrUtils where + +import Outputable (SDoc) +import SrcLoc (SrcSpan) + +data Severity + = SevInfo + | SevWarning + | SevError + | SevFatal + +type Message = SDoc + +mkLocMessage :: SrcSpan -> Message -> Message +\end{code}