From d7867ef8c15bfa199bac13ae919e9b93f9a34b57 Mon Sep 17 00:00:00 2001 From: Laura Peskin Date: Mon, 25 Sep 2017 02:00:21 -0400 Subject: [PATCH] add lint for mutable borrow; may have false positives. pushed for feedback --- clippy_lints/src/loops.rs | 19 ++++++++++++++++--- tests/run-pass/mut_range_bound_tmp.rs | 13 +++++++++++-- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/clippy_lints/src/loops.rs b/clippy_lints/src/loops.rs index 518b6e21347..c82ddb7383d 100644 --- a/clippy_lints/src/loops.rs +++ b/clippy_lints/src/loops.rs @@ -1327,7 +1327,20 @@ fn matched_pat(&mut self, _: &Pat, _: cmt<'tcx>, _: MatchMode) { fn consume_pat(&mut self, _: &Pat, _: cmt<'tcx>, _: ConsumeMode) { } - fn borrow(&mut self, _: NodeId, _: Span, _: cmt<'tcx>, _: ty::Region, _: ty::BorrowKind, _: LoanCause) { + fn borrow(&mut self, _: NodeId, sp: Span, cmt: cmt<'tcx>, _: ty::Region, bk: ty::BorrowKind, _: LoanCause) { + match bk { + ty::BorrowKind::MutBorrow => { + if let Categorization::Local(id) = cmt.cat { + if Some(id) == self.node_id_low { + self.span_low = Some(sp) + } + if Some(id) == self.node_id_high { + self.span_high = Some(sp) + } + } + }, + _ => (), + } } fn mutate(&mut self, _: NodeId, sp: Span, cmt: cmt<'tcx>, _: MutateMode) { @@ -1390,8 +1403,8 @@ fn check_for_mutability(cx: &LateContext, bound: &Expr) -> Option { fn check_for_mutation(cx: &LateContext, body: &Expr, bound_ids: Vec>) -> (Option, Option) { let mut delegate = MutateDelegate { node_id_low: bound_ids[0], node_id_high: bound_ids[1], span_low: None, span_high: None }; - let d = def_id::DefId::local(body.hir_id.owner); - let region_scope_tree = &cx.tcx.region_scope_tree(d); + let def_id = def_id::DefId::local(body.hir_id.owner); + let region_scope_tree = &cx.tcx.region_scope_tree(def_id); ExprUseVisitor::new(&mut delegate, cx.tcx, cx.param_env, region_scope_tree, cx.tables).walk_expr(body); return delegate.mutation_span(); } diff --git a/tests/run-pass/mut_range_bound_tmp.rs b/tests/run-pass/mut_range_bound_tmp.rs index c13c0c0ae85..1a7159c330e 100644 --- a/tests/run-pass/mut_range_bound_tmp.rs +++ b/tests/run-pass/mut_range_bound_tmp.rs @@ -9,6 +9,8 @@ fn main() { mut_range_bound_both(); mut_range_bound_no_mutation(); immut_range_bound(); + mut_borrow_range_bound(); + immut_borrow_range_bound(); } fn mut_range_bound_upper() { @@ -35,8 +37,15 @@ fn mut_range_bound_no_mutation() { fn mut_borrow_range_bound() { let mut m = 4; for i in 0..m { - let n = &mut m; - *n += 1; + let n = &mut m; // warning here? + *n += 1; // or here? + } +} + +fn immut_borrow_range_bound() { + let mut m = 4; + for i in 0..m { + let n = &m; // should be no warning? } } -- 2.44.0