rust-analyzer/crates/ra_hir_def/src/src.rs

37 lines
937 B
Rust
Raw Normal View History

//! Utilities for mapping between hir IDs and the surface syntax.
use hir_expand::InFile;
use ra_arena::map::ArenaMap;
2019-12-20 12:58:09 +00:00
use ra_syntax::AstNode;
2019-12-20 12:58:09 +00:00
use crate::{db::DefDatabase, AssocItemLoc, ItemLoc};
pub trait HasSource {
type Value;
fn source(&self, db: &dyn DefDatabase) -> InFile<Self::Value>;
}
2019-12-20 12:58:09 +00:00
impl<N: AstNode> HasSource for AssocItemLoc<N> {
type Value = N;
fn source(&self, db: &dyn DefDatabase) -> InFile<N> {
let node = self.ast_id.to_node(db.upcast());
InFile::new(self.ast_id.file_id, node)
}
}
2019-12-20 12:58:09 +00:00
impl<N: AstNode> HasSource for ItemLoc<N> {
type Value = N;
fn source(&self, db: &dyn DefDatabase) -> InFile<N> {
let node = self.ast_id.to_node(db.upcast());
2019-12-12 14:11:57 +00:00
InFile::new(self.ast_id.file_id, node)
}
}
pub trait HasChildSource {
type ChildId;
type Value;
fn child_source(&self, db: &dyn DefDatabase) -> InFile<ArenaMap<Self::ChildId, Self::Value>>;
}