|
| class | DfaState |
| | State in the Deterministic Finite Automata which is used by the tokenizer.
|
| |
| class | Grammar |
| | Contains grammar tables required for parsing.
|
| |
| class | LRState |
| | State of LR parser.
|
| |
| class | LRStateAction |
| | Action in a LR State.
|
| |
| class | ObjectMap |
| | Maps integer values used for transition vectors to objects.
|
| |
| class | Parser |
| | Pull parser which uses Grammar table to parser input stream.
|
| |
| class | Rule |
| | Rule is the logical structures of the grammar.
|
| |
| class | SR |
| | Custom resource class. Usage: string s = Res.GetString(Res.MyIdenfitier);
|
| |
| class | Symbol |
| | Represents a terminal or nonterminal symbol used by the Deterministic Finite Automata (DFA) and LR Parser.
|
| |