@@ -31,7 +31,7 @@ struct Context {
31
31
parent : Option < ( Scope , ScopeDepth ) > ,
32
32
}
33
33
34
- struct RegionResolutionVisitor < ' tcx > {
34
+ struct ScopeResolutionVisitor < ' tcx > {
35
35
tcx : TyCtxt < ' tcx > ,
36
36
37
37
// The number of expressions and patterns visited in the current body.
@@ -71,7 +71,7 @@ struct RegionResolutionVisitor<'tcx> {
71
71
}
72
72
73
73
/// Records the lifetime of a local variable as `cx.var_parent`
74
- fn record_var_lifetime ( visitor : & mut RegionResolutionVisitor < ' _ > , var_id : hir:: ItemLocalId ) {
74
+ fn record_var_lifetime ( visitor : & mut ScopeResolutionVisitor < ' _ > , var_id : hir:: ItemLocalId ) {
75
75
match visitor. cx . var_parent {
76
76
None => {
77
77
// this can happen in extern fn declarations like
@@ -82,7 +82,7 @@ fn record_var_lifetime(visitor: &mut RegionResolutionVisitor<'_>, var_id: hir::I
82
82
}
83
83
}
84
84
85
- fn resolve_block < ' tcx > ( visitor : & mut RegionResolutionVisitor < ' tcx > , blk : & ' tcx hir:: Block < ' tcx > ) {
85
+ fn resolve_block < ' tcx > ( visitor : & mut ScopeResolutionVisitor < ' tcx > , blk : & ' tcx hir:: Block < ' tcx > ) {
86
86
debug ! ( "resolve_block(blk.hir_id={:?})" , blk. hir_id) ;
87
87
88
88
let prev_cx = visitor. cx ;
@@ -193,7 +193,7 @@ fn resolve_block<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, blk: &'tcx h
193
193
visitor. cx = prev_cx;
194
194
}
195
195
196
- fn resolve_arm < ' tcx > ( visitor : & mut RegionResolutionVisitor < ' tcx > , arm : & ' tcx hir:: Arm < ' tcx > ) {
196
+ fn resolve_arm < ' tcx > ( visitor : & mut ScopeResolutionVisitor < ' tcx > , arm : & ' tcx hir:: Arm < ' tcx > ) {
197
197
fn has_let_expr ( expr : & Expr < ' _ > ) -> bool {
198
198
match & expr. kind {
199
199
hir:: ExprKind :: Binary ( _, lhs, rhs) => has_let_expr ( lhs) || has_let_expr ( rhs) ,
@@ -220,7 +220,7 @@ fn resolve_arm<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, arm: &'tcx hir
220
220
visitor. cx = prev_cx;
221
221
}
222
222
223
- fn resolve_pat < ' tcx > ( visitor : & mut RegionResolutionVisitor < ' tcx > , pat : & ' tcx hir:: Pat < ' tcx > ) {
223
+ fn resolve_pat < ' tcx > ( visitor : & mut ScopeResolutionVisitor < ' tcx > , pat : & ' tcx hir:: Pat < ' tcx > ) {
224
224
visitor. record_child_scope ( Scope { local_id : pat. hir_id . local_id , data : ScopeData :: Node } ) ;
225
225
226
226
// If this is a binding then record the lifetime of that binding.
@@ -237,7 +237,7 @@ fn resolve_pat<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, pat: &'tcx hir
237
237
debug ! ( "resolve_pat - post-increment {} pat = {:?}" , visitor. expr_and_pat_count, pat) ;
238
238
}
239
239
240
- fn resolve_stmt < ' tcx > ( visitor : & mut RegionResolutionVisitor < ' tcx > , stmt : & ' tcx hir:: Stmt < ' tcx > ) {
240
+ fn resolve_stmt < ' tcx > ( visitor : & mut ScopeResolutionVisitor < ' tcx > , stmt : & ' tcx hir:: Stmt < ' tcx > ) {
241
241
let stmt_id = stmt. hir_id . local_id ;
242
242
debug ! ( "resolve_stmt(stmt.id={:?})" , stmt_id) ;
243
243
@@ -256,7 +256,7 @@ fn resolve_stmt<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, stmt: &'tcx h
256
256
visitor. cx . parent = prev_parent;
257
257
}
258
258
259
- fn resolve_expr < ' tcx > ( visitor : & mut RegionResolutionVisitor < ' tcx > , expr : & ' tcx hir:: Expr < ' tcx > ) {
259
+ fn resolve_expr < ' tcx > ( visitor : & mut ScopeResolutionVisitor < ' tcx > , expr : & ' tcx hir:: Expr < ' tcx > ) {
260
260
debug ! ( "resolve_expr - pre-increment {} expr = {:?}" , visitor. expr_and_pat_count, expr) ;
261
261
262
262
let prev_cx = visitor. cx ;
@@ -420,10 +420,10 @@ fn resolve_expr<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, expr: &'tcx h
420
420
// properly, we can't miss any types.
421
421
422
422
match expr. kind {
423
- // Manually recurse over closures and inline consts , because they are the only
424
- // case of nested bodies that share the parent environment.
425
- hir :: ExprKind :: Closure ( & hir :: Closure { body , .. } )
426
- | hir:: ExprKind :: ConstBlock ( hir:: ConstBlock { body, .. } ) => {
423
+ // Manually recurse over closures, because they are nested bodies
424
+ // that share the parent environment. We handle const blocks in
425
+ // `visit_inline_const`.
426
+ hir:: ExprKind :: Closure ( & hir:: Closure { body, .. } ) => {
427
427
let body = visitor. tcx . hir ( ) . body ( body) ;
428
428
visitor. visit_body ( body) ;
429
429
}
@@ -554,7 +554,7 @@ fn resolve_expr<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, expr: &'tcx h
554
554
}
555
555
556
556
fn resolve_local < ' tcx > (
557
- visitor : & mut RegionResolutionVisitor < ' tcx > ,
557
+ visitor : & mut ScopeResolutionVisitor < ' tcx > ,
558
558
pat : Option < & ' tcx hir:: Pat < ' tcx > > ,
559
559
init : Option < & ' tcx hir:: Expr < ' tcx > > ,
560
560
) {
@@ -725,7 +725,7 @@ fn resolve_local<'tcx>(
725
725
/// | ( E& )
726
726
/// ```
727
727
fn record_rvalue_scope_if_borrow_expr < ' tcx > (
728
- visitor : & mut RegionResolutionVisitor < ' tcx > ,
728
+ visitor : & mut ScopeResolutionVisitor < ' tcx > ,
729
729
expr : & hir:: Expr < ' _ > ,
730
730
blk_id : Option < Scope > ,
731
731
) {
@@ -782,7 +782,7 @@ fn resolve_local<'tcx>(
782
782
}
783
783
}
784
784
785
- impl < ' tcx > RegionResolutionVisitor < ' tcx > {
785
+ impl < ' tcx > ScopeResolutionVisitor < ' tcx > {
786
786
/// Records the current parent (if any) as the parent of `child_scope`.
787
787
/// Returns the depth of `child_scope`.
788
788
fn record_child_scope ( & mut self , child_scope : Scope ) -> ScopeDepth {
@@ -838,7 +838,7 @@ impl<'tcx> RegionResolutionVisitor<'tcx> {
838
838
}
839
839
}
840
840
841
- impl < ' tcx > Visitor < ' tcx > for RegionResolutionVisitor < ' tcx > {
841
+ impl < ' tcx > Visitor < ' tcx > for ScopeResolutionVisitor < ' tcx > {
842
842
fn visit_block ( & mut self , b : & ' tcx Block < ' tcx > ) {
843
843
resolve_block ( self , b) ;
844
844
}
@@ -906,6 +906,10 @@ impl<'tcx> Visitor<'tcx> for RegionResolutionVisitor<'tcx> {
906
906
fn visit_local ( & mut self , l : & ' tcx LetStmt < ' tcx > ) {
907
907
resolve_local ( self , Some ( l. pat ) , l. init )
908
908
}
909
+ fn visit_inline_const ( & mut self , c : & ' tcx hir:: ConstBlock ) {
910
+ let body = self . tcx . hir ( ) . body ( c. body ) ;
911
+ self . visit_body ( body) ;
912
+ }
909
913
}
910
914
911
915
/// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
@@ -922,7 +926,7 @@ pub(crate) fn region_scope_tree(tcx: TyCtxt<'_>, def_id: DefId) -> &ScopeTree {
922
926
}
923
927
924
928
let scope_tree = if let Some ( body) = tcx. hir ( ) . maybe_body_owned_by ( def_id. expect_local ( ) ) {
925
- let mut visitor = RegionResolutionVisitor {
929
+ let mut visitor = ScopeResolutionVisitor {
926
930
tcx,
927
931
scope_tree : ScopeTree :: default ( ) ,
928
932
expr_and_pat_count : 0 ,
0 commit comments