1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
interface Text.ParserCombinators.Parsec.Error where {
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Fractional (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Num (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Real (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.RealFrac (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Enum (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Read a,Prelude.Integral a) => Prelude.Read (Ratio.Ratio a);
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Ord (Ratio.Ratio a);
{-# NEED #-}
instance Prelude.Ord Text.ParserCombinators.Parsec.Pos.SourcePos;
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Eq (Ratio.Ratio a);
{-# NEED #-}
instance Prelude.Eq Text.ParserCombinators.Parsec.Pos.SourcePos;
{-# NEED #-}
instance Prelude.Functor NHC.Internal.IO;
{-# NEED #-}
instance Prelude.Monad NHC.Internal.IO;
{-# NEED #-}
instance Prelude.Show ParseError;
{-# NEED #-}
instance (Prelude.Integral a) => Prelude.Show (Ratio.Ratio a);
{-# NEED #-}
instance Prelude.Show Text.ParserCombinators.Parsec.Pos.SourcePos;
{-# NEED #-}
instance (Prelude.Show a) => Prelude.Show (NHC.Internal.IO a);
interface Ratio
{-# NEED Ratio #-}
data (Prelude.Integral a) => Ratio a;
interface NHC.Internal
{-# NEED IO #-}
newtype {-# #-} IO a;
{-# NEED World #-}
data World;
interface ! Text.ParserCombinators.Parsec.Error
{-# NEED showErrorMessages #-}
showErrorMessages{-# 6 #-}::([Prelude.Char] -> ([Prelude.Char] -> ([Prelude.Char] -> ([Prelude.Char] -> ([Prelude.Char] -> ([Message] -> [Prelude.Char]))))));
{-# NEED mergeError #-}
mergeError{-# 2 #-}::(ParseError -> (ParseError -> ParseError));
{-# NEED setErrorMessage #-}
setErrorMessage{-# 2 #-}::(Message -> (ParseError -> ParseError));
{-# NEED setErrorPos #-}
setErrorPos{-# 2 #-}::(Text.ParserCombinators.Parsec.Pos.SourcePos -> (ParseError -> ParseError));
{-# NEED addErrorMessage #-}
addErrorMessage{-# 2 #-}::(Message -> (ParseError -> ParseError));
{-# NEED newErrorMessage #-}
newErrorMessage{-# 2 #-}::(Message -> (Text.ParserCombinators.Parsec.Pos.SourcePos -> ParseError));
{-# NEED newErrorUnknown #-}
newErrorUnknown{-# 1 #-}::(Text.ParserCombinators.Parsec.Pos.SourcePos -> ParseError);
{-# NEED errorIsUnknown #-}
errorIsUnknown{-# 1 #-}::(ParseError -> Prelude.Bool);
{-# NEED errorMessages #-}
errorMessages{-# 1 #-}::(ParseError -> [Message]);
{-# NEED errorPos #-}
errorPos{-# 1 #-}::(ParseError -> Text.ParserCombinators.Parsec.Pos.SourcePos);
interface Text.ParserCombinators.Parsec.Pos
{-# NEED SourcePos #-}
data SourcePos;
interface ! Text.ParserCombinators.Parsec.Error
{-# NEED ParseError #-}
data ParseError;
{-# NEED messageEq #-}
messageEq{-# 2 #-}::(Message -> (Message -> Prelude.Bool));
{-# NEED messageString #-}
messageString{-# 1 #-}::(Message -> Prelude.String);
{-# NEED messageCompare #-}
messageCompare{-# 2 #-}::(Message -> (Message -> Prelude.Ordering));
{-# NEED {Message SysUnExpect UnExpect Expect Message} #-}
data Message
= SysUnExpect !Prelude.String
| UnExpect !Prelude.String
| Expect !Prelude.String
| Message !Prelude.String;
}
|