mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Merge pull request #327 from dtolnay/literal
Improve error on malformed format attribute
This commit is contained in:
commit
bb30f2e9b4
2 changed files with 9 additions and 5 deletions
|
@ -91,7 +91,11 @@ fn parse_error_attribute<'a>(attrs: &mut Attrs<'a>, attr: &'a Attribute) -> Resu
|
|||
syn::custom_keyword!(transparent);
|
||||
|
||||
attr.parse_args_with(|input: ParseStream| {
|
||||
if let Some(kw) = input.parse::<Option<transparent>>()? {
|
||||
let lookahead = input.lookahead1();
|
||||
let fmt = if lookahead.peek(LitStr) {
|
||||
input.parse::<LitStr>()?
|
||||
} else if lookahead.peek(transparent) {
|
||||
let kw: transparent = input.parse()?;
|
||||
if attrs.transparent.is_some() {
|
||||
return Err(Error::new_spanned(
|
||||
attr,
|
||||
|
@ -103,9 +107,9 @@ fn parse_error_attribute<'a>(attrs: &mut Attrs<'a>, attr: &'a Attribute) -> Resu
|
|||
span: kw.span,
|
||||
});
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
let fmt: LitStr = input.parse()?;
|
||||
} else {
|
||||
return Err(lookahead.error());
|
||||
};
|
||||
|
||||
let ahead = input.fork();
|
||||
ahead.parse::<Option<Token![,]>>()?;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
error: expected string literal
|
||||
error: expected string literal or `transparent`
|
||||
--> tests/ui/concat-display.rs:8:17
|
||||
|
|
||||
8 | #[error(concat!("invalid ", $what))]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue