rust-clippy/clippy_lints/src/needless_update.rs

54 lines
1.6 KiB
Rust
Raw Normal View History

2018-05-30 08:15:50 +00:00
use crate::utils::span_lint;
use rustc::ty;
2020-01-06 16:39:50 +00:00
use rustc_hir::{Expr, ExprKind};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **What it does:** Checks for needlessly including a base struct on update
/// when all fields are changed anyway.
///
/// **Why is this bad?** This will cost resources (because the base has to be
/// somewhere), and make the code less readable.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// # struct Point {
/// # x: i32,
/// # y: i32,
/// # z: i32,
/// # }
/// # let zero_point = Point { x: 0, y: 0, z: 0 };
/// Point {
/// x: 1,
/// y: 1,
/// ..zero_point
/// };
/// ```
pub NEEDLESS_UPDATE,
2018-03-28 13:24:26 +00:00
complexity,
2016-07-15 22:25:44 +00:00
"using `Foo { ..base }` when there are no missing fields"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(NeedlessUpdate => [NEEDLESS_UPDATE]);
2019-04-08 20:43:55 +00:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessUpdate {
2019-12-27 07:12:26 +00:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
2019-09-27 15:16:06 +00:00
if let ExprKind::Struct(_, ref fields, Some(ref base)) = expr.kind {
2017-01-13 16:04:56 +00:00
let ty = cx.tables.expr_ty(expr);
if let ty::Adt(def, _) = ty.kind {
2018-01-10 08:50:58 +00:00
if fields.len() == def.non_enum_variant().fields.len() {
2017-08-09 07:30:56 +00:00
span_lint(
cx,
NEEDLESS_UPDATE,
base.span,
"struct update has no effect, all the fields in the struct have already been specified",
);
}
}
}
}
}