1 2 3 4 5 6 7 8 9 10
//! External function declarations use super::FipsType; #[derive(Debug,PartialEq)] pub struct ExternFunctionDecl { pub name: String, pub parameter_types: Vec<FipsType>, pub return_type: FipsType }