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:
Aaron Hill 2021-02-18 11:45:27 -05:00
parent d0f521c208
commit 0fa679b1b8
No known key found for this signature in database
GPG key ID: B4087E510E98B164
2 changed files with 20 additions and 5 deletions

View file

@ -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));