luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::records::constraint_solver::ConstraintSolver;
use crate::type_aliases::type_id::TypeId;
use luaur_common::macros::luau_assert::LUAU_ASSERT;
use luaur_common::FFlag;
use std::collections::HashSet;

impl ConstraintSolver {
    pub fn deprecate_d_shift_references(&mut self, source: TypeId, target: TypeId) {
        LUAU_ASSERT!(!FFlag::LuauConstraintGraph.get());
        let target = unsafe { crate::functions::follow_type::follow_type_id(target) };

        // if the target isn't a reference counted type, there's nothing to do.
        // this stops us from keeping unnecessary counts for e.g. primitive types.
        if !crate::functions::is_reference_counted_type::is_reference_counted_type(target) {
            return;
        }

        if source == target {
            return;
        }

        if let Some(sourcerefs) = self.deprecated_type_to_constraint_set.get(&source).cloned() {
            for constraint in sourcerefs.iter() {
                // For every constraint that the source might be modified by,
                // add that constraint to the set of constraints the target
                // might be modified by.
                let targetrefs = self
                    .deprecated_type_to_constraint_set
                    .entry(target)
                    .or_insert_with(HashSet::new);
                targetrefs.insert(*constraint);

                // Additionally, note that said constraint now may modify the target.
                let (it, _) = self
                    .deprecated_constraint_to_mutated_types
                    .try_insert(*constraint, crate::records::type_ids::TypeIds::type_ids());
                it.insert_type_id(target);
            }
        }
    }
}