8 lines
109 B
Rust
8 lines
109 B
Rust
#![recursion_limit = "128"]
|
|
pub mod ast;
|
|
pub mod parser;
|
|
|
|
use nom_packrat::storage;
|
|
|
|
storage!(ast::AnyNode);
|