rust-parser-combinator/src/bnf.rs

7 lines
103 B
Rust

#[derive(Debug, Clone, PartialEq)]
pub enum Bnf {
Production,
Choice(Vec<Bnf>),
Unknown,
}