-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #51611 - QuietMisdreavus:slippery-macros, r=ollie27
rustdoc: import cross-crate macros alongside everything else The thrilling conclusion of the cross-crate macro saga in rustdoc! After #51425 made sure we saw all the namespaces of an import (and prevented us from losing the `vec!` macro in std's documentation), here is the PR to handle cross-crate macro re-exports at the same time as everything else. This way, attributes like `#[doc(hidden)]` and `#[doc(no_inline)]` can be used to control how the documentation for these macros is seen, rather than rustdoc inlining every macro every time. Fixes #50647
- Loading branch information
Showing
6 changed files
with
124 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![crate_name = "qwop"] | ||
|
||
/// (writen on a spider's web) Some Macro | ||
#[macro_export] | ||
macro_rules! some_macro { | ||
() => { | ||
println!("this is some macro, for sure"); | ||
}; | ||
} | ||
|
||
/// Some other macro, to fill space. | ||
#[macro_export] | ||
macro_rules! other_macro { | ||
() => { | ||
println!("this is some other macro, whatev"); | ||
}; | ||
} | ||
|
||
/// This macro is so cool, it's Super. | ||
#[macro_export] | ||
macro_rules! super_macro { | ||
() => { | ||
println!("is it a bird? a plane? no, it's Super Macro!"); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// aux-build:macro-vis.rs | ||
// build-aux-docs | ||
// ignore-cross-compile | ||
|
||
#![feature(use_extern_macros)] | ||
|
||
#[macro_use] extern crate qwop; | ||
|
||
// @has macro_vis/macro.some_macro.html | ||
// @has macro_vis/index.html '//a/@href' 'macro.some_macro.html' | ||
pub use qwop::some_macro; | ||
|
||
// @has macro_vis/macro.renamed_macro.html | ||
// @!has - '//pre' 'some_macro' | ||
// @has macro_vis/index.html '//a/@href' 'macro.renamed_macro.html' | ||
#[doc(inline)] | ||
pub use qwop::some_macro as renamed_macro; | ||
|
||
// @!has macro_vis/macro.other_macro.html | ||
// @!has macro_vis/index.html '//a/@href' 'macro.other_macro.html' | ||
// @!has - '//code' 'pub use qwop::other_macro;' | ||
#[doc(hidden)] | ||
pub use qwop::other_macro; | ||
|
||
// @has macro_vis/index.html '//code' 'pub use qwop::super_macro;' | ||
// @!has macro_vis/macro.super_macro.html | ||
#[doc(no_inline)] | ||
pub use qwop::super_macro; | ||
|
||
// @has macro_vis/macro.this_is_dope.html | ||
// @has macro_vis/index.html '//a/@href' 'macro.this_is_dope.html' | ||
/// What it says on the tin. | ||
#[macro_export] | ||
macro_rules! this_is_dope { | ||
() => { | ||
println!("yo check this out"); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters