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 choice;
mod combinators;
pub mod choice;
pub mod combinators;
mod parser;
mod primitives;
mod sequence;
pub mod primitives;
pub mod sequence;
pub use parser::{ParseResult, Parser, ParserInput};