File tree 1 file changed +5
-5
lines changed
src/librustc_mir/borrow_check/nll/type_check/liveness
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,16 @@ use rustc::ty::subst::GenericArg;
8
8
9
9
use super :: TypeChecker ;
10
10
11
- type VarPointRelations = Vec < ( Local , LocationIndex ) > ;
12
- type MovePathPointRelations = Vec < ( MovePathIndex , LocationIndex ) > ;
11
+ type VarPointRelation = Vec < ( Local , LocationIndex ) > ;
12
+ type PathPointRelation = Vec < ( MovePathIndex , LocationIndex ) > ;
13
13
14
14
struct UseFactsExtractor < ' me > {
15
- var_defined : & ' me mut VarPointRelations ,
16
- var_used : & ' me mut VarPointRelations ,
15
+ var_defined : & ' me mut VarPointRelation ,
16
+ var_used : & ' me mut VarPointRelation ,
17
17
location_table : & ' me LocationTable ,
18
18
var_drop_used : & ' me mut Vec < ( Local , Location ) > ,
19
19
move_data : & ' me MoveData < ' me > ,
20
- path_accessed_at : & ' me mut MovePathPointRelations ,
20
+ path_accessed_at : & ' me mut PathPointRelation ,
21
21
}
22
22
23
23
// A Visitor to walk through the MIR and extract point-wise facts
You can’t perform that action at this time.
0 commit comments