Move associated_item* providers to their own module
This commit is contained in:
parent
d7595853a2
commit
1b057a33bd
3 changed files with 234 additions and 225 deletions
|
@ -16,6 +16,7 @@ extern crate tracing;
|
|||
|
||||
use rustc_middle::ty::query::Providers;
|
||||
|
||||
mod assoc;
|
||||
mod common_traits;
|
||||
pub mod instance;
|
||||
mod needs_drop;
|
||||
|
@ -23,6 +24,7 @@ pub mod representability;
|
|||
mod ty;
|
||||
|
||||
pub fn provide(providers: &mut Providers) {
|
||||
assoc::provide(providers);
|
||||
common_traits::provide(providers);
|
||||
needs_drop::provide(providers);
|
||||
ty::provide(providers);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue