mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
Merge pull request #358 from dtolnay/conflict
Further deconflict macro-generated format var names with user-provided ones
This commit is contained in:
commit
e1fa5190b4
1 changed files with 4 additions and 1 deletions
|
@ -78,7 +78,7 @@ impl Display<'_> {
|
||||||
}
|
}
|
||||||
_ => continue,
|
_ => continue,
|
||||||
};
|
};
|
||||||
let formatvar = match &member {
|
let mut formatvar = match &member {
|
||||||
MemberUnraw::Unnamed(index) => IdentUnraw::new(format_ident!("__field{}", index)),
|
MemberUnraw::Unnamed(index) => IdentUnraw::new(format_ident!("__field{}", index)),
|
||||||
MemberUnraw::Named(ident) => {
|
MemberUnraw::Named(ident) => {
|
||||||
if user_named_args.contains(ident) || ident == "_" {
|
if user_named_args.contains(ident) || ident == "_" {
|
||||||
|
@ -89,6 +89,9 @@ impl Display<'_> {
|
||||||
IdentUnraw::new(format_ident!("__field_{}", ident.to_string()))
|
IdentUnraw::new(format_ident!("__field_{}", ident.to_string()))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
while user_named_args.contains(&formatvar) {
|
||||||
|
formatvar = IdentUnraw::new(format_ident!("_{}", formatvar.to_string()));
|
||||||
|
}
|
||||||
out += &formatvar.to_string();
|
out += &formatvar.to_string();
|
||||||
if !macro_named_args.insert(member.clone()) {
|
if !macro_named_args.insert(member.clone()) {
|
||||||
// Already added to scope by a previous use.
|
// Already added to scope by a previous use.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue