expand: Change how #![cfg(FALSE)] behaves on crate root

This commit is contained in:
Lukas Wirth 2023-05-22 21:19:54 +02:00
parent 54129fa113
commit 74d6826858
3 changed files with 14 additions and 5 deletions

View File

@ -202,6 +202,7 @@ pub fn cfg(&self) -> Option<CfgExpr> {
None => Some(first),
}
}
pub(crate) fn is_cfg_enabled(&self, cfg_options: &CfgOptions) -> bool {
match self.cfg() {
None => true,

View File

@ -290,16 +290,16 @@ fn seed_with_top_level(&mut self) {
let module_id = self.def_map.root;
let attrs = item_tree.top_level_attrs(self.db, self.def_map.krate);
if let Some(cfg) = attrs.cfg() {
if self.cfg_options.check(&cfg) == Some(false) {
return;
}
}
self.inject_prelude(&attrs);
// Process other crate-level attributes.
for attr in &*attrs {
if let Some(cfg) = attr.cfg() {
if self.cfg_options.check(&cfg) == Some(false) {
return;
}
}
let attr_name = match attr.path.as_ident() {
Some(name) => name,
None => continue,

View File

@ -309,6 +309,14 @@ pub fn parse_path_comma_token_tree<'a>(
Some(paths)
}
pub fn cfg(&self) -> Option<CfgExpr> {
if *self.path.as_ident()? == crate::name![cfg] {
self.token_tree_value().map(CfgExpr::parse)
} else {
None
}
}
}
pub fn collect_attrs(