mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Clean up formatvar identifier construction
This commit is contained in:
parent
17fa0d290a
commit
24e7f87d0d
1 changed files with 4 additions and 6 deletions
|
@ -90,12 +90,10 @@ impl Display<'_> {
|
|||
}
|
||||
_ => continue,
|
||||
};
|
||||
let mut formatvar = match &member {
|
||||
MemberUnraw::Unnamed(index) => IdentUnraw::new(format_ident!("__field{}", index)),
|
||||
MemberUnraw::Named(ident) => {
|
||||
IdentUnraw::new(format_ident!("__field_{}", ident.to_string()))
|
||||
}
|
||||
};
|
||||
let mut formatvar = IdentUnraw::new(match &member {
|
||||
MemberUnraw::Unnamed(index) => format_ident!("__field{}", index),
|
||||
MemberUnraw::Named(ident) => format_ident!("__field_{}", ident.to_string()),
|
||||
});
|
||||
while user_named_args.contains(&formatvar) {
|
||||
formatvar = IdentUnraw::new(format_ident!("_{}", formatvar.to_string()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue