]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/redundant_field_names.rs
Merge branch 'macro-use' into HEAD
[rust.git] / clippy_lints / src / redundant_field_names.rs
index a63447575ef6db9f8cc68bddb925039125ed7f0f..4f28d36e2a8f72e66533d11f1ca709be7b937a84 100644 (file)
@@ -1,28 +1,29 @@
 use rustc::lint::*;
+use rustc::{declare_lint, lint_array};
 use rustc::hir::*;
-use utils::{in_macro, is_range_expression, match_var, span_lint_and_sugg};
+use crate::utils::{in_macro, is_range_expression, match_var, span_lint_and_sugg};
 
 /// **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,
 /// }
-/// 
+///
 /// let foo = Foo{ bar: bar }
 /// ```
-declare_lint! {
+declare_clippy_lint! {
     pub REDUNDANT_FIELD_NAMES,
-    Warn,
+    style,
     "checks for fields in struct literals where shorthands could be used"
 }
 
@@ -43,9 +44,9 @@ fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
             return;
         }
 
-        if let ExprStruct(_, ref fields, _) = expr.node {
+        if let ExprKind::Struct(_, ref fields, _) = expr.node {
             for field in fields {
-                let name = field.name.node;
+                let name = field.ident.name;
 
                 if match_var(&field.expr, name) && !field.is_shorthand {
                     span_lint_and_sugg (