2015-10-22 00:25:16 +09:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2016-09-09 20:24:20 +02:00
|
|
|
use rustc::ty::TyAdt;
|
2016-04-07 17:46:48 +02:00
|
|
|
use rustc::hir::{Expr, ExprStruct};
|
2015-10-22 00:25:16 +09:00
|
|
|
use utils::span_lint;
|
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for needlessly including a base struct on update
|
|
|
|
/// when all fields are changed anyway.
|
2015-12-14 22:16:56 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Why is this bad?** This will cost resources (because the base has to be
|
|
|
|
/// somewhere), and make the code less readable.
|
2015-12-14 22:16:56 +01:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2016-07-16 00:25:44 +02:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// Point { x: 1, y: 0, ..zero_point }
|
|
|
|
/// ```
|
2015-10-22 00:25:16 +09:00
|
|
|
declare_lint! {
|
|
|
|
pub NEEDLESS_UPDATE,
|
|
|
|
Warn,
|
2016-07-16 00:25:44 +02:00
|
|
|
"using `Foo { ..base }` when there are no missing fields"
|
2015-10-22 00:25:16 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
2016-06-10 16:17:20 +02:00
|
|
|
pub struct Pass;
|
2015-10-22 00:25:16 +09:00
|
|
|
|
2016-06-10 16:17:20 +02:00
|
|
|
impl LintPass for Pass {
|
2015-10-22 00:25:16 +09:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_UPDATE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2015-10-22 00:25:16 +09:00
|
|
|
if let ExprStruct(_, ref fields, Some(ref base)) = expr.node {
|
2017-01-13 17:04:56 +01:00
|
|
|
let ty = cx.tables.expr_ty(expr);
|
2016-09-09 20:24:20 +02:00
|
|
|
if let TyAdt(def, _) = ty.sty {
|
2015-10-22 00:25:16 +09:00
|
|
|
if fields.len() == def.struct_variant().fields.len() {
|
2016-01-04 09:56:12 +05:30
|
|
|
span_lint(cx,
|
|
|
|
NEEDLESS_UPDATE,
|
|
|
|
base.span,
|
|
|
|
"struct update has no effect, all the fields in the struct have already been specified");
|
2015-10-22 00:25:16 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|