X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Fescape.rs;h=c44f2c696580c311700f3a7bd4a51c0bde8b1187;hb=6d1225981177587fbb68d9c4902c770c3dbaafb0;hp=de9e5cd4e869e02dc44ddefab1d6dfead603160d;hpb=b2523afae4fd1896844e960db2e192206f71e903;p=rust.git diff --git a/clippy_lints/src/escape.rs b/clippy_lints/src/escape.rs index de9e5cd4e86..c44f2c69658 100644 --- a/clippy_lints/src/escape.rs +++ b/clippy_lints/src/escape.rs @@ -1,10 +1,11 @@ use rustc::hir::intravisit as visit; use rustc::hir::{self, *}; +use rustc::impl_lint_pass; use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; use rustc::ty::layout::LayoutOf; use rustc::ty::{self, Ty}; use rustc::util::nodemap::HirIdSet; -use rustc::{declare_tool_lint, impl_lint_pass}; +use rustc_session::declare_tool_lint; use rustc_typeck::expr_use_visitor::*; use syntax::source_map::Span; @@ -55,7 +56,7 @@ fn check_fn( cx: &LateContext<'a, 'tcx>, _: visit::FnKind<'tcx>, _: &'tcx FnDecl, - body: &'tcx Body, + body: &'tcx Body<'_>, _: Span, hir_id: HirId, ) { @@ -106,44 +107,48 @@ fn is_argument(map: &hir::map::Map<'_>, id: HirId) -> bool { impl<'a, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> { fn consume(&mut self, cmt: &Place<'tcx>, mode: ConsumeMode) { - if let PlaceBase::Local(lid) = cmt.base { - if let ConsumeMode::Move = mode { - // moved out or in. clearly can't be localized - self.set.remove(&lid); - } - } - let map = &self.cx.tcx.hir(); - if let PlaceBase::Local(lid) = cmt.base { - if let Some(Node::Binding(_)) = map.find(cmt.hir_id) { - if self.set.contains(&lid) { - // let y = x where x is known - // remove x, insert y - self.set.insert(cmt.hir_id); + if cmt.projections.is_empty() { + if let PlaceBase::Local(lid) = cmt.base { + if let ConsumeMode::Move = mode { + // moved out or in. clearly can't be localized self.set.remove(&lid); } + let map = &self.cx.tcx.hir(); + if let Some(Node::Binding(_)) = map.find(cmt.hir_id) { + if self.set.contains(&lid) { + // let y = x where x is known + // remove x, insert y + self.set.insert(cmt.hir_id); + self.set.remove(&lid); + } + } } } } fn borrow(&mut self, cmt: &Place<'tcx>, _: ty::BorrowKind) { - if let PlaceBase::Local(lid) = cmt.base { - self.set.remove(&lid); + if cmt.projections.is_empty() { + if let PlaceBase::Local(lid) = cmt.base { + self.set.remove(&lid); + } } } fn mutate(&mut self, cmt: &Place<'tcx>) { - let map = &self.cx.tcx.hir(); - if is_argument(map, cmt.hir_id) { - // Skip closure arguments - let parent_id = map.get_parent_node(cmt.hir_id); - if let Some(Node::Expr(..)) = map.find(map.get_parent_node(parent_id)) { - return; - } + if cmt.projections.is_empty() { + let map = &self.cx.tcx.hir(); + if is_argument(map, cmt.hir_id) { + // Skip closure arguments + let parent_id = map.get_parent_node(cmt.hir_id); + if let Some(Node::Expr(..)) = map.find(map.get_parent_node(parent_id)) { + return; + } - if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) { - self.set.insert(cmt.hir_id); + if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) { + self.set.insert(cmt.hir_id); + } + return; } - return; } } }