1//! Utility types for working with the AST.
2
3mod data;
4mod generics;
5
6pub use self::data::*;
7pub use self::generics::{GenericParam, GenericParamExt, Generics};
8