mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00

- Rename `broken_intra_doc_links` to `rustdoc::broken_intra_doc_links` - Ensure that the old lint names still work and give deprecation errors - Register lints even when running doctests Otherwise, all `rustdoc::` lints would be ignored. - Register all existing lints as removed This unfortunately doesn't work with `register_renamed` because tool lints have not yet been registered when rustc is running. For similar reasons, `check_backwards_compat` doesn't work either. Call `register_removed` directly instead. - Fix fallout + Rustdoc lints for compiler/ + Rustdoc lints for library/ Note that this does *not* suggest `rustdoc::broken_intra_doc_links` for `rustdoc::intra_doc_link_resolution_failure`, since there was no time when the latter was valid.
17 lines
587 B
Rust
17 lines
587 B
Rust
#![cfg_attr(bootstrap, deny(invalid_codeblock_attributes))]
|
|
#![cfg_attr(not(bootstrap), deny(rustdoc::invalid_codeblock_attributes))]
|
|
//! This library is used to gather all error codes into one place,
|
|
//! the goal being to make their maintenance easier.
|
|
|
|
macro_rules! register_diagnostics {
|
|
($($ecode:ident: $message:expr,)* ; $($code:ident,)*) => (
|
|
pub static DIAGNOSTICS: &[(&str, Option<&str>)] = &[
|
|
$( (stringify!($ecode), Some($message)), )*
|
|
$( (stringify!($code), None), )*
|
|
];
|
|
)
|
|
}
|
|
|
|
mod error_codes;
|
|
pub use error_codes::DIAGNOSTICS;
|