@@ -32,7 +32,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
32
32
pub ( super ) fn lower_expr_mut ( & mut self , e : & Expr ) -> hir:: Expr < ' hir > {
33
33
ensure_sufficient_stack ( || {
34
34
match & e. kind {
35
- // Paranthesis expression does not have a HirId and is handled specially.
35
+ // Parenthesis expression does not have a HirId and is handled specially.
36
36
ExprKind :: Paren ( ex) => {
37
37
let mut ex = self . lower_expr_mut ( ex) ;
38
38
// Include parens in span, but only if it is a super-span.
@@ -63,6 +63,20 @@ impl<'hir> LoweringContext<'_, 'hir> {
63
63
ExprKind :: ForLoop ( pat, head, body, opt_label) => {
64
64
return self . lower_expr_for ( e, pat, head, body, * opt_label) ;
65
65
}
66
+ // Similarly, async blocks do not use `e.id` but rather `closure_node_id`.
67
+ ExprKind :: Async ( capture_clause, closure_node_id, block) => {
68
+ let hir_id = self . lower_node_id ( * closure_node_id) ;
69
+ self . lower_attrs ( hir_id, & e. attrs ) ;
70
+ return self . make_async_expr (
71
+ * capture_clause,
72
+ hir_id,
73
+ * closure_node_id,
74
+ None ,
75
+ e. span ,
76
+ hir:: AsyncGeneratorKind :: Block ,
77
+ |this| this. with_new_scopes ( |this| this. lower_block_expr ( block) ) ,
78
+ ) ;
79
+ }
66
80
_ => ( ) ,
67
81
}
68
82
@@ -182,15 +196,6 @@ impl<'hir> LoweringContext<'_, 'hir> {
182
196
self . arena . alloc_from_iter ( arms. iter ( ) . map ( |x| self . lower_arm ( x) ) ) ,
183
197
hir:: MatchSource :: Normal ,
184
198
) ,
185
- ExprKind :: Async ( capture_clause, closure_node_id, block) => self . make_async_expr (
186
- * capture_clause,
187
- hir_id,
188
- * closure_node_id,
189
- None ,
190
- e. span ,
191
- hir:: AsyncGeneratorKind :: Block ,
192
- |this| this. with_new_scopes ( |this| this. lower_block_expr ( block) ) ,
193
- ) ,
194
199
ExprKind :: Await ( expr) => {
195
200
let dot_await_span = if expr. span . hi ( ) < e. span . hi ( ) {
196
201
let span_with_whitespace = self
@@ -324,7 +329,9 @@ impl<'hir> LoweringContext<'_, 'hir> {
324
329
) ,
325
330
ExprKind :: Try ( sub_expr) => self . lower_expr_try ( e. span , sub_expr) ,
326
331
327
- ExprKind :: Paren ( _) | ExprKind :: ForLoop ( ..) => unreachable ! ( "already handled" ) ,
332
+ ExprKind :: Paren ( _) | ExprKind :: ForLoop ( ..) | ExprKind :: Async ( ..) => {
333
+ unreachable ! ( "already handled" )
334
+ }
328
335
329
336
ExprKind :: MacCall ( _) => panic ! ( "{:?} shouldn't exist here" , e. span) ,
330
337
} ;
@@ -586,9 +593,9 @@ impl<'hir> LoweringContext<'_, 'hir> {
586
593
/// This results in:
587
594
///
588
595
/// ```text
589
- /// std::future::identity_future( static move? |_task_context| -> <ret_ty> {
596
+ /// static move? |_task_context| -> <ret_ty> {
590
597
/// <body>
591
- /// })
598
+ /// }
592
599
/// ```
593
600
pub ( super ) fn make_async_expr (
594
601
& mut self ,
@@ -599,7 +606,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
599
606
span : Span ,
600
607
async_gen_kind : hir:: AsyncGeneratorKind ,
601
608
body : impl FnOnce ( & mut Self ) -> hir:: Expr < ' hir > ,
602
- ) -> hir:: ExprKind < ' hir > {
609
+ ) -> hir:: Expr < ' hir > {
603
610
let output = ret_ty. unwrap_or_else ( || hir:: FnRetTy :: DefaultReturn ( self . lower_span ( span) ) ) ;
604
611
605
612
// Resume argument type: `ResumeTy`
@@ -664,13 +671,12 @@ impl<'hir> LoweringContext<'_, 'hir> {
664
671
} ;
665
672
666
673
let hir_id = self . lower_node_id ( closure_node_id) ;
667
- let unstable_span =
668
- self . mark_span_with_reason ( DesugaringKind :: Async , span, self . allow_gen_future . clone ( ) ) ;
669
-
670
674
if self . tcx . features ( ) . closure_track_caller
671
675
&& let Some ( attrs) = self . attrs . get ( & outer_hir_id. local_id )
672
676
&& attrs. into_iter ( ) . any ( |attr| attr. has_name ( sym:: track_caller) )
673
677
{
678
+ let unstable_span =
679
+ self . mark_span_with_reason ( DesugaringKind :: Async , span, self . allow_gen_future . clone ( ) ) ;
674
680
self . lower_attrs (
675
681
hir_id,
676
682
& [ Attribute {
@@ -689,22 +695,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
689
695
) ;
690
696
}
691
697
692
- let generator = hir:: Expr { hir_id, kind : generator_kind, span : self . lower_span ( span) } ;
693
-
694
- // FIXME(swatinem):
695
- // For some reason, the async block needs to flow through *any*
696
- // call (like the identity function), as otherwise type and lifetime
697
- // inference have a hard time figuring things out.
698
- // Without this, we would get:
699
- // E0720 in tests/ui/impl-trait/in-trait/default-body-with-rpit.rs
700
- // E0700 in tests/ui/self/self_lifetime-async.rs
701
-
702
- // `future::identity_future`:
703
- let identity_future =
704
- self . expr_lang_item_path ( unstable_span, hir:: LangItem :: IdentityFuture , None ) ;
705
-
706
- // `future::identity_future(generator)`:
707
- hir:: ExprKind :: Call ( self . arena . alloc ( identity_future) , arena_vec ! [ self ; generator] )
698
+ hir:: Expr { hir_id, kind : generator_kind, span : self . lower_span ( span) }
708
699
}
709
700
710
701
/// Desugar `<expr>.await` into:
@@ -1010,7 +1001,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
1010
1001
}
1011
1002
1012
1003
// Transform `async |x: u8| -> X { ... }` into
1013
- // `|x: u8| identity_future( || -> X { ... }) `.
1004
+ // `|x: u8| || -> X { ... }`.
1014
1005
let body_id = this. lower_fn_body ( & outer_decl, |this| {
1015
1006
let async_ret_ty = if let FnRetTy :: Ty ( ty) = & decl. output {
1016
1007
let itctx = ImplTraitContext :: Disallowed ( ImplTraitPosition :: AsyncBlock ) ;
@@ -1019,16 +1010,15 @@ impl<'hir> LoweringContext<'_, 'hir> {
1019
1010
None
1020
1011
} ;
1021
1012
1022
- let async_body = this. make_async_expr (
1013
+ this. make_async_expr (
1023
1014
capture_clause,
1024
1015
closure_hir_id,
1025
1016
inner_closure_id,
1026
1017
async_ret_ty,
1027
1018
body. span ,
1028
1019
hir:: AsyncGeneratorKind :: Closure ,
1029
1020
|this| this. with_new_scopes ( |this| this. lower_expr_mut ( body) ) ,
1030
- ) ;
1031
- this. expr ( fn_decl_span, async_body)
1021
+ )
1032
1022
} ) ;
1033
1023
body_id
1034
1024
} ) ;
0 commit comments