organic/src/parser/parser_with_context.rs

7 lines
153 B
Rust
Raw Normal View History

macro_rules! parser_with_context {
($target:ident) => {
2022-12-03 21:35:30 -05:00
move |context| |i| $target(&context, i)
};
}
pub(crate) use parser_with_context;