2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::span_lint;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::{Expr, ExprKind};
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::ty;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc_session::declare_tool_lint;
|
2015-10-21 10:25:16 -05: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 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
|
2019-08-02 01:13:54 -05:00
|
|
|
/// # struct Point {
|
|
|
|
/// # x: i32,
|
|
|
|
/// # y: i32,
|
|
|
|
/// # z: i32,
|
|
|
|
/// # }
|
|
|
|
/// # let zero_point = Point { x: 0, y: 0, z: 0 };
|
2019-03-05 10:50:33 -06:00
|
|
|
/// Point {
|
|
|
|
/// x: 1,
|
2019-08-02 01:13:54 -05:00
|
|
|
/// y: 1,
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ..zero_point
|
2019-08-02 01:13:54 -05:00
|
|
|
/// };
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2015-10-21 10:25:16 -05:00
|
|
|
pub NEEDLESS_UPDATE,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-07-15 17:25:44 -05:00
|
|
|
"using `Foo { ..base }` when there are no missing fields"
|
2015-10-21 10:25:16 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(NeedlessUpdate => [NEEDLESS_UPDATE]);
|
2015-10-21 10:25:16 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessUpdate {
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Struct(_, ref fields, Some(ref base)) = expr.kind {
|
2017-01-13 10:04:56 -06:00
|
|
|
let ty = cx.tables.expr_ty(expr);
|
2019-09-26 04:03:36 -05:00
|
|
|
if let ty::Adt(def, _) = ty.kind {
|
2018-01-10 02:50:58 -06:00
|
|
|
if fields.len() == def.non_enum_variant().fields.len() {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_UPDATE,
|
|
|
|
base.span,
|
|
|
|
"struct update has no effect, all the fields in the struct have already been specified",
|
|
|
|
);
|
2015-10-21 10:25:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|