rust-analyzer/crates/ra_hir/src/expr.rs

45 lines
1.2 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-09-03 05:56:36 +00:00
pub(crate) mod validation;
2019-01-05 15:32:07 +00:00
2019-11-12 15:46:57 +00:00
use std::sync::Arc;
2019-01-05 15:32:07 +00:00
2019-11-14 14:37:22 +00:00
use ra_syntax::AstPtr;
2019-01-05 15:32:07 +00:00
2019-11-14 14:37:22 +00:00
use crate::{db::HirDatabase, DefWithBody, HasBody, Resolver};
2019-01-05 15:32:07 +00:00
2019-11-12 15:46:57 +00:00
pub use hir_def::{
2019-11-14 08:56:13 +00:00
body::{
scope::{ExprScopes, ScopeEntry, ScopeId},
Body, BodySourceMap, ExprPtr, ExprSource, PatPtr, PatSource,
},
2019-11-12 15:46:57 +00:00
expr::{
ArithOp, Array, BinaryOp, BindingAnnotation, CmpOp, Expr, ExprId, Literal, LogicOp,
MatchArm, Ordering, Pat, PatId, RecordFieldPat, RecordLitField, Statement, UnaryOp,
},
2019-11-12 12:09:25 +00:00
};
2019-09-03 05:56:36 +00:00
2019-01-23 22:08:41 +00:00
// needs arbitrary_self_types to be a method... or maybe move to the def?
2019-04-13 08:02:23 +00:00
pub(crate) fn resolver_for_expr(
db: &impl HirDatabase,
2019-11-12 13:46:27 +00:00
owner: DefWithBody,
2019-04-13 08:02:23 +00:00
expr_id: ExprId,
) -> Resolver {
2019-11-14 14:37:22 +00:00
let scopes = owner.expr_scopes(db);
2019-11-12 13:46:27 +00:00
resolver_for_scope(db, owner, scopes.scope_for(expr_id))
2019-01-27 19:50:57 +00:00
}
2019-04-13 08:02:23 +00:00
pub(crate) fn resolver_for_scope(
2019-01-27 19:50:57 +00:00
db: &impl HirDatabase,
2019-11-12 13:46:27 +00:00
owner: DefWithBody,
2019-11-14 08:56:13 +00:00
scope_id: Option<ScopeId>,
2019-01-27 16:23:49 +00:00
) -> Resolver {
2019-11-12 13:46:27 +00:00
let mut r = owner.resolver(db);
2019-11-14 14:37:22 +00:00
let scopes = owner.expr_scopes(db);
let scope_chain = scopes.scope_chain(scope_id).collect::<Vec<_>>();
2019-01-23 22:08:41 +00:00
for scope in scope_chain.into_iter().rev() {
2019-11-15 09:00:36 +00:00
r = r.push_expr_scope(owner, Arc::clone(&scopes), scope);
2019-01-23 22:08:41 +00:00
}
r
}