luaur-bytecode 0.1.0

Luau bytecode format and builder (Rust).
Documentation
1
2
3
4
5
6
7
8
use crate::records::constant_key::ConstantKey;

impl ConstantKey {
    #[inline]
    pub(crate) fn eq(&self, other: &ConstantKey) -> bool {
        self.r#type == other.r#type && self.value == other.value && self.extra == other.extra
    }
}