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

@ -13,6 +13,6 @@ fn check_files() {
continue;
};
let _emit = nomo::emit::emit_machine(ast);
let _emit = nomo::compiler::emit_machine(ast);
}
}

View file

@ -55,7 +55,7 @@ fn check_for_input([path]: [&Path; 1]) {
insta::assert_debug_snapshot!(format!("{basename}.2-ast"), ast);
let emit = nomo::emit::emit_machine(ast);
let emit = nomo::compiler::emit_machine(ast);
insta::assert_debug_snapshot!(format!("{basename}.3-instructions"), emit);