mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
use sugg::Sugg::maybe_par
This commit is contained in:
parent
4babfae9cb
commit
41e2c68a6e
3 changed files with 13 additions and 39 deletions
|
@ -1,9 +1,9 @@
|
||||||
use clippy_utils::diagnostics::span_lint_and_sugg;
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
||||||
use clippy_utils::higher::PanicExpn;
|
use clippy_utils::higher::PanicExpn;
|
||||||
use clippy_utils::is_expn_of;
|
|
||||||
use clippy_utils::source::snippet_with_applicability;
|
use clippy_utils::source::snippet_with_applicability;
|
||||||
|
use clippy_utils::{is_expn_of, sugg};
|
||||||
use rustc_errors::Applicability;
|
use rustc_errors::Applicability;
|
||||||
use rustc_hir::{BinOpKind, Block, Expr, ExprKind, StmtKind, UnOp};
|
use rustc_hir::{Block, Expr, ExprKind, StmtKind, UnOp};
|
||||||
use rustc_lint::{LateContext, LateLintPass};
|
use rustc_lint::{LateContext, LateLintPass};
|
||||||
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
||||||
|
|
||||||
|
@ -74,40 +74,14 @@ impl LateLintPass<'_> for IfThenPanic {
|
||||||
};
|
};
|
||||||
let mut applicability = Applicability::MachineApplicable;
|
let mut applicability = Applicability::MachineApplicable;
|
||||||
let sugg = snippet_with_applicability(cx, span, "..", &mut applicability);
|
let sugg = snippet_with_applicability(cx, span, "..", &mut applicability);
|
||||||
//let mut cond_sugg = format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability));
|
|
||||||
let cond_sugg = if let ExprKind::DropTemps(e, ..) = cond.kind {
|
let cond_sugg = if let ExprKind::DropTemps(e, ..) = cond.kind {
|
||||||
if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = e {
|
if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = e {
|
||||||
snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
|
sugg::Sugg::hir_with_applicability(cx, not_expr, "..", &mut applicability).maybe_par().to_string()
|
||||||
} else if let Expr{kind: ExprKind::Binary(op, left, right), ..} = e {//BinOp{BinOpKind::And, ..}
|
|
||||||
match op.node {
|
|
||||||
BinOpKind::And | BinOpKind::Or => {
|
|
||||||
let left_span = {
|
|
||||||
if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = left {
|
|
||||||
snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
|
|
||||||
} else {
|
|
||||||
format!("!{}", snippet_with_applicability(cx, left.span, "..", &mut applicability))
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let right_span = {
|
|
||||||
if let Expr{kind: ExprKind::Unary(UnOp::Not, not_expr), ..} = right {
|
|
||||||
snippet_with_applicability(cx, not_expr.span, "..", &mut applicability).to_string()
|
|
||||||
} else {
|
|
||||||
format!("!{}", snippet_with_applicability(cx, right.span, "..", &mut applicability))
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if op.node == BinOpKind::And {
|
|
||||||
format!("{} || {}", left_span, right_span)
|
|
||||||
} else {
|
|
||||||
format!("{} && {}", left_span, right_span)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => format!("!({})", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
|
format!("!{}", sugg::Sugg::hir_with_applicability(cx, e, "..", &mut applicability).maybe_par().to_string())
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
format!("!{}", snippet_with_applicability(cx, cond.span, "..", &mut applicability))
|
format!("!{}", sugg::Sugg::hir_with_applicability(cx, cond, "..", &mut applicability).maybe_par().to_string())
|
||||||
};
|
};
|
||||||
|
|
||||||
span_lint_and_sugg(
|
span_lint_and_sugg(
|
||||||
|
|
|
@ -33,8 +33,8 @@ fn main() {
|
||||||
}
|
}
|
||||||
let b = vec![1, 2, 3];
|
let b = vec![1, 2, 3];
|
||||||
assert!(!b.is_empty(), "panic1");
|
assert!(!b.is_empty(), "panic1");
|
||||||
assert!(!b.is_empty() || !a.is_empty(), "panic2");
|
assert!(!(b.is_empty() && a.is_empty()), "panic2");
|
||||||
assert!(!a.is_empty() || b.is_empty(), "panic3");
|
assert!(!(a.is_empty() && !b.is_empty()), "panic3");
|
||||||
assert!(!b.is_empty() && !a.is_empty(), "panic4");
|
assert!(!(b.is_empty() || a.is_empty()), "panic4");
|
||||||
assert!(!a.is_empty() && b.is_empty(), "panic5");
|
assert!(!(a.is_empty() || !b.is_empty()), "panic5");
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ error: only a `panic!` in `if`-then statement
|
||||||
LL | / if b.is_empty() && a.is_empty() {
|
LL | / if b.is_empty() && a.is_empty() {
|
||||||
LL | | panic!("panic2");
|
LL | | panic!("panic2");
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_____^ help: try: `assert!(!b.is_empty() || !a.is_empty(), "panic2");`
|
| |_____^ help: try: `assert!(!(b.is_empty() && a.is_empty()), "panic2");`
|
||||||
|
|
||||||
error: only a `panic!` in `if`-then statement
|
error: only a `panic!` in `if`-then statement
|
||||||
--> $DIR/if_then_panic.rs:45:5
|
--> $DIR/if_then_panic.rs:45:5
|
||||||
|
@ -38,7 +38,7 @@ error: only a `panic!` in `if`-then statement
|
||||||
LL | / if a.is_empty() && !b.is_empty() {
|
LL | / if a.is_empty() && !b.is_empty() {
|
||||||
LL | | panic!("panic3");
|
LL | | panic!("panic3");
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_____^ help: try: `assert!(!a.is_empty() || b.is_empty(), "panic3");`
|
| |_____^ help: try: `assert!(!(a.is_empty() && !b.is_empty()), "panic3");`
|
||||||
|
|
||||||
error: only a `panic!` in `if`-then statement
|
error: only a `panic!` in `if`-then statement
|
||||||
--> $DIR/if_then_panic.rs:48:5
|
--> $DIR/if_then_panic.rs:48:5
|
||||||
|
@ -46,7 +46,7 @@ error: only a `panic!` in `if`-then statement
|
||||||
LL | / if b.is_empty() || a.is_empty() {
|
LL | / if b.is_empty() || a.is_empty() {
|
||||||
LL | | panic!("panic4");
|
LL | | panic!("panic4");
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_____^ help: try: `assert!(!b.is_empty() && !a.is_empty(), "panic4");`
|
| |_____^ help: try: `assert!(!(b.is_empty() || a.is_empty()), "panic4");`
|
||||||
|
|
||||||
error: only a `panic!` in `if`-then statement
|
error: only a `panic!` in `if`-then statement
|
||||||
--> $DIR/if_then_panic.rs:51:5
|
--> $DIR/if_then_panic.rs:51:5
|
||||||
|
@ -54,7 +54,7 @@ error: only a `panic!` in `if`-then statement
|
||||||
LL | / if a.is_empty() || !b.is_empty() {
|
LL | / if a.is_empty() || !b.is_empty() {
|
||||||
LL | | panic!("panic5");
|
LL | | panic!("panic5");
|
||||||
LL | | }
|
LL | | }
|
||||||
| |_____^ help: try: `assert!(!a.is_empty() && b.is_empty(), "panic5");`
|
| |_____^ help: try: `assert!(!(a.is_empty() || !b.is_empty()), "panic5");`
|
||||||
|
|
||||||
error: aborting due to 7 previous errors
|
error: aborting due to 7 previous errors
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue