rexlang_parser/lib.rs
1#![forbid(unsafe_code)]
2#![cfg_attr(not(test), deny(clippy::unwrap_used, clippy::expect_used))]
3
4//! Parsing for Rex.
5//!
6//! The parser is written to be straightforward to step through in a debugger:
7//! no parser-generator indirection, and (mostly) explicit control flow.
8
9pub mod error;
10pub mod op;
11
12mod parser;
13
14pub use parser::Parser;
15pub use parser::ParserLimits;