]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/else_if_without_else.rs
Auto merge of #97121 - pvdrz:do-subdiagnostics-later, r=davidtwco
[rust.git] / src / tools / clippy / clippy_lints / src / else_if_without_else.rs
1 //! Lint on if expressions with an else if, but without a final else branch.
2
3 use clippy_utils::diagnostics::span_lint_and_help;
4 use rustc_ast::ast::{Expr, ExprKind};
5 use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};
6 use rustc_middle::lint::in_external_macro;
7 use rustc_session::{declare_lint_pass, declare_tool_lint};
8
9 declare_clippy_lint! {
10     /// ### What it does
11     /// Checks for usage of if expressions with an `else if` branch,
12     /// but without a final `else` branch.
13     ///
14     /// ### Why is this bad?
15     /// Some coding guidelines require this (e.g., MISRA-C:2004 Rule 14.10).
16     ///
17     /// ### Example
18     /// ```rust
19     /// # fn a() {}
20     /// # fn b() {}
21     /// # let x: i32 = 1;
22     /// if x.is_positive() {
23     ///     a();
24     /// } else if x.is_negative() {
25     ///     b();
26     /// }
27     /// ```
28     ///
29     /// Could be written:
30     ///
31     /// ```rust
32     /// # fn a() {}
33     /// # fn b() {}
34     /// # let x: i32 = 1;
35     /// if x.is_positive() {
36     ///     a();
37     /// } else if x.is_negative() {
38     ///     b();
39     /// } else {
40     ///     // We don't care about zero.
41     /// }
42     /// ```
43     #[clippy::version = "pre 1.29.0"]
44     pub ELSE_IF_WITHOUT_ELSE,
45     restriction,
46     "`if` expression with an `else if`, but without a final `else` branch"
47 }
48
49 declare_lint_pass!(ElseIfWithoutElse => [ELSE_IF_WITHOUT_ELSE]);
50
51 impl EarlyLintPass for ElseIfWithoutElse {
52     fn check_expr(&mut self, cx: &EarlyContext<'_>, mut item: &Expr) {
53         if in_external_macro(cx.sess(), item.span) {
54             return;
55         }
56
57         while let ExprKind::If(_, _, Some(ref els)) = item.kind {
58             if let ExprKind::If(_, _, None) = els.kind {
59                 span_lint_and_help(
60                     cx,
61                     ELSE_IF_WITHOUT_ELSE,
62                     els.span,
63                     "`if` expression with an `else if`, but without a final `else`",
64                     None,
65                     "add an `else` block here",
66                 );
67             }
68
69             item = els;
70         }
71     }
72 }