Skip to content

Commit

Permalink
Merge pull request #1539 from dtolnay/labeledloop
Browse files Browse the repository at this point in the history
Fix parsing of labeled loop followed by paren in stmt or match arm position
  • Loading branch information
dtolnay committed Dec 11, 2023
2 parents 78f8f79 + 80604dc commit fbd9809
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 21 deletions.
47 changes: 27 additions & 20 deletions src/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1663,31 +1663,36 @@ pub(crate) mod parsing {
} else if input.peek(Token![_]) {
input.parse().map(Expr::Infer)
} else if input.peek(Lifetime) {
let the_label: Label = input.parse()?;
let mut expr = if input.peek(Token![while]) {
Expr::While(input.parse()?)
} else if input.peek(Token![for]) {
Expr::ForLoop(input.parse()?)
} else if input.peek(Token![loop]) {
Expr::Loop(input.parse()?)
} else if input.peek(token::Brace) {
Expr::Block(input.parse()?)
} else {
return Err(input.error("expected loop or block expression"));
};
match &mut expr {
Expr::While(ExprWhile { label, .. })
| Expr::ForLoop(ExprForLoop { label, .. })
| Expr::Loop(ExprLoop { label, .. })
| Expr::Block(ExprBlock { label, .. }) => *label = Some(the_label),
_ => unreachable!(),
}
Ok(expr)
atom_labeled(input)
} else {
Err(input.error("expected an expression"))
}
}

#[cfg(feature = "full")]
fn atom_labeled(input: ParseStream) -> Result<Expr> {
let the_label: Label = input.parse()?;
let mut expr = if input.peek(Token![while]) {
Expr::While(input.parse()?)
} else if input.peek(Token![for]) {
Expr::ForLoop(input.parse()?)
} else if input.peek(Token![loop]) {
Expr::Loop(input.parse()?)
} else if input.peek(token::Brace) {
Expr::Block(input.parse()?)
} else {
return Err(input.error("expected loop or block expression"));
};
match &mut expr {
Expr::While(ExprWhile { label, .. })
| Expr::ForLoop(ExprForLoop { label, .. })
| Expr::Loop(ExprLoop { label, .. })
| Expr::Block(ExprBlock { label, .. }) => *label = Some(the_label),
_ => unreachable!(),
}
Ok(expr)
}

#[cfg(not(feature = "full"))]
fn atom_expr(input: ParseStream) -> Result<Expr> {
if input.peek(token::Group)
Expand Down Expand Up @@ -1935,6 +1940,8 @@ pub(crate) mod parsing {
Expr::Const(input.parse()?)
} else if input.peek(token::Brace) {
Expr::Block(input.parse()?)
} else if input.peek(Lifetime) {
atom_labeled(input)?
} else {
let allow_struct = AllowStruct(true);
let mut expr = unary_expr(input, allow_struct)?;
Expand Down
57 changes: 56 additions & 1 deletion tests/test_stmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ mod macros;

use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree};
use quote::quote;
use syn::Stmt;
use syn::parse::Parser as _;
use syn::{Block, Stmt};

#[test]
fn test_raw_operator() {
Expand Down Expand Up @@ -234,3 +235,57 @@ fn test_macros() {
})
"###);
}

#[test]
fn test_early_parse_loop() {
// The following is an Expr::Loop followed by Expr::Tuple. It is not an
// Expr::Call.
let tokens = quote! {
loop {}
()
};

let stmts = Block::parse_within.parse2(tokens).unwrap();

snapshot!(stmts, @r###"
[
Stmt::Expr(
Expr::Loop {
body: Block,
},
None,
),
Stmt::Expr(
Expr::Tuple,
None,
),
]
"###);

let tokens = quote! {
'a: loop {}
()
};

let stmts = Block::parse_within.parse2(tokens).unwrap();

snapshot!(stmts, @r###"
[
Stmt::Expr(
Expr::Loop {
label: Some(Label {
name: Lifetime {
ident: "a",
},
}),
body: Block,
},
None,
),
Stmt::Expr(
Expr::Tuple,
None,
),
]
"###);
}

0 comments on commit fbd9809

Please sign in to comment.