2019-11-24 11:39:48 -06:00
|
|
|
//! Defines `Body`: a lowered representation of bodies of functions, statics and
|
|
|
|
//! consts.
|
2019-11-12 06:09:25 -06:00
|
|
|
mod lower;
|
2020-10-23 12:27:04 -05:00
|
|
|
mod diagnostics;
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2019-11-14 02:56:13 -06:00
|
|
|
pub mod scope;
|
2019-11-12 09:46:57 -06:00
|
|
|
|
2019-12-20 04:19:09 -06:00
|
|
|
use std::{mem, ops::Index, sync::Arc};
|
2019-11-12 09:46:57 -06:00
|
|
|
|
2020-08-12 09:22:05 -05:00
|
|
|
use arena::{map::ArenaMap, Arena};
|
2020-08-13 09:25:38 -05:00
|
|
|
use base_db::CrateId;
|
2020-08-13 03:32:19 -05:00
|
|
|
use cfg::CfgOptions;
|
2019-12-20 04:19:09 -06:00
|
|
|
use drop_bomb::DropBomb;
|
2019-12-03 10:07:56 -06:00
|
|
|
use either::Either;
|
2020-10-23 12:27:04 -05:00
|
|
|
use hir_expand::{
|
2020-11-30 13:26:35 -06:00
|
|
|
ast_id_map::AstIdMap, diagnostics::DiagnosticSink, hygiene::Hygiene, AstId, ExpandResult,
|
|
|
|
HirFileId, InFile, MacroDefId,
|
2020-10-23 12:27:04 -05:00
|
|
|
};
|
2019-11-12 09:46:57 -06:00
|
|
|
use rustc_hash::FxHashMap;
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{ast, AstNode, AstPtr};
|
2020-07-11 11:35:35 -05:00
|
|
|
use test_utils::mark;
|
2019-11-12 09:46:57 -06:00
|
|
|
|
2020-04-30 05:20:13 -05:00
|
|
|
pub(crate) use lower::LowerCtx;
|
|
|
|
|
2019-11-12 09:46:57 -06:00
|
|
|
use crate::{
|
2020-04-11 10:00:31 -05:00
|
|
|
attr::Attrs,
|
2019-11-23 05:44:43 -06:00
|
|
|
db::DefDatabase,
|
2019-11-12 09:46:57 -06:00
|
|
|
expr::{Expr, ExprId, Pat, PatId},
|
2019-12-20 08:43:45 -06:00
|
|
|
item_scope::BuiltinShadowMode,
|
2019-12-22 08:49:39 -06:00
|
|
|
item_scope::ItemScope,
|
2019-12-20 08:43:45 -06:00
|
|
|
nameres::CrateDefMap,
|
2019-12-18 10:41:33 -06:00
|
|
|
path::{ModPath, Path},
|
2019-11-28 09:05:28 -06:00
|
|
|
src::HasSource,
|
2020-02-16 22:57:24 -06:00
|
|
|
AsMacroCall, DefWithBodyId, HasModule, Lookup, ModuleId,
|
2019-11-12 09:46:57 -06:00
|
|
|
};
|
2020-04-11 10:52:26 -05:00
|
|
|
|
2020-05-21 03:48:42 -05:00
|
|
|
/// A subset of Expander that only deals with cfg attributes. We only need it to
|
2020-04-11 10:52:26 -05:00
|
|
|
/// avoid cyclic queries in crate def map during enum processing.
|
|
|
|
pub(crate) struct CfgExpander {
|
|
|
|
cfg_options: CfgOptions,
|
|
|
|
hygiene: Hygiene,
|
|
|
|
}
|
2019-11-12 09:46:57 -06:00
|
|
|
|
2019-12-23 07:47:11 -06:00
|
|
|
pub(crate) struct Expander {
|
2020-04-11 10:52:26 -05:00
|
|
|
cfg_expander: CfgExpander,
|
2019-11-12 09:46:57 -06:00
|
|
|
crate_def_map: Arc<CrateDefMap>,
|
2019-11-14 00:37:33 -06:00
|
|
|
current_file_id: HirFileId,
|
2019-12-20 04:19:09 -06:00
|
|
|
ast_id_map: Arc<AstIdMap>,
|
2019-11-12 09:46:57 -06:00
|
|
|
module: ModuleId,
|
2020-07-11 11:35:35 -05:00
|
|
|
recursion_limit: usize,
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2020-07-11 13:01:56 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
const EXPANSION_RECURSION_LIMIT: usize = 32;
|
|
|
|
|
|
|
|
#[cfg(not(test))]
|
|
|
|
const EXPANSION_RECURSION_LIMIT: usize = 128;
|
|
|
|
|
2020-04-11 10:52:26 -05:00
|
|
|
impl CfgExpander {
|
|
|
|
pub(crate) fn new(
|
|
|
|
db: &dyn DefDatabase,
|
|
|
|
current_file_id: HirFileId,
|
|
|
|
krate: CrateId,
|
|
|
|
) -> CfgExpander {
|
|
|
|
let hygiene = Hygiene::new(db.upcast(), current_file_id);
|
|
|
|
let cfg_options = db.crate_graph()[krate].cfg_options.clone();
|
|
|
|
CfgExpander { cfg_options, hygiene }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn parse_attrs(&self, owner: &dyn ast::AttrsOwner) -> Attrs {
|
|
|
|
Attrs::new(owner, &self.hygiene)
|
|
|
|
}
|
|
|
|
|
2020-05-05 02:34:07 -05:00
|
|
|
pub(crate) fn is_cfg_enabled(&self, owner: &dyn ast::AttrsOwner) -> bool {
|
|
|
|
let attrs = self.parse_attrs(owner);
|
2020-04-11 10:52:26 -05:00
|
|
|
attrs.is_cfg_enabled(&self.cfg_options)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 00:38:25 -06:00
|
|
|
impl Expander {
|
2019-12-23 07:47:11 -06:00
|
|
|
pub(crate) fn new(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn DefDatabase,
|
2019-12-23 07:47:11 -06:00
|
|
|
current_file_id: HirFileId,
|
|
|
|
module: ModuleId,
|
|
|
|
) -> Expander {
|
2020-04-11 10:52:26 -05:00
|
|
|
let cfg_expander = CfgExpander::new(db, current_file_id, module.krate);
|
2019-11-14 00:37:33 -06:00
|
|
|
let crate_def_map = db.crate_def_map(module.krate);
|
2019-12-20 04:19:09 -06:00
|
|
|
let ast_id_map = db.ast_id_map(current_file_id);
|
2020-04-11 10:09:50 -05:00
|
|
|
Expander {
|
2020-04-11 10:52:26 -05:00
|
|
|
cfg_expander,
|
2020-04-11 10:09:50 -05:00
|
|
|
crate_def_map,
|
|
|
|
current_file_id,
|
|
|
|
ast_id_map,
|
|
|
|
module,
|
2020-07-11 11:35:35 -05:00
|
|
|
recursion_limit: 0,
|
2020-04-11 10:09:50 -05:00
|
|
|
}
|
2019-11-14 00:52:03 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn enter_expand<T: ast::AstNode>(
|
2019-11-14 01:04:39 -06:00
|
|
|
&mut self,
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn DefDatabase,
|
2020-03-14 01:25:30 -05:00
|
|
|
local_scope: Option<&ItemScope>,
|
2019-11-14 01:04:39 -06:00
|
|
|
macro_call: ast::MacroCall,
|
2020-11-30 13:26:35 -06:00
|
|
|
) -> ExpandResult<Option<(Mark, T)>> {
|
2020-12-09 05:26:33 -06:00
|
|
|
if self.recursion_limit + 1 > EXPANSION_RECURSION_LIMIT {
|
2020-07-11 11:35:35 -05:00
|
|
|
mark::hit!(your_stack_belongs_to_me);
|
2020-11-30 13:26:35 -06:00
|
|
|
return ExpandResult::str_err("reached recursion limit during macro expansion".into());
|
2020-03-21 10:55:20 -05:00
|
|
|
}
|
|
|
|
|
2020-02-16 22:57:24 -06:00
|
|
|
let macro_call = InFile::new(self.current_file_id, ¯o_call);
|
|
|
|
|
2020-10-17 16:35:21 -05:00
|
|
|
let resolver = |path: ModPath| -> Option<MacroDefId> {
|
2020-03-14 01:25:30 -05:00
|
|
|
if let Some(local_scope) = local_scope {
|
|
|
|
if let Some(def) = path.as_ident().and_then(|n| local_scope.get_legacy_macro(n)) {
|
|
|
|
return Some(def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.resolve_path_as_macro(db, &path)
|
2020-10-17 16:35:21 -05:00
|
|
|
};
|
|
|
|
|
2020-12-02 09:52:14 -06:00
|
|
|
let mut err = None;
|
|
|
|
let call_id =
|
|
|
|
macro_call.as_call_id_with_errors(db, self.crate_def_map.krate, resolver, &mut |e| {
|
|
|
|
err.get_or_insert(e);
|
|
|
|
});
|
|
|
|
let call_id = match call_id {
|
2020-11-30 13:26:35 -06:00
|
|
|
Some(it) => it,
|
|
|
|
None => {
|
2020-12-02 09:52:14 -06:00
|
|
|
if err.is_none() {
|
|
|
|
eprintln!("no error despite `as_call_id_with_errors` returning `None`");
|
|
|
|
}
|
|
|
|
return ExpandResult { value: None, err };
|
2020-11-30 13:26:35 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-12-02 09:52:14 -06:00
|
|
|
if err.is_none() {
|
|
|
|
err = db.macro_expand_error(call_id);
|
|
|
|
}
|
2020-11-30 13:26:35 -06:00
|
|
|
|
|
|
|
let file_id = call_id.as_file();
|
|
|
|
|
|
|
|
let raw_node = match db.parse_or_expand(file_id) {
|
|
|
|
Some(it) => it,
|
|
|
|
None => {
|
|
|
|
// Only `None` if the macro expansion produced no usable AST.
|
|
|
|
if err.is_none() {
|
|
|
|
log::warn!("no error despite `parse_or_expand` failing");
|
2019-11-14 01:04:39 -06:00
|
|
|
}
|
2020-11-30 13:26:35 -06:00
|
|
|
|
|
|
|
return ExpandResult::only_err(err.unwrap_or_else(|| {
|
|
|
|
mbe::ExpandError::Other("failed to parse macro invocation".into())
|
|
|
|
}));
|
2019-11-14 01:04:39 -06:00
|
|
|
}
|
2020-11-30 13:26:35 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let node = match T::cast(raw_node) {
|
|
|
|
Some(it) => it,
|
|
|
|
None => {
|
|
|
|
// This can happen without being an error, so only forward previous errors.
|
|
|
|
return ExpandResult { value: None, err };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
log::debug!("macro expansion {:#?}", node.syntax());
|
|
|
|
|
2020-12-09 05:26:33 -06:00
|
|
|
self.recursion_limit += 1;
|
2020-11-30 13:26:35 -06:00
|
|
|
let mark = Mark {
|
|
|
|
file_id: self.current_file_id,
|
|
|
|
ast_id_map: mem::take(&mut self.ast_id_map),
|
|
|
|
bomb: DropBomb::new("expansion mark dropped"),
|
|
|
|
};
|
|
|
|
self.cfg_expander.hygiene = Hygiene::new(db.upcast(), file_id);
|
|
|
|
self.current_file_id = file_id;
|
|
|
|
self.ast_id_map = db.ast_id_map(file_id);
|
2019-11-14 01:04:39 -06:00
|
|
|
|
2020-11-30 13:26:35 -06:00
|
|
|
ExpandResult { value: Some((mark, node)), err }
|
2019-11-14 01:04:39 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn exit(&mut self, db: &dyn DefDatabase, mut mark: Mark) {
|
2020-04-11 10:52:26 -05:00
|
|
|
self.cfg_expander.hygiene = Hygiene::new(db.upcast(), mark.file_id);
|
2019-11-14 00:52:03 -06:00
|
|
|
self.current_file_id = mark.file_id;
|
2019-12-20 04:19:09 -06:00
|
|
|
self.ast_id_map = mem::take(&mut mark.ast_id_map);
|
2020-07-11 11:35:35 -05:00
|
|
|
self.recursion_limit -= 1;
|
2019-12-20 04:19:09 -06:00
|
|
|
mark.bomb.defuse();
|
2019-11-14 00:41:46 -06:00
|
|
|
}
|
|
|
|
|
2019-12-23 07:47:11 -06:00
|
|
|
pub(crate) fn to_source<T>(&self, value: T) -> InFile<T> {
|
2019-11-28 03:50:26 -06:00
|
|
|
InFile { file_id: self.current_file_id, value }
|
2019-11-14 00:43:59 -06:00
|
|
|
}
|
|
|
|
|
2020-10-23 12:27:04 -05:00
|
|
|
pub(crate) fn parse_attrs(&self, owner: &dyn ast::AttrsOwner) -> Attrs {
|
|
|
|
self.cfg_expander.parse_attrs(owner)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn cfg_options(&self) -> &CfgOptions {
|
|
|
|
&self.cfg_expander.cfg_options
|
2020-04-11 10:09:50 -05:00
|
|
|
}
|
|
|
|
|
2019-11-14 00:58:39 -06:00
|
|
|
fn parse_path(&mut self, path: ast::Path) -> Option<Path> {
|
2020-04-11 10:52:26 -05:00
|
|
|
Path::from_src(path, &self.cfg_expander.hygiene)
|
2019-11-14 00:58:39 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn resolve_path_as_macro(&self, db: &dyn DefDatabase, path: &ModPath) -> Option<MacroDefId> {
|
2019-11-30 09:29:21 -06:00
|
|
|
self.crate_def_map
|
2019-12-18 10:41:33 -06:00
|
|
|
.resolve_path(db, self.module.local_id, path, BuiltinShadowMode::Other)
|
2019-11-30 09:29:21 -06:00
|
|
|
.0
|
|
|
|
.take_macros()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
2019-12-20 04:19:09 -06:00
|
|
|
|
|
|
|
fn ast_id<N: AstNode>(&self, item: &N) -> AstId<N> {
|
|
|
|
let file_local_id = self.ast_id_map.ast_id(item);
|
|
|
|
AstId::new(self.current_file_id, file_local_id)
|
|
|
|
}
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2019-12-23 07:47:11 -06:00
|
|
|
pub(crate) struct Mark {
|
2019-11-14 00:52:03 -06:00
|
|
|
file_id: HirFileId,
|
2019-12-20 04:19:09 -06:00
|
|
|
ast_id_map: Arc<AstIdMap>,
|
|
|
|
bomb: DropBomb,
|
2019-11-14 00:52:03 -06:00
|
|
|
}
|
|
|
|
|
2019-11-12 09:46:57 -06:00
|
|
|
/// The body of an item (function, const etc.).
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
pub struct Body {
|
2020-03-19 10:00:11 -05:00
|
|
|
pub exprs: Arena<Expr>,
|
|
|
|
pub pats: Arena<Pat>,
|
2019-11-12 09:46:57 -06:00
|
|
|
/// The patterns for the function's parameters. While the parameter types are
|
|
|
|
/// part of the function signature, the patterns are not (they don't change
|
|
|
|
/// the external type of the function).
|
|
|
|
///
|
|
|
|
/// If this `Body` is for the body of a constant, this will just be
|
|
|
|
/// empty.
|
2019-11-24 09:48:29 -06:00
|
|
|
pub params: Vec<PatId>,
|
2019-11-12 09:46:57 -06:00
|
|
|
/// The `ExprId` of the actual body expression.
|
2019-11-24 09:48:29 -06:00
|
|
|
pub body_expr: ExprId,
|
2019-12-22 08:49:39 -06:00
|
|
|
pub item_scope: ItemScope,
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2020-04-11 12:25:33 -05:00
|
|
|
pub type ExprPtr = AstPtr<ast::Expr>;
|
2019-11-28 03:50:26 -06:00
|
|
|
pub type ExprSource = InFile<ExprPtr>;
|
2019-11-12 09:46:57 -06:00
|
|
|
|
|
|
|
pub type PatPtr = Either<AstPtr<ast::Pat>, AstPtr<ast::SelfParam>>;
|
2019-11-28 03:50:26 -06:00
|
|
|
pub type PatSource = InFile<PatPtr>;
|
2019-11-12 09:46:57 -06:00
|
|
|
|
|
|
|
/// An item body together with the mapping from syntax nodes to HIR expression
|
|
|
|
/// IDs. This is needed to go from e.g. a position in a file to the HIR
|
|
|
|
/// expression containing it; but for type inference etc., we want to operate on
|
|
|
|
/// a structure that is agnostic to the actual positions of expressions in the
|
|
|
|
/// file, so that we don't recompute types whenever some whitespace is typed.
|
|
|
|
///
|
|
|
|
/// One complication here is that, due to macro expansion, a single `Body` might
|
|
|
|
/// be spread across several files. So, for each ExprId and PatId, we record
|
|
|
|
/// both the HirFileId and the position inside the file. However, we only store
|
|
|
|
/// AST -> ExprId mapping for non-macro files, as it is not clear how to handle
|
|
|
|
/// this properly for macros.
|
|
|
|
#[derive(Default, Debug, Eq, PartialEq)]
|
|
|
|
pub struct BodySourceMap {
|
2019-11-14 01:30:30 -06:00
|
|
|
expr_map: FxHashMap<ExprSource, ExprId>,
|
2020-03-06 08:11:05 -06:00
|
|
|
expr_map_back: ArenaMap<ExprId, Result<ExprSource, SyntheticSyntax>>,
|
2019-11-14 01:30:30 -06:00
|
|
|
pat_map: FxHashMap<PatSource, PatId>,
|
2020-03-06 08:17:48 -06:00
|
|
|
pat_map_back: ArenaMap<PatId, Result<PatSource, SyntheticSyntax>>,
|
2020-07-30 09:21:30 -05:00
|
|
|
field_map: FxHashMap<(ExprId, usize), InFile<AstPtr<ast::RecordExprField>>>,
|
2019-12-23 07:47:11 -06:00
|
|
|
expansions: FxHashMap<InFile<AstPtr<ast::MacroCall>>, HirFileId>,
|
2020-10-23 12:27:04 -05:00
|
|
|
|
|
|
|
/// Diagnostics accumulated during body lowering. These contain `AstPtr`s and so are stored in
|
|
|
|
/// the source map (since they're just as volatile).
|
|
|
|
diagnostics: Vec<diagnostics::BodyDiagnostic>,
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2020-03-06 08:11:05 -06:00
|
|
|
#[derive(Default, Debug, Eq, PartialEq, Clone, Copy)]
|
2020-03-06 07:44:44 -06:00
|
|
|
pub struct SyntheticSyntax;
|
|
|
|
|
2019-11-12 09:46:57 -06:00
|
|
|
impl Body {
|
2019-11-14 08:37:22 -06:00
|
|
|
pub(crate) fn body_with_source_map_query(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn DefDatabase,
|
2019-11-14 08:37:22 -06:00
|
|
|
def: DefWithBodyId,
|
|
|
|
) -> (Arc<Body>, Arc<BodySourceMap>) {
|
2020-08-12 09:32:36 -05:00
|
|
|
let _p = profile::span("body_with_source_map_query");
|
2019-11-14 08:37:22 -06:00
|
|
|
let mut params = None;
|
|
|
|
|
|
|
|
let (file_id, module, body) = match def {
|
|
|
|
DefWithBodyId::FunctionId(f) => {
|
2019-11-20 07:03:59 -06:00
|
|
|
let f = f.lookup(db);
|
2019-11-14 08:37:22 -06:00
|
|
|
let src = f.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
params = src.value.param_list();
|
|
|
|
(src.file_id, f.module(db), src.value.body().map(ast::Expr::from))
|
2019-11-14 08:37:22 -06:00
|
|
|
}
|
|
|
|
DefWithBodyId::ConstId(c) => {
|
2019-11-20 09:00:01 -06:00
|
|
|
let c = c.lookup(db);
|
2019-11-14 08:37:22 -06:00
|
|
|
let src = c.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
(src.file_id, c.module(db), src.value.body())
|
2019-11-14 08:37:22 -06:00
|
|
|
}
|
|
|
|
DefWithBodyId::StaticId(s) => {
|
2019-11-24 06:13:56 -06:00
|
|
|
let s = s.lookup(db);
|
2019-11-14 08:37:22 -06:00
|
|
|
let src = s.source(db);
|
2019-11-20 00:40:36 -06:00
|
|
|
(src.file_id, s.module(db), src.value.body())
|
2019-11-14 08:37:22 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
let expander = Expander::new(db, file_id, module);
|
2019-12-20 04:19:09 -06:00
|
|
|
let (body, source_map) = Body::new(db, def, expander, params, body);
|
2019-11-14 08:37:22 -06:00
|
|
|
(Arc::new(body), Arc::new(source_map))
|
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn body_query(db: &dyn DefDatabase, def: DefWithBodyId) -> Arc<Body> {
|
2019-11-14 08:37:22 -06:00
|
|
|
db.body_with_source_map(def).0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn DefDatabase,
|
2019-12-20 04:19:09 -06:00
|
|
|
def: DefWithBodyId,
|
2019-11-14 00:38:25 -06:00
|
|
|
expander: Expander,
|
2019-11-12 09:46:57 -06:00
|
|
|
params: Option<ast::ParamList>,
|
|
|
|
body: Option<ast::Expr>,
|
|
|
|
) -> (Body, BodySourceMap) {
|
2019-12-20 04:19:09 -06:00
|
|
|
lower::lower(db, def, expander, params, body)
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Index<ExprId> for Body {
|
|
|
|
type Output = Expr;
|
|
|
|
|
|
|
|
fn index(&self, expr: ExprId) -> &Expr {
|
|
|
|
&self.exprs[expr]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Index<PatId> for Body {
|
|
|
|
type Output = Pat;
|
|
|
|
|
|
|
|
fn index(&self, pat: PatId) -> &Pat {
|
|
|
|
&self.pats[pat]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BodySourceMap {
|
2020-03-06 07:44:44 -06:00
|
|
|
pub fn expr_syntax(&self, expr: ExprId) -> Result<ExprSource, SyntheticSyntax> {
|
2020-04-10 17:27:00 -05:00
|
|
|
self.expr_map_back[expr].clone()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn node_expr(&self, node: InFile<&ast::Expr>) -> Option<ExprId> {
|
2020-04-11 12:25:33 -05:00
|
|
|
let src = node.map(|it| AstPtr::new(it));
|
2019-11-14 01:30:30 -06:00
|
|
|
self.expr_map.get(&src).cloned()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2019-12-23 07:47:11 -06:00
|
|
|
pub fn node_macro_file(&self, node: InFile<&ast::MacroCall>) -> Option<HirFileId> {
|
|
|
|
let src = node.map(|it| AstPtr::new(it));
|
|
|
|
self.expansions.get(&src).cloned()
|
|
|
|
}
|
|
|
|
|
2020-03-06 07:44:44 -06:00
|
|
|
pub fn pat_syntax(&self, pat: PatId) -> Result<PatSource, SyntheticSyntax> {
|
2020-04-10 17:27:00 -05:00
|
|
|
self.pat_map_back[pat].clone()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2019-11-28 03:50:26 -06:00
|
|
|
pub fn node_pat(&self, node: InFile<&ast::Pat>) -> Option<PatId> {
|
2019-12-03 10:07:56 -06:00
|
|
|
let src = node.map(|it| Either::Left(AstPtr::new(it)));
|
2019-11-14 01:30:30 -06:00
|
|
|
self.pat_map.get(&src).cloned()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
|
|
|
|
2020-07-10 07:08:35 -05:00
|
|
|
pub fn node_self_param(&self, node: InFile<&ast::SelfParam>) -> Option<PatId> {
|
|
|
|
let src = node.map(|it| Either::Right(AstPtr::new(it)));
|
|
|
|
self.pat_map.get(&src).cloned()
|
|
|
|
}
|
|
|
|
|
2020-07-30 09:21:30 -05:00
|
|
|
pub fn field_syntax(&self, expr: ExprId, field: usize) -> InFile<AstPtr<ast::RecordExprField>> {
|
2020-04-10 17:27:00 -05:00
|
|
|
self.field_map[&(expr, field)].clone()
|
2019-11-12 09:46:57 -06:00
|
|
|
}
|
2020-07-11 11:35:35 -05:00
|
|
|
|
2020-10-23 12:27:04 -05:00
|
|
|
pub(crate) fn add_diagnostics(&self, _db: &dyn DefDatabase, sink: &mut DiagnosticSink<'_>) {
|
|
|
|
for diag in &self.diagnostics {
|
|
|
|
diag.add_to(sink);
|
|
|
|
}
|
2020-07-11 11:35:35 -05:00
|
|
|
}
|
|
|
|
}
|