luaur-vm 0.1.3

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[allow(non_snake_case)]
macro_rules! ABISWITCH {
    ($x64:expr, $ms32:expr, $gcc32:expr) => {
        if core::mem::size_of::<*mut core::ffi::c_void>() == 8 {
            $x64
        } else {
            $gcc32
        }
    };
}

pub(crate) use ABISWITCH;