luaur-compile-cli 0.1.3

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