rue-types 0.10.0

A type system for the Rue programming language.
Documentation
use id_arena::Arena;

use crate::{Type, TypeId, substitute};

pub fn unwrap_semantic(arena: &mut Arena<Type>, id: TypeId, resolve_aliases: bool) -> TypeId {
    let id = substitute(arena, id);
    unwrap_semantic_impl(arena, id, resolve_aliases)
}

fn unwrap_semantic_impl(arena: &mut Arena<Type>, id: TypeId, resolve_aliases: bool) -> TypeId {
    match arena[id].clone() {
        Type::Apply(_) => unreachable!(),
        Type::Ref(id) => unwrap_semantic_impl(arena, id, resolve_aliases),
        Type::Unresolved
        | Type::Generic(_)
        | Type::Never
        | Type::Atom(_)
        | Type::Pair(_)
        | Type::Function(_)
        | Type::Struct(_)
        | Type::Any => id,
        Type::Union(ty) => {
            if ty.types.len() == 1 {
                ty.types[0]
            } else {
                id
            }
        }
        Type::Alias(alias) => {
            if resolve_aliases {
                unwrap_semantic_impl(arena, alias.inner, resolve_aliases)
            } else {
                id
            }
        }
    }
}