Implement more of parse table generation

This commit is contained in:
Max Brunsfeld 2018-12-20 13:36:39 -08:00
parent 5eb8806959
commit a3dcfa0a52
14 changed files with 1515 additions and 107 deletions

View file

@ -3,6 +3,7 @@ pub enum Error {
GrammarError(String),
SymbolError(String),
RegexError(String),
ConflictError(String),
}
pub type Result<T> = std::result::Result<T, Error>;