21 lines
464 B
Rust
Raw Normal View History

//! HIR datatypes. See the [rustc guide] for more info.
//!
//! [rustc guide]: https://rust-lang.github.io/rustc-guide/hir.html
#![feature(crate_visibility_modifier)]
#![feature(const_fn)]
#![feature(in_band_lifetimes)]
2019-12-25 03:51:27 +01:00
#![feature(specialization)]
pub mod def;
2019-12-25 03:51:27 +01:00
pub mod def_id;
mod hir;
2019-12-25 15:26:30 +01:00
pub mod hir_id;
pub mod itemlikevisit;
pub mod pat_util;
pub mod print;
mod stable_hash_impls;
pub use hir::*;
2019-12-25 15:26:30 +01:00
pub use hir_id::*;
pub use stable_hash_impls::HashStableContext;