Skip to content

Commit 392d272

Browse files
committed
Auto merge of #98108 - SpriteOvO:doc_auto_cfg-feature-rmv-fix, r=notriddle,GuillaumeGomez
Rustdoc: Fix stab disappearing and exclude cfg "doc" and "doctest" Fixes #98065 Context: #43781 (comment) r? `@GuillaumeGomez`
2 parents 1b9daa6 + 713578b commit 392d272

File tree

4 files changed

+40
-12
lines changed

4 files changed

+40
-12
lines changed

src/librustdoc/clean/cfg.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,20 @@ impl Cfg {
8787
}),
8888
},
8989
MetaItemKind::List(ref items) => {
90+
let orig_len = items.len();
9091
let sub_cfgs =
9192
items.iter().filter_map(|i| Cfg::parse_nested(i, exclude).transpose());
9293
let ret = match name {
9394
sym::all => sub_cfgs.fold(Ok(Cfg::True), |x, y| Ok(x? & y?)),
9495
sym::any => sub_cfgs.fold(Ok(Cfg::False), |x, y| Ok(x? | y?)),
9596
sym::not => {
96-
let mut sub_cfgs = sub_cfgs.collect::<Vec<_>>();
97-
if sub_cfgs.len() == 1 {
98-
Ok(!sub_cfgs.pop().unwrap()?)
97+
if orig_len == 1 {
98+
let mut sub_cfgs = sub_cfgs.collect::<Vec<_>>();
99+
if sub_cfgs.len() == 1 {
100+
Ok(!sub_cfgs.pop().unwrap()?)
101+
} else {
102+
return Ok(None);
103+
}
99104
} else {
100105
Err(InvalidCfgError { msg: "expected 1 cfg-pattern", span: cfg.span })
101106
}
@@ -304,8 +309,7 @@ impl ops::BitAnd for Cfg {
304309
impl ops::BitOrAssign for Cfg {
305310
fn bitor_assign(&mut self, other: Cfg) {
306311
match (self, other) {
307-
(&mut Cfg::True, _) | (_, Cfg::False) => {}
308-
(s, Cfg::True) => *s = Cfg::True,
312+
(Cfg::True, _) | (_, Cfg::False) | (_, Cfg::True) => {}
309313
(s @ &mut Cfg::False, b) => *s = b,
310314
(&mut Cfg::Any(ref mut a), Cfg::Any(ref mut b)) => {
311315
for c in b.drain(..) {

src/librustdoc/clean/cfg/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ fn test_cfg_or() {
161161

162162
x = word_cfg("test");
163163
x |= Cfg::True;
164-
assert_eq!(x, Cfg::True);
164+
assert_eq!(x, word_cfg("test"));
165165

166166
x = word_cfg("test2");
167167
x |= Cfg::False;

src/librustdoc/visit_ast.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
141141
})
142142
.collect::<Vec<_>>()
143143
})
144-
.chain([Cfg::Cfg(sym::test, None)].into_iter())
144+
.chain(
145+
[Cfg::Cfg(sym::test, None), Cfg::Cfg(sym::doc, None), Cfg::Cfg(sym::doctest, None)]
146+
.into_iter(),
147+
)
145148
.collect();
146149

147150
self.cx.cache.exact_paths = self.exact_paths;

src/test/rustdoc/doc-auto-cfg.rs

+26-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
#![feature(doc_auto_cfg)]
2-
32
#![crate_name = "foo"]
43

54
// @has foo/fn.foo.html
6-
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'non-doctest'
7-
#[cfg(not(doctest))]
5+
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'non-meowmeow'
6+
#[cfg(not(meowmeow))]
87
pub fn foo() {}
98

109
// @has foo/fn.bar.html
11-
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doc'
10+
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'meowmeow'
1211
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'test'
13-
#[cfg(any(test, doc))]
12+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doc'
13+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doctest'
14+
#[cfg(any(meowmeow, test, doc, doctest))]
1415
pub fn bar() {}
16+
17+
// @has foo/fn.appear_1.html
18+
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'meowmeow'
19+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doc'
20+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'non-test'
21+
#[cfg(any(meowmeow, doc, not(test)))]
22+
pub fn appear_1() {} // issue #98065
23+
24+
// @has foo/fn.appear_2.html
25+
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'meowmeow'
26+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doc'
27+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'test'
28+
#[cfg(any(meowmeow, doc, all(test)))]
29+
pub fn appear_2() {} // issue #98065
30+
31+
// @has foo/fn.appear_3.html
32+
// @has - '//*[@class="item-info"]/*[@class="stab portability"]' 'meowmeow'
33+
// @!has - '//*[@class="item-info"]/*[@class="stab portability"]' 'doc'
34+
#[cfg(any(meowmeow, doc, all()))]
35+
pub fn appear_3() {} // issue #98065

0 commit comments

Comments
 (0)