2016-01-15 06:16:54 -06:00
|
|
|
//! Various checks
|
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
2019-02-05 07:37:15 -06:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
|
2016-01-15 06:16:54 -06:00
|
|
|
|
2018-09-26 16:26:46 -05:00
|
|
|
#![feature(nll)]
|
2016-01-15 06:16:54 -06:00
|
|
|
#![feature(rustc_diagnostic_macros)]
|
2017-05-08 16:36:44 -05:00
|
|
|
|
2018-12-13 09:57:25 -06:00
|
|
|
#![recursion_limit="256"]
|
|
|
|
|
2019-02-08 05:40:49 -06:00
|
|
|
#![deny(rust_2018_idioms)]
|
2019-04-15 06:35:08 -05:00
|
|
|
#![deny(internal)]
|
2019-06-11 04:50:47 -05:00
|
|
|
#![deny(unused_lifetimes)]
|
2016-01-15 06:16:54 -06:00
|
|
|
|
2016-07-20 20:31:14 -05:00
|
|
|
#[macro_use]
|
2019-02-08 05:40:49 -06:00
|
|
|
extern crate rustc;
|
2016-01-15 06:16:54 -06:00
|
|
|
|
2018-06-13 08:44:43 -05:00
|
|
|
use rustc::ty::query::Providers;
|
2017-09-11 12:09:14 -05:00
|
|
|
|
2019-04-16 17:35:54 -05:00
|
|
|
mod error_codes;
|
2016-01-21 03:52:37 -06:00
|
|
|
|
2016-03-06 06:54:44 -06:00
|
|
|
pub mod ast_validation;
|
2018-01-29 11:54:37 -06:00
|
|
|
pub mod rvalue_promotion;
|
2016-11-04 10:37:39 -05:00
|
|
|
pub mod hir_stats;
|
2019-01-09 14:16:32 -06:00
|
|
|
pub mod layout_test;
|
2016-01-21 03:52:37 -06:00
|
|
|
pub mod loops;
|
2017-07-31 01:22:09 -05:00
|
|
|
|
|
|
|
__build_diagnostic_array! { librustc_passes, DIAGNOSTICS }
|
2017-09-11 12:09:14 -05:00
|
|
|
|
2019-02-08 05:40:49 -06:00
|
|
|
pub fn provide(providers: &mut Providers<'_>) {
|
2018-01-29 11:54:37 -06:00
|
|
|
rvalue_promotion::provide(providers);
|
2018-06-06 15:13:52 -05:00
|
|
|
loops::provide(providers);
|
2017-09-11 12:09:14 -05:00
|
|
|
}
|