@@ -20,7 +20,7 @@ use rustc_hir as hir;
20
20
use rustc_hir:: def:: { DefKind as HirDefKind , Res } ;
21
21
use rustc_hir:: def_id:: { DefId , LocalDefId } ;
22
22
use rustc_hir:: intravisit:: { self , Visitor } ;
23
- use rustc_hir_pretty:: { bounds_to_string, generic_params_to_string, ty_to_string} ;
23
+ use rustc_hir_pretty:: { bounds_to_string, fn_to_string , generic_params_to_string, ty_to_string} ;
24
24
use rustc_middle:: hir:: map:: Map ;
25
25
use rustc_middle:: span_bug;
26
26
use rustc_middle:: ty:: { self , DefIdTree , TyCtxt } ;
@@ -199,23 +199,23 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
199
199
self . dumper . compilation_opts ( data) ;
200
200
}
201
201
202
- fn write_sub_paths ( & mut self , path : & ' tcx hir:: Path < ' tcx > ) {
203
- for seg in path . segments {
202
+ fn write_segments ( & mut self , segments : impl IntoIterator < Item = & ' tcx hir:: PathSegment < ' tcx > > ) {
203
+ for seg in segments {
204
204
if let Some ( data) = self . save_ctxt . get_path_segment_data ( seg) {
205
205
self . dumper . dump_ref ( data) ;
206
206
}
207
207
}
208
208
}
209
209
210
+ fn write_sub_paths ( & mut self , path : & ' tcx hir:: Path < ' tcx > ) {
211
+ self . write_segments ( path. segments )
212
+ }
213
+
210
214
// As write_sub_paths, but does not process the last ident in the path (assuming it
211
215
// will be processed elsewhere). See note on write_sub_paths about global.
212
216
fn write_sub_paths_truncated ( & mut self , path : & ' tcx hir:: Path < ' tcx > ) {
213
217
if let [ segments @ .., _] = path. segments {
214
- for seg in segments {
215
- if let Some ( data) = self . save_ctxt . get_path_segment_data ( seg) {
216
- self . dumper . dump_ref ( data) ;
217
- }
218
- }
218
+ self . write_segments ( segments)
219
219
}
220
220
}
221
221
@@ -276,7 +276,8 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
276
276
}
277
277
v. process_generic_params ( & generics, & method_data. qualname , hir_id) ;
278
278
279
- method_data. value = crate :: make_signature ( & sig. decl , & generics) ;
279
+ method_data. value =
280
+ fn_to_string ( sig. decl , sig. header , Some ( ident. name ) , generics, vis, & [ ] , None ) ;
280
281
method_data. sig = sig:: method_signature ( hir_id, ident, generics, sig, & v. save_ctxt ) ;
281
282
282
283
v. dumper . dump_def ( & access_from_vis ! ( v. save_ctxt, vis, hir_id) , method_data) ;
@@ -643,7 +644,7 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
643
644
self . nest_tables ( map. local_def_id ( item. hir_id ) , |v| {
644
645
v. visit_ty ( & typ) ;
645
646
if let & Some ( ref trait_ref) = trait_ref {
646
- v. process_path ( trait_ref. hir_ref_id , & trait_ref. path ) ;
647
+ v. process_path ( trait_ref. hir_ref_id , & hir :: QPath :: Resolved ( None , & trait_ref. path ) ) ;
647
648
}
648
649
v. process_generic_params ( generics, "" , item. hir_id ) ;
649
650
for impl_item in impl_items {
@@ -746,7 +747,7 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
746
747
}
747
748
}
748
749
749
- fn dump_path_ref ( & mut self , id : hir:: HirId , path : & hir:: Path < ' tcx > ) {
750
+ fn dump_path_ref ( & mut self , id : hir:: HirId , path : & hir:: QPath < ' tcx > ) {
750
751
let path_data = self . save_ctxt . get_path_data ( id, path) ;
751
752
if let Some ( path_data) = path_data {
752
753
self . dumper . dump_ref ( path_data) ;
@@ -760,14 +761,30 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
760
761
}
761
762
}
762
763
763
- fn process_path ( & mut self , id : hir:: HirId , path : & ' tcx hir:: Path < ' tcx > ) {
764
- if self . span . filter_generated ( path. span ) {
764
+ fn process_path ( & mut self , id : hir:: HirId , path : & hir:: QPath < ' tcx > ) {
765
+ let span = match path {
766
+ hir:: QPath :: Resolved ( _, path) => path. span ,
767
+ hir:: QPath :: TypeRelative ( _, segment) => segment. ident . span ,
768
+ } ;
769
+ if self . span . filter_generated ( span) {
765
770
return ;
766
771
}
767
772
self . dump_path_ref ( id, path) ;
768
773
769
774
// Type arguments
770
- for seg in path. segments {
775
+ let segments = match path {
776
+ hir:: QPath :: Resolved ( ty, path) => {
777
+ if let Some ( ty) = ty {
778
+ self . visit_ty ( ty) ;
779
+ }
780
+ path. segments
781
+ }
782
+ hir:: QPath :: TypeRelative ( ty, segment) => {
783
+ self . visit_ty ( ty) ;
784
+ std:: slice:: from_ref ( * segment)
785
+ }
786
+ } ;
787
+ for seg in segments {
771
788
if let Some ( ref generic_args) = seg. args {
772
789
for arg in generic_args. args {
773
790
if let hir:: GenericArg :: Type ( ref ty) = arg {
@@ -777,7 +794,9 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
777
794
}
778
795
}
779
796
780
- self . write_sub_paths_truncated ( path) ;
797
+ if let hir:: QPath :: Resolved ( _, path) = path {
798
+ self . write_sub_paths_truncated ( path) ;
799
+ }
781
800
}
782
801
783
802
fn process_struct_lit (
@@ -931,9 +950,7 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
931
950
}
932
951
933
952
for ( id, ref path) in collector. collected_paths {
934
- if let hir:: QPath :: Resolved ( _, path) = path {
935
- self . process_path ( id, path) ;
936
- }
953
+ self . process_path ( id, path) ;
937
954
}
938
955
}
939
956
@@ -1135,7 +1152,10 @@ impl<'l, 'tcx> DumpVisitor<'l, 'tcx> {
1135
1152
fn process_bounds ( & mut self , bounds : hir:: GenericBounds < ' tcx > ) {
1136
1153
for bound in bounds {
1137
1154
if let hir:: GenericBound :: Trait ( ref trait_ref, _) = * bound {
1138
- self . process_path ( trait_ref. trait_ref . hir_ref_id , & trait_ref. trait_ref . path )
1155
+ self . process_path (
1156
+ trait_ref. trait_ref . hir_ref_id ,
1157
+ & hir:: QPath :: Resolved ( None , & trait_ref. trait_ref . path ) ,
1158
+ )
1139
1159
}
1140
1160
}
1141
1161
}
@@ -1330,13 +1350,16 @@ impl<'l, 'tcx> Visitor<'tcx> for DumpVisitor<'l, 'tcx> {
1330
1350
fn visit_ty ( & mut self , t : & ' tcx hir:: Ty < ' tcx > ) {
1331
1351
self . process_macro_use ( t. span ) ;
1332
1352
match t. kind {
1333
- hir:: TyKind :: Path ( hir :: QPath :: Resolved ( _ , path) ) => {
1353
+ hir:: TyKind :: Path ( ref path) => {
1334
1354
if generated_code ( t. span ) {
1335
1355
return ;
1336
1356
}
1337
1357
1338
1358
if let Some ( id) = self . lookup_def_id ( t. hir_id ) {
1339
- let sub_span = path. segments . last ( ) . unwrap ( ) . ident . span ;
1359
+ let sub_span = match path {
1360
+ hir:: QPath :: Resolved ( _, path) => path. segments . last ( ) . unwrap ( ) . ident . span ,
1361
+ hir:: QPath :: TypeRelative ( _, segment) => segment. ident . span ,
1362
+ } ;
1340
1363
let span = self . span_from_span ( sub_span) ;
1341
1364
self . dumper . dump_ref ( Ref {
1342
1365
kind : RefKind :: Type ,
@@ -1345,8 +1368,10 @@ impl<'l, 'tcx> Visitor<'tcx> for DumpVisitor<'l, 'tcx> {
1345
1368
} ) ;
1346
1369
}
1347
1370
1348
- self . write_sub_paths_truncated ( path) ;
1349
- intravisit:: walk_path ( self , path) ;
1371
+ if let hir:: QPath :: Resolved ( _, path) = path {
1372
+ self . write_sub_paths_truncated ( path) ;
1373
+ }
1374
+ intravisit:: walk_qpath ( self , path, t. hir_id , t. span ) ;
1350
1375
}
1351
1376
hir:: TyKind :: Array ( ref ty, ref anon_const) => {
1352
1377
self . visit_ty ( ty) ;
@@ -1355,6 +1380,10 @@ impl<'l, 'tcx> Visitor<'tcx> for DumpVisitor<'l, 'tcx> {
1355
1380
v. visit_expr ( & map. body ( anon_const. body ) . value )
1356
1381
} ) ;
1357
1382
}
1383
+ hir:: TyKind :: Def ( item_id, _) => {
1384
+ let item = self . tcx . hir ( ) . item ( item_id. id ) ;
1385
+ self . nest_tables ( self . tcx . hir ( ) . local_def_id ( item_id. id ) , |v| v. visit_item ( item) ) ;
1386
+ }
1358
1387
_ => intravisit:: walk_ty ( self , t) ,
1359
1388
}
1360
1389
}
@@ -1432,8 +1461,8 @@ impl<'l, 'tcx> Visitor<'tcx> for DumpVisitor<'l, 'tcx> {
1432
1461
self . visit_expr ( & arm. body ) ;
1433
1462
}
1434
1463
1435
- fn visit_path ( & mut self , p : & ' tcx hir:: Path < ' tcx > , id : hir:: HirId ) {
1436
- self . process_path ( id, p ) ;
1464
+ fn visit_qpath ( & mut self , path : & ' tcx hir:: QPath < ' tcx > , id : hir:: HirId , _ : Span ) {
1465
+ self . process_path ( id, path ) ;
1437
1466
}
1438
1467
1439
1468
fn visit_stmt ( & mut self , s : & ' tcx hir:: Stmt < ' tcx > ) {
0 commit comments