@@ -10,7 +10,7 @@ use rustc_hir::Node;
10
10
use rustc_middle:: middle:: privacy:: AccessLevel ;
11
11
use rustc_middle:: ty:: TyCtxt ;
12
12
use rustc_span:: source_map:: Spanned ;
13
- use rustc_span:: symbol:: { kw, sym, Ident , Symbol } ;
13
+ use rustc_span:: symbol:: { kw, sym, Symbol } ;
14
14
use rustc_span:: { self , Span } ;
15
15
16
16
use std:: mem;
@@ -116,7 +116,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
116
116
& mut self ,
117
117
id : hir:: HirId ,
118
118
res : Res ,
119
- renamed : Option < Ident > ,
119
+ renamed : Option < Symbol > ,
120
120
glob : bool ,
121
121
om : & mut Module < ' tcx > ,
122
122
please_inline : bool ,
@@ -226,11 +226,11 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
226
226
fn visit_item (
227
227
& mut self ,
228
228
item : & ' tcx hir:: Item < ' _ > ,
229
- renamed : Option < Ident > ,
229
+ renamed : Option < Symbol > ,
230
230
om : & mut Module < ' tcx > ,
231
231
) {
232
232
debug ! ( "visiting item {:?}" , item) ;
233
- let ident = renamed. unwrap_or ( item. ident ) ;
233
+ let name = renamed. unwrap_or ( item. ident . name ) ;
234
234
235
235
if item. vis . node . is_pub ( ) {
236
236
let def_id = self . cx . tcx . hir ( ) . local_def_id ( item. hir_id ) ;
@@ -266,7 +266,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
266
266
}
267
267
_ => false ,
268
268
} ) ;
269
- let ident = if is_glob { None } else { Some ( ident ) } ;
269
+ let ident = if is_glob { None } else { Some ( name ) } ;
270
270
if self . maybe_inline_local (
271
271
item. hir_id ,
272
272
path. res ,
@@ -280,7 +280,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
280
280
}
281
281
282
282
om. imports . push ( Import {
283
- name : ident . name ,
283
+ name,
284
284
id : item. hir_id ,
285
285
vis : & item. vis ,
286
286
attrs : & item. attrs ,
@@ -296,7 +296,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
296
296
& item. vis ,
297
297
item. hir_id ,
298
298
m,
299
- Some ( ident . name ) ,
299
+ Some ( name) ,
300
300
) ) ;
301
301
}
302
302
hir:: ItemKind :: Fn ( ..)
@@ -312,7 +312,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
312
312
hir:: ItemKind :: Const ( ..) => {
313
313
// Underscore constants do not correspond to a nameable item and
314
314
// so are never useful in documentation.
315
- if ident . name != kw:: Underscore {
315
+ if name != kw:: Underscore {
316
316
om. items . push ( ( item, renamed) ) ;
317
317
}
318
318
}
@@ -329,7 +329,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
329
329
fn visit_foreign_item (
330
330
& mut self ,
331
331
item : & ' tcx hir:: ForeignItem < ' _ > ,
332
- renamed : Option < Ident > ,
332
+ renamed : Option < Symbol > ,
333
333
om : & mut Module < ' tcx > ,
334
334
) {
335
335
// If inlining we only want to include public functions.
0 commit comments