@@ -27,22 +27,22 @@ impl UseFactsExtractor<'_> {
27
27
}
28
28
29
29
fn insert_def ( & mut self , local : Local , location : Location ) {
30
- debug ! ( "LivenessFactsExtractor ::insert_def()" ) ;
30
+ debug ! ( "UseFactsExtractor ::insert_def()" ) ;
31
31
self . var_defined . push ( ( local, self . location_to_index ( location) ) ) ;
32
32
}
33
33
34
34
fn insert_use ( & mut self , local : Local , location : Location ) {
35
- debug ! ( "LivenessFactsExtractor ::insert_use()" ) ;
35
+ debug ! ( "UseFactsExtractor ::insert_use()" ) ;
36
36
self . var_used . push ( ( local, self . location_to_index ( location) ) ) ;
37
37
}
38
38
39
39
fn insert_drop_use ( & mut self , local : Local , location : Location ) {
40
- debug ! ( "LivenessFactsExtractor ::insert_drop_use()" ) ;
40
+ debug ! ( "UseFactsExtractor ::insert_drop_use()" ) ;
41
41
self . var_drop_used . push ( ( local, location) ) ;
42
42
}
43
43
44
44
fn insert_path_access ( & mut self , path : MovePathIndex , location : Location ) {
45
- debug ! ( "LivenessFactsExtractor ::insert_path_access({:?}, {:?})" , path, location) ;
45
+ debug ! ( "UseFactsExtractor ::insert_path_access({:?}, {:?})" , path, location) ;
46
46
self . path_accessed_at . push ( ( path, self . location_to_index ( location) ) ) ;
47
47
}
48
48
@@ -90,7 +90,7 @@ pub(super) fn populate_access_facts(
90
90
move_data : & MoveData < ' _ > ,
91
91
drop_used : & mut Vec < ( Local , Location ) > ,
92
92
) {
93
- debug ! ( "populate_var_liveness_facts ()" ) ;
93
+ debug ! ( "populate_access_facts ()" ) ;
94
94
95
95
if let Some ( facts) = typeck. borrowck_context . all_facts . as_mut ( ) {
96
96
let mut extractor = UseFactsExtractor {
0 commit comments