]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/needless_borrowed_ref.rs
Rename in_macro to in_macro_or_desugar
[rust.git] / clippy_lints / src / needless_borrowed_ref.rs
1 //! Checks for useless borrowed references.
2 //!
3 //! This lint is **warn** by default
4
5 use crate::utils::{in_macro_or_desugar, snippet, span_lint_and_then};
6 use if_chain::if_chain;
7 use rustc::hir::{BindingAnnotation, MutImmutable, Pat, PatKind};
8 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
9 use rustc::{declare_lint_pass, declare_tool_lint};
10 use rustc_errors::Applicability;
11
12 declare_clippy_lint! {
13     /// **What it does:** Checks for useless borrowed references.
14     ///
15     /// **Why is this bad?** It is mostly useless and make the code look more
16     /// complex than it
17     /// actually is.
18     ///
19     /// **Known problems:** It seems that the `&ref` pattern is sometimes useful.
20     /// For instance in the following snippet:
21     /// ```rust
22     /// enum Animal {
23     ///     Cat(u64),
24     ///     Dog(u64),
25     /// }
26     ///
27     /// fn foo(a: &Animal, b: &Animal) {
28     ///     match (a, b) {
29     /// (&Animal::Cat(v), k) | (k, &Animal::Cat(v)) => (), // lifetime
30     /// mismatch error
31     ///         (&Animal::Dog(ref c), &Animal::Dog(_)) => ()
32     ///     }
33     /// }
34     /// ```
35     /// There is a lifetime mismatch error for `k` (indeed a and b have distinct
36     /// lifetime).
37     /// This can be fixed by using the `&ref` pattern.
38     /// However, the code can also be fixed by much cleaner ways
39     ///
40     /// **Example:**
41     /// ```rust
42     /// let mut v = Vec::<String>::new();
43     /// let _ = v.iter_mut().filter(|&ref a| a.is_empty());
44     /// ```
45     /// This closure takes a reference on something that has been matched as a
46     /// reference and
47     /// de-referenced.
48     /// As such, it could just be |a| a.is_empty()
49     pub NEEDLESS_BORROWED_REFERENCE,
50     complexity,
51     "taking a needless borrowed reference"
52 }
53
54 declare_lint_pass!(NeedlessBorrowedRef => [NEEDLESS_BORROWED_REFERENCE]);
55
56 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrowedRef {
57     fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
58         if in_macro_or_desugar(pat.span) {
59             // OK, simple enough, lints doesn't check in macro.
60             return;
61         }
62
63         if_chain! {
64             // Only lint immutable refs, because `&mut ref T` may be useful.
65             if let PatKind::Ref(ref sub_pat, MutImmutable) = pat.node;
66
67             // Check sub_pat got a `ref` keyword (excluding `ref mut`).
68             if let PatKind::Binding(BindingAnnotation::Ref, .., spanned_name, _) = sub_pat.node;
69             then {
70                 span_lint_and_then(cx, NEEDLESS_BORROWED_REFERENCE, pat.span,
71                                    "this pattern takes a reference on something that is being de-referenced",
72                                    |db| {
73                                        let hint = snippet(cx, spanned_name.span, "..").into_owned();
74                                        db.span_suggestion(
75                                            pat.span,
76                                            "try removing the `&ref` part and just keep",
77                                            hint,
78                                            Applicability::MachineApplicable, // snippet
79                                        );
80                                    });
81             }
82         }
83     }
84 }