2019-06-10 12:01:05 -05:00
|
|
|
use crate::redundant_static_lifetime::RedundantStaticLifetime;
|
|
|
|
use crate::utils::in_macro_or_desugar;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
2019-04-08 15:43:55 -05:00
|
|
|
use rustc::{declare_lint_pass, declare_tool_lint};
|
2018-12-29 09:04:45 -06:00
|
|
|
use syntax::ast::*;
|
2017-10-20 08:51:35 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for constants with an explicit `'static` lifetime.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Adding `'static` to every reference can create very
|
|
|
|
/// complicated types.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// const FOO: &'static [(&'static str, &'static str, fn(&Bar) -> bool)] =
|
|
|
|
/// &[...]
|
|
|
|
/// ```
|
|
|
|
/// This code can be rewritten as
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// const FOO: &[(&str, &str, fn(&Bar) -> bool)] = &[...]
|
|
|
|
/// ```
|
2017-11-04 14:55:56 -05:00
|
|
|
pub CONST_STATIC_LIFETIME,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2017-10-20 08:51:35 -05:00
|
|
|
"Using explicit `'static` lifetime for constants when elision rules would allow omitting them."
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(StaticConst => [CONST_STATIC_LIFETIME]);
|
2017-10-20 08:51:35 -05:00
|
|
|
|
|
|
|
impl StaticConst {
|
|
|
|
// Recursively visit types
|
2018-07-23 06:01:12 -05:00
|
|
|
fn visit_type(&mut self, ty: &Ty, cx: &EarlyContext<'_>) {
|
2019-06-10 12:01:05 -05:00
|
|
|
let mut rsl =
|
|
|
|
RedundantStaticLifetime::new(CONST_STATIC_LIFETIME, "Constants have by default a `'static` lifetime");
|
|
|
|
rsl.visit_type(ty, cx)
|
2017-10-20 08:51:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EarlyLintPass for StaticConst {
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &Item) {
|
2019-05-11 22:40:05 -05:00
|
|
|
if !in_macro_or_desugar(item.span) {
|
2017-10-20 08:51:35 -05:00
|
|
|
// Match only constants...
|
|
|
|
if let ItemKind::Const(ref var_type, _) = item.node {
|
|
|
|
self.visit_type(var_type, cx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-02 01:03:21 -06:00
|
|
|
|
2018-02-06 12:22:34 -06:00
|
|
|
// Don't check associated consts because `'static` cannot be elided on those (issue #2438)
|
2017-10-20 08:51:35 -05:00
|
|
|
}
|