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
11
12
13
14
extern crate alloc;

pub mod enums;
pub mod functions;
pub mod macros;
pub mod methods;
pub mod records;
pub mod type_aliases;

// C++ macros are global #defines; translated callers use them unqualified.
// Pull every #[macro_export] macro from luau-common into textual scope so
// LUAU_INSN_OP!/LUAU_ASSERT!/... resolve without per-file imports.
#[macro_use]
extern crate luaur_common;