luaur_compile_cli/enums/compile_format.rs
1#[derive(Debug, Clone, Copy, PartialEq, Eq)]
2#[allow(non_camel_case_types)]
3pub enum CompileFormat {
4 Text,
5 Binary,
6 Remarks,
7 /// Prints annotated native code including IR and assembly
8 Codegen,
9 /// Prints annotated native code assembly
10 CodegenAsm,
11 /// Prints annotated native code IR
12 CodegenIr,
13 /// Prints annotated native code including IR, assembly and outlined code
14 CodegenVerbose,
15 CodegenNull,
16 Null,
17}