@@ -1440,21 +1440,23 @@ impl<'a> Parser<'a> {
1440
1440
} else if this. eat_keyword ( kw:: Underscore ) {
1441
1441
Ok ( this. mk_expr ( this. prev_token . span , ExprKind :: Underscore ) )
1442
1442
} else if this. token . uninterpolated_span ( ) . at_least_rust_2018 ( ) {
1443
- // `Span:.at_least_rust_2018()` is somewhat expensive; don't get it repeatedly.
1444
- if this. check_keyword ( kw:: Async ) {
1443
+ // `Span::at_least_rust_2018()` is somewhat expensive; don't get it repeatedly.
1444
+ if this. token . uninterpolated_span ( ) . at_least_rust_2024 ( )
1445
+ // check for `gen {}` and `gen move {}`
1446
+ // or `async gen {}` and `async gen move {}`
1447
+ && ( this. is_gen_block ( kw:: Gen , 0 )
1448
+ || ( this. check_keyword ( kw:: Async ) && this. is_gen_block ( kw:: Gen , 1 ) ) )
1449
+ {
1450
+ // FIXME: (async) gen closures aren't yet parsed.
1451
+ this. parse_gen_block ( )
1452
+ } else if this. check_keyword ( kw:: Async ) {
1445
1453
// FIXME(gen_blocks): Parse `gen async` and suggest swap
1446
1454
if this. is_gen_block ( kw:: Async , 0 ) {
1447
1455
// Check for `async {` and `async move {`,
1448
- // or `async gen {` and `async gen move {`.
1449
1456
this. parse_gen_block ( )
1450
1457
} else {
1451
1458
this. parse_expr_closure ( )
1452
1459
}
1453
- } else if this. token . uninterpolated_span ( ) . at_least_rust_2024 ( )
1454
- && ( this. is_gen_block ( kw:: Gen , 0 )
1455
- || ( this. check_keyword ( kw:: Async ) && this. is_gen_block ( kw:: Gen , 1 ) ) )
1456
- {
1457
- this. parse_gen_block ( )
1458
1460
} else if this. eat_keyword_noexpect ( kw:: Await ) {
1459
1461
this. recover_incorrect_await_syntax ( lo, this. prev_token . span )
1460
1462
} else {
@@ -3219,9 +3221,16 @@ impl<'a> Parser<'a> {
3219
3221
if self . eat_keyword ( kw:: Gen ) { GenBlockKind :: AsyncGen } else { GenBlockKind :: Async }
3220
3222
} else {
3221
3223
assert ! ( self . eat_keyword( kw:: Gen ) ) ;
3222
- self . sess . gated_spans . gate ( sym:: gen_blocks, lo. to ( self . token . span ) ) ;
3223
3224
GenBlockKind :: Gen
3224
3225
} ;
3226
+ match kind {
3227
+ GenBlockKind :: Async => {
3228
+ // `async` blocks are stable
3229
+ }
3230
+ GenBlockKind :: Gen | GenBlockKind :: AsyncGen => {
3231
+ self . sess . gated_spans . gate ( sym:: gen_blocks, lo. to ( self . prev_token . span ) ) ;
3232
+ }
3233
+ }
3225
3234
let capture_clause = self . parse_capture_clause ( ) ?;
3226
3235
let ( attrs, body) = self . parse_inner_attrs_and_block ( ) ?;
3227
3236
let kind = ExprKind :: Gen ( capture_clause, body, kind) ;
0 commit comments