luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::records::non_strict_context::NonStrictContext;
use crate::type_aliases::def_id_def::DefId;

use crate::functions::collect_operands::collect_operands;

impl NonStrictContext {
    pub fn remove(&mut self, def: &DefId) -> bool {
        let mut defs: Vec<DefId> = Vec::new();
        collect_operands(*def, &mut defs);
        let mut result = true;
        for def in defs {
            let erased = self
                .context
                .remove(&(def as *const crate::records::def::Def));
            result = result && erased.is_some();
        }
        result
    }
}