rust/crates/ra_hir/src/source_binder.rs

587 lines
21 KiB
Rust
Raw Normal View History

//! Lookup hir elements using positions in the source code. This is a lossy
//! transformation: in general, a single source might correspond to several
//! modules, functions, etc, due to macros, cfgs and `#[path=]` attributes on
//! modules.
//!
//! So, this modules should not be used during hir construction, it exists
//! purely for "IDE needs".
2019-04-10 03:15:55 -05:00
use std::sync::Arc;
use hir_def::{
expr::{ExprId, PatId},
path::known,
2019-11-21 06:39:09 -06:00
resolver::{self, resolver_for_scope, HasResolver, Resolver, TypeNs, ValueNs},
2019-11-27 03:31:40 -06:00
AssocItemId, DefWithBodyId,
2019-11-24 05:02:08 -06:00
};
use hir_expand::{
2019-11-26 11:33:08 -06:00
hygiene::Hygiene, name::AsName, AstId, HirFileId, MacroCallId, MacroFileKind, Source,
};
2019-08-03 19:56:29 -05:00
use ra_syntax::{
2019-09-16 05:48:54 -05:00
ast::{self, AstNode},
2019-10-30 15:08:27 -05:00
match_ast, AstPtr,
2019-08-03 19:56:29 -05:00
SyntaxKind::*,
SyntaxNode, SyntaxNodePtr, SyntaxToken, TextRange, TextUnit,
2019-08-03 19:56:29 -05:00
};
use crate::{
2019-09-08 01:53:49 -05:00
db::HirDatabase,
2019-11-21 04:28:04 -06:00
expr::{BodySourceMap, ExprScopes, ScopeId},
ty::{
method_resolution::{self, implements_trait},
InEnvironment, TraitEnvironment, Ty,
},
2019-11-21 03:21:46 -06:00
Adt, AssocItem, Const, DefWithBody, Either, Enum, EnumVariant, FromSource, Function,
GenericParam, Local, MacroDef, Name, Path, ScopeDef, Static, Struct, Trait, Type, TypeAlias,
};
fn try_get_resolver_for_node(db: &impl HirDatabase, node: Source<&SyntaxNode>) -> Option<Resolver> {
2019-10-30 15:08:27 -05:00
match_ast! {
2019-11-20 00:40:36 -06:00
match (node.value) {
2019-10-30 15:08:27 -05:00
ast::Module(it) => {
2019-11-20 04:09:21 -06:00
let src = node.with_value(it);
2019-11-21 05:13:49 -06:00
Some(crate::Module::from_declaration(db, src)?.id.resolver(db))
2019-10-30 15:08:27 -05:00
},
ast::SourceFile(it) => {
2019-11-20 04:09:21 -06:00
let src = node.with_value(crate::ModuleSource::SourceFile(it));
2019-11-21 05:13:49 -06:00
Some(crate::Module::from_definition(db, src)?.id.resolver(db))
2019-10-30 15:08:27 -05:00
},
ast::StructDef(it) => {
2019-11-20 04:09:21 -06:00
let src = node.with_value(it);
2019-11-21 05:13:49 -06:00
Some(Struct::from_source(db, src)?.id.resolver(db))
2019-10-30 15:08:27 -05:00
},
ast::EnumDef(it) => {
2019-11-20 04:09:21 -06:00
let src = node.with_value(it);
2019-11-21 05:13:49 -06:00
Some(Enum::from_source(db, src)?.id.resolver(db))
2019-10-30 15:08:27 -05:00
},
2019-11-20 00:40:36 -06:00
_ => match node.value.kind() {
FN_DEF | CONST_DEF | STATIC_DEF => {
2019-11-21 06:24:51 -06:00
let def = def_with_body_from_child_node(db, node)?;
let def = DefWithBodyId::from(def);
Some(def.resolver(db))
2019-10-30 15:08:27 -05:00
}
// FIXME add missing cases
_ => None
}
2019-10-30 15:08:27 -05:00
}
}
}
2019-04-10 03:15:55 -05:00
2019-04-13 01:46:39 -05:00
fn def_with_body_from_child_node(
2019-04-12 17:05:18 -05:00
db: &impl HirDatabase,
child: Source<&SyntaxNode>,
2019-04-12 17:05:18 -05:00
) -> Option<DefWithBody> {
2019-11-20 00:40:36 -06:00
child.value.ancestors().find_map(|node| {
2019-10-30 15:08:27 -05:00
match_ast! {
match node {
ast::FnDef(def) => { return Function::from_source(db, child.with_value(def)).map(DefWithBody::from); },
ast::ConstDef(def) => { return Const::from_source(db, child.with_value(def)).map(DefWithBody::from); },
2019-11-24 06:13:56 -06:00
ast::StaticDef(def) => { return Static::from_source(db, child.with_value(def)).map(DefWithBody::from); },
2019-10-30 15:08:27 -05:00
_ => { None },
}
2019-04-12 17:05:18 -05:00
}
})
}
2019-04-11 07:58:00 -05:00
/// `SourceAnalyzer` is a convenience wrapper which exposes HIR API in terms of
/// original source files. It should not be used inside the HIR itself.
2019-04-10 03:15:55 -05:00
#[derive(Debug)]
2019-04-11 07:51:02 -05:00
pub struct SourceAnalyzer {
2019-11-15 15:40:54 -06:00
file_id: HirFileId,
2019-04-10 03:15:55 -05:00
resolver: Resolver,
2019-11-09 15:32:00 -06:00
body_owner: Option<DefWithBody>,
body_source_map: Option<Arc<BodySourceMap>>,
2019-04-10 03:15:55 -05:00
infer: Option<Arc<crate::ty::InferenceResult>>,
scopes: Option<Arc<crate::expr::ExprScopes>>,
2019-04-10 03:15:55 -05:00
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PathResolution {
/// An item
Def(crate::ModuleDef),
/// A local binding (only value namespace)
2019-11-09 15:32:00 -06:00
Local(Local),
2019-04-10 03:15:55 -05:00
/// A generic parameter
GenericParam(GenericParam),
2019-04-10 03:15:55 -05:00
SelfType(crate::ImplBlock),
2019-06-08 06:48:56 -05:00
Macro(MacroDef),
AssocItem(crate::AssocItem),
2019-04-10 03:15:55 -05:00
}
2019-04-13 03:24:09 -05:00
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ScopeEntryWithSyntax {
pub(crate) name: Name,
pub(crate) ptr: Either<AstPtr<ast::Pat>, AstPtr<ast::SelfParam>>,
}
impl ScopeEntryWithSyntax {
pub fn name(&self) -> &Name {
&self.name
}
pub fn ptr(&self) -> Either<AstPtr<ast::Pat>, AstPtr<ast::SelfParam>> {
self.ptr
}
}
2019-04-13 03:32:58 -05:00
#[derive(Debug)]
pub struct ReferenceDescriptor {
pub range: TextRange,
pub name: String,
}
2019-11-16 07:49:26 -06:00
pub struct Expansion {
2019-11-21 12:34:49 -06:00
macro_file_kind: MacroFileKind,
2019-11-16 07:49:26 -06:00
macro_call_id: MacroCallId,
}
impl Expansion {
pub fn map_token_down(
&self,
db: &impl HirDatabase,
token: Source<&SyntaxToken>,
) -> Option<Source<SyntaxToken>> {
2019-11-16 07:49:26 -06:00
let exp_info = self.file_id().expansion_info(db)?;
exp_info.map_token_down(token)
2019-11-16 07:49:26 -06:00
}
pub fn file_id(&self) -> HirFileId {
2019-11-21 12:34:49 -06:00
self.macro_call_id.as_file(self.macro_file_kind)
2019-11-16 07:49:26 -06:00
}
}
2019-04-11 07:51:02 -05:00
impl SourceAnalyzer {
pub fn new(
db: &impl HirDatabase,
node: Source<&SyntaxNode>,
offset: Option<TextUnit>,
) -> SourceAnalyzer {
let def_with_body = def_with_body_from_child_node(db, node);
if let Some(def) = def_with_body {
2019-11-24 11:53:42 -06:00
let (_body, source_map) = db.body_with_source_map(def.into());
let scopes = db.expr_scopes(def.into());
let scope = match offset {
None => scope_for(&scopes, &source_map, node),
2019-11-20 04:09:21 -06:00
Some(offset) => scope_for_offset(&scopes, &source_map, node.with_value(offset)),
};
2019-11-21 04:32:03 -06:00
let resolver = resolver_for_scope(db, def.into(), scope);
SourceAnalyzer {
resolver,
2019-11-09 15:32:00 -06:00
body_owner: Some(def),
body_source_map: Some(source_map),
2019-11-24 11:53:42 -06:00
infer: Some(db.infer(def)),
scopes: Some(scopes),
file_id: node.file_id,
}
} else {
SourceAnalyzer {
resolver: node
2019-11-20 00:40:36 -06:00
.value
.ancestors()
2019-11-20 04:09:21 -06:00
.find_map(|it| try_get_resolver_for_node(db, node.with_value(&it)))
.unwrap_or_default(),
2019-11-09 15:32:00 -06:00
body_owner: None,
body_source_map: None,
infer: None,
scopes: None,
file_id: node.file_id,
}
2019-04-10 03:15:55 -05:00
}
}
fn expr_id(&self, expr: &ast::Expr) -> Option<ExprId> {
2019-11-20 00:40:36 -06:00
let src = Source { file_id: self.file_id, value: expr };
self.body_source_map.as_ref()?.node_expr(src)
}
fn pat_id(&self, pat: &ast::Pat) -> Option<PatId> {
2019-11-20 00:40:36 -06:00
let src = Source { file_id: self.file_id, value: pat };
self.body_source_map.as_ref()?.node_pat(src)
}
pub fn type_of(&self, db: &impl HirDatabase, expr: &ast::Expr) -> Option<Type> {
let expr_id = self.expr_id(expr)?;
let ty = self.infer.as_ref()?[expr_id].clone();
let environment = TraitEnvironment::lower(db, &self.resolver);
Some(Type { krate: self.resolver.krate()?, ty: InEnvironment { value: ty, environment } })
2019-04-10 03:15:55 -05:00
}
pub fn type_of_pat(&self, db: &impl HirDatabase, pat: &ast::Pat) -> Option<Type> {
let pat_id = self.pat_id(pat)?;
let ty = self.infer.as_ref()?[pat_id].clone();
let environment = TraitEnvironment::lower(db, &self.resolver);
Some(Type { krate: self.resolver.krate()?, ty: InEnvironment { value: ty, environment } })
}
2019-04-10 03:15:55 -05:00
pub fn resolve_method_call(&self, call: &ast::MethodCallExpr) -> Option<Function> {
let expr_id = self.expr_id(&call.clone().into())?;
2019-11-27 06:56:20 -06:00
self.infer.as_ref()?.method_resolution(expr_id).map(Function::from)
2019-04-10 03:15:55 -05:00
}
pub fn resolve_field(&self, field: &ast::FieldExpr) -> Option<crate::StructField> {
let expr_id = self.expr_id(&field.clone().into())?;
2019-11-27 06:56:20 -06:00
self.infer.as_ref()?.field_resolution(expr_id).map(|it| it.into())
2019-04-10 03:15:55 -05:00
}
2019-11-24 11:06:55 -06:00
pub fn resolve_record_field(&self, field: &ast::RecordField) -> Option<crate::StructField> {
let expr_id = self.expr_id(&field.expr()?)?;
2019-11-27 06:56:20 -06:00
self.infer.as_ref()?.record_field_resolution(expr_id).map(|it| it.into())
2019-11-24 11:06:55 -06:00
}
2019-08-23 07:55:21 -05:00
pub fn resolve_record_literal(&self, record_lit: &ast::RecordLit) -> Option<crate::VariantDef> {
let expr_id = self.expr_id(&record_lit.clone().into())?;
2019-07-21 06:11:45 -05:00
self.infer.as_ref()?.variant_resolution_for_expr(expr_id)
}
2019-08-23 07:55:21 -05:00
pub fn resolve_record_pattern(&self, record_pat: &ast::RecordPat) -> Option<crate::VariantDef> {
let pat_id = self.pat_id(&record_pat.clone().into())?;
2019-07-21 06:11:45 -05:00
self.infer.as_ref()?.variant_resolution_for_pat(pat_id)
2019-07-12 11:56:18 -05:00
}
2019-06-01 06:34:19 -05:00
pub fn resolve_macro_call(
&self,
db: &impl HirDatabase,
macro_call: Source<&ast::MacroCall>,
2019-06-08 06:48:56 -05:00
) -> Option<MacroDef> {
let hygiene = Hygiene::new(db, macro_call.file_id);
let path = macro_call.value.path().and_then(|ast| Path::from_src(ast, &hygiene))?;
2019-11-21 06:24:51 -06:00
self.resolver.resolve_path_as_macro(db, &path).map(|it| it.into())
2019-04-24 15:16:50 -05:00
}
2019-04-13 03:00:15 -05:00
pub fn resolve_hir_path(
&self,
db: &impl HirDatabase,
path: &crate::Path,
) -> Option<PathResolution> {
let types = self.resolver.resolve_path_in_type_ns_fully(db, &path).map(|ty| match ty {
2019-11-21 03:21:46 -06:00
TypeNs::SelfType(it) => PathResolution::SelfType(it.into()),
TypeNs::GenericParam(idx) => PathResolution::GenericParam(GenericParam {
2019-11-25 06:41:53 -06:00
parent: self.resolver.generic_def().unwrap(),
idx,
}),
2019-11-21 03:21:46 -06:00
TypeNs::AdtSelfType(it) | TypeNs::AdtId(it) => {
PathResolution::Def(Adt::from(it).into())
}
TypeNs::EnumVariantId(it) => PathResolution::Def(EnumVariant::from(it).into()),
TypeNs::TypeAliasId(it) => PathResolution::Def(TypeAlias::from(it).into()),
TypeNs::BuiltinType(it) => PathResolution::Def(it.into()),
2019-11-21 03:21:46 -06:00
TypeNs::TraitId(it) => PathResolution::Def(Trait::from(it).into()),
});
let values = self.resolver.resolve_path_in_value_ns_fully(db, &path).and_then(|val| {
let res = match val {
2019-11-09 15:32:00 -06:00
ValueNs::LocalBinding(pat_id) => {
let var = Local { parent: self.body_owner?, pat_id };
PathResolution::Local(var)
}
2019-11-21 04:32:03 -06:00
ValueNs::FunctionId(it) => PathResolution::Def(Function::from(it).into()),
ValueNs::ConstId(it) => PathResolution::Def(Const::from(it).into()),
ValueNs::StaticId(it) => PathResolution::Def(Static::from(it).into()),
ValueNs::StructId(it) => PathResolution::Def(Struct::from(it).into()),
ValueNs::EnumVariantId(it) => PathResolution::Def(EnumVariant::from(it).into()),
};
Some(res)
});
2019-10-31 10:45:10 -05:00
let items = self
.resolver
.resolve_module_path(db, &path)
.take_types()
.map(|it| PathResolution::Def(it.into()));
2019-10-31 12:29:56 -05:00
types.or(values).or(items).or_else(|| {
2019-11-21 06:24:51 -06:00
self.resolver
.resolve_path_as_macro(db, &path)
.map(|def| PathResolution::Macro(def.into()))
2019-10-31 12:29:56 -05:00
})
2019-04-13 03:00:15 -05:00
}
2019-04-10 03:15:55 -05:00
pub fn resolve_path(&self, db: &impl HirDatabase, path: &ast::Path) -> Option<PathResolution> {
if let Some(path_expr) = path.syntax().parent().and_then(ast::PathExpr::cast) {
let expr_id = self.expr_id(&path_expr.into())?;
2019-04-10 03:15:55 -05:00
if let Some(assoc) = self.infer.as_ref()?.assoc_resolutions_for_expr(expr_id) {
return Some(PathResolution::AssocItem(assoc));
}
}
if let Some(path_pat) = path.syntax().parent().and_then(ast::PathPat::cast) {
let pat_id = self.pat_id(&path_pat.into())?;
2019-04-10 03:15:55 -05:00
if let Some(assoc) = self.infer.as_ref()?.assoc_resolutions_for_pat(pat_id) {
return Some(PathResolution::AssocItem(assoc));
}
}
// This must be a normal source file rather than macro file.
2019-07-19 02:43:01 -05:00
let hir_path = crate::Path::from_ast(path.clone())?;
self.resolve_hir_path(db, &hir_path)
2019-04-10 03:15:55 -05:00
}
2019-04-12 16:56:57 -05:00
2019-11-15 05:15:04 -06:00
fn resolve_local_name(&self, name_ref: &ast::NameRef) -> Option<ScopeEntryWithSyntax> {
let name = name_ref.as_name();
let source_map = self.body_source_map.as_ref()?;
let scopes = self.scopes.as_ref()?;
2019-11-15 15:40:54 -06:00
let scope = scope_for(scopes, source_map, Source::new(self.file_id, name_ref.syntax()))?;
2019-11-15 05:47:26 -06:00
let entry = scopes.resolve_name_in_scope(scope, &name)?;
Some(ScopeEntryWithSyntax {
name: entry.name().clone(),
2019-11-20 00:40:36 -06:00
ptr: source_map.pat_syntax(entry.pat())?.value,
})
2019-04-13 01:31:03 -05:00
}
pub fn process_all_names(&self, db: &impl HirDatabase, f: &mut dyn FnMut(Name, ScopeDef)) {
self.resolver.process_all_names(db, &mut |name, def| {
let def = match def {
2019-11-21 06:39:09 -06:00
resolver::ScopeDef::PerNs(it) => it.into(),
resolver::ScopeDef::ImplSelfType(it) => ScopeDef::ImplSelfType(it.into()),
resolver::ScopeDef::AdtSelfType(it) => ScopeDef::AdtSelfType(it.into()),
resolver::ScopeDef::GenericParam(idx) => {
2019-11-25 06:41:53 -06:00
let parent = self.resolver.generic_def().unwrap();
ScopeDef::GenericParam(GenericParam { parent, idx })
}
2019-11-21 06:39:09 -06:00
resolver::ScopeDef::Local(pat_id) => {
let parent = self.resolver.body_owner().unwrap().into();
ScopeDef::Local(Local { parent, pat_id })
}
};
f(name, def)
})
2019-04-13 03:21:32 -05:00
}
2019-11-15 05:15:04 -06:00
// FIXME: we only use this in `inline_local_variable` assist, ideally, we
// should switch to general reference search infra there.
pub fn find_all_refs(&self, pat: &ast::BindPat) -> Vec<ReferenceDescriptor> {
let fn_def = pat.syntax().ancestors().find_map(ast::FnDef::cast).unwrap();
2019-07-19 02:43:01 -05:00
let ptr = Either::A(AstPtr::new(&ast::Pat::from(pat.clone())));
fn_def
.syntax()
.descendants()
.filter_map(ast::NameRef::cast)
2019-07-19 02:43:01 -05:00
.filter(|name_ref| match self.resolve_local_name(&name_ref) {
None => false,
Some(entry) => entry.ptr() == ptr,
})
.map(|name_ref| ReferenceDescriptor {
2019-04-13 03:32:58 -05:00
name: name_ref.text().to_string(),
2019-07-20 04:58:27 -05:00
range: name_ref.syntax().text_range(),
})
.collect()
2019-04-13 01:31:03 -05:00
}
pub fn iterate_method_candidates<T>(
&self,
db: &impl HirDatabase,
ty: &Type,
name: Option<&Name>,
mut callback: impl FnMut(&Ty, Function) -> Option<T>,
) -> Option<T> {
// There should be no inference vars in types passed here
// FIXME check that?
// FIXME replace Unknown by bound vars here
let canonical = crate::ty::Canonical { value: ty.ty.value.clone(), num_vars: 0 };
method_resolution::iterate_method_candidates(
&canonical,
db,
&self.resolver,
name,
method_resolution::LookupMode::MethodCall,
|ty, it| match it {
2019-11-27 03:31:40 -06:00
AssocItemId::FunctionId(f) => callback(ty, f.into()),
_ => None,
},
)
}
pub fn iterate_path_candidates<T>(
&self,
db: &impl HirDatabase,
2019-11-26 13:56:07 -06:00
ty: &Type,
name: Option<&Name>,
2019-11-27 03:31:40 -06:00
mut callback: impl FnMut(&Ty, AssocItem) -> Option<T>,
) -> Option<T> {
// There should be no inference vars in types passed here
// FIXME check that?
2019-10-31 15:21:48 -05:00
// FIXME replace Unknown by bound vars here
2019-11-26 13:56:07 -06:00
let canonical = crate::ty::Canonical { value: ty.ty.value.clone(), num_vars: 0 };
2019-10-31 15:21:48 -05:00
method_resolution::iterate_method_candidates(
&canonical,
db,
&self.resolver,
name,
method_resolution::LookupMode::Path,
2019-11-27 03:31:40 -06:00
|ty, it| callback(ty, it.into()),
)
}
// pub fn autoderef<'a>(
// &'a self,
// db: &'a impl HirDatabase,
// ty: Ty,
// ) -> impl Iterator<Item = Ty> + 'a {
// // There should be no inference vars in types passed here
// // FIXME check that?
// let canonical = crate::ty::Canonical { value: ty, num_vars: 0 };
// let krate = self.resolver.krate();
// let environment = TraitEnvironment::lower(db, &self.resolver);
// let ty = crate::ty::InEnvironment { value: canonical, environment };
// crate::ty::autoderef(db, krate, ty).map(|canonical| canonical.value)
// }
/// Checks that particular type `ty` implements `std::future::Future`.
/// This function is used in `.await` syntax completion.
pub fn impls_future(&self, db: &impl HirDatabase, ty: Ty) -> bool {
2019-09-15 07:14:33 -05:00
let std_future_path = known::std_future_future();
let std_future_trait = match self.resolver.resolve_known_trait(db, &std_future_path) {
2019-11-21 03:21:46 -06:00
Some(it) => it.into(),
_ => return false,
};
2019-08-03 20:03:17 -05:00
let krate = match self.resolver.krate() {
Some(krate) => krate,
_ => return false,
};
2019-08-03 20:03:17 -05:00
let canonical_ty = crate::ty::Canonical { value: ty, num_vars: 0 };
2019-11-21 06:24:51 -06:00
implements_trait(&canonical_ty, db, &self.resolver, krate.into(), std_future_trait)
}
2019-11-19 22:21:31 -06:00
pub fn expand(
&self,
db: &impl HirDatabase,
macro_call: Source<&ast::MacroCall>,
) -> Option<Expansion> {
let def = self.resolve_macro_call(db, macro_call)?.id;
2019-11-19 22:21:31 -06:00
let ast_id = AstId::new(
macro_call.file_id,
db.ast_id_map(macro_call.file_id).ast_id(macro_call.value),
);
2019-11-21 12:34:49 -06:00
Some(Expansion {
2019-11-26 11:33:08 -06:00
macro_call_id: def.as_call_id(db, ast_id),
2019-11-21 12:34:49 -06:00
macro_file_kind: to_macro_file_kind(macro_call.value),
})
2019-11-16 07:49:26 -06:00
}
2019-04-12 16:56:57 -05:00
#[cfg(test)]
pub(crate) fn body_source_map(&self) -> Arc<BodySourceMap> {
2019-04-12 16:56:57 -05:00
self.body_source_map.clone().unwrap()
}
#[cfg(test)]
pub(crate) fn inference_result(&self) -> Arc<crate::ty::InferenceResult> {
self.infer.clone().unwrap()
}
#[cfg(test)]
pub(crate) fn analyzed_declaration(&self) -> Option<DefWithBody> {
self.body_owner
}
}
fn scope_for(
scopes: &ExprScopes,
source_map: &BodySourceMap,
2019-11-15 15:05:10 -06:00
node: Source<&SyntaxNode>,
) -> Option<ScopeId> {
2019-11-20 00:40:36 -06:00
node.value
2019-11-15 15:05:10 -06:00
.ancestors()
2019-09-02 13:23:19 -05:00
.filter_map(ast::Expr::cast)
2019-11-15 15:05:10 -06:00
.filter_map(|it| source_map.node_expr(Source::new(node.file_id, &it)))
.find_map(|it| scopes.scope_for(it))
}
fn scope_for_offset(
scopes: &ExprScopes,
source_map: &BodySourceMap,
2019-11-15 15:05:10 -06:00
offset: Source<TextUnit>,
) -> Option<ScopeId> {
scopes
2019-04-13 03:29:47 -05:00
.scope_by_expr()
.iter()
2019-09-02 13:23:19 -05:00
.filter_map(|(id, scope)| {
let source = source_map.expr_syntax(*id)?;
// FIXME: correctly handle macro expansion
2019-11-15 15:05:10 -06:00
if source.file_id != offset.file_id {
return None;
}
let syntax_node_ptr =
2019-11-20 00:40:36 -06:00
source.value.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
Some((syntax_node_ptr, scope))
2019-09-02 13:23:19 -05:00
})
// find containing scope
.min_by_key(|(ptr, _scope)| {
2019-11-15 15:05:10 -06:00
(
2019-11-20 00:40:36 -06:00
!(ptr.range().start() <= offset.value && offset.value <= ptr.range().end()),
2019-11-15 15:05:10 -06:00
ptr.range().len(),
)
})
.map(|(ptr, scope)| {
2019-11-20 00:40:36 -06:00
adjust(scopes, source_map, ptr, offset.file_id, offset.value).unwrap_or(*scope)
})
}
// XXX: during completion, cursor might be outside of any particular
// expression. Try to figure out the correct scope...
fn adjust(
scopes: &ExprScopes,
source_map: &BodySourceMap,
ptr: SyntaxNodePtr,
file_id: HirFileId,
offset: TextUnit,
) -> Option<ScopeId> {
let r = ptr.range();
let child_scopes = scopes
2019-04-13 03:29:47 -05:00
.scope_by_expr()
.iter()
2019-09-02 13:23:19 -05:00
.filter_map(|(id, scope)| {
let source = source_map.expr_syntax(*id)?;
// FIXME: correctly handle macro expansion
if source.file_id != file_id {
return None;
}
let syntax_node_ptr =
2019-11-20 00:40:36 -06:00
source.value.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
Some((syntax_node_ptr, scope))
2019-09-02 13:23:19 -05:00
})
.map(|(ptr, scope)| (ptr.range(), scope))
.filter(|(range, _)| range.start() <= offset && range.is_subrange(&r) && *range != r);
child_scopes
.max_by(|(r1, _), (r2, _)| {
if r2.is_subrange(&r1) {
std::cmp::Ordering::Greater
} else if r1.is_subrange(&r2) {
std::cmp::Ordering::Less
} else {
r1.start().cmp(&r2.start())
}
})
.map(|(_ptr, scope)| *scope)
2019-04-10 03:15:55 -05:00
}
2019-11-21 12:34:49 -06:00
/// Given a `ast::MacroCall`, return what `MacroKindFile` it belongs to.
2019-11-24 05:02:08 -06:00
/// FIXME: Not completed
2019-11-21 12:34:49 -06:00
fn to_macro_file_kind(macro_call: &ast::MacroCall) -> MacroFileKind {
let syn = macro_call.syntax();
let parent = match syn.parent() {
Some(it) => it,
None => {
// FIXME:
// If it is root, which means the parent HirFile
// MacroKindFile must be non-items
// return expr now.
return MacroFileKind::Expr;
}
};
match parent.kind() {
MACRO_ITEMS | SOURCE_FILE => MacroFileKind::Items,
LET_STMT => {
// FIXME: Handle Pattern
MacroFileKind::Expr
}
EXPR_STMT => MacroFileKind::Statements,
BLOCK => MacroFileKind::Statements,
ARG_LIST => MacroFileKind::Expr,
TRY_EXPR => MacroFileKind::Expr,
_ => {
// Unknown , Just guess it is `Items`
MacroFileKind::Items
}
}
}