From 7662a4ce52204f8f131c95670e29065394087113 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 25 Oct 2005 15:04:58 +0000 Subject: [PATCH] [project @ 2005-10-25 15:04:58 by simonmar] add missing boot files --- ghc/compiler/main/ErrUtils.hi-boot-6 | 11 +++++++++++ ghc/compiler/main/ErrUtils.lhs-boot | 16 ++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 ghc/compiler/main/ErrUtils.hi-boot-6 create mode 100644 ghc/compiler/main/ErrUtils.lhs-boot 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} -- 1.7.10.4