Rename ast to parser
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
f87f4a0262
commit
705c6a8818
18 changed files with 32 additions and 32 deletions
|
|
@ -245,7 +245,7 @@ mod tests {
|
|||
|
||||
let parsed = crate::lexer::parse(input.into()).unwrap();
|
||||
|
||||
let ast = crate::ast::parse(parsed.tokens()).unwrap();
|
||||
let ast = crate::parser::parse(parsed.tokens()).unwrap();
|
||||
|
||||
let emit = crate::emit::emit_machine(ast);
|
||||
|
||||
|
|
@ -266,7 +266,7 @@ mod tests {
|
|||
|
||||
let parsed = crate::lexer::parse(input.into()).unwrap();
|
||||
|
||||
let ast = crate::ast::parse(parsed.tokens()).unwrap();
|
||||
let ast = crate::parser::parse(parsed.tokens()).unwrap();
|
||||
|
||||
let emit = crate::emit::emit_machine(ast);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue