rust-analyzer/crates/ide/src/completion/patterns.rs

204 lines
6.7 KiB
Rust
Raw Normal View History

2020-06-12 23:21:48 +00:00
//! Patterns telling us certain facts about current syntax element, they are used in completion context
2020-08-12 16:26:51 +00:00
use syntax::{
2020-06-11 12:16:35 +00:00
algo::non_trivia_sibling,
ast::{self, LoopBodyOwner},
match_ast, AstNode, Direction, NodeOrToken, SyntaxElement,
SyntaxKind::*,
2020-06-11 21:25:58 +00:00
SyntaxNode, SyntaxToken,
2020-06-11 12:16:35 +00:00
};
2020-06-13 11:47:30 +00:00
#[cfg(test)]
use crate::completion::test_utils::check_pattern_is_applicable;
pub(crate) fn has_trait_parent(element: SyntaxElement) -> bool {
not_same_range_ancestor(element)
2020-07-30 09:42:51 +00:00
.filter(|it| it.kind() == ASSOC_ITEM_LIST)
.and_then(|it| it.parent())
2020-07-30 16:17:28 +00:00
.filter(|it| it.kind() == TRAIT)
.is_some()
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_trait_parent() {
check_pattern_is_applicable(r"trait A { f<|> }", has_trait_parent);
}
pub(crate) fn has_impl_parent(element: SyntaxElement) -> bool {
not_same_range_ancestor(element)
2020-07-30 09:42:51 +00:00
.filter(|it| it.kind() == ASSOC_ITEM_LIST)
.and_then(|it| it.parent())
2020-07-30 16:28:28 +00:00
.filter(|it| it.kind() == IMPL)
.is_some()
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_impl_parent() {
check_pattern_is_applicable(r"impl A { f<|> }", has_impl_parent);
}
2020-08-25 15:20:29 +00:00
pub(crate) fn has_field_list_parent(element: SyntaxElement) -> bool {
not_same_range_ancestor(element).filter(|it| it.kind() == RECORD_FIELD_LIST).is_some()
}
#[test]
fn test_has_field_list_parent() {
check_pattern_is_applicable(r"struct Foo { f<|> }", has_field_list_parent);
check_pattern_is_applicable(r"struct Foo { f<|> pub f: i32}", has_field_list_parent);
}
pub(crate) fn has_block_expr_parent(element: SyntaxElement) -> bool {
not_same_range_ancestor(element).filter(|it| it.kind() == BLOCK_EXPR).is_some()
2020-06-11 12:16:35 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_block_expr_parent() {
check_pattern_is_applicable(r"fn my_fn() { let a = 2; f<|> }", has_block_expr_parent);
}
2020-06-11 12:16:35 +00:00
pub(crate) fn has_bind_pat_parent(element: SyntaxElement) -> bool {
2020-07-31 18:09:09 +00:00
element.ancestors().find(|it| it.kind() == IDENT_PAT).is_some()
2020-06-11 12:16:35 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_bind_pat_parent() {
check_pattern_is_applicable(r"fn my_fn(m<|>) {}", has_bind_pat_parent);
check_pattern_is_applicable(r"fn my_fn() { let m<|> }", has_bind_pat_parent);
}
2020-06-11 12:16:35 +00:00
pub(crate) fn has_ref_parent(element: SyntaxElement) -> bool {
not_same_range_ancestor(element)
.filter(|it| it.kind() == REF_PAT || it.kind() == REF_EXPR)
.is_some()
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_ref_parent() {
check_pattern_is_applicable(r"fn my_fn(&m<|>) {}", has_ref_parent);
check_pattern_is_applicable(r"fn my() { let &m<|> }", has_ref_parent);
}
pub(crate) fn has_item_list_or_source_file_parent(element: SyntaxElement) -> bool {
let ancestor = not_same_range_ancestor(element);
if !ancestor.is_some() {
return true;
}
ancestor.filter(|it| it.kind() == SOURCE_FILE || it.kind() == ITEM_LIST).is_some()
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_item_list_or_source_file_parent() {
check_pattern_is_applicable(r"i<|>", has_item_list_or_source_file_parent);
2020-07-30 09:42:51 +00:00
check_pattern_is_applicable(r"mod foo { f<|> }", has_item_list_or_source_file_parent);
2020-06-13 11:47:30 +00:00
}
pub(crate) fn is_match_arm(element: SyntaxElement) -> bool {
not_same_range_ancestor(element.clone()).filter(|it| it.kind() == MATCH_ARM).is_some()
&& previous_sibling_or_ancestor_sibling(element)
.and_then(|it| it.into_token())
.filter(|it| it.kind() == FAT_ARROW)
.is_some()
2020-06-11 12:16:35 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_is_match_arm() {
check_pattern_is_applicable(r"fn my_fn() { match () { () => m<|> } }", is_match_arm);
}
2020-06-11 12:16:35 +00:00
pub(crate) fn unsafe_is_prev(element: SyntaxElement) -> bool {
2020-06-11 21:25:58 +00:00
element
.into_token()
.and_then(|it| previous_non_trivia_token(it))
.filter(|it| it.kind() == UNSAFE_KW)
.is_some()
2020-06-11 12:16:35 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_unsafe_is_prev() {
check_pattern_is_applicable(r"unsafe i<|>", unsafe_is_prev);
}
2020-06-11 12:16:35 +00:00
pub(crate) fn if_is_prev(element: SyntaxElement) -> bool {
element
.into_token()
.and_then(|it| previous_non_trivia_token(it))
.filter(|it| it.kind() == IF_KW)
.is_some()
}
2020-09-07 21:54:58 +00:00
2020-06-13 11:47:30 +00:00
#[test]
fn test_if_is_prev() {
check_pattern_is_applicable(r"if l<|>", if_is_prev);
}
2020-06-11 21:25:58 +00:00
pub(crate) fn has_trait_as_prev_sibling(element: SyntaxElement) -> bool {
2020-07-30 16:17:28 +00:00
previous_sibling_or_ancestor_sibling(element).filter(|it| it.kind() == TRAIT).is_some()
2020-06-11 21:25:58 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_trait_as_prev_sibling() {
check_pattern_is_applicable(r"trait A w<|> {}", has_trait_as_prev_sibling);
}
2020-06-11 21:25:58 +00:00
pub(crate) fn has_impl_as_prev_sibling(element: SyntaxElement) -> bool {
2020-07-30 16:28:28 +00:00
previous_sibling_or_ancestor_sibling(element).filter(|it| it.kind() == IMPL).is_some()
2020-06-11 12:16:35 +00:00
}
2020-06-13 11:47:30 +00:00
#[test]
fn test_has_impl_as_prev_sibling() {
check_pattern_is_applicable(r"impl A w<|> {}", has_impl_as_prev_sibling);
}
2020-06-11 12:16:35 +00:00
pub(crate) fn is_in_loop_body(element: SyntaxElement) -> bool {
let leaf = match element {
NodeOrToken::Node(node) => node,
NodeOrToken::Token(token) => token.parent(),
};
for node in leaf.ancestors() {
2020-07-31 15:08:58 +00:00
if node.kind() == FN || node.kind() == CLOSURE_EXPR {
2020-06-11 12:16:35 +00:00
break;
}
let loop_body = match_ast! {
match node {
ast::ForExpr(it) => it.loop_body(),
ast::WhileExpr(it) => it.loop_body(),
ast::LoopExpr(it) => it.loop_body(),
_ => None,
}
};
if let Some(body) = loop_body {
if body.syntax().text_range().contains_range(leaf.text_range()) {
return true;
}
}
}
false
}
2020-06-11 21:25:58 +00:00
fn not_same_range_ancestor(element: SyntaxElement) -> Option<SyntaxNode> {
element
.ancestors()
.take_while(|it| it.text_range() == element.text_range())
.last()
.and_then(|it| it.parent())
2020-06-11 12:16:35 +00:00
}
2020-06-11 21:25:58 +00:00
fn previous_non_trivia_token(token: SyntaxToken) -> Option<SyntaxToken> {
let mut token = token.prev_token();
while let Some(inner) = token.clone() {
if !inner.kind().is_trivia() {
return Some(inner);
} else {
token = inner.prev_token();
}
}
None
}
fn previous_sibling_or_ancestor_sibling(element: SyntaxElement) -> Option<SyntaxElement> {
2020-06-11 12:16:35 +00:00
let token_sibling = non_trivia_sibling(element.clone(), Direction::Prev);
2020-06-11 21:25:58 +00:00
if let Some(sibling) = token_sibling {
Some(sibling)
2020-06-11 12:16:35 +00:00
} else {
// if not trying to find first ancestor which has such a sibling
let node = match element {
NodeOrToken::Node(node) => node,
NodeOrToken::Token(token) => token.parent(),
};
let range = node.text_range();
let top_node = node.ancestors().take_while(|it| it.text_range() == range).last()?;
let prev_sibling_node = top_node.ancestors().find(|it| {
non_trivia_sibling(NodeOrToken::Node(it.to_owned()), Direction::Prev).is_some()
})?;
2020-06-11 21:25:58 +00:00
non_trivia_sibling(NodeOrToken::Node(prev_sibling_node), Direction::Prev)
2020-06-11 12:16:35 +00:00
}
}