Type/Module | Description |
Farkle's default tokenizer, powered by a DFA. |
|
A symbol that was expected at the location of a syntax error. |
|
Functions to syntactically parse a series of tokens using the LALR algorithm. |
|
The type of an error the parser encountered. |
|
A parse error. It contains the position it was encountered and its type. |
|
A token is an instance of a `Terminal`. Tokens carry post-processed terminals, as well as their position in the text. |
|