luaur-code-gen 0.1.3

Native (A64/X64) code generation for Luau (Rust).
Documentation
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[repr(C)]
pub struct Label {
    pub id: u32,
    pub location: u32,
}

impl Default for Label {
    fn default() -> Self {
        Self {
            id: 0,
            location: !0u32,
        }
    }
}

#[allow(non_upper_case_globals)]
impl Label {
    pub const id: u32 = 0;
    pub const location: u32 = !0u32;
}