mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Interleave Expr parsing and scanning better
This commit is contained in:
parent
925f2dde77
commit
40a53f7f33
1 changed files with 9 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
use crate::ast::Field;
|
||||
use crate::attr::{Display, Trait};
|
||||
use crate::scan_expr;
|
||||
use crate::scan_expr::scan_expr;
|
||||
use proc_macro2::{TokenStream, TokenTree};
|
||||
use quote::{format_ident, quote, quote_spanned};
|
||||
use std::collections::{BTreeSet as Set, HashMap as Map};
|
||||
|
@ -138,12 +138,7 @@ fn explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
|||
}
|
||||
|
||||
fn try_explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
||||
let scan_expr = if is_syn_full() {
|
||||
|input: ParseStream| input.parse::<Expr>().map(drop)
|
||||
} else {
|
||||
scan_expr::scan_expr
|
||||
};
|
||||
|
||||
let syn_full = is_syn_full();
|
||||
let mut named_args = Set::new();
|
||||
|
||||
while !input.is_empty() {
|
||||
|
@ -156,6 +151,13 @@ fn try_explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
|||
input.parse::<Token![=]>()?;
|
||||
named_args.insert(ident);
|
||||
}
|
||||
if syn_full {
|
||||
let ahead = input.fork();
|
||||
if ahead.parse::<Expr>().is_ok() {
|
||||
input.advance_to(&ahead);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
scan_expr(input)?;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue