2019-09-30 08:58:53 +00:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2020-02-18 17:35:10 +00:00
|
|
|
use hir::{Semantics, SemanticsScope};
|
|
|
|
use ra_db::SourceDatabase;
|
2020-02-06 11:52:32 +00:00
|
|
|
use ra_ide_db::RootDatabase;
|
2019-01-08 19:33:36 +00:00
|
|
|
use ra_syntax::{
|
2019-07-21 10:28:58 +00:00
|
|
|
algo::{find_covering_element, find_node_at_offset},
|
2020-03-07 14:27:03 +00:00
|
|
|
ast, AstNode,
|
2019-01-08 19:33:36 +00:00
|
|
|
SyntaxKind::*,
|
2019-07-04 20:05:17 +00:00
|
|
|
SyntaxNode, SyntaxToken, TextRange, TextUnit,
|
2019-01-08 19:33:36 +00:00
|
|
|
};
|
2019-07-04 20:05:17 +00:00
|
|
|
use ra_text_edit::AtomTextEdit;
|
2019-01-08 19:33:36 +00:00
|
|
|
|
2020-03-10 17:39:17 +00:00
|
|
|
use crate::{completion::CompletionOptions, FilePosition};
|
2019-04-22 13:04:56 +00:00
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
/// `CompletionContext` is created early during completion to figure out, where
|
|
|
|
/// exactly is the cursor, syntax-wise.
|
|
|
|
#[derive(Debug)]
|
2019-01-19 14:02:50 +00:00
|
|
|
pub(crate) struct CompletionContext<'a> {
|
2020-02-18 17:35:10 +00:00
|
|
|
pub(super) sema: Semantics<'a, RootDatabase>,
|
2020-02-06 11:52:32 +00:00
|
|
|
pub(super) db: &'a RootDatabase,
|
2020-03-10 17:39:17 +00:00
|
|
|
pub(super) options: &'a CompletionOptions,
|
2019-01-08 19:33:36 +00:00
|
|
|
pub(super) offset: TextUnit,
|
2020-03-07 14:27:03 +00:00
|
|
|
/// The token before the cursor, in the original file.
|
|
|
|
pub(super) original_token: SyntaxToken,
|
|
|
|
/// The token before the cursor, in the macro-expanded file.
|
2019-07-19 09:56:47 +00:00
|
|
|
pub(super) token: SyntaxToken,
|
2020-03-07 16:53:22 +00:00
|
|
|
pub(super) krate: Option<hir::Crate>,
|
2019-12-21 14:17:10 +00:00
|
|
|
pub(super) name_ref_syntax: Option<ast::NameRef>,
|
2019-07-19 09:56:47 +00:00
|
|
|
pub(super) function_syntax: Option<ast::FnDef>,
|
|
|
|
pub(super) use_item_syntax: Option<ast::UseItem>,
|
2019-08-23 12:55:21 +00:00
|
|
|
pub(super) record_lit_syntax: Option<ast::RecordLit>,
|
|
|
|
pub(super) record_lit_pat: Option<ast::RecordPat>,
|
2020-02-29 20:24:40 +00:00
|
|
|
pub(super) impl_def: Option<ast::ImplDef>,
|
2019-01-08 19:33:36 +00:00
|
|
|
pub(super) is_param: bool,
|
2019-02-24 20:49:47 +00:00
|
|
|
/// If a name-binding or reference to a const in a pattern.
|
|
|
|
/// Irrefutable patterns (like let) are excluded.
|
|
|
|
pub(super) is_pat_binding: bool,
|
2020-03-10 01:10:25 +00:00
|
|
|
// A bind battern which may also be part of a path.
|
|
|
|
// if let Some(En<|>) = Some(Enum::A)
|
|
|
|
pub(super) is_pat_binding_and_path: bool,
|
2019-01-23 05:21:29 +00:00
|
|
|
/// A single-indent path, like `foo`. `::foo` should not be considered a trivial path.
|
2019-01-08 19:33:36 +00:00
|
|
|
pub(super) is_trivial_path: bool,
|
2019-04-15 14:11:32 +00:00
|
|
|
/// If not a trivial path, the prefix (qualifier).
|
2019-01-08 19:33:36 +00:00
|
|
|
pub(super) path_prefix: Option<hir::Path>,
|
|
|
|
pub(super) after_if: bool,
|
|
|
|
/// `true` if we are a statement or a last expr in the block.
|
|
|
|
pub(super) can_be_stmt: bool,
|
|
|
|
/// Something is typed at the "top" level, in module or impl/trait.
|
|
|
|
pub(super) is_new_item: bool,
|
|
|
|
/// The receiver if this is a field or method access, i.e. writing something.<|>
|
2019-07-19 09:56:47 +00:00
|
|
|
pub(super) dot_receiver: Option<ast::Expr>,
|
2019-10-14 15:39:40 +00:00
|
|
|
pub(super) dot_receiver_is_ambiguous_float_literal: bool,
|
2019-01-10 18:38:04 +00:00
|
|
|
/// If this is a call (method or function) in particular, i.e. the () are already there.
|
|
|
|
pub(super) is_call: bool,
|
2019-10-08 18:14:52 +00:00
|
|
|
pub(super) is_path_type: bool,
|
|
|
|
pub(super) has_type_args: bool,
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> CompletionContext<'a> {
|
|
|
|
pub(super) fn new(
|
2020-02-06 11:52:32 +00:00
|
|
|
db: &'a RootDatabase,
|
2019-01-08 19:33:36 +00:00
|
|
|
position: FilePosition,
|
2020-03-10 17:39:17 +00:00
|
|
|
options: &'a CompletionOptions,
|
2019-01-15 18:09:51 +00:00
|
|
|
) -> Option<CompletionContext<'a>> {
|
2020-02-18 17:35:10 +00:00
|
|
|
let sema = Semantics::new(db);
|
|
|
|
|
|
|
|
let original_file = sema.parse(position.file_id);
|
|
|
|
|
|
|
|
// Insert a fake ident to get a valid parse tree. We will use this file
|
|
|
|
// to determine context, though the original_file will be used for
|
|
|
|
// actual completion.
|
|
|
|
let file_with_fake_ident = {
|
|
|
|
let parse = db.parse(position.file_id);
|
|
|
|
let edit = AtomTextEdit::insert(position.offset, "intellijRulezz".to_string());
|
|
|
|
parse.reparse(&edit).tree()
|
|
|
|
};
|
2020-03-07 14:27:03 +00:00
|
|
|
let fake_ident_token =
|
|
|
|
file_with_fake_ident.syntax().token_at_offset(position.offset).right_biased().unwrap();
|
2020-02-18 17:35:10 +00:00
|
|
|
|
2020-03-07 16:53:22 +00:00
|
|
|
let krate = sema.to_module_def(position.file_id).map(|m| m.krate());
|
2020-03-07 14:27:03 +00:00
|
|
|
let original_token =
|
|
|
|
original_file.syntax().token_at_offset(position.offset).left_biased()?;
|
|
|
|
let token = sema.descend_into_macros(original_token.clone());
|
2019-01-08 19:33:36 +00:00
|
|
|
let mut ctx = CompletionContext {
|
2020-02-18 17:35:10 +00:00
|
|
|
sema,
|
2019-01-08 19:33:36 +00:00
|
|
|
db,
|
2020-03-10 17:39:17 +00:00
|
|
|
options,
|
2020-03-07 14:27:03 +00:00
|
|
|
original_token,
|
2019-03-30 10:25:53 +00:00
|
|
|
token,
|
2019-01-08 19:33:36 +00:00
|
|
|
offset: position.offset,
|
2020-03-07 16:53:22 +00:00
|
|
|
krate,
|
2019-12-21 14:17:10 +00:00
|
|
|
name_ref_syntax: None,
|
2019-01-08 19:33:36 +00:00
|
|
|
function_syntax: None,
|
|
|
|
use_item_syntax: None,
|
2019-08-23 12:55:21 +00:00
|
|
|
record_lit_syntax: None,
|
|
|
|
record_lit_pat: None,
|
2020-02-29 20:24:40 +00:00
|
|
|
impl_def: None,
|
2019-01-08 19:33:36 +00:00
|
|
|
is_param: false,
|
2019-02-24 20:49:47 +00:00
|
|
|
is_pat_binding: false,
|
2020-03-10 01:10:25 +00:00
|
|
|
is_pat_binding_and_path: false,
|
2019-01-08 19:33:36 +00:00
|
|
|
is_trivial_path: false,
|
|
|
|
path_prefix: None,
|
|
|
|
after_if: false,
|
|
|
|
can_be_stmt: false,
|
|
|
|
is_new_item: false,
|
|
|
|
dot_receiver: None,
|
2019-01-10 18:38:04 +00:00
|
|
|
is_call: false,
|
2019-10-08 18:14:52 +00:00
|
|
|
is_path_type: false,
|
|
|
|
has_type_args: false,
|
2019-10-14 15:39:40 +00:00
|
|
|
dot_receiver_is_ambiguous_float_literal: false,
|
2019-01-08 19:33:36 +00:00
|
|
|
};
|
2020-03-07 14:27:03 +00:00
|
|
|
|
|
|
|
let mut original_file = original_file.syntax().clone();
|
|
|
|
let mut hypothetical_file = file_with_fake_ident.syntax().clone();
|
|
|
|
let mut offset = position.offset;
|
|
|
|
let mut fake_ident_token = fake_ident_token;
|
|
|
|
|
|
|
|
// Are we inside a macro call?
|
|
|
|
while let (Some(actual_macro_call), Some(macro_call_with_fake_ident)) = (
|
|
|
|
find_node_at_offset::<ast::MacroCall>(&original_file, offset),
|
|
|
|
find_node_at_offset::<ast::MacroCall>(&hypothetical_file, offset),
|
|
|
|
) {
|
2020-03-07 16:47:49 +00:00
|
|
|
if actual_macro_call.path().as_ref().map(|s| s.syntax().text())
|
|
|
|
!= macro_call_with_fake_ident.path().as_ref().map(|s| s.syntax().text())
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2020-03-08 10:02:14 +00:00
|
|
|
let hypothetical_args = match macro_call_with_fake_ident.token_tree() {
|
|
|
|
Some(tt) => tt,
|
|
|
|
None => break,
|
|
|
|
};
|
2020-03-07 14:27:03 +00:00
|
|
|
if let (Some(actual_expansion), Some(hypothetical_expansion)) = (
|
|
|
|
ctx.sema.expand(&actual_macro_call),
|
|
|
|
ctx.sema.expand_hypothetical(
|
|
|
|
&actual_macro_call,
|
2020-03-08 10:02:14 +00:00
|
|
|
&hypothetical_args,
|
2020-03-07 14:27:03 +00:00
|
|
|
fake_ident_token,
|
|
|
|
),
|
|
|
|
) {
|
2020-03-07 16:47:49 +00:00
|
|
|
let new_offset = hypothetical_expansion.1.text_range().start();
|
2020-03-15 10:17:13 +00:00
|
|
|
if new_offset > actual_expansion.text_range().end() {
|
2020-03-07 16:47:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-03-07 14:27:03 +00:00
|
|
|
original_file = actual_expansion;
|
|
|
|
hypothetical_file = hypothetical_expansion.0;
|
|
|
|
fake_ident_token = hypothetical_expansion.1;
|
2020-03-07 16:47:49 +00:00
|
|
|
offset = new_offset;
|
2020-03-07 14:27:03 +00:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.fill(&original_file, hypothetical_file, offset);
|
2019-01-15 18:09:51 +00:00
|
|
|
Some(ctx)
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 04:02:00 +00:00
|
|
|
// The range of the identifier that is being completed.
|
|
|
|
pub(crate) fn source_range(&self) -> TextRange {
|
2020-03-07 14:27:03 +00:00
|
|
|
// check kind of macro-expanded token, but use range of original token
|
2019-03-30 10:25:53 +00:00
|
|
|
match self.token.kind() {
|
2019-01-20 05:34:16 +00:00
|
|
|
// workaroud when completion is triggered by trigger characters.
|
2020-03-07 14:27:03 +00:00
|
|
|
IDENT => self.original_token.text_range(),
|
2019-01-23 05:21:29 +00:00
|
|
|
_ => TextRange::offset_len(self.offset, 0.into()),
|
2019-01-20 05:34:16 +00:00
|
|
|
}
|
2019-01-19 14:02:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 17:35:10 +00:00
|
|
|
pub(crate) fn scope(&self) -> SemanticsScope<'_, RootDatabase> {
|
|
|
|
self.sema.scope_at_offset(&self.token.parent(), self.offset)
|
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
|
2020-02-18 17:35:10 +00:00
|
|
|
fn fill(
|
|
|
|
&mut self,
|
2020-03-07 14:27:03 +00:00
|
|
|
original_file: &SyntaxNode,
|
|
|
|
file_with_fake_ident: SyntaxNode,
|
2020-02-18 17:35:10 +00:00
|
|
|
offset: TextUnit,
|
|
|
|
) {
|
2019-01-08 19:33:36 +00:00
|
|
|
// First, let's try to complete a reference to some declaration.
|
2020-03-07 14:27:03 +00:00
|
|
|
if let Some(name_ref) = find_node_at_offset::<ast::NameRef>(&file_with_fake_ident, offset) {
|
2019-01-08 19:33:36 +00:00
|
|
|
// Special case, `trait T { fn foo(i_am_a_name_ref) {} }`.
|
|
|
|
// See RFC#1685.
|
|
|
|
if is_node::<ast::Param>(name_ref.syntax()) {
|
|
|
|
self.is_param = true;
|
|
|
|
return;
|
|
|
|
}
|
2020-03-07 15:48:39 +00:00
|
|
|
self.classify_name_ref(original_file, name_ref, offset);
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, see if this is a declaration. We can use heuristics to
|
|
|
|
// suggest declaration names, see `CompletionKind::Magic`.
|
2020-03-07 14:27:03 +00:00
|
|
|
if let Some(name) = find_node_at_offset::<ast::Name>(&file_with_fake_ident, offset) {
|
2019-07-21 11:11:45 +00:00
|
|
|
if let Some(bind_pat) = name.syntax().ancestors().find_map(ast::BindPat::cast) {
|
2020-03-18 07:46:42 +00:00
|
|
|
let parent = bind_pat.syntax().parent();
|
2019-07-19 09:56:47 +00:00
|
|
|
if parent.clone().and_then(ast::MatchArm::cast).is_some()
|
2020-03-10 01:10:25 +00:00
|
|
|
|| parent.clone().and_then(ast::Condition::cast).is_some()
|
2019-02-24 20:49:47 +00:00
|
|
|
{
|
|
|
|
self.is_pat_binding = true;
|
|
|
|
}
|
2020-03-10 01:10:25 +00:00
|
|
|
|
2020-03-19 07:11:25 +00:00
|
|
|
if parent.and_then(ast::RecordFieldPatList::cast).is_none()
|
|
|
|
&& bind_pat.pat().is_none()
|
|
|
|
&& !bind_pat.is_ref()
|
|
|
|
{
|
|
|
|
self.is_pat_binding_and_path = true;
|
2020-03-10 01:10:25 +00:00
|
|
|
}
|
2019-02-24 20:49:47 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
if is_node::<ast::Param>(name.syntax()) {
|
|
|
|
self.is_param = true;
|
|
|
|
return;
|
|
|
|
}
|
2019-08-23 12:55:21 +00:00
|
|
|
if name.syntax().ancestors().find_map(ast::RecordFieldPatList::cast).is_some() {
|
2020-03-07 14:27:03 +00:00
|
|
|
self.record_lit_pat =
|
2020-03-07 15:50:30 +00:00
|
|
|
self.sema.find_node_at_offset_with_macros(&original_file, offset);
|
2019-07-21 11:11:45 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-24 20:49:47 +00:00
|
|
|
|
2020-03-07 15:48:39 +00:00
|
|
|
fn classify_name_ref(
|
|
|
|
&mut self,
|
|
|
|
original_file: &SyntaxNode,
|
|
|
|
name_ref: ast::NameRef,
|
|
|
|
offset: TextUnit,
|
|
|
|
) {
|
2019-12-21 14:17:10 +00:00
|
|
|
self.name_ref_syntax =
|
2020-03-07 14:27:03 +00:00
|
|
|
find_node_at_offset(&original_file, name_ref.syntax().text_range().start());
|
2019-07-20 09:58:27 +00:00
|
|
|
let name_range = name_ref.syntax().text_range();
|
2019-08-23 12:55:21 +00:00
|
|
|
if name_ref.syntax().parent().and_then(ast::RecordField::cast).is_some() {
|
2020-03-07 14:27:03 +00:00
|
|
|
self.record_lit_syntax =
|
2020-03-07 15:48:39 +00:00
|
|
|
self.sema.find_node_at_offset_with_macros(&original_file, offset);
|
2019-02-24 14:01:56 +00:00
|
|
|
}
|
|
|
|
|
2020-02-29 20:24:40 +00:00
|
|
|
self.impl_def = self
|
2020-03-07 14:27:03 +00:00
|
|
|
.sema
|
|
|
|
.ancestors_with_macros(self.token.parent())
|
2020-02-08 17:28:39 +00:00
|
|
|
.take_while(|it| it.kind() != SOURCE_FILE && it.kind() != MODULE)
|
2020-02-29 20:24:40 +00:00
|
|
|
.find_map(ast::ImplDef::cast);
|
2020-02-08 17:28:39 +00:00
|
|
|
|
2019-07-20 09:58:27 +00:00
|
|
|
let top_node = name_ref
|
|
|
|
.syntax()
|
|
|
|
.ancestors()
|
|
|
|
.take_while(|it| it.text_range() == name_range)
|
|
|
|
.last()
|
|
|
|
.unwrap();
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
|
|
match top_node.parent().map(|it| it.kind()) {
|
|
|
|
Some(SOURCE_FILE) | Some(ITEM_LIST) => {
|
|
|
|
self.is_new_item = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
|
2020-03-07 14:27:03 +00:00
|
|
|
self.use_item_syntax =
|
|
|
|
self.sema.ancestors_with_macros(self.token.parent()).find_map(ast::UseItem::cast);
|
2019-01-08 19:33:36 +00:00
|
|
|
|
|
|
|
self.function_syntax = self
|
2020-03-07 14:27:03 +00:00
|
|
|
.sema
|
|
|
|
.ancestors_with_macros(self.token.parent())
|
2019-01-08 19:33:36 +00:00
|
|
|
.take_while(|it| it.kind() != SOURCE_FILE && it.kind() != MODULE)
|
|
|
|
.find_map(ast::FnDef::cast);
|
|
|
|
|
|
|
|
let parent = match name_ref.syntax().parent() {
|
|
|
|
Some(it) => it,
|
|
|
|
None => return,
|
|
|
|
};
|
2019-04-15 14:11:32 +00:00
|
|
|
|
2019-07-19 09:56:47 +00:00
|
|
|
if let Some(segment) = ast::PathSegment::cast(parent.clone()) {
|
2019-01-08 19:33:36 +00:00
|
|
|
let path = segment.parent_path();
|
2019-02-17 18:30:46 +00:00
|
|
|
self.is_call = path
|
|
|
|
.syntax()
|
|
|
|
.parent()
|
|
|
|
.and_then(ast::PathExpr::cast)
|
|
|
|
.and_then(|it| it.syntax().parent().and_then(ast::CallExpr::cast))
|
|
|
|
.is_some();
|
|
|
|
|
2019-10-08 18:14:52 +00:00
|
|
|
self.is_path_type = path.syntax().parent().and_then(ast::PathType::cast).is_some();
|
|
|
|
self.has_type_args = segment.type_arg_list().is_some();
|
|
|
|
|
2019-12-13 11:12:36 +00:00
|
|
|
if let Some(path) = hir::Path::from_ast(path.clone()) {
|
|
|
|
if let Some(path_prefix) = path.qualifier() {
|
|
|
|
self.path_prefix = Some(path_prefix);
|
2019-01-08 19:33:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 14:11:32 +00:00
|
|
|
|
2019-01-08 19:33:36 +00:00
|
|
|
if path.qualifier().is_none() {
|
|
|
|
self.is_trivial_path = true;
|
|
|
|
|
|
|
|
// Find either enclosing expr statement (thing with `;`) or a
|
|
|
|
// block. If block, check that we are the last expr.
|
|
|
|
self.can_be_stmt = name_ref
|
|
|
|
.syntax()
|
|
|
|
.ancestors()
|
|
|
|
.find_map(|node| {
|
2019-07-19 09:56:47 +00:00
|
|
|
if let Some(stmt) = ast::ExprStmt::cast(node.clone()) {
|
2019-07-20 09:58:27 +00:00
|
|
|
return Some(
|
|
|
|
stmt.syntax().text_range() == name_ref.syntax().text_range(),
|
|
|
|
);
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
if let Some(block) = ast::Block::cast(node) {
|
|
|
|
return Some(
|
2019-07-20 09:58:27 +00:00
|
|
|
block.expr().map(|e| e.syntax().text_range())
|
|
|
|
== Some(name_ref.syntax().text_range()),
|
2019-01-08 19:33:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
None
|
|
|
|
})
|
|
|
|
.unwrap_or(false);
|
|
|
|
|
2019-07-20 09:58:27 +00:00
|
|
|
if let Some(off) = name_ref.syntax().text_range().start().checked_sub(2.into()) {
|
2019-01-08 19:33:36 +00:00
|
|
|
if let Some(if_expr) =
|
2020-03-07 14:27:03 +00:00
|
|
|
self.sema.find_node_at_offset_with_macros::<ast::IfExpr>(original_file, off)
|
2019-01-08 19:33:36 +00:00
|
|
|
{
|
2019-07-20 09:58:27 +00:00
|
|
|
if if_expr.syntax().text_range().end()
|
|
|
|
< name_ref.syntax().text_range().start()
|
|
|
|
{
|
2019-01-08 19:33:36 +00:00
|
|
|
self.after_if = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-19 09:56:47 +00:00
|
|
|
if let Some(field_expr) = ast::FieldExpr::cast(parent.clone()) {
|
2019-01-08 19:33:36 +00:00
|
|
|
// The receiver comes before the point of insertion of the fake
|
|
|
|
// ident, so it should have the same range in the non-modified file
|
|
|
|
self.dot_receiver = field_expr
|
|
|
|
.expr()
|
2019-07-20 09:58:27 +00:00
|
|
|
.map(|e| e.syntax().text_range())
|
2020-03-07 14:27:03 +00:00
|
|
|
.and_then(|r| find_node_with_range(original_file, r));
|
2019-12-20 20:14:30 +00:00
|
|
|
self.dot_receiver_is_ambiguous_float_literal =
|
|
|
|
if let Some(ast::Expr::Literal(l)) = &self.dot_receiver {
|
|
|
|
match l.kind() {
|
|
|
|
ast::LiteralKind::FloatNumber { .. } => l.token().text().ends_with('.'),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
2019-10-14 15:39:40 +00:00
|
|
|
}
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
if let Some(method_call_expr) = ast::MethodCallExpr::cast(parent) {
|
|
|
|
// As above
|
|
|
|
self.dot_receiver = method_call_expr
|
|
|
|
.expr()
|
2019-07-20 09:58:27 +00:00
|
|
|
.map(|e| e.syntax().text_range())
|
2020-03-07 14:27:03 +00:00
|
|
|
.and_then(|r| find_node_with_range(original_file, r));
|
2019-01-10 18:38:04 +00:00
|
|
|
self.is_call = true;
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-19 09:56:47 +00:00
|
|
|
fn find_node_with_range<N: AstNode>(syntax: &SyntaxNode, range: TextRange) -> Option<N> {
|
2019-03-30 10:25:53 +00:00
|
|
|
find_covering_element(syntax, range).ancestors().find_map(N::cast)
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_node<N: AstNode>(node: &SyntaxNode) -> bool {
|
2019-07-21 11:11:45 +00:00
|
|
|
match node.ancestors().find_map(N::cast) {
|
2019-01-08 19:33:36 +00:00
|
|
|
None => false,
|
2019-07-20 09:58:27 +00:00
|
|
|
Some(n) => n.syntax().text_range() == node.text_range(),
|
2019-01-08 19:33:36 +00:00
|
|
|
}
|
|
|
|
}
|