[][src]Module stelar::parse_table

Define a parse table for a parser

Structs

ParseTable

A Parse table being the goto table and the action table The parse table is expensive to create (i'd guess something like n^2 in the number of symbols in all rules). you can save this table using serde for repeated uses.

Enums

Action

Action to be taken on the action table according to the lookahead and the state

ActionTableError
GrammarError
ParseTableError