luaur-code-gen 0.1.0

Native (A64/X64) code generation for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::records::constant_key::ConstantKey;

impl ConstantKey {
    #[inline]
    pub const fn ir_builder_constant_key_operator_eq(&self, key: &ConstantKey) -> bool {
        self.kind as i32 == key.kind as i32 && self.value == key.value
    }
}