]> git.lizzy.rs Git - rust.git/blob - src/librustc_traits/lib.rs
Rollup merge of #50257 - estebank:fix-49560, r=nikomatsakis
[rust.git] / src / librustc_traits / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! New recursive solver modeled on Chalk's recursive solver. Most of
12 //! the guts are broken up into modules; see the comments in those modules.
13
14 #![feature(crate_visibility_modifier)]
15
16 #[macro_use]
17 extern crate log;
18 #[macro_use]
19 extern crate rustc;
20 extern crate rustc_data_structures;
21 extern crate syntax;
22 extern crate syntax_pos;
23
24 mod dropck_outlives;
25 mod evaluate_obligation;
26 mod normalize_projection_ty;
27 mod normalize_erasing_regions;
28 mod util;
29 pub mod lowering;
30
31 use rustc::ty::maps::Providers;
32
33 pub fn provide(p: &mut Providers) {
34     *p = Providers {
35         dropck_outlives: dropck_outlives::dropck_outlives,
36         adt_dtorck_constraint: dropck_outlives::adt_dtorck_constraint,
37         normalize_projection_ty: normalize_projection_ty::normalize_projection_ty,
38         normalize_ty_after_erasing_regions:
39             normalize_erasing_regions::normalize_ty_after_erasing_regions,
40         program_clauses_for: lowering::program_clauses_for,
41         program_clauses_for_env: lowering::program_clauses_for_env,
42         evaluate_obligation: evaluate_obligation::evaluate_obligation,
43         ..*p
44     };
45 }