mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Touch up PR 258
This commit is contained in:
parent
4850c6f80f
commit
c9fe739272
2 changed files with 13 additions and 7 deletions
|
@ -29,8 +29,8 @@ fn impl_struct(input: Struct) -> TokenStream {
|
|||
error_inferred_bounds.insert(only_field.ty, quote!(std::error::Error));
|
||||
}
|
||||
let member = &only_field.member;
|
||||
Some(quote_spanned! {
|
||||
transparent_attr.span => std::error::Error::source(self.#member.as_dyn_error())
|
||||
Some(quote_spanned! {transparent_attr.span=>
|
||||
std::error::Error::source(self.#member.as_dyn_error())
|
||||
})
|
||||
} else if let Some(source_field) = input.source_field() {
|
||||
let source = &source_field.member;
|
||||
|
@ -43,8 +43,9 @@ fn impl_struct(input: Struct) -> TokenStream {
|
|||
} else {
|
||||
None
|
||||
};
|
||||
let dyn_error =
|
||||
quote_spanned!(source_field.source_span() => self.#source #asref.as_dyn_error());
|
||||
let dyn_error = quote_spanned! {source_field.source_span()=>
|
||||
self.#source #asref.as_dyn_error()
|
||||
};
|
||||
Some(quote! {
|
||||
::core::option::Option::Some(#dyn_error)
|
||||
})
|
||||
|
@ -200,7 +201,9 @@ fn impl_enum(input: Enum) -> TokenStream {
|
|||
error_inferred_bounds.insert(only_field.ty, quote!(std::error::Error));
|
||||
}
|
||||
let member = &only_field.member;
|
||||
let source = quote_spanned!(transparent_attr.span => std::error::Error::source(transparent.as_dyn_error()));
|
||||
let source = quote_spanned! {transparent_attr.span=>
|
||||
std::error::Error::source(transparent.as_dyn_error())
|
||||
};
|
||||
quote! {
|
||||
#ty::#ident {#member: transparent} => #source,
|
||||
}
|
||||
|
@ -216,7 +219,9 @@ fn impl_enum(input: Enum) -> TokenStream {
|
|||
None
|
||||
};
|
||||
let varsource = quote!(source);
|
||||
let dyn_error = quote_spanned!(source_field.source_span()=> #varsource #asref.as_dyn_error());
|
||||
let dyn_error = quote_spanned! {source_field.source_span()=>
|
||||
#varsource #asref.as_dyn_error()
|
||||
};
|
||||
quote! {
|
||||
#ty::#ident {#source: #varsource, ..} => ::core::option::Option::Some(#dyn_error),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue