mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
expand: Change how #![cfg(FALSE)]
behaves on crate root
This commit is contained in:
parent
54129fa113
commit
74d6826858
3 changed files with 14 additions and 5 deletions
|
@ -309,6 +309,14 @@ impl Attr {
|
|||
|
||||
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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue