sv-parser/src/lib.rs
2019-07-24 12:23:14 +09:00

8 lines
109 B
Rust

#![recursion_limit = "128"]
pub mod ast;
pub mod parser;
use nom_packrat::storage;
storage!(ast::AnyNode);