luaur-compile-cli 0.1.0

Command-line Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[allow(unused_macros)]
macro_rules! WRITE_NAME {
    ($fp:expr, $indent:expr, $name:ident) => {
        libc::fprintf(
            $fp,
            concat!($indent, "\"", stringify!($name), "\": ").as_ptr() as *const core::ffi::c_char,
        )
    };
}

pub(crate) use WRITE_NAME;