mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Consistently use quote!
when emitting 'source'
When a macro generates part of the derive input, the call-site hygiene may be different than the hygiene of a field. Therefore, we need to be sure to use the same hygiene information for any identifiers we generate, instead of relying on the hygiene from a particular span via `quote_spanned!`
This commit is contained in:
parent
d0f521c208
commit
0fa679b1b8
2 changed files with 20 additions and 5 deletions
|
@ -48,3 +48,16 @@ fn test_boxed_source() {
|
|||
let error = BoxedSource { source };
|
||||
error.source().unwrap().downcast_ref::<io::Error>().unwrap();
|
||||
}
|
||||
|
||||
macro_rules! error_from_macro {
|
||||
($($variants:tt)*) => {
|
||||
#[derive(Error)]
|
||||
#[derive(Debug)]
|
||||
pub enum MacroSource {
|
||||
$($variants)*
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Test that we generate impls with the proper hygiene
|
||||
error_from_macro!(#[error("Something")] Variant(#[from] io::Error));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue