luaur-analysis 0.1.1

Luau type checker and type inference (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use luaur_ast::records::location::Location;

use crate::type_aliases::type_id::TypeId;

#[derive(Debug, Clone)]
pub struct Binding {
    pub type_id: TypeId,
    pub location: Location,
    pub deprecated: bool,
    pub deprecated_suggestion: alloc::string::String,
    pub documentation_symbol: Option<alloc::string::String>,
}