Files
rust/crates/ra_hir/src/expr.rs

45 lines
1.2 KiB
Rust
Raw Normal View History

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