Better visibility check.
This commit is contained in:
parent
27c071f702
commit
b9ca8ab868
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue