Skip to main content

wp_primitives/
lib.rs

1//! Shared parsing primitives.
2
3pub use winnow::Parser;
4pub type WResult<T> = winnow::ModalResult<T>;
5
6pub mod atom;
7pub mod comment;
8pub mod fun;
9pub mod net;
10pub mod scope;
11pub mod symbol;
12pub mod utils;