luaur-compiler 0.1.3

Luau source-to-bytecode compiler (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct TableShape {
    pub(crate) array_size: core::ffi::c_uint,
    pub(crate) hash_size: core::ffi::c_uint,
}

impl luaur_common::records::dense_hash_table::DenseDefault for TableShape {
    fn dense_default() -> Self {
        Self::default()
    }
}