Rename ast to parser

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-03-15 11:33:40 +01:00
parent f87f4a0262
commit 705c6a8818
18 changed files with 32 additions and 32 deletions

View file

@ -8,7 +8,7 @@ fuzz_target!(|data: String| -> Corpus {
return Corpus::Reject;
};
let Ok(ast) = nomo::ast::parse(parsed.tokens()) else {
let Ok(ast) = nomo::parser::parse(parsed.tokens()) else {
return Corpus::Keep;
};