organic/src/parser/parser_with_context.rs

7 lines
157 B
Rust
Raw Normal View History

macro_rules! parser_with_context {
($target:ident) => {
2022-10-15 18:16:52 +00:00
move |context| move |i| $target(i, context)
};
}
pub(crate) use parser_with_context;