luaur_analysis/records/binding.rs
1use luaur_ast::records::location::Location;
2
3use crate::type_aliases::type_id::TypeId;
4
5#[derive(Debug, Clone)]
6pub struct Binding {
7 pub type_id: TypeId,
8 pub location: Location,
9 pub deprecated: bool,
10 pub deprecated_suggestion: alloc::string::String,
11 pub documentation_symbol: Option<alloc::string::String>,
12}