2019-11-28 15:05:28 +00:00
|
|
|
//! Utilities for mapping between hir IDs and the surface syntax.
|
|
|
|
|
|
|
|
use hir_expand::InFile;
|
|
|
|
use ra_arena::map::ArenaMap;
|
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
use crate::{db::DefDatabase, item_tree::ItemTreeSource, AssocItemLoc, ItemLoc};
|
2019-11-28 15:05:28 +00:00
|
|
|
|
|
|
|
pub trait HasSource {
|
|
|
|
type Value;
|
2020-03-13 15:05:46 +00:00
|
|
|
fn source(&self, db: &dyn DefDatabase) -> InFile<Self::Value>;
|
2019-11-28 15:05:28 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
impl<N: ItemTreeSource> HasSource for AssocItemLoc<N> {
|
|
|
|
type Value = N::Source;
|
2019-11-28 15:05:28 +00:00
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
fn source(&self, db: &dyn DefDatabase) -> InFile<N::Source> {
|
|
|
|
let tree = db.item_tree(self.id.file_id);
|
|
|
|
let ast_id_map = db.ast_id_map(self.id.file_id);
|
|
|
|
let root = db.parse_or_expand(self.id.file_id).unwrap();
|
|
|
|
let node = &tree[self.id.value];
|
|
|
|
|
|
|
|
InFile::new(self.id.file_id, ast_id_map.get(node.ast_id()).to_node(&root))
|
2019-11-28 15:05:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
impl<N: ItemTreeSource> HasSource for ItemLoc<N> {
|
|
|
|
type Value = N::Source;
|
|
|
|
|
|
|
|
fn source(&self, db: &dyn DefDatabase) -> InFile<N::Source> {
|
|
|
|
let tree = db.item_tree(self.id.file_id);
|
|
|
|
let ast_id_map = db.ast_id_map(self.id.file_id);
|
|
|
|
let root = db.parse_or_expand(self.id.file_id).unwrap();
|
|
|
|
let node = &tree[self.id.value];
|
2019-11-28 15:05:28 +00:00
|
|
|
|
2020-06-22 13:07:06 +00:00
|
|
|
InFile::new(self.id.file_id, ast_id_map.get(node.ast_id()).to_node(&root))
|
2019-12-12 14:11:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-28 15:05:28 +00:00
|
|
|
pub trait HasChildSource {
|
|
|
|
type ChildId;
|
|
|
|
type Value;
|
2020-03-13 15:05:46 +00:00
|
|
|
fn child_source(&self, db: &dyn DefDatabase) -> InFile<ArenaMap<Self::ChildId, Self::Value>>;
|
2019-11-28 15:05:28 +00:00
|
|
|
}
|