2018-11-27 14:14:15 -06:00
|
|
|
use crate::utils::span_lint_and_sugg;
|
2020-02-29 21:23:33 -06:00
|
|
|
use rustc_ast::ast::{Expr, ExprKind};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2018-02-10 14:13:17 -06: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 fields in struct literals where shorthands
|
|
|
|
/// could be used.
|
|
|
|
///
|
|
|
|
/// **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,
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-05 16:23:50 -06:00
|
|
|
/// let foo = Foo { bar: bar };
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
|
|
|
/// the last line can be simplified to
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
|
|
|
/// let foo = Foo { bar };
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2018-02-10 14:13:17 -06:00
|
|
|
pub REDUNDANT_FIELD_NAMES,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
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
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(RedundantFieldNames => [REDUNDANT_FIELD_NAMES]);
|
2018-02-10 14:13:17 -06:00
|
|
|
|
2018-08-06 01:20:50 -05:00
|
|
|
impl EarlyLintPass for RedundantFieldNames {
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Struct(_, ref fields, _) = expr.kind {
|
2018-02-10 14:13:17 -06:00
|
|
|
for field in fields {
|
2018-08-06 01:20:50 -05:00
|
|
|
if field.is_shorthand {
|
|
|
|
continue;
|
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(None, path) = &field.expr.kind {
|
2018-12-11 08:33:23 -06:00
|
|
|
if path.segments.len() == 1
|
|
|
|
&& path.segments[0].ident == field.ident
|
|
|
|
&& path.segments[0].args.is_none()
|
|
|
|
{
|
2018-11-20 07:06:29 -06:00
|
|
|
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",
|
2018-11-20 07:06:29 -06:00
|
|
|
field.ident.to_string(),
|
2018-11-27 08:13:57 -06:00
|
|
|
Applicability::MachineApplicable,
|
2018-08-06 01:20:50 -05:00
|
|
|
);
|
|
|
|
}
|
2018-02-10 14:13:17 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|