luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
use crate::enums::unify_result::UnifyResult;
use crate::functions::follow_type::follow_type_id;
use crate::records::unifier_2::Unifier2;
use crate::records::union_type::UnionType;
use crate::type_aliases::type_id::TypeId;

impl Unifier2 {
    pub fn unify_type_id_union_type(
        &mut self,
        sub_ty: TypeId,
        super_union: &UnionType,
    ) -> UnifyResult {
        let sub_ty = unsafe { follow_type_id(sub_ty) };

        // T <: T | U1 | U2 | ... | Un is trivially true, so we don't gain any information by unifying
        for super_option in super_union.options.iter() {
            let followed_super_option = unsafe { follow_type_id(*super_option) };
            if sub_ty == followed_super_option {
                return UnifyResult::Ok;
            }
        }

        let mut result = UnifyResult::Ok;

        // if the occurs check fails for any option, it fails overall
        for super_option in super_union.options.iter() {
            if unsafe { crate::functions::are_compatible::are_compatible(sub_ty, *super_option) } {
                result &= self.unify_type_id_type_id(sub_ty, *super_option);
            }
        }

        result
    }
}