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