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-04 02:35:30 +00:00
move |context| |i| $target(&context, i)
};
}
pub(crate) use parser_with_context;