luaur-bytecode 0.1.3

Luau bytecode format and builder (Rust).
Documentation
1
2
3
4
5
6
7
8
#[allow(unused_macros)]
macro_rules! VREG {
    ($v:expr, $func:expr) => {
        LUAU_ASSERT!(($v as u32) < ($func.maxstacksize as u32))
    };
}

pub(crate) use VREG;