nac3_sca/nac3ast/src/lib.rs

15 lines
236 B
Rust
Raw Permalink Normal View History

#[macro_use]
extern crate lazy_static;
mod ast_gen;
mod constant;
#[cfg(feature = "fold")]
mod fold_helpers;
mod impls;
mod location;
pub use ast_gen::*;
2021-12-28 01:28:55 +08:00
pub use location::{Location, FileName};
pub type Suite<U = ()> = Vec<Stmt<U>>;