Rename parser to lexer
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
10bcd77040
commit
f87f4a0262
11 changed files with 46 additions and 46 deletions
|
|
@ -4,7 +4,7 @@ use libfuzzer_sys::Corpus;
|
|||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: String| -> Corpus {
|
||||
let Ok(parsed) = nomo::parser::parse(data.into()) else {
|
||||
let Ok(parsed) = nomo::lexer::parse(data.into()) else {
|
||||
return Corpus::Reject;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue