Rename peg->parser

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-02-11 16:13:28 -08:00
parent 25beed3cd4
commit 1f2b43755c
3 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ fn main() -> Result {
(input, "<stdin>".to_string()) (input, "<stdin>".to_string())
}; };
let stmts = syn::peg::parse_file(&path, &text)?; let stmts = syn::parser::parse_file(&path, &text)?;
/* /*
let mut parser = Parser::new(path, text.as_str()); let mut parser = Parser::new(path, text.as_str());

View File

@@ -1,3 +1,3 @@
pub mod ast; pub mod ast;
pub mod peg; pub mod parser;
pub mod span; pub mod span;