luaur_analysis/records/
inferred_binding.rs1use crate::records::scope::Scope;
2use crate::records::type_ids::TypeIds;
3use luaur_ast::records::location::Location;
4
5#[derive(Debug, Clone)]
6pub struct InferredBinding {
7 pub scope: *mut Scope,
8 pub location: Location,
9 pub types: TypeIds,
10}