Reorganize module structure

This commit is contained in:
Greg Shuflin 2022-10-21 19:26:00 -07:00
parent cde41e6eda
commit d14b470530
5 changed files with 4 additions and 5 deletions

View File

@ -1,10 +1,9 @@
#![allow(dead_code)] //TODO eventually turn this off
mod bnf; mod bnf;
mod choice; pub mod choice;
mod combinators; pub mod combinators;
mod parser; mod parser;
mod primitives; pub mod primitives;
mod sequence; pub mod sequence;
pub use parser::{ParseResult, Parser, ParserInput}; pub use parser::{ParseResult, Parser, ParserInput};