@@ -1360,7 +1360,7 @@ impl<'a> LoweringContext<'a> {
1360
1360
let exist_ty_item = hir:: Item {
1361
1361
id : exist_ty_id. node_id ,
1362
1362
hir_id : exist_ty_id. hir_id ,
1363
- name : keywords:: Invalid . name ( ) ,
1363
+ ident : keywords:: Invalid . ident ( ) ,
1364
1364
attrs : Default :: default ( ) ,
1365
1365
node : exist_ty_item_kind,
1366
1366
vis : respan ( span. shrink_to_lo ( ) , hir:: VisibilityKind :: Inherited ) ,
@@ -1563,7 +1563,7 @@ impl<'a> LoweringContext<'a> {
1563
1563
fn lower_variant ( & mut self , v : & Variant ) -> hir:: Variant {
1564
1564
Spanned {
1565
1565
node : hir:: VariantKind {
1566
- name : v. node . ident . name ,
1566
+ ident : v. node . ident ,
1567
1567
attrs : self . lower_attrs ( & v. node . attrs ) ,
1568
1568
data : self . lower_variant_data ( & v. node . data ) ,
1569
1569
disr_expr : v. node . disr_expr . as_ref ( ) . map ( |e| self . lower_anon_const ( e) ) ,
@@ -2737,7 +2737,7 @@ impl<'a> LoweringContext<'a> {
2737
2737
fn lower_item_kind (
2738
2738
& mut self ,
2739
2739
id : NodeId ,
2740
- name : & mut Name ,
2740
+ ident : & mut Ident ,
2741
2741
attrs : & hir:: HirVec < Attribute > ,
2742
2742
vis : & mut hir:: Visibility ,
2743
2743
i : & ItemKind ,
@@ -2751,7 +2751,7 @@ impl<'a> LoweringContext<'a> {
2751
2751
span : use_tree. span ,
2752
2752
} ;
2753
2753
2754
- self . lower_use_tree ( use_tree, & prefix, id, vis, name , attrs)
2754
+ self . lower_use_tree ( use_tree, & prefix, id, vis, ident , attrs)
2755
2755
}
2756
2756
ItemKind :: Static ( ref t, m, ref e) => {
2757
2757
let value = self . lower_body ( None , |this| this. lower_expr ( e) ) ;
@@ -2943,7 +2943,7 @@ impl<'a> LoweringContext<'a> {
2943
2943
prefix : & Path ,
2944
2944
id : NodeId ,
2945
2945
vis : & mut hir:: Visibility ,
2946
- name : & mut Name ,
2946
+ ident : & mut Ident ,
2947
2947
attrs : & hir:: HirVec < Attribute > ,
2948
2948
) -> hir:: ItemKind {
2949
2949
debug ! ( "lower_use_tree(tree={:?})" , tree) ;
@@ -2959,28 +2959,28 @@ impl<'a> LoweringContext<'a> {
2959
2959
2960
2960
match tree. kind {
2961
2961
UseTreeKind :: Simple ( rename, id1, id2) => {
2962
- * name = tree. ident ( ) . name ;
2962
+ * ident = tree. ident ( ) ;
2963
2963
2964
- // First apply the prefix to the path
2964
+ // First, apply the prefix to the path.
2965
2965
let mut path = Path {
2966
2966
segments,
2967
2967
span : path. span ,
2968
2968
} ;
2969
2969
2970
- // Correctly resolve `self` imports
2970
+ // Correctly resolve `self` imports.
2971
2971
if path. segments . len ( ) > 1
2972
2972
&& path. segments . last ( ) . unwrap ( ) . ident . name == keywords:: SelfLower . name ( )
2973
2973
{
2974
2974
let _ = path. segments . pop ( ) ;
2975
2975
if rename. is_none ( ) {
2976
- * name = path. segments . last ( ) . unwrap ( ) . ident . name ;
2976
+ * ident = path. segments . last ( ) . unwrap ( ) . ident ;
2977
2977
}
2978
2978
}
2979
2979
2980
2980
let parent_def_index = self . current_hir_id_owner . last ( ) . unwrap ( ) . 0 ;
2981
2981
let mut defs = self . expect_full_def_from_use ( id) ;
2982
- // we want to return *something* from this function, so hang onto the first item
2983
- // for later
2982
+ // We want to return *something* from this function, so hold onto the first item
2983
+ // for later.
2984
2984
let ret_def = defs. next ( ) . unwrap_or ( Def :: Err ) ;
2985
2985
2986
2986
// Here, we are looping over namespaces, if they exist for the definition
@@ -2990,7 +2990,7 @@ impl<'a> LoweringContext<'a> {
2990
2990
// two imports.
2991
2991
for ( def, & new_node_id) in defs. zip ( [ id1, id2] . iter ( ) ) {
2992
2992
let vis = vis. clone ( ) ;
2993
- let name = name . clone ( ) ;
2993
+ let ident = ident . clone ( ) ;
2994
2994
let mut path = path. clone ( ) ;
2995
2995
for seg in & mut path. segments {
2996
2996
seg. id = self . sess . next_node_id ( ) ;
@@ -3031,7 +3031,7 @@ impl<'a> LoweringContext<'a> {
3031
3031
hir:: Item {
3032
3032
id : new_id. node_id ,
3033
3033
hir_id : new_id. hir_id ,
3034
- name : name ,
3034
+ ident ,
3035
3035
attrs : attrs. clone ( ) ,
3036
3036
node : item,
3037
3037
vis,
@@ -3057,8 +3057,8 @@ impl<'a> LoweringContext<'a> {
3057
3057
hir:: ItemKind :: Use ( path, hir:: UseKind :: Glob )
3058
3058
}
3059
3059
UseTreeKind :: Nested ( ref trees) => {
3060
- // Nested imports are desugared into simple
3061
- // imports. So if we start with
3060
+ // Nested imports are desugared into simple imports.
3061
+ // So, if we start with
3062
3062
//
3063
3063
// ```
3064
3064
// pub(x) use foo::{a, b};
@@ -3079,14 +3079,14 @@ impl<'a> LoweringContext<'a> {
3079
3079
// `self.items`. However, the structure of this
3080
3080
// function also requires us to return one item, and
3081
3081
// for that we return the `{}` import (called the
3082
- // " `ListStem`" ).
3082
+ // `ListStem`).
3083
3083
3084
3084
let prefix = Path {
3085
3085
segments,
3086
3086
span : prefix. span . to ( path. span ) ,
3087
3087
} ;
3088
3088
3089
- // Add all the nested PathListItems to the HIR.
3089
+ // Add all the nested `PathListItem`s to the HIR.
3090
3090
for & ( ref use_tree, id) in trees {
3091
3091
self . allocate_hir_id_counter ( id, & use_tree) ;
3092
3092
@@ -3096,10 +3096,10 @@ impl<'a> LoweringContext<'a> {
3096
3096
} = self . lower_node_id ( id) ;
3097
3097
3098
3098
let mut vis = vis. clone ( ) ;
3099
- let mut name = name . clone ( ) ;
3099
+ let mut ident = ident . clone ( ) ;
3100
3100
let mut prefix = prefix. clone ( ) ;
3101
3101
3102
- // Give the segments new ids since they are being cloned.
3102
+ // Give the segments new node- ids since they are being cloned.
3103
3103
for seg in & mut prefix. segments {
3104
3104
seg. id = self . sess . next_node_id ( ) ;
3105
3105
}
@@ -3114,7 +3114,7 @@ impl<'a> LoweringContext<'a> {
3114
3114
& prefix,
3115
3115
new_id,
3116
3116
& mut vis,
3117
- & mut name ,
3117
+ & mut ident ,
3118
3118
attrs) ;
3119
3119
3120
3120
let vis_kind = match vis. node {
@@ -3138,7 +3138,7 @@ impl<'a> LoweringContext<'a> {
3138
3138
hir:: Item {
3139
3139
id : new_id,
3140
3140
hir_id : new_hir_id,
3141
- name ,
3141
+ ident ,
3142
3142
attrs : attrs. clone ( ) ,
3143
3143
node : item,
3144
3144
vis,
@@ -3165,7 +3165,7 @@ impl<'a> LoweringContext<'a> {
3165
3165
* vis = respan ( prefix. span . shrink_to_lo ( ) , hir:: VisibilityKind :: Inherited ) ;
3166
3166
}
3167
3167
hir:: VisibilityKind :: Restricted { .. } => {
3168
- // do nothing here, as described in the comment on the match
3168
+ // Do nothing here, as described in the comment on the match.
3169
3169
}
3170
3170
}
3171
3171
@@ -3413,15 +3413,15 @@ impl<'a> LoweringContext<'a> {
3413
3413
}
3414
3414
3415
3415
pub fn lower_item ( & mut self , i : & Item ) -> Option < hir:: Item > {
3416
- let mut name = i. ident . name ;
3416
+ let mut ident = i. ident ;
3417
3417
let mut vis = self . lower_visibility ( & i. vis , None ) ;
3418
3418
let attrs = self . lower_attrs ( & i. attrs ) ;
3419
3419
if let ItemKind :: MacroDef ( ref def) = i. node {
3420
3420
if !def. legacy || attr:: contains_name ( & i. attrs , "macro_export" ) ||
3421
3421
attr:: contains_name ( & i. attrs , "rustc_doc_only_macro" ) {
3422
3422
let body = self . lower_token_stream ( def. stream ( ) ) ;
3423
3423
self . exported_macros . push ( hir:: MacroDef {
3424
- name,
3424
+ name : ident . name ,
3425
3425
vis,
3426
3426
attrs,
3427
3427
id : i. id ,
@@ -3433,14 +3433,14 @@ impl<'a> LoweringContext<'a> {
3433
3433
return None ;
3434
3434
}
3435
3435
3436
- let node = self . lower_item_kind ( i. id , & mut name , & attrs, & mut vis, & i. node ) ;
3436
+ let node = self . lower_item_kind ( i. id , & mut ident , & attrs, & mut vis, & i. node ) ;
3437
3437
3438
3438
let LoweredNodeId { node_id, hir_id } = self . lower_node_id ( i. id ) ;
3439
3439
3440
3440
Some ( hir:: Item {
3441
3441
id : node_id,
3442
3442
hir_id,
3443
- name ,
3443
+ ident ,
3444
3444
attrs,
3445
3445
node,
3446
3446
vis,
@@ -3453,7 +3453,7 @@ impl<'a> LoweringContext<'a> {
3453
3453
let def_id = self . resolver . definitions ( ) . local_def_id ( node_id) ;
3454
3454
hir:: ForeignItem {
3455
3455
id : node_id,
3456
- name : i. ident . name ,
3456
+ ident : i. ident ,
3457
3457
attrs : self . lower_attrs ( & i. attrs ) ,
3458
3458
node : match i. node {
3459
3459
ForeignItemKind :: Fn ( ref fdec, ref generics) => {
0 commit comments