The type of an error the parser encountered.
Union case | Description |
Full Usage:
LexicalError char
Parameters:
char
|
A character was not recognized.
|
Full Usage:
SyntaxError(Expected, Actual)
Parameters:
Set<ExpectedSymbol>
Actual : ExpectedSymbol
|
A symbol was read, while some others were expected.
|
Full Usage:
UnexpectedEndOfInput
|
Unexpected end of input. |
|
Unexpected end of input while being inside a group.
|
|
A group did end, but outside of any group.
|
Full Usage:
UserError Message
Parameters:
string
|
A custom error was raised by calling the `error` function or by throwing a `ParserApplicationException`.
|