Copyright | Copyright 2017 Awake Security |
---|---|
License | Apache-2.0 |
Maintainer | opensource@awakesecurity.com |
Stability | experimental |
Safe Haskell | None |
Language | Haskell2010 |
Language.Ninja.Errors.Parser0.1.0
Contents
Description
Errors thrown during Ninja parsing.
- data ParseError
- throwParseError :: MonadError ParseError m => ParseError -> m a
- throwGenericParseError :: MonadError ParseError m => Text -> m a
- throwLexBindingFailure :: MonadError ParseError m => Text -> m a
- throwLexExpectedColon :: MonadError ParseError m => m a
- throwLexUnexpectedDollar :: MonadError ParseError m => m a
- throwLexUnexpectedSeparator :: MonadError ParseError m => Char -> m a
- throwLexParsecError :: MonadError ParseError m => ParseError Char Dec -> m a
- throwParseBadDepthField :: MonadError ParseError m => Text -> m a
- throwParseUnexpectedBinding :: MonadError ParseError m => Text -> m a
ParseError
data ParseError Source 0.1.0#
The type of errors encountered during parsing.
Constructors
0.1.0GenericParseError !Text | Generic catch-all error constructor. Avoid using this. |
0.1.0LexBindingFailure !Text | Lexer failed at binding: text |
0.1.0LexExpectedColon | Expected a colon |
0.1.0LexUnexpectedDollar | Unexpected $ followed by unexpected stuff |
0.1.0LexUnexpectedSeparator Char | Lexer expected a separator character but found something else |
0.1.0LexParsecError !(ParseError Char Dec) | Any other lexer error. |
0.1.0ParseBadDepthField !Text | Could not parse depth field in pool, got: text |
0.1.0ParseUnexpectedBinding !Text | Unexpected binding defining text |
Instances
Eq ParseError | #Source | |
Show ParseError | #Source | |
Generic ParseError | #Source | |
ToJSON ParseError | #Source | Converts to |
Exception ParseError | #Source | Default instance.0.1.0 |
type Rep ParseError | #Source | |
throwParseError :: MonadError ParseError m => ParseError -> m a Source 0.1.0#
Throw a ParseError
.
throwGenericParseError :: MonadError ParseError m => Text -> m a Source 0.1.0#
Throw a generic catch-all ParseError
.
throwLexBindingFailure :: MonadError ParseError m => Text -> m a Source 0.1.0#
Throw a LexBindingFailure
error.
throwLexExpectedColon :: MonadError ParseError m => m a Source 0.1.0#
Throw a LexExpectedColon
error.
throwLexUnexpectedDollar :: MonadError ParseError m => m a Source 0.1.0#
Throw a LexUnexpectedColon
error.
throwLexUnexpectedSeparator :: MonadError ParseError m => Char -> m a Source 0.1.0#
Throw a LexUnexpectedSeparator
error.
throwLexParsecError :: MonadError ParseError m => ParseError Char Dec -> m a Source 0.1.0#
Throw a LexParsecError
error.
throwParseBadDepthField :: MonadError ParseError m => Text -> m a Source 0.1.0#
Throw a ParseBadDepthField
error.
throwParseUnexpectedBinding :: MonadError ParseError m => Text -> m a Source 0.1.0#
Throw a ParseUnexpectedBinding
error.