1
2
3
4
5
6
7
8
9
#[macro_use]
mod macros;
mod parse;
pub use parse::parse;
pub mod ast;
mod bash;

type Hasher = std::hash::BuildHasherDefault<rustc_hash::FxHasher>;
type HashSet<T> = std::collections::HashSet<T, Hasher>;