Rename emit to compiler

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

View file

@ -12,7 +12,7 @@ fuzz_target!(|data: String| -> Corpus {
return Corpus::Keep;
};
let _instructions = nomo::emit::emit_machine(ast);
let _instructions = nomo::compiler::emit_machine(ast);
Corpus::Keep
});