Starting to separate the context and parsed tokens into their own modules.

This commit is contained in:
Tom Alexander
2023-09-02 18:46:45 -04:00
parent 25b8c80d4e
commit b47029fdbb
8 changed files with 13 additions and 10 deletions

View 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;