luaur-code-gen 0.1.1

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
#[repr(C)]
pub struct NodeSlotState {
    pub pointer: u32,
    pub knownToNotBeNil: bool,
}

#[allow(non_upper_case_globals)]
impl NodeSlotState {
    pub const pointer: u32 = 0;
    pub const knownToNotBeNil: bool = false;
}