@@ -24,7 +24,6 @@ use crate::clean::{
24
24
clean_middle_ty, inline,
25
25
} ;
26
26
use crate :: core:: DocContext ;
27
- use crate :: html:: format:: visibility_to_src_with_space;
28
27
29
28
#[ cfg( test) ]
30
29
mod tests;
@@ -599,7 +598,7 @@ pub(crate) static DOC_CHANNEL: Lazy<&'static str> =
599
598
600
599
/// Render a sequence of macro arms in a format suitable for displaying to the user
601
600
/// as part of an item declaration.
602
- pub ( super ) fn render_macro_arms < ' a > (
601
+ fn render_macro_arms < ' a > (
603
602
tcx : TyCtxt < ' _ > ,
604
603
matchers : impl Iterator < Item = & ' a TokenTree > ,
605
604
arm_delim : & str ,
@@ -620,9 +619,6 @@ pub(super) fn display_macro_source(
620
619
cx : & mut DocContext < ' _ > ,
621
620
name : Symbol ,
622
621
def : & ast:: MacroDef ,
623
- def_id : DefId ,
624
- vis : ty:: Visibility < DefId > ,
625
- is_doc_hidden : bool ,
626
622
) -> String {
627
623
// Extract the spans of all matchers. They represent the "interface" of the macro.
628
624
let matchers = def. body . tokens . chunks ( 4 ) . map ( |arm| & arm[ 0 ] ) ;
@@ -632,18 +628,13 @@ pub(super) fn display_macro_source(
632
628
} else {
633
629
if matchers. len ( ) <= 1 {
634
630
format ! (
635
- "{vis}macro {name}{matchers} {{\n ...\n }}" ,
636
- vis = visibility_to_src_with_space( Some ( vis) , cx. tcx, def_id, is_doc_hidden) ,
631
+ "macro {name}{matchers} {{\n ...\n }}" ,
637
632
matchers = matchers
638
633
. map( |matcher| render_macro_matcher( cx. tcx, matcher) )
639
634
. collect:: <String >( ) ,
640
635
)
641
636
} else {
642
- format ! (
643
- "{vis}macro {name} {{\n {arms}}}" ,
644
- vis = visibility_to_src_with_space( Some ( vis) , cx. tcx, def_id, is_doc_hidden) ,
645
- arms = render_macro_arms( cx. tcx, matchers, "," ) ,
646
- )
637
+ format ! ( "macro {name} {{\n {arms}}}" , arms = render_macro_arms( cx. tcx, matchers, "," ) )
647
638
}
648
639
}
649
640
}
0 commit comments