rue-types 0.10.0

A type system for the Rue programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
use rue_diagnostic::Name;

use crate::TypeId;

#[derive(Debug, Clone)]
pub struct Alias {
    pub name: Option<Name>,
    pub inner: TypeId,
    pub generics: Vec<TypeId>,
}