mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 01:17:27 +00:00
Cleanup ImmediateLocation
determination
This commit is contained in:
parent
f41c983424
commit
3a16950fd9
5 changed files with 136 additions and 119 deletions
|
@ -104,7 +104,7 @@ pub(crate) fn complete_expr_keyword(acc: &mut Completions, ctx: &CompletionConte
|
||||||
if expects_item || has_block_expr_parent {
|
if expects_item || has_block_expr_parent {
|
||||||
add_keyword(ctx, acc, "mod", "mod $0");
|
add_keyword(ctx, acc, "mod", "mod $0");
|
||||||
}
|
}
|
||||||
if ctx.has_ident_or_ref_pat_parent() {
|
if ctx.expects_ident_pat_or_ref_expr() {
|
||||||
add_keyword(ctx, acc, "mut", "mut ");
|
add_keyword(ctx, acc, "mut", "mut ");
|
||||||
}
|
}
|
||||||
if expects_item || expects_assoc_item || has_block_expr_parent {
|
if expects_item || expects_assoc_item || has_block_expr_parent {
|
||||||
|
|
|
@ -20,7 +20,6 @@ pub(crate) fn complete_qualified_path(acc: &mut Completions, ctx: &CompletionCon
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
let context_module = ctx.scope.module();
|
let context_module = ctx.scope.module();
|
||||||
|
|
||||||
if ctx.expects_item() || ctx.expects_assoc_item() {
|
if ctx.expects_item() || ctx.expects_assoc_item() {
|
||||||
if let PathResolution::Def(hir::ModuleDef::Module(module)) = resolution {
|
if let PathResolution::Def(hir::ModuleDef::Module(module)) = resolution {
|
||||||
let module_scope = module.scope(ctx.db, context_module);
|
let module_scope = module.scope(ctx.db, context_module);
|
||||||
|
@ -606,7 +605,7 @@ fn main() { T::$0; }
|
||||||
macro_rules! foo { () => {} }
|
macro_rules! foo { () => {} }
|
||||||
|
|
||||||
fn main() { let _ = crate::$0 }
|
fn main() { let _ = crate::$0 }
|
||||||
"#,
|
"#,
|
||||||
expect![[r##"
|
expect![[r##"
|
||||||
fn main() fn()
|
fn main() fn()
|
||||||
ma foo!(…) #[macro_export] macro_rules! foo
|
ma foo!(…) #[macro_export] macro_rules! foo
|
||||||
|
@ -614,6 +613,25 @@ fn main() { let _ = crate::$0 }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn completes_qualified_macros_in_impl() {
|
||||||
|
check(
|
||||||
|
r#"
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! foo { () => {} }
|
||||||
|
|
||||||
|
struct MyStruct {}
|
||||||
|
|
||||||
|
impl MyStruct {
|
||||||
|
crate::$0
|
||||||
|
}
|
||||||
|
"#,
|
||||||
|
expect![[r##"
|
||||||
|
ma foo! #[macro_export] macro_rules! foo
|
||||||
|
"##]],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_super_super_completion() {
|
fn test_super_super_completion() {
|
||||||
check(
|
check(
|
||||||
|
|
|
@ -17,9 +17,8 @@ use text_edit::Indel;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
patterns::{
|
patterns::{
|
||||||
for_is_prev2, has_bind_pat_parent, has_block_expr_parent, has_field_list_parent,
|
determine_location, for_is_prev2, has_prev_sibling, inside_impl_trait_block,
|
||||||
has_impl_parent, has_item_list_or_source_file_parent, has_prev_sibling, has_ref_parent,
|
is_in_loop_body, is_match_arm, previous_token, ImmediateLocation,
|
||||||
has_trait_parent, inside_impl_trait_block, is_in_loop_body, is_match_arm, previous_token,
|
|
||||||
},
|
},
|
||||||
CompletionConfig,
|
CompletionConfig,
|
||||||
};
|
};
|
||||||
|
@ -30,18 +29,6 @@ pub(crate) enum PatternRefutability {
|
||||||
Irrefutable,
|
Irrefutable,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Direct parent container of the cursor position
|
|
||||||
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
|
||||||
pub(crate) enum ImmediateLocation {
|
|
||||||
Impl,
|
|
||||||
Trait,
|
|
||||||
RecordFieldList,
|
|
||||||
RefPatOrExpr,
|
|
||||||
IdentPat,
|
|
||||||
BlockExpr,
|
|
||||||
ItemList,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
||||||
pub(crate) enum PrevSibling {
|
pub(crate) enum PrevSibling {
|
||||||
Trait,
|
Trait,
|
||||||
|
@ -301,15 +288,15 @@ impl<'a> CompletionContext<'a> {
|
||||||
matches!(self.completion_location, Some(ImmediateLocation::BlockExpr))
|
matches!(self.completion_location, Some(ImmediateLocation::BlockExpr))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn has_ident_or_ref_pat_parent(&self) -> bool {
|
pub(crate) fn expects_ident_pat_or_ref_expr(&self) -> bool {
|
||||||
matches!(
|
matches!(
|
||||||
self.completion_location,
|
self.completion_location,
|
||||||
Some(ImmediateLocation::IdentPat) | Some(ImmediateLocation::RefPatOrExpr)
|
Some(ImmediateLocation::IdentPat) | Some(ImmediateLocation::RefExpr)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn expect_record_field(&self) -> bool {
|
pub(crate) fn expect_record_field(&self) -> bool {
|
||||||
matches!(self.completion_location, Some(ImmediateLocation::RecordFieldList))
|
matches!(self.completion_location, Some(ImmediateLocation::RecordField))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn has_impl_or_trait_prev_sibling(&self) -> bool {
|
pub(crate) fn has_impl_or_trait_prev_sibling(&self) -> bool {
|
||||||
|
@ -324,9 +311,8 @@ impl<'a> CompletionContext<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn fill_keyword_patterns(&mut self, file_with_fake_ident: &SyntaxNode, offset: TextSize) {
|
fn fill_keyword_patterns(&mut self, file_with_fake_ident: &SyntaxNode, offset: TextSize) {
|
||||||
dbg!(file_with_fake_ident);
|
|
||||||
let fake_ident_token = file_with_fake_ident.token_at_offset(offset).right_biased().unwrap();
|
let fake_ident_token = file_with_fake_ident.token_at_offset(offset).right_biased().unwrap();
|
||||||
let syntax_element = NodeOrToken::Token(fake_ident_token);
|
let syntax_element = NodeOrToken::Token(fake_ident_token.clone());
|
||||||
self.previous_token = previous_token(syntax_element.clone());
|
self.previous_token = previous_token(syntax_element.clone());
|
||||||
self.in_loop_body = is_in_loop_body(syntax_element.clone());
|
self.in_loop_body = is_in_loop_body(syntax_element.clone());
|
||||||
self.is_match_arm = is_match_arm(syntax_element.clone());
|
self.is_match_arm = is_match_arm(syntax_element.clone());
|
||||||
|
@ -336,22 +322,6 @@ impl<'a> CompletionContext<'a> {
|
||||||
self.prev_sibling = Some(PrevSibling::Trait)
|
self.prev_sibling = Some(PrevSibling::Trait)
|
||||||
}
|
}
|
||||||
|
|
||||||
if has_block_expr_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::BlockExpr);
|
|
||||||
} else if has_bind_pat_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::IdentPat);
|
|
||||||
} else if has_ref_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::RefPatOrExpr);
|
|
||||||
} else if has_impl_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::Impl);
|
|
||||||
} else if has_field_list_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::RecordFieldList);
|
|
||||||
} else if has_trait_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::Trait);
|
|
||||||
} else if has_item_list_or_source_file_parent(syntax_element.clone()) {
|
|
||||||
self.completion_location = Some(ImmediateLocation::ItemList);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.mod_declaration_under_caret =
|
self.mod_declaration_under_caret =
|
||||||
find_node_at_offset::<ast::Module>(&file_with_fake_ident, offset)
|
find_node_at_offset::<ast::Module>(&file_with_fake_ident, offset)
|
||||||
.filter(|module| module.item_list().is_none());
|
.filter(|module| module.item_list().is_none());
|
||||||
|
@ -364,6 +334,8 @@ impl<'a> CompletionContext<'a> {
|
||||||
let fn_is_prev = self.previous_token_is(T![fn]);
|
let fn_is_prev = self.previous_token_is(T![fn]);
|
||||||
let for_is_prev2 = for_is_prev2(syntax_element.clone());
|
let for_is_prev2 = for_is_prev2(syntax_element.clone());
|
||||||
self.no_completion_required = (fn_is_prev && !inside_impl_trait_block) || for_is_prev2;
|
self.no_completion_required = (fn_is_prev && !inside_impl_trait_block) || for_is_prev2;
|
||||||
|
|
||||||
|
self.completion_location = determine_location(fake_ident_token);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn fill_impl_def(&mut self) {
|
fn fill_impl_def(&mut self) {
|
||||||
|
|
|
@ -11,28 +11,115 @@ use syntax::{
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
use crate::test_utils::{check_pattern_is_applicable, check_pattern_is_not_applicable};
|
use crate::test_utils::{check_pattern_is_applicable, check_pattern_is_not_applicable};
|
||||||
|
|
||||||
pub(crate) fn has_trait_parent(element: SyntaxElement) -> bool {
|
/// Direct parent container of the cursor position
|
||||||
not_same_range_ancestor(element)
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
||||||
.filter(|it| it.kind() == ASSOC_ITEM_LIST)
|
pub(crate) enum ImmediateLocation {
|
||||||
.and_then(|it| it.parent())
|
Impl,
|
||||||
.filter(|it| it.kind() == TRAIT)
|
Trait,
|
||||||
.is_some()
|
RecordField,
|
||||||
}
|
RefExpr,
|
||||||
#[test]
|
IdentPat,
|
||||||
fn test_has_trait_parent() {
|
BlockExpr,
|
||||||
check_pattern_is_applicable(r"trait A { f$0 }", has_trait_parent);
|
ItemList,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn has_impl_parent(element: SyntaxElement) -> bool {
|
pub(crate) fn determine_location(tok: SyntaxToken) -> Option<ImmediateLocation> {
|
||||||
not_same_range_ancestor(element)
|
// First "expand" the element we are completing to its maximum so that we can check in what
|
||||||
.filter(|it| it.kind() == ASSOC_ITEM_LIST)
|
// context it immediately lies. This for example means if the token is a NameRef at the end of
|
||||||
.and_then(|it| it.parent())
|
// a path, we want to look at where the path is in the tree.
|
||||||
.filter(|it| it.kind() == IMPL)
|
let node = match tok.parent().and_then(ast::NameLike::cast)? {
|
||||||
.is_some()
|
ast::NameLike::NameRef(name_ref) => {
|
||||||
|
if let Some(segment) = name_ref.syntax().parent().and_then(ast::PathSegment::cast) {
|
||||||
|
let p = segment.parent_path();
|
||||||
|
if p.parent_path().is_none() {
|
||||||
|
p.syntax()
|
||||||
|
.ancestors()
|
||||||
|
.take_while(|it| it.text_range() == p.syntax().text_range())
|
||||||
|
.last()?
|
||||||
|
} else {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
it @ ast::NameLike::Name(_) | it @ ast::NameLike::Lifetime(_) => it.syntax().clone(),
|
||||||
|
};
|
||||||
|
let parent = match node.parent() {
|
||||||
|
Some(parent) => parent,
|
||||||
|
// SourceFile
|
||||||
|
None => {
|
||||||
|
return match node.kind() {
|
||||||
|
MACRO_ITEMS | SOURCE_FILE => Some(ImmediateLocation::ItemList),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
let res = match_ast! {
|
||||||
|
match parent {
|
||||||
|
ast::IdentPat(_it) => ImmediateLocation::IdentPat,
|
||||||
|
ast::BlockExpr(_it) => ImmediateLocation::BlockExpr,
|
||||||
|
ast::SourceFile(_it) => ImmediateLocation::ItemList,
|
||||||
|
ast::ItemList(_it) => ImmediateLocation::ItemList,
|
||||||
|
ast::RefExpr(_it) => ImmediateLocation::RefExpr,
|
||||||
|
ast::RefPat(_it) => ImmediateLocation::RefExpr,
|
||||||
|
ast::RecordField(_it) => ImmediateLocation::RecordField,
|
||||||
|
ast::AssocItemList(it) => match it.syntax().parent().map(|it| it.kind()) {
|
||||||
|
Some(IMPL) => ImmediateLocation::Impl,
|
||||||
|
Some(TRAIT) => ImmediateLocation::Trait,
|
||||||
|
_ => return None,
|
||||||
|
},
|
||||||
|
_ => return None,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Some(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
fn check_location(code: &str, loc: ImmediateLocation) {
|
||||||
|
check_pattern_is_applicable(code, |e| {
|
||||||
|
assert_eq!(determine_location(e.into_token().expect("Expected a token")), Some(loc));
|
||||||
|
true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_has_trait_parent() {
|
||||||
|
check_location(r"trait A { f$0 }", ImmediateLocation::Trait);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_has_impl_parent() {
|
fn test_has_impl_parent() {
|
||||||
check_pattern_is_applicable(r"impl A { f$0 }", has_impl_parent);
|
check_location(r"impl A { f$0 }", ImmediateLocation::Impl);
|
||||||
|
}
|
||||||
|
#[test]
|
||||||
|
fn test_has_field_list_parent() {
|
||||||
|
check_location(r"struct Foo { f$0 }", ImmediateLocation::RecordField);
|
||||||
|
check_location(r"struct Foo { f$0 pub f: i32}", ImmediateLocation::RecordField);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_has_block_expr_parent() {
|
||||||
|
check_location(r"fn my_fn() { let a = 2; f$0 }", ImmediateLocation::BlockExpr);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_has_ident_pat_parent() {
|
||||||
|
check_location(r"fn my_fn(m$0) {}", ImmediateLocation::IdentPat);
|
||||||
|
check_location(r"fn my_fn() { let m$0 }", ImmediateLocation::IdentPat);
|
||||||
|
check_location(r"fn my_fn(&m$0) {}", ImmediateLocation::IdentPat);
|
||||||
|
check_location(r"fn my_fn() { let &m$0 }", ImmediateLocation::IdentPat);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_has_ref_expr_parent() {
|
||||||
|
check_location(r"fn my_fn() { let x = &m$0 foo; }", ImmediateLocation::RefExpr);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_has_item_list_or_source_file_parent() {
|
||||||
|
check_location(r"i$0", ImmediateLocation::ItemList);
|
||||||
|
check_location(r"mod foo { f$0 }", ImmediateLocation::ItemList);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn inside_impl_trait_block(element: SyntaxElement) -> bool {
|
pub(crate) fn inside_impl_trait_block(element: SyntaxElement) -> bool {
|
||||||
|
@ -53,62 +140,6 @@ fn test_inside_impl_trait_block() {
|
||||||
check_pattern_is_not_applicable(r"impl A { fn f$0 }", inside_impl_trait_block);
|
check_pattern_is_not_applicable(r"impl A { fn f$0 }", inside_impl_trait_block);
|
||||||
}
|
}
|
||||||
|
|
||||||
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$0 }", has_field_list_parent);
|
|
||||||
check_pattern_is_applicable(r"struct Foo { f$0 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()
|
|
||||||
}
|
|
||||||
#[test]
|
|
||||||
fn test_has_block_expr_parent() {
|
|
||||||
check_pattern_is_applicable(r"fn my_fn() { let a = 2; f$0 }", has_block_expr_parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn has_bind_pat_parent(element: SyntaxElement) -> bool {
|
|
||||||
element.ancestors().any(|it| it.kind() == IDENT_PAT)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_has_bind_pat_parent() {
|
|
||||||
check_pattern_is_applicable(r"fn my_fn(m$0) {}", has_bind_pat_parent);
|
|
||||||
check_pattern_is_applicable(r"fn my_fn() { let m$0 }", has_bind_pat_parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
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()
|
|
||||||
}
|
|
||||||
#[test]
|
|
||||||
fn test_has_ref_parent() {
|
|
||||||
check_pattern_is_applicable(r"fn my_fn(&m$0) {}", has_ref_parent);
|
|
||||||
check_pattern_is_applicable(r"fn my() { let &m$0 }", has_ref_parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn has_item_list_or_source_file_parent(element: SyntaxElement) -> bool {
|
|
||||||
let it = element
|
|
||||||
.ancestors()
|
|
||||||
.take_while(|it| it.text_range() == element.text_range())
|
|
||||||
.last()
|
|
||||||
.map(|it| (it.kind(), it.parent()));
|
|
||||||
match it {
|
|
||||||
Some((_, Some(it))) => it.kind() == SOURCE_FILE || it.kind() == ITEM_LIST,
|
|
||||||
Some((MACRO_ITEMS, None) | (SOURCE_FILE, None)) => true,
|
|
||||||
_ => false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#[test]
|
|
||||||
fn test_has_item_list_or_source_file_parent() {
|
|
||||||
check_pattern_is_applicable(r"i$0", has_item_list_or_source_file_parent);
|
|
||||||
check_pattern_is_applicable(r"mod foo { f$0 }", has_item_list_or_source_file_parent);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn is_match_arm(element: SyntaxElement) -> bool {
|
pub(crate) fn is_match_arm(element: SyntaxElement) -> bool {
|
||||||
not_same_range_ancestor(element.clone()).filter(|it| it.kind() == MATCH_ARM).is_some()
|
not_same_range_ancestor(element.clone()).filter(|it| it.kind() == MATCH_ARM).is_some()
|
||||||
&& previous_sibling_or_ancestor_sibling(element)
|
&& previous_sibling_or_ancestor_sibling(element)
|
||||||
|
@ -166,12 +197,8 @@ pub(crate) fn is_in_loop_body(element: SyntaxElement) -> bool {
|
||||||
.is_some()
|
.is_some()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn not_same_range_ancestor(element: SyntaxElement) -> Option<SyntaxNode> {
|
pub(crate) fn not_same_range_ancestor(element: SyntaxElement) -> Option<SyntaxNode> {
|
||||||
element
|
element.ancestors().skip_while(|it| it.text_range() == element.text_range()).next()
|
||||||
.ancestors()
|
|
||||||
.take_while(|it| it.text_range() == element.text_range())
|
|
||||||
.last()
|
|
||||||
.and_then(|it| it.parent())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn previous_non_trivia_token(token: SyntaxToken) -> Option<SyntaxToken> {
|
fn previous_non_trivia_token(token: SyntaxToken) -> Option<SyntaxToken> {
|
||||||
|
|
|
@ -132,7 +132,7 @@ pub(crate) fn check_edit_with_config(
|
||||||
assert_eq_text!(&ra_fixture_after, &actual)
|
assert_eq_text!(&ra_fixture_after, &actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn check_pattern_is_applicable(code: &str, check: fn(SyntaxElement) -> bool) {
|
pub(crate) fn check_pattern_is_applicable(code: &str, check: impl FnOnce(SyntaxElement) -> bool) {
|
||||||
let (db, pos) = position(code);
|
let (db, pos) = position(code);
|
||||||
|
|
||||||
let sema = Semantics::new(&db);
|
let sema = Semantics::new(&db);
|
||||||
|
|
Loading…
Reference in a new issue