@@ -61,25 +61,31 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
61
61
path_str : & str ,
62
62
current_item : & Option < String > ,
63
63
module_id : syntax:: ast:: NodeId ,
64
- ) -> Result < ( Res , Option < String > ) , ( ) > {
64
+ ) -> Result < ( Res , Option < String > ) , ErrorKind > {
65
65
let cx = self . cx ;
66
66
67
67
let mut split = path_str. rsplitn ( 3 , "::" ) ;
68
- let variant_field_name = split. next ( ) . map ( |f| Symbol :: intern ( f) ) . ok_or ( ( ) ) ?;
69
- let variant_name = split. next ( ) . map ( |f| Symbol :: intern ( f) ) . ok_or ( ( ) ) ?;
68
+ let variant_field_name = split
69
+ . next ( )
70
+ . map ( |f| Symbol :: intern ( f) )
71
+ . ok_or ( ErrorKind :: ResolutionFailure ) ?;
72
+ let variant_name = split
73
+ . next ( )
74
+ . map ( |f| Symbol :: intern ( f) )
75
+ . ok_or ( ErrorKind :: ResolutionFailure ) ?;
70
76
let path = split. next ( ) . map ( |f| {
71
77
if f == "self" || f == "Self" {
72
78
if let Some ( name) = current_item. as_ref ( ) {
73
79
return name. clone ( ) ;
74
80
}
75
81
}
76
82
f. to_owned ( )
77
- } ) . ok_or ( ( ) ) ?;
83
+ } ) . ok_or ( ErrorKind :: ResolutionFailure ) ?;
78
84
let ( _, ty_res) = cx. enter_resolver ( |resolver| {
79
85
resolver. resolve_str_path_error ( DUMMY_SP , & path, TypeNS , module_id)
80
- } ) ?;
86
+ } ) . map_err ( |_| ErrorKind :: ResolutionFailure ) ?;
81
87
if let Res :: Err = ty_res {
82
- return Err ( ( ) ) ;
88
+ return Err ( ErrorKind :: ResolutionFailure ) ;
83
89
}
84
90
let ty_res = ty_res. map_id ( |_| panic ! ( "unexpected node_id" ) ) ;
85
91
match ty_res {
@@ -88,7 +94,7 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
88
94
. iter ( )
89
95
. flat_map ( |imp| cx. tcx . associated_items ( * imp) )
90
96
. any ( |item| item. ident . name == variant_name) {
91
- return Err ( ( ) ) ;
97
+ return Err ( ErrorKind :: ResolutionFailure ) ;
92
98
}
93
99
match cx. tcx . type_of ( did) . kind {
94
100
ty:: Adt ( def, _) if def. is_enum ( ) => {
@@ -98,13 +104,13 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
98
104
Some ( format ! ( "variant.{}.field.{}" ,
99
105
variant_name, variant_field_name) ) ) )
100
106
} else {
101
- Err ( ( ) )
107
+ Err ( ErrorKind :: ResolutionFailure )
102
108
}
103
109
}
104
- _ => Err ( ( ) ) ,
110
+ _ => Err ( ErrorKind :: ResolutionFailure ) ,
105
111
}
106
112
}
107
- _ => Err ( ( ) )
113
+ _ => Err ( ErrorKind :: ResolutionFailure )
108
114
}
109
115
}
110
116
0 commit comments