organic/src/parser/parser_with_context.rs
Tom Alexander 9861084afe
Cleanup.
2023-04-22 01:45:38 -04:00

7 lines
156 B
Rust

macro_rules! parser_with_context {
($target:expr) => {
move |context| move |i| $target(context, i)
};
}
pub(crate) use parser_with_context;