38 lines
862 B
Rust
Raw Normal View History

2020-03-05 18:07:42 -03:00
//! HIR datatypes. See the [rustc dev guide] for more info.
//!
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/hir.html
#![feature(crate_visibility_modifier)]
#![feature(const_fn)] // For the unsizing cast on `&[]`
#![feature(const_panic)]
#![feature(in_band_lifetimes)]
2020-03-23 20:27:59 +01:00
#![feature(or_patterns)]
2020-01-02 09:53:15 +01:00
#![recursion_limit = "256"]
#[macro_use]
extern crate rustc_macros;
2020-01-02 09:53:15 +01:00
#[macro_use]
extern crate rustc_data_structures;
2019-12-25 03:51:27 +01:00
2020-03-21 02:21:21 +01:00
mod arena;
pub mod def;
pub mod definitions;
pub use rustc_span::def_id;
pub mod fake_lang_items;
mod hir;
2019-12-25 15:26:30 +01:00
pub mod hir_id;
2020-01-07 17:30:29 +01:00
pub mod intravisit;
pub mod itemlikevisit;
2020-01-30 01:24:51 +01:00
pub mod lang_items;
pub mod pat_util;
mod stable_hash_impls;
2020-01-30 01:24:51 +01:00
mod target;
pub mod weak_lang_items;
pub use hir::*;
2019-12-25 15:26:30 +01:00
pub use hir_id::*;
2020-01-30 01:24:51 +01:00
pub use lang_items::{LangItem, LanguageItems};
pub use stable_hash_impls::HashStableContext;
2020-01-30 01:24:51 +01:00
pub use target::{MethodKind, Target};