mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Only apply inferred bounds if interpolation refers to field, not format var
This commit is contained in:
parent
67faae44b4
commit
593317939c
1 changed files with 22 additions and 21 deletions
|
@ -69,24 +69,6 @@ impl Display<'_> {
|
|||
}
|
||||
_ => continue,
|
||||
};
|
||||
if let Some(&field) = member_index.get(&member) {
|
||||
let end_spec = match read.find('}') {
|
||||
Some(end_spec) => end_spec,
|
||||
None => return,
|
||||
};
|
||||
let bound = match read[..end_spec].chars().next_back() {
|
||||
Some('?') => Trait::Debug,
|
||||
Some('o') => Trait::Octal,
|
||||
Some('x') => Trait::LowerHex,
|
||||
Some('X') => Trait::UpperHex,
|
||||
Some('p') => Trait::Pointer,
|
||||
Some('b') => Trait::Binary,
|
||||
Some('e') => Trait::LowerExp,
|
||||
Some('E') => Trait::UpperExp,
|
||||
Some(_) | None => Trait::Display,
|
||||
};
|
||||
implied_bounds.insert((field, bound));
|
||||
}
|
||||
let formatvar = match &member {
|
||||
MemberUnraw::Unnamed(index) => IdentUnraw::new(format_ident!("_{}", index)),
|
||||
MemberUnraw::Named(ident) => ident.clone(),
|
||||
|
@ -101,9 +83,28 @@ impl Display<'_> {
|
|||
}
|
||||
let local = formatvar.to_local();
|
||||
args.extend(quote_spanned!(span=> #formatvar = #local));
|
||||
if read.starts_with('}') && member_index.contains_key(&member) {
|
||||
has_bonus_display = true;
|
||||
args.extend(quote_spanned!(span=> .as_display()));
|
||||
if let Some(&field) = member_index.get(&member) {
|
||||
let end_spec = match read.find('}') {
|
||||
Some(end_spec) => end_spec,
|
||||
None => return,
|
||||
};
|
||||
let bound = match read[..end_spec].chars().next_back() {
|
||||
Some('?') => Trait::Debug,
|
||||
Some('o') => Trait::Octal,
|
||||
Some('x') => Trait::LowerHex,
|
||||
Some('X') => Trait::UpperHex,
|
||||
Some('p') => Trait::Pointer,
|
||||
Some('b') => Trait::Binary,
|
||||
Some('e') => Trait::LowerExp,
|
||||
Some('E') => Trait::UpperExp,
|
||||
Some(_) => Trait::Display,
|
||||
None => {
|
||||
has_bonus_display = true;
|
||||
args.extend(quote_spanned!(span=> .as_display()));
|
||||
Trait::Display
|
||||
}
|
||||
};
|
||||
implied_bounds.insert((field, bound));
|
||||
}
|
||||
has_trailing_comma = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue