2023-09-02 19:15:47 -04:00
|
|
|
use crate::error::Res;
|
|
|
|
use crate::parser::OrgSource;
|
|
|
|
|
2023-09-02 18:46:45 -04:00
|
|
|
mod exiting;
|
2023-09-02 20:46:17 -04:00
|
|
|
mod global_settings;
|
2023-09-02 18:46:45 -04:00
|
|
|
mod list;
|
|
|
|
mod parser_context;
|
|
|
|
mod parser_with_context;
|
|
|
|
|
2023-09-03 15:44:18 -04:00
|
|
|
pub type RefContext<'b, 'g, 'r, 's> = &'b Context<'g, 'r, 's>;
|
|
|
|
pub trait ContextMatcher = for<'b, 'g, 'r, 's> Fn(
|
|
|
|
RefContext<'b, 'g, 'r, 's>,
|
|
|
|
OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, OrgSource<'s>>;
|
2023-09-03 11:05:34 -04:00
|
|
|
pub type DynContextMatcher<'c> = dyn ContextMatcher + 'c;
|
2023-09-02 22:44:21 -04:00
|
|
|
pub trait Matcher = for<'s> Fn(OrgSource<'s>) -> Res<OrgSource<'s>, OrgSource<'s>>;
|
2023-09-03 12:45:12 -04:00
|
|
|
#[allow(dead_code)]
|
2023-09-03 11:05:34 -04:00
|
|
|
pub type DynMatcher<'c> = dyn Matcher + 'c;
|
2023-09-02 19:28:33 -04:00
|
|
|
|
|
|
|
pub use exiting::ExitClass;
|
2023-09-02 22:44:21 -04:00
|
|
|
pub use global_settings::GlobalSettings;
|
|
|
|
pub use list::List;
|
|
|
|
pub use parser_context::Context;
|
2023-09-02 19:28:33 -04:00
|
|
|
pub use parser_context::ContextElement;
|
|
|
|
pub use parser_context::ExitMatcherNode;
|
|
|
|
pub(crate) use parser_with_context::parser_with_context;
|