Skip to content

Commit 141012d

Browse files
authored
Auto merge of #36482 - jseyfried:dont_load_unconfigured_noninline_modules, r=nrc
Avoid loading and parsing unconfigured non-inline modules. For example, `#[cfg(any())] mod foo;` will always compile after this PR, even if `foo.rs` and `foo/mod.rs` do not exist or do not contain valid Rust. Fixes #36478 and fixes #27873. r? @nrc
2 parents 9dc9f34 + 6f0ee45 commit 141012d

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

src/libsyntax/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ impl<'a> StripUnconfigured<'a> {
126126
}
127127

128128
// Determine if a node with the given attributes should be included in this configuation.
129-
fn in_cfg(&mut self, attrs: &[ast::Attribute]) -> bool {
129+
pub fn in_cfg(&mut self, attrs: &[ast::Attribute]) -> bool {
130130
attrs.iter().all(|attr| {
131131
// When not compiling with --test we should not compile the #[test] functions
132132
if !self.should_test && is_test_or_bench(attr) {

src/libsyntax/parse/parser.rs

+18-9
Original file line numberDiff line numberDiff line change
@@ -5260,20 +5260,29 @@ impl<'a> Parser<'a> {
52605260

52615261
/// Parse a `mod <foo> { ... }` or `mod <foo>;` item
52625262
fn parse_item_mod(&mut self, outer_attrs: &[Attribute]) -> PResult<'a, ItemInfo> {
5263-
let outer_attrs = ::config::StripUnconfigured {
5264-
config: &self.cfg,
5265-
sess: self.sess,
5266-
should_test: false, // irrelevant
5267-
features: None, // don't perform gated feature checking
5268-
}.process_cfg_attrs(outer_attrs.to_owned());
5263+
let (in_cfg, outer_attrs) = {
5264+
let mut strip_unconfigured = ::config::StripUnconfigured {
5265+
config: &self.cfg,
5266+
sess: self.sess,
5267+
should_test: false, // irrelevant
5268+
features: None, // don't perform gated feature checking
5269+
};
5270+
let outer_attrs = strip_unconfigured.process_cfg_attrs(outer_attrs.to_owned());
5271+
(strip_unconfigured.in_cfg(&outer_attrs), outer_attrs)
5272+
};
52695273

52705274
let id_span = self.span;
52715275
let id = self.parse_ident()?;
52725276
if self.check(&token::Semi) {
52735277
self.bump();
5274-
// This mod is in an external file. Let's go get it!
5275-
let (m, attrs) = self.eval_src_mod(id, &outer_attrs, id_span)?;
5276-
Ok((id, m, Some(attrs)))
5278+
if in_cfg {
5279+
// This mod is in an external file. Let's go get it!
5280+
let (m, attrs) = self.eval_src_mod(id, &outer_attrs, id_span)?;
5281+
Ok((id, m, Some(attrs)))
5282+
} else {
5283+
let placeholder = ast::Mod { inner: syntax_pos::DUMMY_SP, items: Vec::new() };
5284+
Ok((id, ItemKind::Mod(placeholder), None))
5285+
}
52775286
} else {
52785287
let directory = self.directory.clone();
52795288
self.push_directory(id, &outer_attrs);

src/test/run-pass/conditional-compile.rs

+3
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,6 @@ mod test_methods {
148148
fn the(&self);
149149
}
150150
}
151+
152+
#[cfg(any())]
153+
mod nonexistent_file; // Check that unconfigured non-inline modules are not loaded or parsed.

0 commit comments

Comments
 (0)