rust/clippy_lints/src/redundant_field_names.rs

74 lines
2.1 KiB
Rust
Raw Normal View History

2018-11-27 14:14:15 -06:00
use crate::utils::span_lint_and_sugg;
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
use rustc_errors::Applicability;
use syntax::ast::*;
/// **What it does:** Checks for fields in struct literals where shorthands
/// could be used.
2018-05-29 04:58:58 -05:00
///
/// **Why is this bad?** If the field and variable names are the same,
/// the field name is redundant.
2018-05-29 04:58:58 -05:00
///
/// **Known problems:** None.
2018-05-29 04:58:58 -05:00
///
/// **Example:**
/// ```rust
/// let bar: u8 = 123;
2018-05-29 04:58:58 -05:00
///
/// struct Foo {
/// bar: u8,
/// }
2018-05-29 04:58:58 -05:00
///
/// let foo = Foo{ bar: bar }
/// ```
/// the last line can be simplified to
/// ```rust
/// let foo = Foo{ bar }
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub REDUNDANT_FIELD_NAMES,
2018-03-28 08:24:26 -05:00
style,
"checks for fields in struct literals where shorthands could be used"
}
pub struct RedundantFieldNames;
impl LintPass for RedundantFieldNames {
fn get_lints(&self) -> LintArray {
lint_array!(REDUNDANT_FIELD_NAMES)
}
fn name(&self) -> &'static str {
"RedundantFieldNames"
}
}
2018-08-06 01:20:50 -05:00
impl EarlyLintPass for RedundantFieldNames {
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
2018-07-12 02:30:57 -05:00
if let ExprKind::Struct(_, ref fields, _) = expr.node {
for field in fields {
2018-08-06 01:20:50 -05:00
if field.is_shorthand {
continue;
}
if let ExprKind::Path(None, path) = &field.expr.node {
if path.segments.len() == 1
&& path.segments[0].ident == field.ident
&& path.segments[0].args.is_none()
{
span_lint_and_sugg(
2018-08-06 01:20:50 -05:00
cx,
REDUNDANT_FIELD_NAMES,
field.span,
"redundant field names in struct initialization",
"replace it with",
field.ident.to_string(),
Applicability::MachineApplicable,
2018-08-06 01:20:50 -05:00
);
}
}
}
}
}
}