luaur-analysis 0.1.0

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
pub(crate) fn page_align(size: usize) -> usize {
    const K_PAGE_SIZE: usize = 4096;
    (size + K_PAGE_SIZE - 1) & !(K_PAGE_SIZE - 1)
}