mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Use attr location for builtin macro goto-imp
This commit is contained in:
parent
86d2af9f7b
commit
d7be1a4372
@ -26,10 +26,11 @@ use hir_ty::{
|
||||
};
|
||||
use ra_db::{CrateId, Edition, FileId};
|
||||
use ra_prof::profile;
|
||||
use ra_syntax::ast;
|
||||
use ra_syntax::ast::{self, AttrsOwner};
|
||||
|
||||
use crate::{
|
||||
db::{DefDatabase, HirDatabase},
|
||||
has_source::HasSource,
|
||||
CallableDef, HirDisplay, InFile, Name,
|
||||
};
|
||||
|
||||
@ -805,6 +806,27 @@ impl ImplBlock {
|
||||
pub fn krate(&self, db: &impl DefDatabase) -> Crate {
|
||||
Crate { id: self.module(db).id.krate }
|
||||
}
|
||||
|
||||
pub fn is_builtin_derive(&self, db: &impl DefDatabase) -> Option<InFile<ast::Attr>> {
|
||||
let src = self.source(db);
|
||||
let item = src.file_id.is_builtin_derive(db)?;
|
||||
let hygenic = hir_expand::hygiene::Hygiene::new(db, item.file_id);
|
||||
|
||||
let attr = item
|
||||
.value
|
||||
.attrs()
|
||||
.filter_map(|it| {
|
||||
let path = hir_def::path::ModPath::from_src(it.path()?, &hygenic)?;
|
||||
if path.as_ident()?.to_string() == "derive" {
|
||||
Some(it)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
})
|
||||
.last()?;
|
||||
|
||||
Some(item.with_value(attr))
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, PartialEq, Eq, Debug)]
|
||||
|
@ -112,6 +112,21 @@ impl HirFileId {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Indicate it is macro file generated for builtin derive
|
||||
pub fn is_builtin_derive(&self, db: &dyn db::AstDatabase) -> Option<InFile<ast::ModuleItem>> {
|
||||
match self.0 {
|
||||
HirFileIdRepr::FileId(_) => None,
|
||||
HirFileIdRepr::MacroFile(macro_file) => {
|
||||
let loc: MacroCallLoc = db.lookup_intern_macro(macro_file.macro_call_id);
|
||||
let item = match loc.def.kind {
|
||||
MacroDefKind::BuiltInDerive(_) => loc.kind.node(db),
|
||||
_ => return None,
|
||||
};
|
||||
Some(item.with_value(ast::ModuleItem::cast(item.value.clone())?))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||
|
@ -251,7 +251,11 @@ impl ToNav for hir::Module {
|
||||
impl ToNav for hir::ImplBlock {
|
||||
fn to_nav(&self, db: &RootDatabase) -> NavigationTarget {
|
||||
let src = self.source(db);
|
||||
let frange = original_range(db, src.as_ref().map(|it| it.syntax()));
|
||||
let frange = if let Some(item) = self.is_builtin_derive(db) {
|
||||
original_range(db, item.syntax())
|
||||
} else {
|
||||
original_range(db, src.as_ref().map(|it| it.syntax()))
|
||||
};
|
||||
|
||||
NavigationTarget::from_syntax(
|
||||
frange.file_id,
|
||||
|
Loading…
Reference in New Issue
Block a user