@@ -29,7 +29,7 @@ use rustc_serialize::{Decodable, Decoder, SpecializedDecoder, opaque};
29
29
use syntax:: attr;
30
30
use syntax:: ast:: { self , Ident } ;
31
31
use syntax:: source_map;
32
- use syntax:: symbol:: { InternedString , sym} ;
32
+ use syntax:: symbol:: { Symbol , sym} ;
33
33
use syntax:: ext:: base:: { MacroKind , SyntaxExtension } ;
34
34
use syntax:: ext:: hygiene:: Mark ;
35
35
use syntax_pos:: { self , Span , BytePos , Pos , DUMMY_SP , NO_EXPANSION } ;
@@ -497,12 +497,13 @@ impl<'a, 'tcx> CrateMetadata {
497
497
}
498
498
}
499
499
500
- pub fn item_name ( & self , item_index : DefIndex ) -> InternedString {
500
+ pub fn item_name ( & self , item_index : DefIndex ) -> Symbol {
501
501
self . def_key ( item_index)
502
502
. disambiguated_data
503
503
. data
504
504
. get_opt_name ( )
505
505
. expect ( "no name in item_name" )
506
+ . as_symbol ( )
506
507
}
507
508
508
509
pub fn def_kind ( & self , index : DefIndex ) -> Option < DefKind > {
@@ -568,15 +569,15 @@ impl<'a, 'tcx> CrateMetadata {
568
569
569
570
ty:: VariantDef :: new (
570
571
tcx,
571
- Ident :: from_interned_str ( self . item_name ( index) ) ,
572
+ Ident :: with_empty_ctxt ( self . item_name ( index) ) ,
572
573
variant_did,
573
574
ctor_did,
574
575
data. discr ,
575
576
item. children . decode ( self ) . map ( |index| {
576
577
let f = self . entry ( index) ;
577
578
ty:: FieldDef {
578
579
did : self . local_def_id ( index) ,
579
- ident : Ident :: from_interned_str ( self . item_name ( index) ) ,
580
+ ident : Ident :: with_empty_ctxt ( self . item_name ( index) ) ,
580
581
vis : f. visibility . decode ( self )
581
582
}
582
583
} ) . collect ( ) ,
@@ -787,7 +788,7 @@ impl<'a, 'tcx> CrateMetadata {
787
788
if let Some ( kind) = self . def_kind ( child_index) {
788
789
callback ( def:: Export {
789
790
res : Res :: Def ( kind, self . local_def_id ( child_index) ) ,
790
- ident : Ident :: from_interned_str ( self . item_name ( child_index) ) ,
791
+ ident : Ident :: with_empty_ctxt ( self . item_name ( child_index) ) ,
791
792
vis : self . get_visibility ( child_index) ,
792
793
span : self . entry ( child_index) . span . decode ( ( self , sess) ) ,
793
794
} ) ;
@@ -982,7 +983,7 @@ impl<'a, 'tcx> CrateMetadata {
982
983
self . entry ( id)
983
984
. children
984
985
. decode ( self )
985
- . map ( |index| self . item_name ( index) . as_symbol ( ) )
986
+ . map ( |index| self . item_name ( index) )
986
987
. collect ( )
987
988
}
988
989
0 commit comments