Starting to separate the context and parsed tokens into their own modules.
This commit is contained in:
6
src/context/parser_with_context.rs
Normal file
6
src/context/parser_with_context.rs
Normal file
@@ -0,0 +1,6 @@
|
||||
macro_rules! parser_with_context {
|
||||
($target:expr) => {
|
||||
move |context| move |i| $target(context, i)
|
||||
};
|
||||
}
|
||||
pub(crate) use parser_with_context;
|
||||
Reference in New Issue
Block a user