mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 22:07:37 +03:00
Merge pull request #342 from dtolnay/synfull
Defer is_syn_full() call until first expression
This commit is contained in:
commit
490f9c017b
1 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ fn explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn try_explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
fn try_explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
||||||
let syn_full = is_syn_full();
|
let mut syn_full = None;
|
||||||
let mut named_args = Set::new();
|
let mut named_args = Set::new();
|
||||||
|
|
||||||
while !input.is_empty() {
|
while !input.is_empty() {
|
||||||
|
@ -151,7 +151,7 @@ fn try_explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
|
||||||
input.parse::<Token![=]>()?;
|
input.parse::<Token![=]>()?;
|
||||||
named_args.insert(ident);
|
named_args.insert(ident);
|
||||||
}
|
}
|
||||||
if syn_full {
|
if *syn_full.get_or_insert_with(is_syn_full) {
|
||||||
let ahead = input.fork();
|
let ahead = input.fork();
|
||||||
if ahead.parse::<Expr>().is_ok() {
|
if ahead.parse::<Expr>().is_ok() {
|
||||||
input.advance_to(&ahead);
|
input.advance_to(&ahead);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue