cel_parser/
lib.rs

1#[allow(clippy::all)]
2mod gen;
3
4pub mod ast;
5pub mod reference;
6pub mod references;
7
8pub use ast::IdedExpr as Expression;
9
10mod macros;
11mod parse;
12#[allow(non_snake_case)]
13mod parser;
14
15pub use parser::*;
16pub use references::ExpressionReferences;