mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +00:00
Better visibility check.
This commit is contained in:
parent
27c071f702
commit
b9ca8ab868
@ -83,7 +83,11 @@ fn fold_kind(kind: SyntaxKind) -> Option<FoldKind> {
|
||||
}
|
||||
|
||||
fn has_visibility(node: &SyntaxNode) -> bool {
|
||||
return node.descendants().any(|n| n.kind() == VISIBILITY);
|
||||
use ast::VisibilityOwner;
|
||||
|
||||
return ast::Module::cast(node)
|
||||
.and_then(|m| m.visibility())
|
||||
.is_some();
|
||||
}
|
||||
|
||||
fn has_newline(node: &SyntaxNode) -> bool {
|
||||
|
Loading…
Reference in New Issue
Block a user