luaur-analyze-cli 0.1.0

Standalone Luau type-checker CLI (Rust).
Documentation
1
2
3
4
5
6
7
8
9
use alloc::string::String;
use luaur_analysis::records::type_check_limits::TypeCheckLimits;

#[allow(non_camel_case_types)]
#[derive(Debug, Clone)]
pub struct LuauConfigInterruptInfo {
    pub(crate) limits: TypeCheckLimits,
    pub(crate) module: String,
}