heron_rebuild_syntax/
lib.rs

1#[macro_use]
2mod macros;
3mod parse;
4pub use parse::parse;
5pub mod ast;
6mod bash;
7
8type Hasher = std::hash::BuildHasherDefault<rustc_hash::FxHasher>;
9type HashSet<T> = std::collections::HashSet<T, Hasher>;