ktav/parser/mod.rs
1//! Line-oriented Ktav parser. See [`crate::parse`] for the public entry point.
2
3mod bracket;
4pub(crate) mod classify;
5mod collecting;
6mod frame;
7pub(crate) mod inline;
8mod insert;
9mod parse_str;
10mod parser;
11mod validate;
12mod value_start;
13
14pub(crate) use parse_str::parse_str;
15
16#[cfg(test)]
17mod tests;