2019-09-30 03:58:53 -05:00
|
|
|
//! 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;
|
|
|
|
|
2019-11-14 01:30:30 -06:00
|
|
|
use hir_def::{
|
|
|
|
expr::{ExprId, PatId},
|
|
|
|
path::known,
|
|
|
|
};
|
|
|
|
use hir_expand::{name::AsName, Source};
|
2019-09-16 05:48:54 -05:00
|
|
|
use ra_db::FileId;
|
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, TextRange, TextUnit,
|
|
|
|
};
|
|
|
|
|
2018-12-05 04:16:20 -06:00
|
|
|
use crate::{
|
2019-09-08 01:53:49 -05:00
|
|
|
db::HirDatabase,
|
2019-11-14 02:56:13 -06:00
|
|
|
expr::{self, BodySourceMap, ExprScopes, ScopeId},
|
2019-06-08 06:48:56 -05:00
|
|
|
ids::LocationCtx,
|
2019-09-12 15:35:53 -05:00
|
|
|
resolve::{ScopeDef, TypeNs, ValueNs},
|
2019-10-31 15:21:48 -05:00
|
|
|
ty::method_resolution::{self, implements_trait},
|
2019-11-11 08:36:27 -06:00
|
|
|
AssocItem, Const, DefWithBody, Either, Enum, FromSource, Function, GenericParam, HasBody,
|
|
|
|
HirFileId, Local, MacroDef, Module, Name, Path, Resolver, Static, Struct, Ty,
|
2019-08-03 05:07:20 -05:00
|
|
|
};
|
2018-12-05 04:16:20 -06:00
|
|
|
|
2019-03-07 02:32:39 -06:00
|
|
|
fn try_get_resolver_for_node(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
file_id: FileId,
|
|
|
|
node: &SyntaxNode,
|
|
|
|
) -> Option<Resolver> {
|
2019-10-30 15:08:27 -05:00
|
|
|
match_ast! {
|
|
|
|
match node {
|
|
|
|
ast::Module(it) => {
|
|
|
|
let src = crate::Source { file_id: file_id.into(), ast: it };
|
|
|
|
Some(crate::Module::from_declaration(db, src)?.resolver(db))
|
|
|
|
},
|
|
|
|
ast::SourceFile(it) => {
|
|
|
|
let src =
|
|
|
|
crate::Source { file_id: file_id.into(), ast: crate::ModuleSource::SourceFile(it) };
|
|
|
|
Some(crate::Module::from_definition(db, src)?.resolver(db))
|
|
|
|
},
|
|
|
|
ast::StructDef(it) => {
|
|
|
|
let src = crate::Source { file_id: file_id.into(), ast: it };
|
|
|
|
Some(Struct::from_source(db, src)?.resolver(db))
|
|
|
|
},
|
|
|
|
ast::EnumDef(it) => {
|
|
|
|
let src = crate::Source { file_id: file_id.into(), ast: it };
|
|
|
|
Some(Enum::from_source(db, src)?.resolver(db))
|
|
|
|
},
|
|
|
|
_ => {
|
|
|
|
if node.kind() == FN_DEF || node.kind() == CONST_DEF || node.kind() == STATIC_DEF {
|
2019-11-15 14:24:56 -06:00
|
|
|
Some(def_with_body_from_child_node(db, Source::new(file_id.into(), node))?.resolver(db))
|
2019-10-30 15:08:27 -05:00
|
|
|
} else {
|
|
|
|
// FIXME add missing cases
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2019-03-07 02:32:39 -06: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,
|
2019-11-15 14:24:56 -06:00
|
|
|
child: Source<&SyntaxNode>,
|
2019-04-12 17:05:18 -05:00
|
|
|
) -> Option<DefWithBody> {
|
2019-11-15 14:24:56 -06:00
|
|
|
let module_source = crate::ModuleSource::from_child_node(db, child);
|
|
|
|
let module = Module::from_definition(db, Source::new(child.file_id, module_source))?;
|
|
|
|
let ctx = LocationCtx::new(db, module.id, child.file_id);
|
2019-09-16 05:48:54 -05:00
|
|
|
|
2019-11-15 14:24:56 -06:00
|
|
|
child.ast.ancestors().find_map(|node| {
|
2019-10-30 15:08:27 -05:00
|
|
|
match_ast! {
|
|
|
|
match node {
|
|
|
|
ast::FnDef(def) => { Some(Function {id: ctx.to_def(&def) }.into()) },
|
|
|
|
ast::ConstDef(def) => { Some(Const { id: ctx.to_def(&def) }.into()) },
|
|
|
|
ast::StaticDef(def) => { Some(Static { id: ctx.to_def(&def) }.into()) },
|
|
|
|
_ => { 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-14 01:30:30 -06:00
|
|
|
// FIXME: this doesn't handle macros at all
|
|
|
|
file_id: FileId,
|
2019-04-10 03:15:55 -05:00
|
|
|
resolver: Resolver,
|
2019-11-09 15:32:00 -06:00
|
|
|
body_owner: Option<DefWithBody>,
|
2019-04-13 02:49:01 -05:00
|
|
|
body_source_map: Option<Arc<BodySourceMap>>,
|
2019-04-10 03:15:55 -05:00
|
|
|
infer: Option<Arc<crate::ty::InferenceResult>>,
|
2019-04-13 02:49:01 -05:00
|
|
|
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
|
2019-11-11 08:36:27 -06:00
|
|
|
GenericParam(GenericParam),
|
2019-04-10 03:15:55 -05:00
|
|
|
SelfType(crate::ImplBlock),
|
2019-06-08 06:48:56 -05:00
|
|
|
Macro(MacroDef),
|
2019-09-14 09:26:03 -05:00
|
|
|
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-04-11 07:51:02 -05:00
|
|
|
impl SourceAnalyzer {
|
2019-04-12 16:44:47 -05:00
|
|
|
pub fn new(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
file_id: FileId,
|
|
|
|
node: &SyntaxNode,
|
|
|
|
offset: Option<TextUnit>,
|
|
|
|
) -> SourceAnalyzer {
|
2019-11-15 14:24:56 -06:00
|
|
|
let def_with_body = def_with_body_from_child_node(db, Source::new(file_id.into(), node));
|
2019-04-13 02:49:01 -05:00
|
|
|
if let Some(def) = def_with_body {
|
|
|
|
let source_map = def.body_source_map(db);
|
2019-11-14 08:37:22 -06:00
|
|
|
let scopes = def.expr_scopes(db);
|
2019-04-13 02:49:01 -05:00
|
|
|
let scope = match offset {
|
2019-11-14 01:30:30 -06:00
|
|
|
None => scope_for(&scopes, &source_map, file_id.into(), &node),
|
2019-09-03 03:04:38 -05:00
|
|
|
Some(offset) => scope_for_offset(&scopes, &source_map, file_id.into(), offset),
|
2019-04-13 02:49:01 -05:00
|
|
|
};
|
2019-11-12 07:46:27 -06:00
|
|
|
let resolver = expr::resolver_for_scope(db, def, scope);
|
2019-04-13 02:49:01 -05:00
|
|
|
SourceAnalyzer {
|
|
|
|
resolver,
|
2019-11-09 15:32:00 -06:00
|
|
|
body_owner: Some(def),
|
2019-04-13 02:49:01 -05:00
|
|
|
body_source_map: Some(source_map),
|
|
|
|
infer: Some(def.infer(db)),
|
|
|
|
scopes: Some(scopes),
|
2019-11-14 01:30:30 -06:00
|
|
|
file_id,
|
2019-04-13 02:49:01 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SourceAnalyzer {
|
|
|
|
resolver: node
|
|
|
|
.ancestors()
|
2019-07-19 02:43:01 -05:00
|
|
|
.find_map(|node| try_get_resolver_for_node(db, file_id, &node))
|
2019-04-13 02:49:01 -05:00
|
|
|
.unwrap_or_default(),
|
2019-11-09 15:32:00 -06:00
|
|
|
body_owner: None,
|
2019-04-13 02:49:01 -05:00
|
|
|
body_source_map: None,
|
|
|
|
infer: None,
|
|
|
|
scopes: None,
|
2019-11-14 01:30:30 -06:00
|
|
|
file_id,
|
2019-04-13 02:49:01 -05:00
|
|
|
}
|
2019-04-10 03:15:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 01:30:30 -06:00
|
|
|
fn expr_id(&self, expr: &ast::Expr) -> Option<ExprId> {
|
|
|
|
let src = Source { file_id: self.file_id.into(), ast: expr };
|
|
|
|
self.body_source_map.as_ref()?.node_expr(src)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn pat_id(&self, pat: &ast::Pat) -> Option<PatId> {
|
|
|
|
let src = Source { file_id: self.file_id.into(), ast: pat };
|
|
|
|
self.body_source_map.as_ref()?.node_pat(src)
|
|
|
|
}
|
|
|
|
|
2019-04-10 03:15:55 -05:00
|
|
|
pub fn type_of(&self, _db: &impl HirDatabase, expr: &ast::Expr) -> Option<crate::Ty> {
|
2019-11-14 01:30:30 -06:00
|
|
|
let expr_id = self.expr_id(expr)?;
|
2019-04-10 03:15:55 -05:00
|
|
|
Some(self.infer.as_ref()?[expr_id].clone())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn type_of_pat(&self, _db: &impl HirDatabase, pat: &ast::Pat) -> Option<crate::Ty> {
|
2019-11-14 01:30:30 -06:00
|
|
|
let pat_id = self.pat_id(pat)?;
|
2019-04-10 03:15:55 -05:00
|
|
|
Some(self.infer.as_ref()?[pat_id].clone())
|
2019-07-23 11:24:54 -05:00
|
|
|
}
|
|
|
|
|
2019-04-10 03:15:55 -05:00
|
|
|
pub fn resolve_method_call(&self, call: &ast::MethodCallExpr) -> Option<Function> {
|
2019-11-14 01:30:30 -06:00
|
|
|
let expr_id = self.expr_id(&call.clone().into())?;
|
2019-04-10 03:15:55 -05:00
|
|
|
self.infer.as_ref()?.method_resolution(expr_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn resolve_field(&self, field: &ast::FieldExpr) -> Option<crate::StructField> {
|
2019-11-14 01:30:30 -06:00
|
|
|
let expr_id = self.expr_id(&field.clone().into())?;
|
2019-04-10 03:15:55 -05:00
|
|
|
self.infer.as_ref()?.field_resolution(expr_id)
|
|
|
|
}
|
|
|
|
|
2019-08-23 07:55:21 -05:00
|
|
|
pub fn resolve_record_literal(&self, record_lit: &ast::RecordLit) -> Option<crate::VariantDef> {
|
2019-11-14 01:30:30 -06:00
|
|
|
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> {
|
2019-11-14 01:30:30 -06:00
|
|
|
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: &ast::MacroCall,
|
2019-06-08 06:48:56 -05:00
|
|
|
) -> Option<MacroDef> {
|
2019-09-26 12:59:38 -05:00
|
|
|
// This must be a normal source file rather than macro file.
|
2019-06-08 12:42:02 -05:00
|
|
|
let path = macro_call.path().and_then(Path::from_ast)?;
|
|
|
|
self.resolver.resolve_path_as_macro(db, &path)
|
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,
|
2019-09-12 15:35:53 -05:00
|
|
|
) -> Option<PathResolution> {
|
|
|
|
let types = self.resolver.resolve_path_in_type_ns_fully(db, &path).map(|ty| match ty {
|
|
|
|
TypeNs::SelfType(it) => PathResolution::SelfType(it),
|
2019-11-11 08:36:27 -06:00
|
|
|
TypeNs::GenericParam(idx) => PathResolution::GenericParam(GenericParam {
|
|
|
|
parent: self.resolver.generic_def().unwrap(),
|
|
|
|
idx,
|
|
|
|
}),
|
2019-09-26 23:19:52 -05:00
|
|
|
TypeNs::AdtSelfType(it) | TypeNs::Adt(it) => PathResolution::Def(it.into()),
|
2019-09-12 15:35:53 -05:00
|
|
|
TypeNs::EnumVariant(it) => PathResolution::Def(it.into()),
|
|
|
|
TypeNs::TypeAlias(it) => PathResolution::Def(it.into()),
|
|
|
|
TypeNs::BuiltinType(it) => PathResolution::Def(it.into()),
|
|
|
|
TypeNs::Trait(it) => PathResolution::Def(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-09-12 15:35:53 -05:00
|
|
|
}
|
|
|
|
ValueNs::Function(it) => PathResolution::Def(it.into()),
|
|
|
|
ValueNs::Const(it) => PathResolution::Def(it.into()),
|
|
|
|
ValueNs::Static(it) => PathResolution::Def(it.into()),
|
|
|
|
ValueNs::Struct(it) => PathResolution::Def(it.into()),
|
|
|
|
ValueNs::EnumVariant(it) => PathResolution::Def(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(|| {
|
|
|
|
self.resolver.resolve_path_as_macro(db, &path).map(|def| PathResolution::Macro(def))
|
|
|
|
})
|
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) {
|
2019-11-14 01:30:30 -06:00
|
|
|
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) {
|
2019-11-14 01:30:30 -06:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|
2019-09-26 12:59:38 -05:00
|
|
|
// 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())?;
|
2019-09-12 15:35:53 -05:00
|
|
|
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> {
|
2019-04-13 02:49:01 -05:00
|
|
|
let name = name_ref.as_name();
|
|
|
|
let source_map = self.body_source_map.as_ref()?;
|
|
|
|
let scopes = self.scopes.as_ref()?;
|
2019-11-15 05:47:26 -06:00
|
|
|
let scope = scope_for(scopes, source_map, self.file_id.into(), name_ref.syntax())?;
|
|
|
|
let entry = scopes.resolve_name_in_scope(scope, &name)?;
|
|
|
|
Some(ScopeEntryWithSyntax {
|
|
|
|
name: entry.name().clone(),
|
|
|
|
ptr: source_map.pat_syntax(entry.pat())?.ast,
|
2019-04-13 02:49:01 -05:00
|
|
|
})
|
2019-04-13 01:31:03 -05:00
|
|
|
}
|
|
|
|
|
2019-09-12 15:35:53 -05:00
|
|
|
pub fn process_all_names(&self, db: &impl HirDatabase, f: &mut dyn FnMut(Name, ScopeDef)) {
|
|
|
|
self.resolver.process_all_names(db, f)
|
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.
|
2019-04-13 02:49:01 -05:00
|
|
|
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())));
|
2019-04-13 02:49:01 -05:00
|
|
|
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) {
|
2019-04-13 02:49:01 -05:00
|
|
|
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(),
|
2019-04-13 02:49:01 -05:00
|
|
|
})
|
|
|
|
.collect()
|
2019-04-13 01:31:03 -05:00
|
|
|
}
|
|
|
|
|
2019-04-14 09:08:10 -05:00
|
|
|
pub fn iterate_method_candidates<T>(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
ty: Ty,
|
|
|
|
name: Option<&Name>,
|
2019-11-01 14:01:21 -05:00
|
|
|
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, num_vars: 0 };
|
|
|
|
method_resolution::iterate_method_candidates(
|
|
|
|
&canonical,
|
|
|
|
db,
|
|
|
|
&self.resolver,
|
|
|
|
name,
|
|
|
|
method_resolution::LookupMode::MethodCall,
|
|
|
|
|ty, it| match it {
|
|
|
|
AssocItem::Function(f) => callback(ty, f),
|
|
|
|
_ => None,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn iterate_path_candidates<T>(
|
|
|
|
&self,
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
ty: Ty,
|
|
|
|
name: Option<&Name>,
|
2019-10-31 13:28:33 -05:00
|
|
|
callback: impl FnMut(&Ty, AssocItem) -> Option<T>,
|
2019-04-14 09:08:10 -05:00
|
|
|
) -> Option<T> {
|
2019-05-01 10:57:56 -05:00
|
|
|
// There should be no inference vars in types passed here
|
2019-05-04 11:25:07 -05:00
|
|
|
// FIXME check that?
|
2019-10-31 15:21:48 -05:00
|
|
|
// FIXME replace Unknown by bound vars here
|
2019-05-01 10:57:56 -05:00
|
|
|
let canonical = crate::ty::Canonical { value: ty, num_vars: 0 };
|
2019-10-31 15:21:48 -05:00
|
|
|
method_resolution::iterate_method_candidates(
|
2019-05-01 10:57:56 -05:00
|
|
|
&canonical,
|
|
|
|
db,
|
|
|
|
&self.resolver,
|
|
|
|
name,
|
2019-11-01 14:01:21 -05:00
|
|
|
method_resolution::LookupMode::Path,
|
2019-05-01 10:57:56 -05:00
|
|
|
callback,
|
|
|
|
)
|
2019-04-14 09:08:10 -05:00
|
|
|
}
|
|
|
|
|
2019-05-12 11:33:47 -05:00
|
|
|
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 };
|
|
|
|
crate::ty::autoderef(db, &self.resolver, canonical).map(|canonical| canonical.value)
|
|
|
|
}
|
|
|
|
|
2019-08-03 05:07:20 -05:00
|
|
|
/// Checks that particular type `ty` implements `std::future::Future`.
|
2019-08-02 13:15:43 -05:00
|
|
|
/// 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();
|
2019-08-03 05:07:20 -05:00
|
|
|
|
2019-09-12 12:39:10 -05:00
|
|
|
let std_future_trait = match self.resolver.resolve_known_trait(db, &std_future_path) {
|
|
|
|
Some(it) => it,
|
|
|
|
_ => return false,
|
|
|
|
};
|
2019-08-02 13:15:43 -05:00
|
|
|
|
2019-08-03 20:03:17 -05:00
|
|
|
let krate = match self.resolver.krate() {
|
|
|
|
Some(krate) => krate,
|
|
|
|
_ => return false,
|
|
|
|
};
|
2019-08-02 13:15:43 -05:00
|
|
|
|
2019-08-03 20:03:17 -05:00
|
|
|
let canonical_ty = crate::ty::Canonical { value: ty, num_vars: 0 };
|
2019-08-03 20:08:46 -05:00
|
|
|
implements_trait(&canonical_ty, db, &self.resolver, krate, std_future_trait)
|
2019-08-02 13:15:43 -05:00
|
|
|
}
|
|
|
|
|
2019-04-12 16:56:57 -05:00
|
|
|
#[cfg(test)]
|
2019-04-13 02:49:01 -05:00
|
|
|
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()
|
|
|
|
}
|
2019-04-13 02:49:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn scope_for(
|
|
|
|
scopes: &ExprScopes,
|
|
|
|
source_map: &BodySourceMap,
|
2019-11-14 01:30:30 -06:00
|
|
|
file_id: HirFileId,
|
2019-04-13 02:49:01 -05:00
|
|
|
node: &SyntaxNode,
|
|
|
|
) -> Option<ScopeId> {
|
|
|
|
node.ancestors()
|
2019-09-02 13:23:19 -05:00
|
|
|
.filter_map(ast::Expr::cast)
|
2019-11-14 01:30:30 -06:00
|
|
|
.filter_map(|it| source_map.node_expr(Source { file_id, ast: &it }))
|
2019-04-13 02:49:01 -05:00
|
|
|
.find_map(|it| scopes.scope_for(it))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn scope_for_offset(
|
|
|
|
scopes: &ExprScopes,
|
|
|
|
source_map: &BodySourceMap,
|
2019-09-03 03:04:38 -05:00
|
|
|
file_id: HirFileId,
|
2019-04-13 02:49:01 -05:00
|
|
|
offset: TextUnit,
|
|
|
|
) -> Option<ScopeId> {
|
|
|
|
scopes
|
2019-04-13 03:29:47 -05:00
|
|
|
.scope_by_expr()
|
2019-04-13 02:49:01 -05:00
|
|
|
.iter()
|
2019-09-02 13:23:19 -05:00
|
|
|
.filter_map(|(id, scope)| {
|
2019-09-03 03:04:38 -05:00
|
|
|
let source = source_map.expr_syntax(*id)?;
|
|
|
|
// FIXME: correctly handle macro expansion
|
|
|
|
if source.file_id != file_id {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let syntax_node_ptr =
|
|
|
|
source.ast.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
|
|
|
|
Some((syntax_node_ptr, scope))
|
2019-09-02 13:23:19 -05:00
|
|
|
})
|
2019-04-13 02:49:01 -05:00
|
|
|
// find containing scope
|
|
|
|
.min_by_key(|(ptr, _scope)| {
|
|
|
|
(!(ptr.range().start() <= offset && offset <= ptr.range().end()), ptr.range().len())
|
|
|
|
})
|
2019-09-03 03:04:38 -05:00
|
|
|
.map(|(ptr, scope)| adjust(scopes, source_map, ptr, file_id, offset).unwrap_or(*scope))
|
2019-04-13 02:49:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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,
|
2019-09-03 03:04:38 -05:00
|
|
|
file_id: HirFileId,
|
2019-04-13 02:49:01 -05:00
|
|
|
offset: TextUnit,
|
|
|
|
) -> Option<ScopeId> {
|
|
|
|
let r = ptr.range();
|
|
|
|
let child_scopes = scopes
|
2019-04-13 03:29:47 -05:00
|
|
|
.scope_by_expr()
|
2019-04-13 02:49:01 -05:00
|
|
|
.iter()
|
2019-09-02 13:23:19 -05:00
|
|
|
.filter_map(|(id, scope)| {
|
2019-09-03 03:04:38 -05:00
|
|
|
let source = source_map.expr_syntax(*id)?;
|
|
|
|
// FIXME: correctly handle macro expansion
|
|
|
|
if source.file_id != file_id {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let syntax_node_ptr =
|
|
|
|
source.ast.either(|it| it.syntax_node_ptr(), |it| it.syntax_node_ptr());
|
|
|
|
Some((syntax_node_ptr, scope))
|
2019-09-02 13:23:19 -05:00
|
|
|
})
|
2019-04-13 02:49:01 -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
|
|
|
}
|