mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Recognize infinite recursion caused by {self}
This commit is contained in:
parent
e1fa5190b4
commit
6a0eb08569
4 changed files with 68 additions and 18 deletions
|
@ -102,7 +102,6 @@ impl Display<'_> {
|
|||
MemberUnraw::Unnamed(index) => format_ident!("_{}", index),
|
||||
MemberUnraw::Named(ident) => ident.to_local(),
|
||||
});
|
||||
if let Some(&field) = member_index.get(&member) {
|
||||
let end_spec = match read.find('}') {
|
||||
Some(end_spec) => end_spec,
|
||||
None => return Ok(()),
|
||||
|
@ -118,13 +117,25 @@ impl Display<'_> {
|
|||
Some('E') => Trait::UpperExp,
|
||||
Some(_) => Trait::Display,
|
||||
None => {
|
||||
if member_index.contains_key(&member) {
|
||||
has_bonus_display = true;
|
||||
binding_value.extend(quote_spanned!(span=> .as_display()));
|
||||
}
|
||||
Trait::Display
|
||||
}
|
||||
};
|
||||
if let Some(&field) = member_index.get(&member) {
|
||||
implied_bounds.insert((field, bound));
|
||||
}
|
||||
if member == *"self" && bound == Trait::Display {
|
||||
binding_value = quote_spanned!(member.span()=>
|
||||
{
|
||||
#[warn(unconditional_recursion)]
|
||||
fn _fmt() { _fmt() }
|
||||
#member
|
||||
}
|
||||
);
|
||||
}
|
||||
bindings.push((local, binding_value));
|
||||
}
|
||||
|
||||
|
|
|
@ -101,6 +101,15 @@ impl PartialEq for MemberUnraw {
|
|||
}
|
||||
}
|
||||
|
||||
impl PartialEq<str> for MemberUnraw {
|
||||
fn eq(&self, other: &str) -> bool {
|
||||
match self {
|
||||
MemberUnraw::Named(this) => this == other,
|
||||
MemberUnraw::Unnamed(_) => false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Hash for MemberUnraw {
|
||||
fn hash<H: Hasher>(&self, hasher: &mut H) {
|
||||
match self {
|
||||
|
|
9
tests/ui/unconditional-recursion.rs
Normal file
9
tests/ui/unconditional-recursion.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{self}")]
|
||||
pub struct Error;
|
||||
|
||||
fn main() {
|
||||
@//fail
|
||||
}
|
21
tests/ui/unconditional-recursion.stderr
Normal file
21
tests/ui/unconditional-recursion.stderr
Normal file
|
@ -0,0 +1,21 @@
|
|||
error: expected expression, found `@`
|
||||
--> tests/ui/unconditional-recursion.rs:8:5
|
||||
|
|
||||
8 | @//fail
|
||||
| ^ expected expression
|
||||
|
||||
warning: function cannot return without recursing
|
||||
--> tests/ui/unconditional-recursion.rs:4:9
|
||||
|
|
||||
4 | #[error("{self}")]
|
||||
| ^^^^^^^^
|
||||
| |
|
||||
| cannot return without recursing
|
||||
| recursive call site
|
||||
|
|
||||
= help: a `loop` may express intention better if this is on purpose
|
||||
note: the lint level is defined here
|
||||
--> tests/ui/unconditional-recursion.rs:4:9
|
||||
|
|
||||
4 | #[error("{self}")]
|
||||
| ^^^^^^^^
|
Loading…
Add table
Add a link
Reference in a new issue