Improve proc macro def ids.
This commit is contained in:
parent
fd983d02e1
commit
88dfb885ea
|
@ -356,7 +356,7 @@ impl<'tcx> CrateStore<'tcx> for cstore::CStore {
|
|||
fn load_macro(&self, id: DefId, sess: &Session) -> LoadedMacro {
|
||||
let data = self.get_crate_data(id.krate);
|
||||
if let Some(ref proc_macros) = data.proc_macros {
|
||||
return LoadedMacro::ProcMacro(proc_macros[id.index.as_usize()].1.clone());
|
||||
return LoadedMacro::ProcMacro(proc_macros[id.index.as_usize() - 1].1.clone());
|
||||
}
|
||||
|
||||
let (name, def) = data.get_macro(id.index);
|
||||
|
|
|
@ -23,7 +23,7 @@ use rustc::hir::intravisit::IdRange;
|
|||
|
||||
use rustc::middle::cstore::{DepKind, InlinedItem, LinkagePreference};
|
||||
use rustc::hir::def::{self, Def, CtorKind};
|
||||
use rustc::hir::def_id::{CrateNum, DefId, DefIndex, LOCAL_CRATE};
|
||||
use rustc::hir::def_id::{CrateNum, DefId, DefIndex, CRATE_DEF_INDEX, LOCAL_CRATE};
|
||||
use rustc::middle::lang_items;
|
||||
use rustc::ty::{self, Ty, TyCtxt};
|
||||
use rustc::ty::subst::Substs;
|
||||
|
@ -513,8 +513,15 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
}
|
||||
|
||||
pub fn get_def(&self, index: DefIndex) -> Option<Def> {
|
||||
if self.proc_macros.is_some() {
|
||||
Some(match index {
|
||||
CRATE_DEF_INDEX => Def::Mod(self.local_def_id(index)),
|
||||
_ => Def::Macro(self.local_def_id(index)),
|
||||
})
|
||||
} else {
|
||||
self.entry(index).kind.to_def(self.local_def_id(index))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_trait_def(&self,
|
||||
item_id: DefIndex,
|
||||
|
@ -643,15 +650,24 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
}
|
||||
|
||||
pub fn get_stability(&self, id: DefIndex) -> Option<attr::Stability> {
|
||||
self.entry(id).stability.map(|stab| stab.decode(self))
|
||||
match self.proc_macros {
|
||||
Some(_) if id != CRATE_DEF_INDEX => None,
|
||||
_ => self.entry(id).stability.map(|stab| stab.decode(self)),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_deprecation(&self, id: DefIndex) -> Option<attr::Deprecation> {
|
||||
self.entry(id).deprecation.map(|depr| depr.decode(self))
|
||||
match self.proc_macros {
|
||||
Some(_) if id != CRATE_DEF_INDEX => None,
|
||||
_ => self.entry(id).deprecation.map(|depr| depr.decode(self)),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_visibility(&self, id: DefIndex) -> ty::Visibility {
|
||||
self.entry(id).visibility
|
||||
match self.proc_macros {
|
||||
Some(_) => ty::Visibility::Public,
|
||||
_ => self.entry(id).visibility,
|
||||
}
|
||||
}
|
||||
|
||||
fn get_impl_data(&self, id: DefIndex) -> ImplData<'tcx> {
|
||||
|
@ -692,11 +708,11 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
where F: FnMut(def::Export)
|
||||
{
|
||||
if let Some(ref proc_macros) = self.proc_macros {
|
||||
if id == CRATE_DEF_INDEX {
|
||||
for (id, &(name, _)) in proc_macros.iter().enumerate() {
|
||||
callback(def::Export {
|
||||
name: name,
|
||||
def: Def::Macro(DefId { krate: self.cnum, index: DefIndex::new(id), }),
|
||||
})
|
||||
let def = Def::Macro(DefId { krate: self.cnum, index: DefIndex::new(id + 1) });
|
||||
callback(def::Export { name: name, def: def });
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
@ -894,6 +910,9 @@ impl<'a, 'tcx> CrateMetadata {
|
|||
}
|
||||
|
||||
pub fn get_item_attrs(&self, node_id: DefIndex) -> Vec<ast::Attribute> {
|
||||
if self.proc_macros.is_some() && node_id != CRATE_DEF_INDEX {
|
||||
return Vec::new();
|
||||
}
|
||||
// The attributes for a tuple struct are attached to the definition, not the ctor;
|
||||
// we assume that someone passing in a tuple struct ctor is actually wanting to
|
||||
// look at the definition
|
||||
|
|
Loading…
Reference in New Issue