rust/clippy_lints/src/needless_borrow.rs

72 lines
2.3 KiB
Rust
Raw Normal View History

2016-04-26 08:49:53 -05:00
//! Checks for needless address of operations (`&`)
//!
//! This lint is **warn** by default
use rustc::lint::*;
2016-08-01 09:59:14 -05:00
use rustc::hir::{ExprAddrOf, Expr, MutImmutable, Pat, PatKind, BindingMode};
use rustc::ty;
2016-04-26 08:49:53 -05:00
use utils::{span_lint, in_macro};
/// **What it does:** Checks for address of operations (`&`) that are going to
/// be dereferenced immediately by the compiler.
2016-04-26 08:49:53 -05:00
///
/// **Why is this bad?** Suggests that the receiver of the expression borrows
/// the expression.
2016-04-26 08:49:53 -05:00
///
/// **Known problems:** None.
2016-04-26 08:49:53 -05:00
///
2016-07-15 17:25:44 -05:00
/// **Example:**
/// ```rust
/// let x: &i32 = &&&&&&5;
/// ```
2016-04-26 08:49:53 -05:00
declare_lint! {
pub NEEDLESS_BORROW,
Warn,
"taking a reference that is going to be automatically dereferenced"
}
#[derive(Copy,Clone)]
pub struct NeedlessBorrow;
impl LintPass for NeedlessBorrow {
fn get_lints(&self) -> LintArray {
lint_array!(NEEDLESS_BORROW)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrow {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
2016-04-26 08:49:53 -05:00
if in_macro(cx, e.span) {
return;
}
if let ExprAddrOf(MutImmutable, ref inner) = e.node {
if let ty::TyRef(..) = cx.tcx.tables().expr_ty(inner).sty {
2016-12-20 11:21:30 -06:00
if let Some(&ty::adjustment::Adjust::DerefRef { autoderefs, autoref, .. }) =
cx.tcx.tables.borrow().adjustments.get(&e.id).map(|a| &a.kind) {
if autoderefs > 1 && autoref.is_some() {
span_lint(cx,
NEEDLESS_BORROW,
e.span,
"this expression borrows a reference that is immediately dereferenced by the \
compiler");
}
2016-04-26 08:49:53 -05:00
}
}
}
}
fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
2016-08-01 09:59:14 -05:00
if in_macro(cx, pat.span) {
return;
}
if let PatKind::Binding(BindingMode::BindByRef(MutImmutable), _, _, _) = pat.node {
if let ty::TyRef(_, ref tam) = cx.tcx.tables().pat_ty(pat).sty {
2016-08-01 09:59:14 -05:00
if tam.mutbl == MutImmutable {
if let ty::TyRef(..) = tam.ty.sty {
2016-12-20 11:21:30 -06:00
span_lint(cx, NEEDLESS_BORROW, pat.span, "this pattern creates a reference to a reference")
2016-08-01 09:59:14 -05:00
}
}
}
}
}
2016-04-26 08:49:53 -05:00
}