@@ -15,7 +15,7 @@ use rustc_span::hygiene::MacroKind;
15
15
use rustc_span:: symbol:: { sym, Symbol } ;
16
16
use rustc_span:: Span ;
17
17
18
- use crate :: clean:: { self , GetDefId , ToSource , TypeKind } ;
18
+ use crate :: clean:: { self , Attributes , GetDefId , ToSource , TypeKind } ;
19
19
use crate :: core:: DocContext ;
20
20
use crate :: doctree;
21
21
@@ -35,8 +35,11 @@ type Attrs<'hir> = rustc_middle::ty::Attributes<'hir>;
35
35
///
36
36
/// The returned value is `None` if the definition could not be inlined,
37
37
/// and `Some` of a vector of items if it was successfully expanded.
38
+ ///
39
+ /// `parent_module` refers to the parent of the *re-export*, not the original item.
38
40
pub fn try_inline (
39
41
cx : & DocContext < ' _ > ,
42
+ parent_module : DefId ,
40
43
res : Res ,
41
44
name : Symbol ,
42
45
attrs : Option < Attrs < ' _ > > ,
@@ -48,12 +51,13 @@ pub fn try_inline(
48
51
}
49
52
let mut ret = Vec :: new ( ) ;
50
53
54
+ debug ! ( "attrs={:?}" , attrs) ;
51
55
let attrs_clone = attrs;
52
56
53
57
let inner = match res {
54
58
Res :: Def ( DefKind :: Trait , did) => {
55
59
record_extern_fqn ( cx, did, clean:: TypeKind :: Trait ) ;
56
- ret. extend ( build_impls ( cx, did, attrs) ) ;
60
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
57
61
clean:: TraitItem ( build_external_trait ( cx, did) )
58
62
}
59
63
Res :: Def ( DefKind :: Fn , did) => {
@@ -62,27 +66,27 @@ pub fn try_inline(
62
66
}
63
67
Res :: Def ( DefKind :: Struct , did) => {
64
68
record_extern_fqn ( cx, did, clean:: TypeKind :: Struct ) ;
65
- ret. extend ( build_impls ( cx, did, attrs) ) ;
69
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
66
70
clean:: StructItem ( build_struct ( cx, did) )
67
71
}
68
72
Res :: Def ( DefKind :: Union , did) => {
69
73
record_extern_fqn ( cx, did, clean:: TypeKind :: Union ) ;
70
- ret. extend ( build_impls ( cx, did, attrs) ) ;
74
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
71
75
clean:: UnionItem ( build_union ( cx, did) )
72
76
}
73
77
Res :: Def ( DefKind :: TyAlias , did) => {
74
78
record_extern_fqn ( cx, did, clean:: TypeKind :: Typedef ) ;
75
- ret. extend ( build_impls ( cx, did, attrs) ) ;
79
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
76
80
clean:: TypedefItem ( build_type_alias ( cx, did) , false )
77
81
}
78
82
Res :: Def ( DefKind :: Enum , did) => {
79
83
record_extern_fqn ( cx, did, clean:: TypeKind :: Enum ) ;
80
- ret. extend ( build_impls ( cx, did, attrs) ) ;
84
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
81
85
clean:: EnumItem ( build_enum ( cx, did) )
82
86
}
83
87
Res :: Def ( DefKind :: ForeignTy , did) => {
84
88
record_extern_fqn ( cx, did, clean:: TypeKind :: Foreign ) ;
85
- ret. extend ( build_impls ( cx, did, attrs) ) ;
89
+ ret. extend ( build_impls ( cx, Some ( parent_module ) , did, attrs) ) ;
86
90
clean:: ForeignTypeItem
87
91
}
88
92
// Never inline enum variants but leave them shown as re-exports.
@@ -117,7 +121,7 @@ pub fn try_inline(
117
121
} ;
118
122
119
123
let target_attrs = load_attrs ( cx, did) ;
120
- let attrs = merge_attrs ( cx, target_attrs, attrs_clone) ;
124
+ let attrs = merge_attrs ( cx, Some ( parent_module ) , target_attrs, attrs_clone) ;
121
125
122
126
cx. renderinfo . borrow_mut ( ) . inlined . insert ( did) ;
123
127
ret. push ( clean:: Item {
@@ -291,40 +295,52 @@ pub fn build_ty(cx: &DocContext<'_>, did: DefId) -> Option<clean::Type> {
291
295
}
292
296
293
297
/// Builds all inherent implementations of an ADT (struct/union/enum) or Trait item/path/reexport.
294
- pub fn build_impls ( cx : & DocContext < ' _ > , did : DefId , attrs : Option < Attrs < ' _ > > ) -> Vec < clean:: Item > {
298
+ pub fn build_impls (
299
+ cx : & DocContext < ' _ > ,
300
+ parent_module : Option < DefId > ,
301
+ did : DefId ,
302
+ attrs : Option < Attrs < ' _ > > ,
303
+ ) -> Vec < clean:: Item > {
295
304
let tcx = cx. tcx ;
296
305
let mut impls = Vec :: new ( ) ;
297
306
298
307
// for each implementation of an item represented by `did`, build the clean::Item for that impl
299
308
for & did in tcx. inherent_impls ( did) . iter ( ) {
300
- build_impl ( cx, did, attrs, & mut impls) ;
309
+ build_impl ( cx, parent_module , did, attrs, & mut impls) ;
301
310
}
302
311
303
312
impls
304
313
}
305
314
315
+ /// `parent_module` refers to the parent of the re-export, not the original item
306
316
fn merge_attrs (
307
317
cx : & DocContext < ' _ > ,
308
- attrs : Attrs < ' _ > ,
309
- other_attrs : Option < Attrs < ' _ > > ,
318
+ parent_module : Option < DefId > ,
319
+ old_attrs : Attrs < ' _ > ,
320
+ new_attrs : Option < Attrs < ' _ > > ,
310
321
) -> clean:: Attributes {
311
322
// NOTE: If we have additional attributes (from a re-export),
312
323
// always insert them first. This ensure that re-export
313
324
// doc comments show up before the original doc comments
314
325
// when we render them.
315
- let merged_attrs = if let Some ( inner) = other_attrs {
316
- let mut both = inner. to_vec ( ) ;
317
- both. extend_from_slice ( attrs) ;
318
- both
326
+ if let Some ( inner) = new_attrs {
327
+ if let Some ( new_id) = parent_module {
328
+ let diag = cx. sess ( ) . diagnostic ( ) ;
329
+ Attributes :: from_ast ( diag, old_attrs, Some ( ( inner, new_id) ) )
330
+ } else {
331
+ let mut both = inner. to_vec ( ) ;
332
+ both. extend_from_slice ( old_attrs) ;
333
+ both. clean ( cx)
334
+ }
319
335
} else {
320
- attrs. to_vec ( )
321
- } ;
322
- merged_attrs. clean ( cx)
336
+ old_attrs. clean ( cx)
337
+ }
323
338
}
324
339
325
340
/// Builds a specific implementation of a type. The `did` could be a type method or trait method.
326
341
pub fn build_impl (
327
342
cx : & DocContext < ' _ > ,
343
+ parent_module : impl Into < Option < DefId > > ,
328
344
did : DefId ,
329
345
attrs : Option < Attrs < ' _ > > ,
330
346
ret : & mut Vec < clean:: Item > ,
@@ -333,7 +349,8 @@ pub fn build_impl(
333
349
return ;
334
350
}
335
351
336
- let attrs = merge_attrs ( cx, load_attrs ( cx, did) , attrs) ;
352
+ let attrs = merge_attrs ( cx, parent_module. into ( ) , load_attrs ( cx, did) , attrs) ;
353
+ debug ! ( "merged_attrs={:?}" , attrs) ;
337
354
338
355
let tcx = cx. tcx ;
339
356
let associated_trait = tcx. impl_trait_ref ( did) ;
@@ -499,7 +516,9 @@ fn build_module(cx: &DocContext<'_>, did: DefId, visited: &mut FxHashSet<DefId>)
499
516
} ,
500
517
) ) ,
501
518
} ) ;
502
- } else if let Some ( i) = try_inline ( cx, item. res , item. ident . name , None , visited) {
519
+ } else if let Some ( i) =
520
+ try_inline ( cx, did, item. res , item. ident . name , None , visited)
521
+ {
503
522
items. extend ( i)
504
523
}
505
524
}
0 commit comments