@@ -226,7 +226,7 @@ pub struct TraitDef<'a> {
226
226
227
227
pub struct MethodDef < ' a > {
228
228
/// name of the method
229
- pub name : & ' a str ,
229
+ pub name : Symbol ,
230
230
/// List of generics, e.g., `R: rand::Rng`
231
231
pub generics : LifetimeBounds < ' a > ,
232
232
@@ -681,7 +681,7 @@ impl<'a> TraitDef<'a> {
681
681
let opt_trait_ref = Some ( trait_ref) ;
682
682
let unused_qual = {
683
683
let word = rustc_ast:: attr:: mk_nested_word_item ( Ident :: new (
684
- Symbol :: intern ( " unused_qualifications" ) ,
684
+ sym :: unused_qualifications,
685
685
self . span ,
686
686
) ) ;
687
687
let list = rustc_ast:: attr:: mk_list_item ( Ident :: new ( sym:: allow, self . span ) , vec ! [ word] ) ;
@@ -818,7 +818,7 @@ impl<'a> MethodDef<'a> {
818
818
) -> P < Expr > {
819
819
let substructure = Substructure {
820
820
type_ident,
821
- method_ident : cx . ident_of ( self . name , trait_. span ) ,
821
+ method_ident : Ident :: new ( self . name , trait_. span ) ,
822
822
self_args,
823
823
nonself_args,
824
824
fields,
@@ -913,7 +913,7 @@ impl<'a> MethodDef<'a> {
913
913
914
914
let ret_type = self . get_ret_ty ( cx, trait_, generics, type_ident) ;
915
915
916
- let method_ident = cx . ident_of ( self . name , trait_. span ) ;
916
+ let method_ident = Ident :: new ( self . name , trait_. span ) ;
917
917
let fn_decl = cx. fn_decl ( args, ast:: FnRetTy :: Ty ( ret_type) ) ;
918
918
let body_block = cx. block_expr ( body) ;
919
919
@@ -1315,7 +1315,7 @@ impl<'a> MethodDef<'a> {
1315
1315
// Since we know that all the arguments will match if we reach
1316
1316
// the match expression we add the unreachable intrinsics as the
1317
1317
// result of the catch all which should help llvm in optimizing it
1318
- Some ( deriving:: call_intrinsic ( cx, sp, " unreachable" , vec ! [ ] ) )
1318
+ Some ( deriving:: call_intrinsic ( cx, sp, sym :: unreachable, vec ! [ ] ) )
1319
1319
}
1320
1320
_ => None ,
1321
1321
} ;
@@ -1363,7 +1363,7 @@ impl<'a> MethodDef<'a> {
1363
1363
for ( & ident, self_arg) in vi_idents. iter ( ) . zip ( & self_args) {
1364
1364
let self_addr = cx. expr_addr_of ( sp, self_arg. clone ( ) ) ;
1365
1365
let variant_value =
1366
- deriving:: call_intrinsic ( cx, sp, " discriminant_value" , vec ! [ self_addr] ) ;
1366
+ deriving:: call_intrinsic ( cx, sp, sym :: discriminant_value, vec ! [ self_addr] ) ;
1367
1367
let let_stmt = cx. stmt_let ( sp, false , ident, variant_value) ;
1368
1368
index_let_stmts. push ( let_stmt) ;
1369
1369
@@ -1464,7 +1464,7 @@ impl<'a> MethodDef<'a> {
1464
1464
// derive Debug on such a type could here generate code
1465
1465
// that needs the feature gate enabled.)
1466
1466
1467
- deriving:: call_intrinsic ( cx, sp, " unreachable" , vec ! [ ] )
1467
+ deriving:: call_intrinsic ( cx, sp, sym :: unreachable, vec ! [ ] )
1468
1468
} else {
1469
1469
// Final wrinkle: the self_args are expressions that deref
1470
1470
// down to desired places, but we cannot actually deref
0 commit comments