I'm just gonna use proc macros, maybe derive

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-14 20:45:14 -05:00
parent a3d0e1a886
commit 5350cd9b4f

View File

@ -7,11 +7,6 @@ use crate::push::state::PushState;
#[macro_use] #[macro_use]
pub mod macros { pub mod macros {
#[macro_export]
macro_rules! type_map {
($x:ident) => {};
}
/// A macro that makes a push instruction given: the name of the input stack to use, /// A macro that makes a push instruction given: the name of the input stack to use,
/// the name of the output stack, an internal function to call, the type of a function, /// the name of the output stack, an internal function to call, the type of a function,
/// and the arity of the internal function call. /// and the arity of the internal function call.