sim-codec-algol 0.1.1

SIM workspace package for sim codec algol.
Documentation
1
2
3
4
5
6
7
8
9
//! Pratt parsing root for the Algol codec, aggregating the `parser`
//! (precedence-climbing engine) and `table` (operator definitions) submodules
//! and re-exporting `PrattParser`, `default_pratt_table`, and `supports_pratt`.

mod parser;
mod table;

pub use parser::PrattParser;
pub use table::{default_pratt_table, supports_pratt};