WIP: Implement peg parser using pest

PEG parser using pest is implemented. It was able to run the three
examples that we currently have so hopefully there aren't any huge
issues. There's a few warnings remaining that I will squash soon. Token,
parser, and token modules have been removed.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-02-11 15:58:10 -08:00
parent f4699e5e21
commit 7414c7df70
9 changed files with 105 additions and 812 deletions

View File

@@ -1,7 +1,3 @@
pub mod ast;
pub mod error;
pub mod lexer;
pub mod parser;
pub mod peg;
pub mod span;
pub mod token;