//! Grammar parsing and the in-memory grammar IR.
//!
//! [`parser::parse_grammar`] reads a `.parsuna` source file and produces
//! a [`ir::Grammar`]. The parser itself is generated by parsuna from the
//! `parsuna.parsuna` grammar (see `generated.rs`), which means
//! parsuna bootstraps itself.
pub use *;
pub use parse_grammar;