Skip to main content

rue_types/types/
function.rs

1use indexmap::IndexMap;
2
3use crate::TypeId;
4
5#[derive(Debug, Clone)]
6pub struct FunctionType {
7    pub params: IndexMap<String, TypeId>,
8    pub nil_terminated: bool,
9    pub ret: TypeId,
10}