Copyright | (c) 2009 Bernie Pope |
---|---|
License | BSD-style |
Maintainer | bjpop@csse.unimelb.edu.au |
Stability | experimental |
Portability | ghc |
Safe Haskell | Safe |
Language | Haskell2010 |
Language.Python.Common.ParseError
Description
Error values for the lexer and parser.
Documentation
data ParseError Source #
Constructors
UnexpectedToken Token | An error from the parser. Token found where it should not be. Note: tokens contain their own source span. |
UnexpectedChar Char SrcLocation | An error from the lexer. Character found where it should not be. |
StrError String | A generic error containing a string message. No source location. |
Instances
Eq ParseError Source # | |
Defined in Language.Python.Common.ParseError | |
Ord ParseError Source # | |
Defined in Language.Python.Common.ParseError Methods compare :: ParseError -> ParseError -> Ordering (<) :: ParseError -> ParseError -> Bool (<=) :: ParseError -> ParseError -> Bool (>) :: ParseError -> ParseError -> Bool (>=) :: ParseError -> ParseError -> Bool max :: ParseError -> ParseError -> ParseError min :: ParseError -> ParseError -> ParseError | |
Show ParseError Source # | |
Defined in Language.Python.Common.ParseError Methods showsPrec :: Int -> ParseError -> ShowS show :: ParseError -> String showList :: [ParseError] -> ShowS | |
Pretty ParseError Source # | |
Defined in Language.Python.Common.PrettyParseError Methods pretty :: ParseError -> Doc Source # |