luaur-analysis 0.1.3

Luau type checker and type inference (Rust).
Documentation
/// Port of `Luau::Unifiable::Error<Id>` from `Analysis/include/Luau/Unifiable.h`.
/// An error type with an optional "synthetic" stand-in TypeId for presentation.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Error<Id> {
    pub index: i32,
    /// Optional synthetic TypeId used to communicate the error to the user.
    pub synthetic: Option<Id>,
}

impl<Id: Copy> Error<Id> {
    pub fn new() -> Self {
        static NEXT_INDEX: core::sync::atomic::AtomicI32 = core::sync::atomic::AtomicI32::new(0);
        Self {
            index: NEXT_INDEX.fetch_add(1, core::sync::atomic::Ordering::Relaxed),
            synthetic: None,
        }
    }

    pub fn with_synthetic(synthetic: Id) -> Self {
        static NEXT_INDEX: core::sync::atomic::AtomicI32 = core::sync::atomic::AtomicI32::new(0);
        Self {
            index: NEXT_INDEX.fetch_add(1, core::sync::atomic::Ordering::Relaxed),
            synthetic: Some(synthetic),
        }
    }
}