luaur-vm 0.1.1

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
//! Source: `VM/include/lua.h:442` (hand-ported)
// #define lua_rawsetp(L, idx, p) lua_rawsetptagged(L, idx, p, 0)
#[allow(non_snake_case)]
#[macro_export]
macro_rules! lua_rawsetp {
    ($L:expr, $idx:expr, $p:expr) => {
        $crate::functions::lua_rawsetptagged::lua_rawsetptagged($L, $idx, $p, 0)
    };
}
pub use lua_rawsetp;