X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Fneedless_update.rs;h=e93de8a252a34befc63b1aac34164f0bf266213b;hb=b094bb1bd7f1cc702823c91ca509f338fedee24a;hp=2ce9bf78aa6c40248a3774afcf5bfdbc6e76ed6d;hpb=15d1731ce8d3782ba93b0fd583307240fc814ef3;p=rust.git diff --git a/clippy_lints/src/needless_update.rs b/clippy_lints/src/needless_update.rs index 2ce9bf78aa6..e93de8a252a 100644 --- a/clippy_lints/src/needless_update.rs +++ b/clippy_lints/src/needless_update.rs @@ -1,13 +1,16 @@ -use crate::utils::span_lint; -use rustc::hir::{Expr, ExprKind}; -use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; -use rustc::ty; -use rustc::{declare_tool_lint, lint_array}; +use clippy_utils::diagnostics::span_lint; +use rustc_hir::{Expr, ExprKind}; +use rustc_lint::{LateContext, LateLintPass}; +use rustc_middle::ty; +use rustc_session::{declare_lint_pass, declare_tool_lint}; declare_clippy_lint! { /// **What it does:** Checks for needlessly including a base struct on update /// when all fields are changed anyway. /// + /// This lint is not applied to structs marked with + /// [non_exhaustive](https://doc.rust-lang.org/reference/attributes/type_system.html). + /// /// **Why is this bad?** This will cost resources (because the base has to be /// somewhere), and make the code less readable. /// @@ -15,36 +18,43 @@ /// /// **Example:** /// ```rust + /// # struct Point { + /// # x: i32, + /// # y: i32, + /// # z: i32, + /// # } + /// # let zero_point = Point { x: 0, y: 0, z: 0 }; + /// + /// // Bad + /// Point { + /// x: 1, + /// y: 1, + /// z: 1, + /// ..zero_point + /// }; + /// + /// // Ok /// Point { /// x: 1, - /// y: 0, + /// y: 1, /// ..zero_point - /// } + /// }; /// ``` pub NEEDLESS_UPDATE, complexity, "using `Foo { ..base }` when there are no missing fields" } -#[derive(Copy, Clone)] -pub struct Pass; - -impl LintPass for Pass { - fn get_lints(&self) -> LintArray { - lint_array!(NEEDLESS_UPDATE) - } - - fn name(&self) -> &'static str { - "NeedUpdate" - } -} +declare_lint_pass!(NeedlessUpdate => [NEEDLESS_UPDATE]); -impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass { - fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) { - if let ExprKind::Struct(_, ref fields, Some(ref base)) = expr.node { - let ty = cx.tables.expr_ty(expr); - if let ty::Adt(def, _) = ty.sty { - if fields.len() == def.non_enum_variant().fields.len() { +impl<'tcx> LateLintPass<'tcx> for NeedlessUpdate { + fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) { + if let ExprKind::Struct(_, ref fields, Some(ref base)) = expr.kind { + let ty = cx.typeck_results().expr_ty(expr); + if let ty::Adt(def, _) = ty.kind() { + if fields.len() == def.non_enum_variant().fields.len() + && !def.variants[0_usize.into()].is_field_list_non_exhaustive() + { span_lint( cx, NEEDLESS_UPDATE,