@@ -357,6 +357,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
357
357
parent : None ,
358
358
visibility : Visibility :: Inherited ,
359
359
docs : String :: new ( ) ,
360
+ sig : None ,
360
361
} . lower ( self . tcx ) ) ;
361
362
}
362
363
}
@@ -429,6 +430,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
429
430
parent : trait_id,
430
431
visibility : vis,
431
432
docs : docs_for_attrs ( attrs) ,
433
+ sig : method_data. sig ,
432
434
} . lower ( self . tcx ) ) ;
433
435
}
434
436
@@ -500,6 +502,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
500
502
visibility : Visibility :: Inherited ,
501
503
parent : None ,
502
504
docs : String :: new ( ) ,
505
+ sig : None ,
503
506
} . lower ( self . tcx ) ) ;
504
507
}
505
508
}
@@ -572,6 +575,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
572
575
parent : Some ( parent_id) ,
573
576
visibility : vis,
574
577
docs : docs_for_attrs ( attrs) ,
578
+ sig : None ,
575
579
} . lower ( self . tcx ) ) ;
576
580
}
577
581
@@ -615,11 +619,10 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
615
619
fields : fields,
616
620
visibility : From :: from ( & item. vis ) ,
617
621
docs : docs_for_attrs ( & item. attrs ) ,
622
+ sig : self . save_ctxt . sig_base ( item) ,
618
623
} . lower ( self . tcx ) ) ;
619
624
}
620
625
621
-
622
- // fields
623
626
for field in def. fields ( ) {
624
627
self . process_struct_field_def ( field, item. id ) ;
625
628
self . visit_ty ( & field. ty ) ;
@@ -648,6 +651,18 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
648
651
qualname. push_str ( "::" ) ;
649
652
qualname. push_str ( & name) ;
650
653
654
+ let text = self . span . signature_string_for_span ( variant. span ) ;
655
+ let ident_start = text. find ( & name) . unwrap ( ) ;
656
+ let ident_end = ident_start + name. len ( ) ;
657
+ let sig = Signature {
658
+ span : variant. span ,
659
+ text : text,
660
+ ident_start : ident_start,
661
+ ident_end : ident_end,
662
+ defs : vec ! [ ] ,
663
+ refs : vec ! [ ] ,
664
+ } ;
665
+
651
666
match variant. node . data {
652
667
ast:: VariantData :: Struct ( ref fields, _) => {
653
668
let sub_span = self . span . span_for_first_ident ( variant. span ) ;
@@ -669,6 +684,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
669
684
scope : enum_data. scope ,
670
685
parent : Some ( make_def_id ( item. id , & self . tcx . map ) ) ,
671
686
docs : docs_for_attrs ( & variant. node . attrs ) ,
687
+ sig : sig,
672
688
} . lower ( self . tcx ) ) ;
673
689
}
674
690
}
@@ -694,6 +710,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
694
710
scope : enum_data. scope ,
695
711
parent : Some ( make_def_id ( item. id , & self . tcx . map ) ) ,
696
712
docs : docs_for_attrs ( & variant. node . attrs ) ,
713
+ sig : sig,
697
714
} . lower ( self . tcx ) ) ;
698
715
}
699
716
}
@@ -778,6 +795,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
778
795
items : methods. iter ( ) . map ( |i| i. id ) . collect ( ) ,
779
796
visibility : From :: from ( & item. vis ) ,
780
797
docs : docs_for_attrs ( & item. attrs ) ,
798
+ sig : self . save_ctxt . sig_base ( item) ,
781
799
} . lower ( self . tcx ) ) ;
782
800
}
783
801
@@ -1043,6 +1061,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
1043
1061
parent : None ,
1044
1062
visibility : Visibility :: Inherited ,
1045
1063
docs : String :: new ( ) ,
1064
+ sig : None ,
1046
1065
} . lower ( self . tcx ) ) ;
1047
1066
}
1048
1067
}
@@ -1257,10 +1276,10 @@ impl<'l, 'tcx: 'l, 'll, D: Dump +'ll> Visitor<'l> for DumpVisitor<'l, 'tcx, 'll,
1257
1276
Struct ( ref def, ref ty_params) => self . process_struct ( item, def, ty_params) ,
1258
1277
Enum ( ref def, ref ty_params) => self . process_enum ( item, def, ty_params) ,
1259
1278
Impl ( ..,
1260
- ref ty_params,
1261
- ref trait_ref,
1262
- ref typ,
1263
- ref impl_items) => {
1279
+ ref ty_params,
1280
+ ref trait_ref,
1281
+ ref typ,
1282
+ ref impl_items) => {
1264
1283
self . process_impl ( item, ty_params, trait_ref, & typ, impl_items)
1265
1284
}
1266
1285
Trait ( _, ref generics, ref trait_refs, ref methods) =>
@@ -1283,6 +1302,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump +'ll> Visitor<'l> for DumpVisitor<'l, 'tcx, 'll,
1283
1302
visibility : From :: from ( & item. vis ) ,
1284
1303
parent : None ,
1285
1304
docs : docs_for_attrs ( & item. attrs ) ,
1305
+ sig : Some ( self . save_ctxt . sig_base ( item) ) ,
1286
1306
} . lower ( self . tcx ) ) ;
1287
1307
}
1288
1308
@@ -1492,6 +1512,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump +'ll> Visitor<'l> for DumpVisitor<'l, 'tcx, 'll,
1492
1512
parent : None ,
1493
1513
visibility : Visibility :: Inherited ,
1494
1514
docs : String :: new ( ) ,
1515
+ sig : None ,
1495
1516
} . lower ( self . tcx ) ) ;
1496
1517
}
1497
1518
}
0 commit comments