luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
//! Source: `Analysis/src/Normalize.cpp:542-555` (hand-ported)
use crate::enums::normalization_result::NormalizationResult;
use crate::records::fuel_initializer::FuelInitializer;
use crate::records::normalizer::Normalizer;
use crate::records::normalizer_hit_limits::NormalizerHitLimits;
use crate::type_aliases::seen_table_prop_pairs::SeenTablePropPairs;
use crate::type_aliases::type_id::TypeId;
use luaur_common::records::dense_hash_set::DenseHashSet;

impl Normalizer {
    /// C++ `NormalizationResult Normalizer::isIntersectionInhabited(TypeId left, TypeId right)`.
    /// Builds the seen sets, initializes normalization fuel, and delegates to the
    /// seen-set overload. The Rust port does not model C++ exceptions; the
    /// `NormalizerHitLimits` path surfaces through the delegate's return value.
    pub fn is_intersection_inhabited_type_id_type_id(
        &mut self,
        left: TypeId,
        right: TypeId,
    ) -> NormalizationResult {
        match std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
            let mut seen: DenseHashSet<TypeId> = DenseHashSet::new(core::ptr::null());
            let mut seen_table_prop_pairs: SeenTablePropPairs =
                SeenTablePropPairs::new((core::ptr::null(), core::ptr::null()));

            let mut fi = FuelInitializer {
                normalizer: self as *mut Normalizer,
                initialized_fuel: false,
            };
            fi.fuel_initializer_not_null_normalizer(self as *mut Normalizer);
            let _fi = fi;

            self.is_intersection_inhabited_type_id_type_id_seen_table_prop_pairs_set_type_id(
                left,
                right,
                &mut seen_table_prop_pairs,
                &mut seen,
            )
        })) {
            Ok(result) => result,
            Err(payload) if payload.downcast_ref::<NormalizerHitLimits>().is_some() => {
                NormalizationResult::HitLimits
            }
            Err(payload) => std::panic::resume_unwind(payload),
        }
    }
}