1 2 3 4 5 6 7
//! Pratt parser root, aggregating the `core` driver loop and the `builders` //! node-construction helpers and re-exporting `PrattParser`. mod builders; mod core; pub use core::PrattParser;