luaur-vm 0.1.2

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:447` (hand-ported)
// #define lua_tostring(L, i) lua_tolstring(L, (i), NULL)
#[allow(non_snake_case)]
#[macro_export]
macro_rules! lua_tostring {
    ($L:expr, $i:expr) => {
        $crate::functions::lua_tolstring::lua_tolstring($L, $i, core::ptr::null_mut())
    };
}
pub use lua_tostring;