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".
|
2023-05-02 09:12:22 -05:00
|
|
|
use std::iter::{self, once};
|
2019-04-10 03:15:55 -05:00
|
|
|
|
2023-03-04 13:33:28 -06:00
|
|
|
use either::Either;
|
2019-11-14 01:30:30 -06:00
|
|
|
use hir_def::{
|
2019-11-27 08:46:02 -06:00
|
|
|
body::{
|
|
|
|
scope::{ExprScopes, ScopeId},
|
2020-02-28 09:36:14 -06:00
|
|
|
Body, BodySourceMap,
|
2019-11-27 08:46:02 -06:00
|
|
|
},
|
2023-05-04 07:33:36 -05:00
|
|
|
hir::{BindingId, ExprId, Pat, PatId},
|
2023-01-21 10:29:07 -06:00
|
|
|
lang_item::LangItem,
|
2023-04-17 10:31:39 -05:00
|
|
|
lower::LowerCtx,
|
2023-05-11 01:52:13 -05:00
|
|
|
nameres::MacroSubNs,
|
2020-08-15 11:50:41 -05:00
|
|
|
path::{ModPath, Path, PathKind},
|
2021-12-01 03:23:42 -06:00
|
|
|
resolver::{resolver_for_scope, Resolver, TypeNs, ValueNs},
|
2022-03-20 08:38:16 -05:00
|
|
|
type_ref::Mutability,
|
2022-12-04 19:53:11 -06:00
|
|
|
AsMacroCall, AssocItemId, ConstId, DefWithBodyId, FieldId, FunctionId, ItemContainerId,
|
|
|
|
LocalFieldId, Lookup, ModuleDefId, TraitId, VariantId,
|
2022-03-20 13:27:46 -05:00
|
|
|
};
|
|
|
|
use hir_expand::{
|
2022-08-05 07:54:14 -05:00
|
|
|
builtin_fn_macro::BuiltinFnLikeExpander,
|
2022-08-16 16:53:10 -05:00
|
|
|
mod_path::path,
|
2022-08-05 07:54:14 -05:00
|
|
|
name,
|
|
|
|
name::{AsName, Name},
|
2023-12-06 07:36:39 -06:00
|
|
|
HirFileId, InFile, MacroFileId, MacroFileIdExt,
|
2019-11-14 01:30:30 -06:00
|
|
|
};
|
2020-04-07 10:09:02 -05:00
|
|
|
use hir_ty::{
|
2022-03-20 13:07:44 -05:00
|
|
|
diagnostics::{
|
|
|
|
record_literal_missing_fields, record_pattern_missing_fields, unsafe_expressions,
|
|
|
|
UnsafeExpr,
|
|
|
|
},
|
2023-03-29 16:33:39 -05:00
|
|
|
lang_items::lang_items_for_bin_op,
|
2023-06-10 17:06:32 -05:00
|
|
|
method_resolution, Adjustment, InferenceResult, Interner, Substitution, Ty, TyExt, TyKind,
|
|
|
|
TyLoweringContext,
|
2020-04-07 10:09:02 -05:00
|
|
|
};
|
2022-07-24 07:32:39 -05:00
|
|
|
use itertools::Itertools;
|
2022-05-14 07:26:08 -05:00
|
|
|
use smallvec::SmallVec;
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{
|
2024-02-27 09:10:08 -06:00
|
|
|
ast::{self, AstNode},
|
2022-01-15 05:12:02 -06:00
|
|
|
SyntaxKind, SyntaxNode, TextRange, TextSize,
|
2019-08-03 19:56:29 -05:00
|
|
|
};
|
2023-05-02 09:12:22 -05:00
|
|
|
use triomphe::Arc;
|
2019-08-03 19:56:29 -05:00
|
|
|
|
2018-12-05 04:16:20 -06:00
|
|
|
use crate::{
|
2022-05-14 07:26:08 -05:00
|
|
|
db::HirDatabase, semantics::PathResolution, Adt, AssocItem, BindingMode, BuiltinAttr,
|
2022-07-24 07:05:37 -05:00
|
|
|
BuiltinType, Callable, Const, DeriveHelper, Field, Function, Local, Macro, ModuleDef, Static,
|
2024-01-06 08:04:58 -06:00
|
|
|
Struct, ToolModule, Trait, TraitAlias, TupleField, Type, TypeAlias, Variant,
|
2019-08-03 05:07:20 -05:00
|
|
|
};
|
2018-12-05 04:16:20 -06:00
|
|
|
|
2019-04-11 07:58:00 -05:00
|
|
|
/// `SourceAnalyzer` is a convenience wrapper which exposes HIR API in terms of
|
2020-01-15 09:53:01 -06:00
|
|
|
/// original source files. It should not be used inside the HIR itself.
|
2019-04-10 03:15:55 -05:00
|
|
|
#[derive(Debug)]
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) struct SourceAnalyzer {
|
2020-12-11 07:50:47 -06:00
|
|
|
pub(crate) file_id: HirFileId,
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) resolver: Resolver,
|
2022-03-20 13:07:44 -05:00
|
|
|
def: Option<(DefWithBodyId, Arc<Body>, Arc<BodySourceMap>)>,
|
2019-12-08 05:44:14 -06:00
|
|
|
infer: Option<Arc<InferenceResult>>,
|
2019-04-10 03:15:55 -05:00
|
|
|
}
|
|
|
|
|
2019-04-11 07:51:02 -05:00
|
|
|
impl SourceAnalyzer {
|
2020-01-14 08:27:05 -06:00
|
|
|
pub(crate) fn new_for_body(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-01-14 08:27:05 -06:00
|
|
|
def: DefWithBodyId,
|
2021-12-20 06:19:48 -06:00
|
|
|
node @ InFile { file_id, .. }: InFile<&SyntaxNode>,
|
2020-04-24 16:40:41 -05:00
|
|
|
offset: Option<TextSize>,
|
2020-01-14 08:27:05 -06:00
|
|
|
) -> SourceAnalyzer {
|
2020-02-28 09:36:14 -06:00
|
|
|
let (body, source_map) = db.body_with_source_map(def);
|
2020-01-14 08:27:05 -06:00
|
|
|
let scopes = db.expr_scopes(def);
|
|
|
|
let scope = match offset {
|
|
|
|
None => scope_for(&scopes, &source_map, node),
|
2022-06-27 07:39:44 -05:00
|
|
|
Some(offset) => scope_for_offset(db, &scopes, &source_map, node.file_id, offset),
|
2020-01-14 08:27:05 -06:00
|
|
|
};
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = resolver_for_scope(db.upcast(), def, scope);
|
2020-01-14 08:27:05 -06:00
|
|
|
SourceAnalyzer {
|
|
|
|
resolver,
|
2022-03-20 13:07:44 -05:00
|
|
|
def: Some((def, body, source_map)),
|
2020-01-14 08:27:05 -06:00
|
|
|
infer: Some(db.infer(def)),
|
2021-12-20 06:19:48 -06:00
|
|
|
file_id,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_for_body_no_infer(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
def: DefWithBodyId,
|
|
|
|
node @ InFile { file_id, .. }: InFile<&SyntaxNode>,
|
|
|
|
offset: Option<TextSize>,
|
|
|
|
) -> SourceAnalyzer {
|
|
|
|
let (body, source_map) = db.body_with_source_map(def);
|
|
|
|
let scopes = db.expr_scopes(def);
|
|
|
|
let scope = match offset {
|
|
|
|
None => scope_for(&scopes, &source_map, node),
|
2022-06-27 07:39:44 -05:00
|
|
|
Some(offset) => scope_for_offset(db, &scopes, &source_map, node.file_id, offset),
|
2021-12-20 06:19:48 -06:00
|
|
|
};
|
|
|
|
let resolver = resolver_for_scope(db.upcast(), def, scope);
|
2022-03-20 13:07:44 -05:00
|
|
|
SourceAnalyzer { resolver, def: Some((def, body, source_map)), infer: None, file_id }
|
2020-01-14 08:27:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_for_resolver(
|
|
|
|
resolver: Resolver,
|
|
|
|
node: InFile<&SyntaxNode>,
|
|
|
|
) -> SourceAnalyzer {
|
2022-03-20 13:07:44 -05:00
|
|
|
SourceAnalyzer { resolver, def: None, infer: None, file_id: node.file_id }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn body_source_map(&self) -> Option<&BodySourceMap> {
|
|
|
|
self.def.as_ref().map(|(.., source_map)| &**source_map)
|
|
|
|
}
|
|
|
|
fn body(&self) -> Option<&Body> {
|
|
|
|
self.def.as_ref().map(|(_, body, _)| &**body)
|
2019-04-10 03:15:55 -05:00
|
|
|
}
|
|
|
|
|
2020-03-25 07:53:15 -05:00
|
|
|
fn expr_id(&self, db: &dyn HirDatabase, expr: &ast::Expr) -> Option<ExprId> {
|
|
|
|
let src = match expr {
|
2022-04-05 10:42:07 -05:00
|
|
|
ast::Expr::MacroExpr(expr) => {
|
2022-12-23 01:08:08 -06:00
|
|
|
self.expand_expr(db, InFile::new(self.file_id, expr.macro_call()?))?
|
2020-03-25 07:53:15 -05:00
|
|
|
}
|
|
|
|
_ => InFile::new(self.file_id, expr.clone()),
|
|
|
|
};
|
2022-03-20 13:07:44 -05:00
|
|
|
let sm = self.body_source_map()?;
|
2020-03-25 07:53:15 -05:00
|
|
|
sm.node_expr(src.as_ref())
|
2019-11-14 01:30:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn pat_id(&self, pat: &ast::Pat) -> Option<PatId> {
|
2020-04-18 15:05:06 -05:00
|
|
|
// FIXME: macros, see `expr_id`
|
2019-11-28 03:50:26 -06:00
|
|
|
let src = InFile { file_id: self.file_id, value: pat };
|
2022-03-20 13:07:44 -05:00
|
|
|
self.body_source_map()?.node_pat(src)
|
2019-11-14 01:30:30 -06:00
|
|
|
}
|
|
|
|
|
2023-05-04 07:33:36 -05:00
|
|
|
fn binding_id_of_pat(&self, pat: &ast::IdentPat) -> Option<BindingId> {
|
|
|
|
let pat_id = self.pat_id(&pat.clone().into())?;
|
|
|
|
if let Pat::Bind { id, .. } = self.body()?.pats[pat_id] {
|
|
|
|
Some(id)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-23 07:47:11 -06:00
|
|
|
fn expand_expr(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-03-04 07:39:51 -06:00
|
|
|
expr: InFile<ast::MacroCall>,
|
2019-12-23 07:47:11 -06:00
|
|
|
) -> Option<InFile<ast::Expr>> {
|
2022-03-20 13:07:44 -05:00
|
|
|
let macro_file = self.body_source_map()?.node_macro_file(expr.as_ref())?;
|
2023-04-16 12:20:48 -05:00
|
|
|
let expanded = db.parse_or_expand(macro_file);
|
2022-08-31 09:58:11 -05:00
|
|
|
let res = if let Some(stmts) = ast::MacroStmts::cast(expanded.clone()) {
|
|
|
|
match stmts.expr()? {
|
|
|
|
ast::Expr::MacroExpr(mac) => {
|
|
|
|
self.expand_expr(db, InFile::new(macro_file, mac.macro_call()?))?
|
|
|
|
}
|
|
|
|
expr => InFile::new(macro_file, expr),
|
|
|
|
}
|
|
|
|
} else if let Some(call) = ast::MacroCall::cast(expanded.clone()) {
|
|
|
|
self.expand_expr(db, InFile::new(macro_file, call))?
|
|
|
|
} else {
|
|
|
|
InFile::new(macro_file, ast::Expr::cast(expanded)?)
|
2020-03-04 07:39:51 -06:00
|
|
|
};
|
2022-08-31 09:58:11 -05:00
|
|
|
|
2020-03-04 07:39:51 -06:00
|
|
|
Some(res)
|
2019-12-23 07:47:11 -06:00
|
|
|
}
|
|
|
|
|
2022-11-04 11:11:15 -05:00
|
|
|
pub(crate) fn expr_adjustments(
|
2022-03-20 08:38:16 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
expr: &ast::Expr,
|
2022-11-04 11:11:15 -05:00
|
|
|
) -> Option<&[Adjustment]> {
|
2022-03-20 08:38:16 -05:00
|
|
|
let expr_id = self.expr_id(db, expr)?;
|
|
|
|
let infer = self.infer.as_ref()?;
|
2022-11-04 11:11:15 -05:00
|
|
|
infer.expr_adjustments.get(&expr_id).map(|v| &**v)
|
2022-03-20 08:38:16 -05:00
|
|
|
}
|
|
|
|
|
2021-08-02 13:42:25 -05:00
|
|
|
pub(crate) fn type_of_expr(
|
2021-07-10 11:19:46 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
expr: &ast::Expr,
|
2021-08-02 13:42:25 -05:00
|
|
|
) -> Option<(Type, Option<Type>)> {
|
2021-07-10 11:19:46 -05:00
|
|
|
let expr_id = self.expr_id(db, expr)?;
|
|
|
|
let infer = self.infer.as_ref()?;
|
2021-08-02 13:42:25 -05:00
|
|
|
let coerced = infer
|
2021-07-10 11:19:46 -05:00
|
|
|
.expr_adjustments
|
|
|
|
.get(&expr_id)
|
2021-08-02 13:42:25 -05:00
|
|
|
.and_then(|adjusts| adjusts.last().map(|adjust| adjust.target.clone()));
|
|
|
|
let ty = infer[expr_id].clone();
|
|
|
|
let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty);
|
2022-03-31 04:12:08 -05:00
|
|
|
Some((mk_ty(ty), coerced.map(mk_ty)))
|
2019-07-23 11:24:54 -05:00
|
|
|
}
|
|
|
|
|
2021-08-02 13:42:25 -05:00
|
|
|
pub(crate) fn type_of_pat(
|
2021-07-10 12:03:46 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
pat: &ast::Pat,
|
2021-08-02 13:42:25 -05:00
|
|
|
) -> Option<(Type, Option<Type>)> {
|
2021-07-10 12:03:46 -05:00
|
|
|
let pat_id = self.pat_id(pat)?;
|
|
|
|
let infer = self.infer.as_ref()?;
|
2024-01-19 07:28:37 -06:00
|
|
|
let coerced =
|
|
|
|
infer.pat_adjustments.get(&pat_id).and_then(|adjusts| adjusts.last().cloned());
|
2021-08-02 13:42:25 -05:00
|
|
|
let ty = infer[pat_id].clone();
|
|
|
|
let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty);
|
2022-03-31 04:12:08 -05:00
|
|
|
Some((mk_ty(ty), coerced.map(mk_ty)))
|
2021-07-10 12:03:46 -05:00
|
|
|
}
|
|
|
|
|
2023-05-04 07:33:36 -05:00
|
|
|
pub(crate) fn type_of_binding_in_pat(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
pat: &ast::IdentPat,
|
|
|
|
) -> Option<Type> {
|
|
|
|
let binding_id = self.binding_id_of_pat(pat)?;
|
|
|
|
let infer = self.infer.as_ref()?;
|
|
|
|
let ty = infer[binding_id].clone();
|
|
|
|
let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty);
|
|
|
|
Some(mk_ty(ty))
|
|
|
|
}
|
|
|
|
|
2020-07-10 07:08:35 -05:00
|
|
|
pub(crate) fn type_of_self(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
2024-03-06 08:57:05 -06:00
|
|
|
_param: &ast::SelfParam,
|
2020-07-10 07:08:35 -05:00
|
|
|
) -> Option<Type> {
|
2024-03-06 08:57:05 -06:00
|
|
|
let binding = self.body()?.self_param?;
|
|
|
|
let ty = self.infer.as_ref()?[binding].clone();
|
2022-03-31 04:12:08 -05:00
|
|
|
Some(Type::new_with_resolver(db, &self.resolver, ty))
|
2020-07-10 07:08:35 -05:00
|
|
|
}
|
|
|
|
|
2022-05-14 07:26:08 -05:00
|
|
|
pub(crate) fn binding_mode_of_pat(
|
|
|
|
&self,
|
|
|
|
_db: &dyn HirDatabase,
|
|
|
|
pat: &ast::IdentPat,
|
|
|
|
) -> Option<BindingMode> {
|
2023-10-22 15:04:27 -05:00
|
|
|
let id = self.pat_id(&pat.clone().into())?;
|
2022-05-14 07:26:08 -05:00
|
|
|
let infer = self.infer.as_ref()?;
|
2023-10-22 15:04:27 -05:00
|
|
|
infer.binding_modes.get(id).map(|bm| match bm {
|
2022-05-14 07:26:08 -05:00
|
|
|
hir_ty::BindingMode::Move => BindingMode::Move,
|
|
|
|
hir_ty::BindingMode::Ref(hir_ty::Mutability::Mut) => BindingMode::Ref(Mutability::Mut),
|
|
|
|
hir_ty::BindingMode::Ref(hir_ty::Mutability::Not) => {
|
|
|
|
BindingMode::Ref(Mutability::Shared)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
pub(crate) fn pattern_adjustments(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
pat: &ast::Pat,
|
|
|
|
) -> Option<SmallVec<[Type; 1]>> {
|
2022-12-30 02:05:03 -06:00
|
|
|
let pat_id = self.pat_id(pat)?;
|
2022-05-14 07:26:08 -05:00
|
|
|
let infer = self.infer.as_ref()?;
|
|
|
|
Some(
|
|
|
|
infer
|
|
|
|
.pat_adjustments
|
|
|
|
.get(&pat_id)?
|
|
|
|
.iter()
|
|
|
|
.map(|ty| Type::new_with_resolver(db, &self.resolver, ty.clone()))
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-06-25 04:33:27 -05:00
|
|
|
pub(crate) fn resolve_method_call_as_callable(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
call: &ast::MethodCallExpr,
|
|
|
|
) -> Option<Callable> {
|
|
|
|
let expr_id = self.expr_id(db, &call.clone().into())?;
|
|
|
|
let (func, substs) = self.infer.as_ref()?.method_resolution(expr_id)?;
|
2024-01-16 05:09:40 -06:00
|
|
|
let ty = db.value_ty(func.into())?.substitute(Interner, &substs);
|
2022-06-25 04:33:27 -05:00
|
|
|
let ty = Type::new_with_resolver(db, &self.resolver, ty);
|
|
|
|
let mut res = ty.as_callable(db)?;
|
|
|
|
res.is_bound_method = true;
|
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
|
2020-03-25 07:53:15 -05:00
|
|
|
pub(crate) fn resolve_method_call(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
call: &ast::MethodCallExpr,
|
2023-12-08 09:36:41 -06:00
|
|
|
) -> Option<Function> {
|
2020-03-25 07:53:15 -05:00
|
|
|
let expr_id = self.expr_id(db, &call.clone().into())?;
|
2022-06-24 06:11:35 -05:00
|
|
|
let (f_in_trait, substs) = self.infer.as_ref()?.method_resolution(expr_id)?;
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2023-12-08 09:36:41 -06:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, f_in_trait, substs).into())
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
|
|
|
|
2023-03-04 13:33:28 -06:00
|
|
|
pub(crate) fn resolve_method_call_fallback(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
call: &ast::MethodCallExpr,
|
2023-12-08 09:36:41 -06:00
|
|
|
) -> Option<Either<Function, Field>> {
|
2023-03-04 13:33:28 -06:00
|
|
|
let expr_id = self.expr_id(db, &call.clone().into())?;
|
|
|
|
let inference_result = self.infer.as_ref()?;
|
|
|
|
match inference_result.method_resolution(expr_id) {
|
2023-12-08 09:36:41 -06:00
|
|
|
Some((f_in_trait, substs)) => Some(Either::Left(
|
|
|
|
self.resolve_impl_method_or_trait_def(db, f_in_trait, substs).into(),
|
|
|
|
)),
|
2024-01-06 08:04:58 -06:00
|
|
|
None => inference_result
|
|
|
|
.field_resolution(expr_id)
|
|
|
|
.and_then(Either::left)
|
|
|
|
.map(Into::into)
|
|
|
|
.map(Either::Right),
|
2023-12-08 09:36:41 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-28 08:14:05 -06:00
|
|
|
pub(crate) fn resolve_expr_as_callable(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
call: &ast::Expr,
|
|
|
|
) -> Option<Callable> {
|
|
|
|
self.type_of_expr(db, &call.clone())?.0.as_callable(db)
|
|
|
|
}
|
|
|
|
|
2023-12-08 09:36:41 -06:00
|
|
|
pub(crate) fn resolve_field(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
field: &ast::FieldExpr,
|
2024-01-06 08:04:58 -06:00
|
|
|
) -> Option<Either<Field, TupleField>> {
|
|
|
|
let &(def, ..) = self.def.as_ref()?;
|
2023-12-08 09:36:41 -06:00
|
|
|
let expr_id = self.expr_id(db, &field.clone().into())?;
|
2024-01-06 08:04:58 -06:00
|
|
|
self.infer.as_ref()?.field_resolution(expr_id).map(|it| {
|
|
|
|
it.map_either(Into::into, |f| TupleField { owner: def, tuple: f.tuple, index: f.index })
|
|
|
|
})
|
2023-12-08 09:36:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn resolve_field_fallback(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
field: &ast::FieldExpr,
|
2024-01-06 08:04:58 -06:00
|
|
|
) -> Option<Either<Either<Field, TupleField>, Function>> {
|
|
|
|
let &(def, ..) = self.def.as_ref()?;
|
2023-12-08 09:36:41 -06:00
|
|
|
let expr_id = self.expr_id(db, &field.clone().into())?;
|
|
|
|
let inference_result = self.infer.as_ref()?;
|
|
|
|
match inference_result.field_resolution(expr_id) {
|
2024-01-06 08:04:58 -06:00
|
|
|
Some(field) => Some(Either::Left(field.map_either(Into::into, |f| TupleField {
|
|
|
|
owner: def,
|
|
|
|
tuple: f.tuple,
|
|
|
|
index: f.index,
|
|
|
|
}))),
|
2023-12-08 09:36:41 -06:00
|
|
|
None => inference_result.method_resolution(expr_id).map(|(f, substs)| {
|
|
|
|
Either::Right(self.resolve_impl_method_or_trait_def(db, f, substs).into())
|
|
|
|
}),
|
2023-03-04 13:33:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-05 07:28:36 -05:00
|
|
|
pub(crate) fn resolve_await_to_poll(
|
2022-08-05 07:16:36 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
await_expr: &ast::AwaitExpr,
|
|
|
|
) -> Option<FunctionId> {
|
2022-12-30 02:42:44 -06:00
|
|
|
let mut ty = self.ty_of_expr(db, &await_expr.expr()?)?.clone();
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2022-08-16 16:53:10 -05:00
|
|
|
let into_future_trait = self
|
|
|
|
.resolver
|
|
|
|
.resolve_known_trait(db.upcast(), &path![core::future::IntoFuture])
|
|
|
|
.map(Trait::from);
|
|
|
|
|
|
|
|
if let Some(into_future_trait) = into_future_trait {
|
|
|
|
let type_ = Type::new_with_resolver(db, &self.resolver, ty.clone());
|
|
|
|
if type_.impls_trait(db, into_future_trait, &[]) {
|
|
|
|
let items = into_future_trait.items(db);
|
|
|
|
let into_future_type = items.into_iter().find_map(|item| match item {
|
|
|
|
AssocItem::TypeAlias(alias)
|
|
|
|
if alias.name(db) == hir_expand::name![IntoFuture] =>
|
|
|
|
{
|
|
|
|
Some(alias)
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
})?;
|
|
|
|
let future_trait = type_.normalize_trait_assoc_type(db, &[], into_future_type)?;
|
|
|
|
ty = future_trait.ty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-21 10:29:07 -06:00
|
|
|
let future_trait = db.lang_item(self.resolver.krate(), LangItem::Future)?.as_trait()?;
|
|
|
|
let poll_fn = db.lang_item(self.resolver.krate(), LangItem::FuturePoll)?.as_function()?;
|
2022-10-02 08:15:57 -05:00
|
|
|
// HACK: subst for `poll()` coincides with that for `Future` because `poll()` itself
|
|
|
|
// doesn't have any generic parameters, so we skip building another subst for `poll()`.
|
|
|
|
let substs = hir_ty::TyBuilder::subst_for_def(db, future_trait, None).push(ty).build();
|
2022-10-25 07:20:16 -05:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, poll_fn, substs))
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
|
|
|
|
2022-08-05 07:28:36 -05:00
|
|
|
pub(crate) fn resolve_prefix_expr(
|
2022-08-05 07:16:36 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
prefix_expr: &ast::PrefixExpr,
|
|
|
|
) -> Option<FunctionId> {
|
2024-02-27 08:55:19 -06:00
|
|
|
let (op_trait, op_fn) = match prefix_expr.op_kind()? {
|
|
|
|
ast::UnaryOp::Deref => {
|
|
|
|
// This can be either `Deref::deref` or `DerefMut::deref_mut`.
|
|
|
|
// Since deref kind is inferenced and stored in `InferenceResult.method_resolution`,
|
|
|
|
// use that result to find out which one it is.
|
|
|
|
let (deref_trait, deref) =
|
|
|
|
self.lang_trait_fn(db, LangItem::Deref, &name![deref])?;
|
|
|
|
self.infer
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|infer| {
|
|
|
|
let expr = self.expr_id(db, &prefix_expr.clone().into())?;
|
|
|
|
let (func, _) = infer.method_resolution(expr)?;
|
|
|
|
let (deref_mut_trait, deref_mut) =
|
|
|
|
self.lang_trait_fn(db, LangItem::DerefMut, &name![deref_mut])?;
|
|
|
|
if func == deref_mut {
|
|
|
|
Some((deref_mut_trait, deref_mut))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.unwrap_or((deref_trait, deref))
|
|
|
|
}
|
|
|
|
ast::UnaryOp::Not => self.lang_trait_fn(db, LangItem::Not, &name![not])?,
|
|
|
|
ast::UnaryOp::Neg => self.lang_trait_fn(db, LangItem::Neg, &name![neg])?,
|
2022-08-05 07:16:36 -05:00
|
|
|
};
|
2024-02-27 08:55:19 -06:00
|
|
|
|
2022-12-30 02:42:44 -06:00
|
|
|
let ty = self.ty_of_expr(db, &prefix_expr.expr()?)?;
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2022-10-02 08:15:57 -05:00
|
|
|
// HACK: subst for all methods coincides with that for their trait because the methods
|
|
|
|
// don't have any generic parameters, so we skip building another subst for the methods.
|
|
|
|
let substs = hir_ty::TyBuilder::subst_for_def(db, op_trait, None).push(ty.clone()).build();
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2022-10-25 07:20:16 -05:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, op_fn, substs))
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
|
|
|
|
2022-08-05 07:28:36 -05:00
|
|
|
pub(crate) fn resolve_index_expr(
|
2022-08-05 07:16:36 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
index_expr: &ast::IndexExpr,
|
|
|
|
) -> Option<FunctionId> {
|
2022-12-30 02:42:44 -06:00
|
|
|
let base_ty = self.ty_of_expr(db, &index_expr.base()?)?;
|
|
|
|
let index_ty = self.ty_of_expr(db, &index_expr.index()?)?;
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2024-02-28 09:52:58 -06:00
|
|
|
let (index_trait, index_fn) = self.lang_trait_fn(db, LangItem::Index, &name![index])?;
|
|
|
|
let (op_trait, op_fn) = self
|
|
|
|
.infer
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|infer| {
|
|
|
|
let expr = self.expr_id(db, &index_expr.clone().into())?;
|
|
|
|
let (func, _) = infer.method_resolution(expr)?;
|
|
|
|
let (index_mut_trait, index_mut_fn) =
|
|
|
|
self.lang_trait_fn(db, LangItem::IndexMut, &name![index_mut])?;
|
|
|
|
if func == index_mut_fn {
|
|
|
|
Some((index_mut_trait, index_mut_fn))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.unwrap_or((index_trait, index_fn));
|
2022-10-02 08:15:57 -05:00
|
|
|
// HACK: subst for all methods coincides with that for their trait because the methods
|
|
|
|
// don't have any generic parameters, so we skip building another subst for the methods.
|
|
|
|
let substs = hir_ty::TyBuilder::subst_for_def(db, op_trait, None)
|
2022-08-05 07:16:36 -05:00
|
|
|
.push(base_ty.clone())
|
|
|
|
.push(index_ty.clone())
|
|
|
|
.build();
|
2022-10-25 07:20:16 -05:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, op_fn, substs))
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
|
|
|
|
2022-08-05 07:28:36 -05:00
|
|
|
pub(crate) fn resolve_bin_expr(
|
2022-08-05 07:16:36 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
binop_expr: &ast::BinExpr,
|
|
|
|
) -> Option<FunctionId> {
|
|
|
|
let op = binop_expr.op_kind()?;
|
2022-12-30 02:42:44 -06:00
|
|
|
let lhs = self.ty_of_expr(db, &binop_expr.lhs()?)?;
|
|
|
|
let rhs = self.ty_of_expr(db, &binop_expr.rhs()?)?;
|
2022-08-05 07:54:14 -05:00
|
|
|
|
2023-01-21 10:29:07 -06:00
|
|
|
let (op_trait, op_fn) = lang_items_for_bin_op(op)
|
|
|
|
.and_then(|(name, lang_item)| self.lang_trait_fn(db, lang_item, &name))?;
|
2022-10-02 08:15:57 -05:00
|
|
|
// HACK: subst for `index()` coincides with that for `Index` because `index()` itself
|
|
|
|
// doesn't have any generic parameters, so we skip building another subst for `index()`.
|
|
|
|
let substs = hir_ty::TyBuilder::subst_for_def(db, op_trait, None)
|
|
|
|
.push(lhs.clone())
|
|
|
|
.push(rhs.clone())
|
|
|
|
.build();
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2022-10-25 07:20:16 -05:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, op_fn, substs))
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
|
|
|
|
2022-08-05 07:28:36 -05:00
|
|
|
pub(crate) fn resolve_try_expr(
|
2022-08-05 07:16:36 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
try_expr: &ast::TryExpr,
|
|
|
|
) -> Option<FunctionId> {
|
2022-12-30 02:42:44 -06:00
|
|
|
let ty = self.ty_of_expr(db, &try_expr.expr()?)?;
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2023-01-21 10:29:07 -06:00
|
|
|
let op_fn = db.lang_item(self.resolver.krate(), LangItem::TryTraitBranch)?.as_function()?;
|
2022-10-02 08:15:57 -05:00
|
|
|
let op_trait = match op_fn.lookup(db.upcast()).container {
|
|
|
|
ItemContainerId::TraitId(id) => id,
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
// HACK: subst for `branch()` coincides with that for `Try` because `branch()` itself
|
|
|
|
// doesn't have any generic parameters, so we skip building another subst for `branch()`.
|
|
|
|
let substs = hir_ty::TyBuilder::subst_for_def(db, op_trait, None).push(ty.clone()).build();
|
2022-08-05 07:16:36 -05:00
|
|
|
|
2022-10-25 07:20:16 -05:00
|
|
|
Some(self.resolve_impl_method_or_trait_def(db, op_fn, substs))
|
2019-04-10 03:15:55 -05:00
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) fn resolve_record_field(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-07-30 09:21:30 -05:00
|
|
|
field: &ast::RecordExprField,
|
2021-05-23 16:54:35 -05:00
|
|
|
) -> Option<(Field, Option<Local>, Type)> {
|
2021-04-06 10:59:18 -05:00
|
|
|
let record_expr = ast::RecordExpr::cast(field.syntax().parent().and_then(|p| p.parent())?)?;
|
|
|
|
let expr = ast::Expr::from(record_expr);
|
2022-03-20 13:07:44 -05:00
|
|
|
let expr_id = self.body_source_map()?.node_expr(InFile::new(self.file_id, &expr))?;
|
2021-03-15 07:02:48 -05:00
|
|
|
|
2021-04-06 10:59:18 -05:00
|
|
|
let local_name = field.field_name()?.as_name();
|
2020-04-11 09:42:24 -05:00
|
|
|
let local = if field.name_ref().is_some() {
|
|
|
|
None
|
|
|
|
} else {
|
2022-08-11 03:41:30 -05:00
|
|
|
// Shorthand syntax, resolve to the local
|
2023-03-08 11:28:52 -06:00
|
|
|
let path = Path::from_known_path_with_no_generic(ModPath::from_segments(
|
|
|
|
PathKind::Plain,
|
|
|
|
once(local_name.clone()),
|
|
|
|
));
|
2020-04-11 09:42:24 -05:00
|
|
|
match self.resolver.resolve_path_in_value_ns_fully(db.upcast(), &path) {
|
2023-02-18 14:32:55 -06:00
|
|
|
Some(ValueNs::LocalBinding(binding_id)) => {
|
|
|
|
Some(Local { binding_id, parent: self.resolver.body_owner()? })
|
2020-04-11 09:42:24 -05:00
|
|
|
}
|
|
|
|
_ => None,
|
2019-12-20 07:47:01 -06:00
|
|
|
}
|
|
|
|
};
|
2021-05-23 16:54:35 -05:00
|
|
|
let (_, subst) = self.infer.as_ref()?.type_of_expr.get(expr_id)?.as_adt()?;
|
2021-04-06 10:59:18 -05:00
|
|
|
let variant = self.infer.as_ref()?.variant_resolution_for_expr(expr_id)?;
|
|
|
|
let variant_data = variant.variant_data(db.upcast());
|
|
|
|
let field = FieldId { parent: variant, local_id: variant_data.field(&local_name)? };
|
2021-05-23 16:54:35 -05:00
|
|
|
let field_ty =
|
2021-12-19 10:58:39 -06:00
|
|
|
db.field_types(variant).get(field.local_id)?.clone().substitute(Interner, subst);
|
2022-03-31 04:12:08 -05:00
|
|
|
Some((field.into(), local, Type::new_with_resolver(db, &self.resolver, field_ty)))
|
2019-11-24 11:06:55 -06:00
|
|
|
}
|
|
|
|
|
2020-09-04 20:06:05 -05:00
|
|
|
pub(crate) fn resolve_record_pat_field(
|
2020-04-18 15:05:06 -05:00
|
|
|
&self,
|
2021-04-06 12:44:28 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-07-31 12:54:16 -05:00
|
|
|
field: &ast::RecordPatField,
|
2023-03-14 15:55:03 -05:00
|
|
|
) -> Option<(Field, Type)> {
|
2021-04-06 12:44:28 -05:00
|
|
|
let field_name = field.field_name()?.as_name();
|
|
|
|
let record_pat = ast::RecordPat::cast(field.syntax().parent().and_then(|p| p.parent())?)?;
|
|
|
|
let pat_id = self.pat_id(&record_pat.into())?;
|
|
|
|
let variant = self.infer.as_ref()?.variant_resolution_for_pat(pat_id)?;
|
|
|
|
let variant_data = variant.variant_data(db.upcast());
|
|
|
|
let field = FieldId { parent: variant, local_id: variant_data.field(&field_name)? };
|
2023-03-14 15:55:03 -05:00
|
|
|
let (_, subst) = self.infer.as_ref()?.type_of_pat.get(pat_id)?.as_adt()?;
|
|
|
|
let field_ty =
|
|
|
|
db.field_types(variant).get(field.local_id)?.clone().substitute(Interner, subst);
|
|
|
|
Some((field.into(), Type::new_with_resolver(db, &self.resolver, field_ty)))
|
2020-04-18 15:05:06 -05:00
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) fn resolve_macro_call(
|
2019-06-01 06:34:19 -05:00
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-11-28 03:50:26 -06:00
|
|
|
macro_call: InFile<&ast::MacroCall>,
|
2022-03-08 16:51:48 -06:00
|
|
|
) -> Option<Macro> {
|
2024-03-07 07:14:59 -06:00
|
|
|
let ctx = LowerCtx::new(db.upcast(), macro_call.file_id);
|
2023-11-25 10:10:18 -06:00
|
|
|
let path = macro_call.value.path().and_then(|ast| Path::from_src(&ctx, ast))?;
|
2023-05-11 01:52:13 -05:00
|
|
|
self.resolver
|
|
|
|
.resolve_path_as_macro(db.upcast(), path.mod_path()?, Some(MacroSubNs::Bang))
|
2023-08-17 03:52:13 -05:00
|
|
|
.map(|(it, _)| it.into())
|
2019-04-24 15:16:50 -05:00
|
|
|
}
|
|
|
|
|
2020-02-28 09:36:14 -06:00
|
|
|
pub(crate) fn resolve_bind_pat_to_const(
|
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-07-31 13:09:09 -05:00
|
|
|
pat: &ast::IdentPat,
|
2020-02-28 09:36:14 -06:00
|
|
|
) -> Option<ModuleDef> {
|
|
|
|
let pat_id = self.pat_id(&pat.clone().into())?;
|
2022-03-20 13:07:44 -05:00
|
|
|
let body = self.body()?;
|
2020-02-28 09:36:14 -06:00
|
|
|
let path = match &body[pat_id] {
|
|
|
|
Pat::Path(path) => path,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2021-06-12 22:54:16 -05:00
|
|
|
let res = resolve_hir_path(db, &self.resolver, path)?;
|
2020-02-28 09:36:14 -06:00
|
|
|
match res {
|
|
|
|
PathResolution::Def(def) => Some(def),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) fn resolve_path(
|
2019-04-13 03:00:15 -05:00
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-02-18 11:35:10 -06:00
|
|
|
path: &ast::Path,
|
2019-09-12 15:35:53 -05:00
|
|
|
) -> Option<PathResolution> {
|
2021-12-03 10:07:06 -06:00
|
|
|
let parent = path.syntax().parent();
|
|
|
|
let parent = || parent.clone();
|
|
|
|
|
2021-01-29 08:59:52 -06:00
|
|
|
let mut prefer_value_ns = false;
|
2022-04-06 13:22:12 -05:00
|
|
|
let resolved = (|| {
|
2022-10-24 05:38:16 -05:00
|
|
|
let infer = self.infer.as_deref()?;
|
2022-04-06 13:22:12 -05:00
|
|
|
if let Some(path_expr) = parent().and_then(ast::PathExpr::cast) {
|
|
|
|
let expr_id = self.expr_id(db, &path_expr.into())?;
|
2022-12-04 19:53:11 -06:00
|
|
|
if let Some((assoc, subs)) = infer.assoc_resolutions_for_expr(expr_id) {
|
2022-06-24 06:11:35 -05:00
|
|
|
let assoc = match assoc {
|
|
|
|
AssocItemId::FunctionId(f_in_trait) => {
|
|
|
|
match infer.type_of_expr.get(expr_id) {
|
|
|
|
None => assoc,
|
|
|
|
Some(func_ty) => {
|
|
|
|
if let TyKind::FnDef(_fn_def, subs) = func_ty.kind(Interner) {
|
2022-10-25 07:20:16 -05:00
|
|
|
self.resolve_impl_method_or_trait_def(
|
|
|
|
db,
|
|
|
|
f_in_trait,
|
|
|
|
subs.clone(),
|
|
|
|
)
|
|
|
|
.into()
|
2022-06-24 06:11:35 -05:00
|
|
|
} else {
|
|
|
|
assoc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-04 19:53:11 -06:00
|
|
|
AssocItemId::ConstId(const_id) => {
|
2022-12-10 10:05:33 -06:00
|
|
|
self.resolve_impl_const_or_trait_def(db, const_id, subs).into()
|
2022-12-04 19:53:11 -06:00
|
|
|
}
|
2023-01-11 10:10:04 -06:00
|
|
|
assoc => assoc,
|
2022-06-24 06:11:35 -05:00
|
|
|
};
|
|
|
|
|
2022-04-06 13:22:12 -05:00
|
|
|
return Some(PathResolution::Def(AssocItem::from(assoc).into()));
|
|
|
|
}
|
|
|
|
if let Some(VariantId::EnumVariantId(variant)) =
|
|
|
|
infer.variant_resolution_for_expr(expr_id)
|
|
|
|
{
|
|
|
|
return Some(PathResolution::Def(ModuleDef::Variant(variant.into())));
|
|
|
|
}
|
|
|
|
prefer_value_ns = true;
|
|
|
|
} else if let Some(path_pat) = parent().and_then(ast::PathPat::cast) {
|
|
|
|
let pat_id = self.pat_id(&path_pat.into())?;
|
2023-01-11 10:10:04 -06:00
|
|
|
if let Some((assoc, subs)) = infer.assoc_resolutions_for_pat(pat_id) {
|
|
|
|
let assoc = match assoc {
|
|
|
|
AssocItemId::ConstId(const_id) => {
|
|
|
|
self.resolve_impl_const_or_trait_def(db, const_id, subs).into()
|
|
|
|
}
|
|
|
|
assoc => assoc,
|
|
|
|
};
|
2022-04-06 13:22:12 -05:00
|
|
|
return Some(PathResolution::Def(AssocItem::from(assoc).into()));
|
|
|
|
}
|
|
|
|
if let Some(VariantId::EnumVariantId(variant)) =
|
2022-10-24 05:38:16 -05:00
|
|
|
infer.variant_resolution_for_pat(pat_id)
|
2022-04-06 13:22:12 -05:00
|
|
|
{
|
|
|
|
return Some(PathResolution::Def(ModuleDef::Variant(variant.into())));
|
|
|
|
}
|
|
|
|
} else if let Some(rec_lit) = parent().and_then(ast::RecordExpr::cast) {
|
|
|
|
let expr_id = self.expr_id(db, &rec_lit.into())?;
|
|
|
|
if let Some(VariantId::EnumVariantId(variant)) =
|
2022-10-24 05:38:16 -05:00
|
|
|
infer.variant_resolution_for_expr(expr_id)
|
2022-04-06 13:22:12 -05:00
|
|
|
{
|
|
|
|
return Some(PathResolution::Def(ModuleDef::Variant(variant.into())));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let record_pat = parent().and_then(ast::RecordPat::cast).map(ast::Pat::from);
|
|
|
|
let tuple_struct_pat =
|
|
|
|
|| parent().and_then(ast::TupleStructPat::cast).map(ast::Pat::from);
|
|
|
|
if let Some(pat) = record_pat.or_else(tuple_struct_pat) {
|
|
|
|
let pat_id = self.pat_id(&pat)?;
|
2022-10-24 05:38:16 -05:00
|
|
|
let variant_res_for_pat = infer.variant_resolution_for_pat(pat_id);
|
2022-04-06 13:22:12 -05:00
|
|
|
if let Some(VariantId::EnumVariantId(variant)) = variant_res_for_pat {
|
|
|
|
return Some(PathResolution::Def(ModuleDef::Variant(variant.into())));
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 15:30:25 -05:00
|
|
|
}
|
2022-04-06 13:22:12 -05:00
|
|
|
None
|
|
|
|
})();
|
2024-01-19 09:51:08 -06:00
|
|
|
if resolved.is_some() {
|
2022-04-06 13:22:12 -05:00
|
|
|
return resolved;
|
2020-06-15 15:30:25 -05:00
|
|
|
}
|
|
|
|
|
2019-09-26 12:59:38 -05:00
|
|
|
// This must be a normal source file rather than macro file.
|
2024-03-07 07:14:59 -06:00
|
|
|
let ctx = LowerCtx::new(db.upcast(), self.file_id);
|
2023-11-25 10:10:18 -06:00
|
|
|
let hir_path = Path::from_src(&ctx, path.clone())?;
|
2020-05-15 16:23:49 -05:00
|
|
|
|
2021-12-03 09:32:14 -06:00
|
|
|
// Case where path is a qualifier of a use tree, e.g. foo::bar::{Baz, Qux} where we are
|
2020-05-15 16:23:49 -05:00
|
|
|
// trying to resolve foo::bar.
|
2021-12-03 09:32:14 -06:00
|
|
|
if let Some(use_tree) = parent().and_then(ast::UseTree::cast) {
|
2022-01-02 16:14:18 -06:00
|
|
|
if use_tree.coloncolon_token().is_some() {
|
|
|
|
return resolve_hir_path_qualifier(db, &self.resolver, &hir_path);
|
2020-05-15 16:23:49 -05:00
|
|
|
}
|
|
|
|
}
|
2021-12-03 09:32:14 -06:00
|
|
|
|
2022-07-24 07:05:37 -05:00
|
|
|
let meta_path = path
|
2021-12-03 09:32:14 -06:00
|
|
|
.syntax()
|
|
|
|
.ancestors()
|
2022-07-24 07:05:37 -05:00
|
|
|
.take_while(|it| {
|
|
|
|
let kind = it.kind();
|
|
|
|
ast::Path::can_cast(kind) || ast::Meta::can_cast(kind)
|
|
|
|
})
|
2022-01-02 16:14:18 -06:00
|
|
|
.last()
|
2022-07-24 07:05:37 -05:00
|
|
|
.and_then(ast::Meta::cast);
|
2021-12-03 09:32:14 -06:00
|
|
|
|
|
|
|
// Case where path is a qualifier of another path, e.g. foo::bar::Baz where we are
|
2021-05-23 12:33:28 -05:00
|
|
|
// trying to resolve foo::bar.
|
2022-01-02 16:14:18 -06:00
|
|
|
if path.parent_path().is_some() {
|
|
|
|
return match resolve_hir_path_qualifier(db, &self.resolver, &hir_path) {
|
2022-07-24 07:05:37 -05:00
|
|
|
None if meta_path.is_some() => {
|
2022-01-02 16:14:18 -06:00
|
|
|
path.first_segment().and_then(|it| it.name_ref()).and_then(|name_ref| {
|
2022-03-31 04:12:08 -05:00
|
|
|
ToolModule::by_name(db, self.resolver.krate().into(), &name_ref.text())
|
|
|
|
.map(PathResolution::ToolModule)
|
2022-01-02 16:14:18 -06:00
|
|
|
})
|
2021-05-23 12:33:28 -05:00
|
|
|
}
|
2022-01-02 16:14:18 -06:00
|
|
|
res => res,
|
|
|
|
};
|
2022-07-24 07:05:37 -05:00
|
|
|
} else if let Some(meta_path) = meta_path {
|
2021-12-14 05:38:20 -06:00
|
|
|
// Case where we are resolving the final path segment of a path in an attribute
|
|
|
|
// in this case we have to check for inert/builtin attributes and tools and prioritize
|
2022-01-02 16:14:18 -06:00
|
|
|
// resolution of attributes over other namespaces
|
2022-07-24 07:05:37 -05:00
|
|
|
if let Some(name_ref) = path.as_single_name_ref() {
|
|
|
|
let builtin =
|
|
|
|
BuiltinAttr::by_name(db, self.resolver.krate().into(), &name_ref.text());
|
2024-01-19 09:51:08 -06:00
|
|
|
if builtin.is_some() {
|
2022-07-24 07:05:37 -05:00
|
|
|
return builtin.map(PathResolution::BuiltinAttr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(attr) = meta_path.parent_attr() {
|
|
|
|
let adt = if let Some(field) =
|
|
|
|
attr.syntax().parent().and_then(ast::RecordField::cast)
|
|
|
|
{
|
|
|
|
field.syntax().ancestors().take(4).find_map(ast::Adt::cast)
|
|
|
|
} else if let Some(field) =
|
|
|
|
attr.syntax().parent().and_then(ast::TupleField::cast)
|
|
|
|
{
|
|
|
|
field.syntax().ancestors().take(4).find_map(ast::Adt::cast)
|
|
|
|
} else if let Some(variant) =
|
|
|
|
attr.syntax().parent().and_then(ast::Variant::cast)
|
|
|
|
{
|
|
|
|
variant.syntax().ancestors().nth(2).and_then(ast::Adt::cast)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
if let Some(adt) = adt {
|
|
|
|
let ast_id = db.ast_id_map(self.file_id).ast_id(&adt);
|
|
|
|
if let Some(helpers) = self
|
|
|
|
.resolver
|
|
|
|
.def_map()
|
|
|
|
.derive_helpers_in_scope(InFile::new(self.file_id, ast_id))
|
|
|
|
{
|
|
|
|
// FIXME: Multiple derives can have the same helper
|
|
|
|
let name_ref = name_ref.as_name();
|
2022-07-24 07:32:39 -05:00
|
|
|
for (macro_id, mut helpers) in
|
|
|
|
helpers.iter().group_by(|(_, macro_id, ..)| macro_id).into_iter()
|
2022-07-24 07:05:37 -05:00
|
|
|
{
|
2022-07-24 07:32:39 -05:00
|
|
|
if let Some(idx) = helpers.position(|(name, ..)| *name == name_ref)
|
|
|
|
{
|
|
|
|
return Some(PathResolution::DeriveHelper(DeriveHelper {
|
|
|
|
derive: *macro_id,
|
2023-01-27 04:06:41 -06:00
|
|
|
idx: idx as u32,
|
2022-07-24 07:32:39 -05:00
|
|
|
}));
|
|
|
|
}
|
2022-07-24 07:05:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-05 09:23:20 -06:00
|
|
|
}
|
2023-05-11 01:52:13 -05:00
|
|
|
return match resolve_hir_path_as_attr_macro(db, &self.resolver, &hir_path) {
|
2022-03-08 16:51:48 -06:00
|
|
|
Some(m) => Some(PathResolution::Def(ModuleDef::Macro(m))),
|
2022-01-02 16:14:18 -06:00
|
|
|
// this labels any path that starts with a tool module as the tool itself, this is technically wrong
|
|
|
|
// but there is no benefit in differentiating these two cases for the time being
|
2022-02-20 19:42:58 -06:00
|
|
|
None => path.first_segment().and_then(|it| it.name_ref()).and_then(|name_ref| {
|
2022-03-31 04:12:08 -05:00
|
|
|
ToolModule::by_name(db, self.resolver.krate().into(), &name_ref.text())
|
|
|
|
.map(PathResolution::ToolModule)
|
2021-12-03 09:32:14 -06:00
|
|
|
}),
|
|
|
|
};
|
2021-05-23 12:33:28 -05:00
|
|
|
}
|
2022-01-02 16:14:18 -06:00
|
|
|
if parent().map_or(false, |it| ast::Visibility::can_cast(it.kind())) {
|
2021-05-26 14:09:27 -05:00
|
|
|
resolve_hir_path_qualifier(db, &self.resolver, &hir_path)
|
|
|
|
} else {
|
|
|
|
resolve_hir_path_(db, &self.resolver, &hir_path, prefer_value_ns)
|
|
|
|
}
|
2019-04-10 03:15:55 -05:00
|
|
|
}
|
2019-04-12 16:56:57 -05:00
|
|
|
|
2020-04-07 10:09:02 -05:00
|
|
|
pub(crate) fn record_literal_missing_fields(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
2020-07-30 09:21:30 -05:00
|
|
|
literal: &ast::RecordExpr,
|
2020-04-25 07:23:34 -05:00
|
|
|
) -> Option<Vec<(Field, Type)>> {
|
2022-03-20 13:07:44 -05:00
|
|
|
let body = self.body()?;
|
2020-04-07 10:09:02 -05:00
|
|
|
let infer = self.infer.as_ref()?;
|
|
|
|
|
|
|
|
let expr_id = self.expr_id(db, &literal.clone().into())?;
|
2021-04-07 10:26:01 -05:00
|
|
|
let substs = infer.type_of_expr[expr_id].as_adt()?.1;
|
2020-04-07 10:09:02 -05:00
|
|
|
|
|
|
|
let (variant, missing_fields, _exhaustive) =
|
|
|
|
record_literal_missing_fields(db, infer, expr_id, &body[expr_id])?;
|
2022-04-15 13:14:35 -05:00
|
|
|
let res = self.missing_fields(db, substs, variant, missing_fields);
|
2020-04-07 10:09:02 -05:00
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn record_pattern_missing_fields(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
pattern: &ast::RecordPat,
|
2020-04-25 07:23:34 -05:00
|
|
|
) -> Option<Vec<(Field, Type)>> {
|
2022-03-20 13:07:44 -05:00
|
|
|
let body = self.body()?;
|
2020-04-07 10:09:02 -05:00
|
|
|
let infer = self.infer.as_ref()?;
|
|
|
|
|
|
|
|
let pat_id = self.pat_id(&pattern.clone().into())?;
|
2021-04-07 10:26:01 -05:00
|
|
|
let substs = infer.type_of_pat[pat_id].as_adt()?.1;
|
2020-04-07 10:09:02 -05:00
|
|
|
|
2020-04-08 22:23:51 -05:00
|
|
|
let (variant, missing_fields, _exhaustive) =
|
2020-04-07 10:09:02 -05:00
|
|
|
record_pattern_missing_fields(db, infer, pat_id, &body[pat_id])?;
|
2022-04-15 13:14:35 -05:00
|
|
|
let res = self.missing_fields(db, substs, variant, missing_fields);
|
2020-04-07 10:09:02 -05:00
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn missing_fields(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
2021-03-15 15:02:34 -05:00
|
|
|
substs: &Substitution,
|
2020-04-07 10:09:02 -05:00
|
|
|
variant: VariantId,
|
2020-04-25 07:23:34 -05:00
|
|
|
missing_fields: Vec<LocalFieldId>,
|
|
|
|
) -> Vec<(Field, Type)> {
|
2020-04-07 10:09:02 -05:00
|
|
|
let field_types = db.field_types(variant);
|
|
|
|
|
|
|
|
missing_fields
|
|
|
|
.into_iter()
|
|
|
|
.map(|local_id| {
|
2020-04-25 07:23:34 -05:00
|
|
|
let field = FieldId { parent: variant, local_id };
|
2021-12-19 10:58:39 -06:00
|
|
|
let ty = field_types[local_id].clone().substitute(Interner, substs);
|
2022-04-15 13:14:35 -05:00
|
|
|
(field.into(), Type::new_with_resolver_inner(db, &self.resolver, ty))
|
2020-04-07 10:09:02 -05:00
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) fn expand(
|
2019-11-19 22:21:31 -06:00
|
|
|
&self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-11-28 03:50:26 -06:00
|
|
|
macro_call: InFile<&ast::MacroCall>,
|
2023-11-28 03:55:21 -06:00
|
|
|
) -> Option<MacroFileId> {
|
2022-03-31 04:12:08 -05:00
|
|
|
let krate = self.resolver.krate();
|
2020-06-11 05:08:24 -05:00
|
|
|
let macro_call_id = macro_call.as_call_id(db.upcast(), krate, |path| {
|
2023-12-22 05:46:22 -06:00
|
|
|
self.resolver.resolve_path_as_macro_def(db.upcast(), &path, Some(MacroSubNs::Bang))
|
2020-03-13 10:05:46 -05:00
|
|
|
})?;
|
2023-11-28 03:55:21 -06:00
|
|
|
// why the 64?
|
|
|
|
Some(macro_call_id.as_macro_file()).filter(|it| it.expansion_level(db.upcast()) < 64)
|
2019-11-16 07:49:26 -06:00
|
|
|
}
|
2020-06-09 16:11:16 -05:00
|
|
|
|
|
|
|
pub(crate) fn resolve_variant(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
2020-07-30 09:21:30 -05:00
|
|
|
record_lit: ast::RecordExpr,
|
2020-06-09 16:11:16 -05:00
|
|
|
) -> Option<VariantId> {
|
|
|
|
let infer = self.infer.as_ref()?;
|
|
|
|
let expr_id = self.expr_id(db, &record_lit.into())?;
|
|
|
|
infer.variant_resolution_for_expr(expr_id)
|
|
|
|
}
|
2022-03-20 13:07:44 -05:00
|
|
|
|
|
|
|
pub(crate) fn is_unsafe_macro_call(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
macro_call: InFile<&ast::MacroCall>,
|
|
|
|
) -> bool {
|
2022-03-20 13:27:46 -05:00
|
|
|
// check for asm/global_asm
|
|
|
|
if let Some(mac) = self.resolve_macro_call(db, macro_call) {
|
|
|
|
let ex = match mac.id {
|
|
|
|
hir_def::MacroId::Macro2Id(it) => it.lookup(db.upcast()).expander,
|
|
|
|
hir_def::MacroId::MacroRulesId(it) => it.lookup(db.upcast()).expander,
|
|
|
|
_ => hir_def::MacroExpander::Declarative,
|
|
|
|
};
|
|
|
|
match ex {
|
|
|
|
hir_def::MacroExpander::BuiltIn(e)
|
|
|
|
if e == BuiltinFnLikeExpander::Asm || e == BuiltinFnLikeExpander::GlobalAsm =>
|
|
|
|
{
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
2022-07-01 07:43:57 -05:00
|
|
|
let macro_expr = match macro_call
|
|
|
|
.map(|it| it.syntax().parent().and_then(ast::MacroExpr::cast))
|
|
|
|
.transpose()
|
|
|
|
{
|
|
|
|
Some(it) => it,
|
|
|
|
None => return false,
|
|
|
|
};
|
|
|
|
|
2022-03-20 13:07:44 -05:00
|
|
|
if let (Some((def, body, sm)), Some(infer)) = (&self.def, &self.infer) {
|
2022-07-01 07:43:57 -05:00
|
|
|
if let Some(expanded_expr) = sm.macro_expansion_expr(macro_expr.as_ref()) {
|
2022-03-20 13:07:44 -05:00
|
|
|
let mut is_unsafe = false;
|
2022-07-01 07:43:57 -05:00
|
|
|
unsafe_expressions(
|
|
|
|
db,
|
|
|
|
infer,
|
|
|
|
*def,
|
|
|
|
body,
|
|
|
|
expanded_expr,
|
|
|
|
&mut |UnsafeExpr { inside_unsafe_block, .. }| is_unsafe |= !inside_unsafe_block,
|
|
|
|
);
|
|
|
|
return is_unsafe;
|
2022-03-20 13:07:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
2022-06-24 06:11:35 -05:00
|
|
|
|
2023-12-05 08:42:39 -06:00
|
|
|
pub(crate) fn resolve_offset_in_format_args(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
format_args: InFile<&ast::FormatArgsExpr>,
|
|
|
|
offset: TextSize,
|
|
|
|
) -> Option<(TextRange, Option<PathResolution>)> {
|
|
|
|
let implicits = self.body_source_map()?.implicit_format_args(format_args)?;
|
|
|
|
implicits.iter().find(|(range, _)| range.contains_inclusive(offset)).map(|(range, name)| {
|
|
|
|
(
|
|
|
|
*range,
|
|
|
|
resolve_hir_value_path(
|
|
|
|
db,
|
|
|
|
&self.resolver,
|
|
|
|
self.resolver.body_owner(),
|
|
|
|
&Path::from_known_path_with_no_generic(ModPath::from_segments(
|
|
|
|
PathKind::Plain,
|
|
|
|
Some(name.clone()),
|
|
|
|
)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-12-05 09:30:57 -06:00
|
|
|
pub(crate) fn as_format_args_parts<'a>(
|
|
|
|
&'a self,
|
|
|
|
db: &'a dyn HirDatabase,
|
|
|
|
format_args: InFile<&ast::FormatArgsExpr>,
|
|
|
|
) -> Option<impl Iterator<Item = (TextRange, Option<PathResolution>)> + 'a> {
|
|
|
|
Some(self.body_source_map()?.implicit_format_args(format_args)?.iter().map(
|
|
|
|
move |(range, name)| {
|
|
|
|
(
|
|
|
|
*range,
|
|
|
|
resolve_hir_value_path(
|
|
|
|
db,
|
|
|
|
&self.resolver,
|
|
|
|
self.resolver.body_owner(),
|
|
|
|
&Path::from_known_path_with_no_generic(ModPath::from_segments(
|
|
|
|
PathKind::Plain,
|
|
|
|
Some(name.clone()),
|
|
|
|
)),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2022-10-25 07:20:16 -05:00
|
|
|
fn resolve_impl_method_or_trait_def(
|
2022-06-24 06:11:35 -05:00
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
func: FunctionId,
|
2022-10-25 07:20:16 -05:00
|
|
|
substs: Substitution,
|
|
|
|
) -> FunctionId {
|
|
|
|
let owner = match self.resolver.body_owner() {
|
|
|
|
Some(it) => it,
|
|
|
|
None => return func,
|
|
|
|
};
|
2023-03-08 11:28:52 -06:00
|
|
|
let env = db.trait_environment_for_body(owner);
|
2023-07-07 06:37:29 -05:00
|
|
|
db.lookup_impl_method(env, func, substs).0
|
2022-08-05 07:16:36 -05:00
|
|
|
}
|
2022-08-05 07:54:14 -05:00
|
|
|
|
2022-12-04 19:53:11 -06:00
|
|
|
fn resolve_impl_const_or_trait_def(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
const_id: ConstId,
|
|
|
|
subs: Substitution,
|
|
|
|
) -> ConstId {
|
|
|
|
let owner = match self.resolver.body_owner() {
|
|
|
|
Some(it) => it,
|
|
|
|
None => return const_id,
|
|
|
|
};
|
2023-03-08 11:28:52 -06:00
|
|
|
let env = db.trait_environment_for_body(owner);
|
2023-02-03 05:16:25 -06:00
|
|
|
method_resolution::lookup_impl_const(db, env, const_id, subs).0
|
2022-12-04 19:53:11 -06:00
|
|
|
}
|
|
|
|
|
2022-08-05 07:54:14 -05:00
|
|
|
fn lang_trait_fn(
|
|
|
|
&self,
|
|
|
|
db: &dyn HirDatabase,
|
2023-01-21 10:29:07 -06:00
|
|
|
lang_trait: LangItem,
|
2022-08-05 07:54:14 -05:00
|
|
|
method_name: &Name,
|
2022-10-02 08:15:57 -05:00
|
|
|
) -> Option<(TraitId, FunctionId)> {
|
2023-01-21 10:29:07 -06:00
|
|
|
let trait_id = db.lang_item(self.resolver.krate(), lang_trait)?.as_trait()?;
|
2022-10-02 08:15:57 -05:00
|
|
|
let fn_id = db.trait_data(trait_id).method_by_name(method_name)?;
|
|
|
|
Some((trait_id, fn_id))
|
2022-08-05 07:54:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn ty_of_expr(&self, db: &dyn HirDatabase, expr: &ast::Expr) -> Option<&Ty> {
|
2022-12-30 02:05:03 -06:00
|
|
|
self.infer.as_ref()?.type_of_expr.get(self.expr_id(db, expr)?)
|
2022-08-05 07:54:14 -05:00
|
|
|
}
|
2019-04-13 02:49:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn scope_for(
|
|
|
|
scopes: &ExprScopes,
|
|
|
|
source_map: &BodySourceMap,
|
2019-11-28 03:50:26 -06:00
|
|
|
node: InFile<&SyntaxNode>,
|
2019-04-13 02:49:01 -05:00
|
|
|
) -> 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-28 03:50:26 -06:00
|
|
|
.filter_map(|it| source_map.node_expr(InFile::new(node.file_id, &it)))
|
2019-04-13 02:49:01 -05:00
|
|
|
.find_map(|it| scopes.scope_for(it))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn scope_for_offset(
|
2020-04-17 11:04:49 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-04-13 02:49:01 -05:00
|
|
|
scopes: &ExprScopes,
|
|
|
|
source_map: &BodySourceMap,
|
2022-06-27 07:39:44 -05:00
|
|
|
from_file: HirFileId,
|
|
|
|
offset: TextSize,
|
2019-04-13 02:49:01 -05:00
|
|
|
) -> 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)| {
|
2023-09-22 01:08:00 -05:00
|
|
|
let InFile { file_id, value } = source_map.expr_syntax(id).ok()?;
|
2022-06-27 07:39:44 -05:00
|
|
|
if from_file == file_id {
|
2022-07-22 17:50:59 -05:00
|
|
|
return Some((value.text_range(), scope));
|
2019-09-03 03:04:38 -05:00
|
|
|
}
|
2022-01-15 05:12:02 -06:00
|
|
|
|
|
|
|
// FIXME handle attribute expansion
|
2023-12-06 07:36:39 -06:00
|
|
|
let source =
|
|
|
|
iter::successors(file_id.macro_file().map(|it| it.call_node(db.upcast())), |it| {
|
|
|
|
Some(it.file_id.macro_file()?.call_node(db.upcast()))
|
|
|
|
})
|
|
|
|
.find(|it| it.file_id == from_file)
|
|
|
|
.filter(|it| it.value.kind() == SyntaxKind::MACRO_CALL)?;
|
2022-01-15 05:12:02 -06:00
|
|
|
Some((source.value.text_range(), scope))
|
2019-09-02 13:23:19 -05:00
|
|
|
})
|
2022-06-27 07:39:44 -05:00
|
|
|
.filter(|(expr_range, _scope)| expr_range.start() <= offset && offset <= expr_range.end())
|
2022-06-16 03:12:46 -05:00
|
|
|
// find containing scope
|
|
|
|
.min_by_key(|(expr_range, _scope)| expr_range.len())
|
2020-04-17 11:04:49 -05:00
|
|
|
.map(|(expr_range, scope)| {
|
2022-06-27 07:39:44 -05:00
|
|
|
adjust(db, scopes, source_map, expr_range, from_file, offset).unwrap_or(*scope)
|
2019-04-13 02:49:01 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-17 11:04:49 -05:00
|
|
|
// XXX: during completion, cursor might be outside of any particular
|
|
|
|
// expression. Try to figure out the correct scope...
|
|
|
|
fn adjust(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
scopes: &ExprScopes,
|
|
|
|
source_map: &BodySourceMap,
|
|
|
|
expr_range: TextRange,
|
2022-06-27 07:39:44 -05:00
|
|
|
from_file: HirFileId,
|
|
|
|
offset: TextSize,
|
2020-04-17 11:04:49 -05:00
|
|
|
) -> Option<ScopeId> {
|
|
|
|
let child_scopes = scopes
|
|
|
|
.scope_by_expr()
|
|
|
|
.iter()
|
|
|
|
.filter_map(|(id, scope)| {
|
2023-09-22 01:08:00 -05:00
|
|
|
let source = source_map.expr_syntax(id).ok()?;
|
2020-04-17 11:04:49 -05:00
|
|
|
// FIXME: correctly handle macro expansion
|
2022-06-27 07:39:44 -05:00
|
|
|
if source.file_id != from_file {
|
2020-04-17 11:04:49 -05:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let root = source.file_syntax(db.upcast());
|
|
|
|
let node = source.value.to_node(&root);
|
|
|
|
Some((node.syntax().text_range(), scope))
|
|
|
|
})
|
2020-04-24 16:40:41 -05:00
|
|
|
.filter(|&(range, _)| {
|
2022-06-27 07:39:44 -05:00
|
|
|
range.start() <= offset && expr_range.contains_range(range) && range != expr_range
|
2020-04-17 11:04:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
child_scopes
|
2020-04-24 16:40:41 -05:00
|
|
|
.max_by(|&(r1, _), &(r2, _)| {
|
|
|
|
if r1.contains_range(r2) {
|
2020-04-17 11:04:49 -05:00
|
|
|
std::cmp::Ordering::Greater
|
2020-04-24 16:40:41 -05:00
|
|
|
} else if r2.contains_range(r1) {
|
2020-04-17 11:04:49 -05:00
|
|
|
std::cmp::Ordering::Less
|
|
|
|
} else {
|
|
|
|
r1.start().cmp(&r2.start())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(|(_ptr, scope)| *scope)
|
|
|
|
}
|
|
|
|
|
2021-01-29 08:59:52 -06:00
|
|
|
#[inline]
|
2020-02-18 11:35:10 -06:00
|
|
|
pub(crate) fn resolve_hir_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-02-18 11:35:10 -06:00
|
|
|
resolver: &Resolver,
|
2020-08-12 05:21:03 -05:00
|
|
|
path: &Path,
|
2020-02-18 11:35:10 -06:00
|
|
|
) -> Option<PathResolution> {
|
2021-01-29 08:59:52 -06:00
|
|
|
resolve_hir_path_(db, resolver, path, false)
|
|
|
|
}
|
|
|
|
|
2021-10-19 06:40:27 -05:00
|
|
|
#[inline]
|
2023-05-11 01:52:13 -05:00
|
|
|
pub(crate) fn resolve_hir_path_as_attr_macro(
|
2021-10-19 06:40:27 -05:00
|
|
|
db: &dyn HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
path: &Path,
|
2022-03-08 16:51:48 -06:00
|
|
|
) -> Option<Macro> {
|
2023-05-11 01:52:13 -05:00
|
|
|
resolver
|
|
|
|
.resolve_path_as_macro(db.upcast(), path.mod_path()?, Some(MacroSubNs::Attr))
|
2023-08-17 03:52:13 -05:00
|
|
|
.map(|(it, _)| it)
|
2023-05-11 01:52:13 -05:00
|
|
|
.map(Into::into)
|
2021-10-19 06:40:27 -05:00
|
|
|
}
|
|
|
|
|
2021-01-29 08:59:52 -06:00
|
|
|
fn resolve_hir_path_(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
path: &Path,
|
|
|
|
prefer_value_ns: bool,
|
|
|
|
) -> Option<PathResolution> {
|
|
|
|
let types = || {
|
2021-04-01 14:52:07 -05:00
|
|
|
let (ty, unresolved) = match path.type_anchor() {
|
|
|
|
Some(type_ref) => {
|
2023-12-14 07:11:12 -06:00
|
|
|
let (_, res) =
|
|
|
|
TyLoweringContext::new_maybe_unowned(db, resolver, resolver.type_owner())
|
|
|
|
.lower_ty_ext(type_ref);
|
2021-04-01 14:52:07 -05:00
|
|
|
res.map(|ty_ns| (ty_ns, path.segments().first()))
|
|
|
|
}
|
|
|
|
None => {
|
2023-08-17 03:52:13 -05:00
|
|
|
let (ty, remaining_idx, _) = resolver.resolve_path_in_type_ns(db.upcast(), path)?;
|
2023-02-26 04:04:16 -06:00
|
|
|
match remaining_idx {
|
|
|
|
Some(remaining_idx) => {
|
|
|
|
if remaining_idx + 1 == path.segments().len() {
|
2022-04-24 07:51:48 -05:00
|
|
|
Some((ty, path.segments().last()))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2023-02-26 04:04:16 -06:00
|
|
|
None => Some((ty, None)),
|
2021-04-01 14:52:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}?;
|
2021-12-01 02:44:30 -06:00
|
|
|
|
2021-12-01 03:23:42 -06:00
|
|
|
// If we are in a TypeNs for a Trait, and we have an unresolved name, try to resolve it as a type
|
|
|
|
// within the trait's associated types.
|
|
|
|
if let (Some(unresolved), &TypeNs::TraitId(trait_id)) = (&unresolved, &ty) {
|
|
|
|
if let Some(type_alias_id) =
|
2022-03-12 06:04:13 -06:00
|
|
|
db.trait_data(trait_id).associated_type_by_name(unresolved.name)
|
2021-12-01 02:44:30 -06:00
|
|
|
{
|
2021-12-01 03:23:42 -06:00
|
|
|
return Some(PathResolution::Def(ModuleDefId::from(type_alias_id).into()));
|
2021-12-01 02:44:30 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 11:01:18 -05:00
|
|
|
let res = match ty {
|
2020-03-13 10:05:46 -05:00
|
|
|
TypeNs::SelfType(it) => PathResolution::SelfType(it.into()),
|
2022-03-04 03:00:53 -06:00
|
|
|
TypeNs::GenericParam(id) => PathResolution::TypeParam(id.into()),
|
2020-03-13 10:05:46 -05:00
|
|
|
TypeNs::AdtSelfType(it) | TypeNs::AdtId(it) => {
|
|
|
|
PathResolution::Def(Adt::from(it).into())
|
2020-02-18 11:35:10 -06:00
|
|
|
}
|
2020-12-20 01:05:24 -06:00
|
|
|
TypeNs::EnumVariantId(it) => PathResolution::Def(Variant::from(it).into()),
|
2020-03-13 10:05:46 -05:00
|
|
|
TypeNs::TypeAliasId(it) => PathResolution::Def(TypeAlias::from(it).into()),
|
2021-02-11 12:52:33 -06:00
|
|
|
TypeNs::BuiltinType(it) => PathResolution::Def(BuiltinType::from(it).into()),
|
2020-03-13 10:05:46 -05:00
|
|
|
TypeNs::TraitId(it) => PathResolution::Def(Trait::from(it).into()),
|
2023-03-03 09:24:07 -06:00
|
|
|
TypeNs::TraitAliasId(it) => PathResolution::Def(TraitAlias::from(it).into()),
|
2021-04-01 11:01:18 -05:00
|
|
|
};
|
2021-04-01 14:52:07 -05:00
|
|
|
match unresolved {
|
2022-02-03 05:43:15 -06:00
|
|
|
Some(unresolved) => resolver
|
|
|
|
.generic_def()
|
|
|
|
.and_then(|def| {
|
|
|
|
hir_ty::associated_type_shorthand_candidates(
|
|
|
|
db,
|
|
|
|
def,
|
|
|
|
res.in_type_ns()?,
|
2022-12-30 02:30:23 -06:00
|
|
|
|name, id| (name == unresolved.name).then_some(id),
|
2022-02-03 05:43:15 -06:00
|
|
|
)
|
2021-04-01 11:01:18 -05:00
|
|
|
})
|
|
|
|
.map(TypeAlias::from)
|
|
|
|
.map(Into::into)
|
2021-04-01 14:52:07 -05:00
|
|
|
.map(PathResolution::Def),
|
2021-04-01 11:01:18 -05:00
|
|
|
None => Some(res),
|
|
|
|
}
|
2021-01-29 08:59:52 -06:00
|
|
|
};
|
2020-05-15 16:23:49 -05:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
let body_owner = resolver.body_owner();
|
2023-12-05 08:42:39 -06:00
|
|
|
let values = || resolve_hir_value_path(db, resolver, body_owner, path);
|
2020-02-18 11:35:10 -06:00
|
|
|
|
2021-01-29 08:59:52 -06:00
|
|
|
let items = || {
|
|
|
|
resolver
|
2023-03-08 11:28:52 -06:00
|
|
|
.resolve_module_path_in_items(db.upcast(), path.mod_path()?)
|
2021-01-29 08:59:52 -06:00
|
|
|
.take_types()
|
|
|
|
.map(|it| PathResolution::Def(it.into()))
|
|
|
|
};
|
2020-05-15 16:23:49 -05:00
|
|
|
|
2021-01-29 08:59:52 -06:00
|
|
|
let macros = || {
|
2020-02-18 11:35:10 -06:00
|
|
|
resolver
|
2023-05-11 01:52:13 -05:00
|
|
|
.resolve_path_as_macro(db.upcast(), path.mod_path()?, None)
|
2023-08-17 03:52:13 -05:00
|
|
|
.map(|(def, _)| PathResolution::Def(ModuleDef::Macro(def.into())))
|
2021-01-29 08:59:52 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
if prefer_value_ns { values().or_else(types) } else { types().or_else(values) }
|
|
|
|
.or_else(items)
|
|
|
|
.or_else(macros)
|
2020-02-18 11:35:10 -06:00
|
|
|
}
|
2020-05-15 16:23:49 -05:00
|
|
|
|
2023-12-05 08:42:39 -06:00
|
|
|
fn resolve_hir_value_path(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
resolver: &Resolver,
|
|
|
|
body_owner: Option<DefWithBodyId>,
|
|
|
|
path: &Path,
|
|
|
|
) -> Option<PathResolution> {
|
|
|
|
resolver.resolve_path_in_value_ns_fully(db.upcast(), path).and_then(|val| {
|
|
|
|
let res = match val {
|
|
|
|
ValueNs::LocalBinding(binding_id) => {
|
|
|
|
let var = Local { parent: body_owner?, binding_id };
|
|
|
|
PathResolution::Local(var)
|
|
|
|
}
|
|
|
|
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(Variant::from(it).into()),
|
|
|
|
ValueNs::ImplSelf(impl_id) => PathResolution::SelfType(impl_id.into()),
|
|
|
|
ValueNs::GenericParam(id) => PathResolution::ConstParam(id.into()),
|
|
|
|
};
|
|
|
|
Some(res)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-05-15 16:23:49 -05:00
|
|
|
/// Resolves a path where we know it is a qualifier of another path.
|
|
|
|
///
|
|
|
|
/// For example, if we have:
|
|
|
|
/// ```
|
|
|
|
/// mod my {
|
|
|
|
/// pub mod foo {
|
|
|
|
/// struct Bar;
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// pub fn foo() {}
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// then we know that `foo` in `my::foo::Bar` refers to the module, not the function.
|
2020-08-15 11:50:41 -05:00
|
|
|
fn resolve_hir_path_qualifier(
|
2020-05-15 16:23:49 -05:00
|
|
|
db: &dyn HirDatabase,
|
|
|
|
resolver: &Resolver,
|
2020-08-12 05:21:03 -05:00
|
|
|
path: &Path,
|
2020-05-15 16:23:49 -05:00
|
|
|
) -> Option<PathResolution> {
|
2023-12-11 05:59:08 -06:00
|
|
|
(|| {
|
|
|
|
let (ty, unresolved) = match path.type_anchor() {
|
|
|
|
Some(type_ref) => {
|
2023-12-15 07:44:09 -06:00
|
|
|
let (_, res) =
|
|
|
|
TyLoweringContext::new_maybe_unowned(db, resolver, resolver.type_owner())
|
|
|
|
.lower_ty_ext(type_ref);
|
2023-12-11 05:59:08 -06:00
|
|
|
res.map(|ty_ns| (ty_ns, path.segments().first()))
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
let (ty, remaining_idx, _) = resolver.resolve_path_in_type_ns(db.upcast(), path)?;
|
|
|
|
match remaining_idx {
|
|
|
|
Some(remaining_idx) => {
|
|
|
|
if remaining_idx + 1 == path.segments().len() {
|
|
|
|
Some((ty, path.segments().last()))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => Some((ty, None)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}?;
|
|
|
|
|
|
|
|
// If we are in a TypeNs for a Trait, and we have an unresolved name, try to resolve it as a type
|
|
|
|
// within the trait's associated types.
|
|
|
|
if let (Some(unresolved), &TypeNs::TraitId(trait_id)) = (&unresolved, &ty) {
|
|
|
|
if let Some(type_alias_id) =
|
|
|
|
db.trait_data(trait_id).associated_type_by_name(unresolved.name)
|
|
|
|
{
|
|
|
|
return Some(PathResolution::Def(ModuleDefId::from(type_alias_id).into()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let res = match ty {
|
2022-04-06 12:38:45 -05:00
|
|
|
TypeNs::SelfType(it) => PathResolution::SelfType(it.into()),
|
|
|
|
TypeNs::GenericParam(id) => PathResolution::TypeParam(id.into()),
|
|
|
|
TypeNs::AdtSelfType(it) | TypeNs::AdtId(it) => {
|
|
|
|
PathResolution::Def(Adt::from(it).into())
|
|
|
|
}
|
|
|
|
TypeNs::EnumVariantId(it) => PathResolution::Def(Variant::from(it).into()),
|
|
|
|
TypeNs::TypeAliasId(it) => PathResolution::Def(TypeAlias::from(it).into()),
|
|
|
|
TypeNs::BuiltinType(it) => PathResolution::Def(BuiltinType::from(it).into()),
|
|
|
|
TypeNs::TraitId(it) => PathResolution::Def(Trait::from(it).into()),
|
2023-03-03 09:24:07 -06:00
|
|
|
TypeNs::TraitAliasId(it) => PathResolution::Def(TraitAlias::from(it).into()),
|
2023-12-11 05:59:08 -06:00
|
|
|
};
|
|
|
|
match unresolved {
|
|
|
|
Some(unresolved) => resolver
|
|
|
|
.generic_def()
|
|
|
|
.and_then(|def| {
|
|
|
|
hir_ty::associated_type_shorthand_candidates(
|
|
|
|
db,
|
|
|
|
def,
|
|
|
|
res.in_type_ns()?,
|
|
|
|
|name, id| (name == unresolved.name).then_some(id),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.map(TypeAlias::from)
|
|
|
|
.map(Into::into)
|
|
|
|
.map(PathResolution::Def),
|
|
|
|
None => Some(res),
|
|
|
|
}
|
|
|
|
})()
|
|
|
|
.or_else(|| {
|
|
|
|
resolver
|
|
|
|
.resolve_module_path_in_items(db.upcast(), path.mod_path()?)
|
|
|
|
.take_types()
|
|
|
|
.map(|it| PathResolution::Def(it.into()))
|
|
|
|
})
|
2020-05-15 16:23:49 -05:00
|
|
|
}
|