2018-02-10 14:13:17 -06:00
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::hir::*;
|
2018-03-10 22:57:28 -06:00
|
|
|
use utils::{in_macro, is_range_expression, match_var, span_lint_and_sugg};
|
2018-02-10 14:13:17 -06:00
|
|
|
|
2018-02-11 03:50:19 -06:00
|
|
|
/// **What it does:** Checks for fields in struct literals where shorthands
|
|
|
|
/// could be used.
|
2018-02-10 14:13:17 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** If the field and variable names are the same,
|
|
|
|
/// the field name is redundant.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let bar: u8 = 123;
|
|
|
|
///
|
|
|
|
/// struct Foo {
|
|
|
|
/// bar: u8,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let foo = Foo{ bar: bar }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub REDUNDANT_FIELD_NAMES,
|
|
|
|
Warn,
|
2018-02-11 03:50:19 -06:00
|
|
|
"checks for fields in struct literals where shorthands could be used"
|
2018-02-10 14:13:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct RedundantFieldNames;
|
|
|
|
|
|
|
|
impl LintPass for RedundantFieldNames {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(REDUNDANT_FIELD_NAMES)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RedundantFieldNames {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2018-03-05 03:20:27 -06:00
|
|
|
// Do not care about range expressions.
|
|
|
|
// They could have redundant field name when desugared to structs.
|
|
|
|
// e.g. `start..end` is desugared to `Range { start: start, end: end }`
|
2018-03-10 22:57:28 -06:00
|
|
|
if in_macro(expr.span) || is_range_expression(expr.span) {
|
2018-03-05 03:20:27 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-05 02:40:42 -06:00
|
|
|
if let ExprStruct(_, ref fields, _) = expr.node {
|
2018-02-10 14:13:17 -06:00
|
|
|
for field in fields {
|
|
|
|
let name = field.name.node;
|
|
|
|
|
2018-02-11 03:50:19 -06:00
|
|
|
if match_var(&field.expr, name) && !field.is_shorthand {
|
|
|
|
span_lint_and_sugg (
|
|
|
|
cx,
|
|
|
|
REDUNDANT_FIELD_NAMES,
|
|
|
|
field.span,
|
|
|
|
"redundant field names in struct initialization",
|
|
|
|
"replace it with",
|
|
|
|
name.to_string()
|
|
|
|
);
|
2018-02-10 14:13:17 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|