language-ninja-0.1.0: A library for dealing with the Ninja build language.

CopyrightCopyright 2017 Awake Security
LicenseApache-2.0
Maintaineropensource@awakesecurity.com
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Language.Ninja.Errors.Parser0.1.0

Contents

Description

Errors thrown during Ninja parsing.

Synopsis

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  
Show ParseError  
Generic ParseError  

Associated Types

type Rep ParseError :: * -> * #

ToJSON ParseError

Converts to {tag: …, value: …}.0.1.0

Exception ParseError

Default instance.0.1.0

type Rep ParseError  

throwGenericParseError :: MonadError ParseError m => Text -> m a Source 0.1.0#

Throw a generic catch-all ParseError.

throwLexUnexpectedDollar :: MonadError ParseError m => m a Source 0.1.0#

Throw a LexUnexpectedColon error.