Move rustc_ty
-> rustc_ty_utils
This commit is contained in:
parent
fe982319aa
commit
f59d03038c
11 changed files with 7 additions and 7 deletions
28
compiler/rustc_ty_utils/src/lib.rs
Normal file
28
compiler/rustc_ty_utils/src/lib.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
//! Various checks
|
||||
//!
|
||||
//! # Note
|
||||
//!
|
||||
//! This API is completely unstable and subject to change.
|
||||
|
||||
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
||||
#![feature(nll)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
#[macro_use]
|
||||
extern crate rustc_middle;
|
||||
#[macro_use]
|
||||
extern crate tracing;
|
||||
|
||||
use rustc_middle::ty::query::Providers;
|
||||
|
||||
mod common_traits;
|
||||
pub mod instance;
|
||||
mod needs_drop;
|
||||
mod ty;
|
||||
|
||||
pub fn provide(providers: &mut Providers) {
|
||||
common_traits::provide(providers);
|
||||
needs_drop::provide(providers);
|
||||
ty::provide(providers);
|
||||
instance::provide(providers);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue