mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Detect duplicate attributes on the same syntax tree node
This commit is contained in:
parent
3d43d39ed1
commit
b78fe1891b
1 changed files with 11 additions and 1 deletions
|
@ -3,7 +3,8 @@ use quote::{format_ident, quote, ToTokens};
|
|||
use std::iter::once;
|
||||
use syn::parse::{Nothing, ParseStream};
|
||||
use syn::{
|
||||
braced, bracketed, parenthesized, token, Attribute, Ident, Index, LitInt, LitStr, Result, Token,
|
||||
braced, bracketed, parenthesized, token, Attribute, Error, Ident, Index, LitInt, LitStr,
|
||||
Result, Token,
|
||||
};
|
||||
|
||||
pub struct Attrs {
|
||||
|
@ -26,9 +27,18 @@ pub fn get(input: &[Attribute]) -> Result<Attrs> {
|
|||
for attr in input {
|
||||
if attr.path.is_ident("error") {
|
||||
let display = parse_display(attr)?;
|
||||
if attrs.display.is_some() {
|
||||
return Err(Error::new_spanned(
|
||||
attr,
|
||||
"only one #[error(...)] attribute is allowed",
|
||||
));
|
||||
}
|
||||
attrs.display = Some(display);
|
||||
} else if attr.path.is_ident("source") {
|
||||
parse_source(attr)?;
|
||||
if attrs.source {
|
||||
return Err(Error::new_spanned(attr, "duplicate #[source] attribute"));
|
||||
}
|
||||
attrs.source = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue