Compare commits

...

2 Commits

Author SHA1 Message Date
a66ed69e25 add the .idea folder
Some checks failed
/ Test-Suite (push) Has been cancelled
2025-04-15 13:30:58 -05:00
5350cd9b4f I'm just gonna use proc macros, maybe derive 2025-04-14 20:45:14 -05:00
2 changed files with 1 additions and 6 deletions

2
.gitignore vendored
View File

@ -19,7 +19,7 @@ Cargo.lock
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear # and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ .idea/
# Added by cargo # Added by cargo

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.