2015-10-21 10:25:16 -05:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::ty::TyStruct;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::{Expr, ExprStruct};
|
2015-10-21 10:25:16 -05:00
|
|
|
use utils::span_lint;
|
|
|
|
|
2016-02-05 17:41:54 -06:00
|
|
|
/// **What it does:** This lint warns on needlessly including a base struct on update when all fields are changed anyway.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This will cost resources (because the base has to be somewhere), and make the code less readable.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2015-12-21 13:47:19 -06:00
|
|
|
/// **Example:** `Point { x: 1, y: 0, ..zero_point }`
|
2015-10-21 10:25:16 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub NEEDLESS_UPDATE,
|
|
|
|
Warn,
|
|
|
|
"using `{ ..base }` when there are no missing fields"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct NeedlessUpdatePass;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessUpdatePass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_UPDATE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for NeedlessUpdatePass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
|
|
|
if let ExprStruct(_, ref fields, Some(ref base)) = expr.node {
|
|
|
|
let ty = cx.tcx.expr_ty(expr);
|
|
|
|
if let TyStruct(def, _) = ty.sty {
|
|
|
|
if fields.len() == def.struct_variant().fields.len() {
|
2016-01-03 22:26:12 -06: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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|