mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
Fix Clippy sync fallout
This commit is contained in:
parent
fb0142ae41
commit
7e267c23d6
1 changed files with 3 additions and 3 deletions
|
@ -191,13 +191,13 @@ impl<'a> PanicExpn<'a> {
|
||||||
if !macro_backtrace(expr.span).any(|macro_call| is_panic(cx, macro_call.def_id)) {
|
if !macro_backtrace(expr.span).any(|macro_call| is_panic(cx, macro_call.def_id)) {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let ExprKind::Call(callee, [arg]) = expr.kind else { return None };
|
let ExprKind::Call(callee, [arg]) = &expr.kind else { return None };
|
||||||
let ExprKind::Path(QPath::Resolved(_, path)) = callee.kind else { return None };
|
let ExprKind::Path(QPath::Resolved(_, path)) = &callee.kind else { return None };
|
||||||
let result = match path.segments.last().unwrap().ident.as_str() {
|
let result = match path.segments.last().unwrap().ident.as_str() {
|
||||||
"panic" if arg.span.ctxt() == expr.span.ctxt() => Self::Empty,
|
"panic" if arg.span.ctxt() == expr.span.ctxt() => Self::Empty,
|
||||||
"panic" | "panic_str" => Self::Str(arg),
|
"panic" | "panic_str" => Self::Str(arg),
|
||||||
"panic_display" => {
|
"panic_display" => {
|
||||||
let ExprKind::AddrOf(_, _, e) = arg.kind else { return None };
|
let ExprKind::AddrOf(_, _, e) = &arg.kind else { return None };
|
||||||
Self::Display(e)
|
Self::Display(e)
|
||||||
},
|
},
|
||||||
"panic_fmt" => Self::Format(FormatArgsExpn::parse(cx, arg)?),
|
"panic_fmt" => Self::Format(FormatArgsExpn::parse(cx, arg)?),
|
||||||
|
|
Loading…
Reference in a new issue