Skip to content

Commit 00ce770

Browse files
committedJan 22, 2018
Store a list of local macros on the resolver; use for resolving intra-doc macro links
1 parent 7ac48d7 commit 00ce770

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
 

‎src/librustc_resolve/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1320,6 +1320,7 @@ pub struct Resolver<'a> {
13201320
crate_loader: &'a mut CrateLoader,
13211321
macro_names: FxHashSet<Ident>,
13221322
global_macros: FxHashMap<Name, &'a NameBinding<'a>>,
1323+
pub all_macros: FxHashMap<Name, Def>,
13231324
lexical_macro_resolutions: Vec<(Ident, &'a Cell<LegacyScope<'a>>)>,
13241325
macro_map: FxHashMap<DefId, Rc<SyntaxExtension>>,
13251326
macro_defs: FxHashMap<Mark, DefId>,
@@ -1596,6 +1597,7 @@ impl<'a> Resolver<'a> {
15961597
crate_loader,
15971598
macro_names: FxHashSet(),
15981599
global_macros: FxHashMap(),
1600+
all_macros: FxHashMap(),
15991601
lexical_macro_resolutions: Vec::new(),
16001602
macro_map: FxHashMap(),
16011603
macro_exports: Vec::new(),

‎src/librustc_resolve/macros.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -755,8 +755,9 @@ impl<'a> Resolver<'a> {
755755
*legacy_scope = LegacyScope::Binding(self.arenas.alloc_legacy_binding(LegacyBinding {
756756
parent: Cell::new(*legacy_scope), ident: ident, def_id: def_id, span: item.span,
757757
}));
758+
let def = Def::Macro(def_id, MacroKind::Bang);
759+
self.all_macros.insert(ident.name, def);
758760
if attr::contains_name(&item.attrs, "macro_export") {
759-
let def = Def::Macro(def_id, MacroKind::Bang);
760761
self.macro_exports.push(Export {
761762
ident: ident.modern(),
762763
def: def,

‎src/librustdoc/clean/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -940,6 +940,8 @@ impl Clean<Attributes> for [ast::Attribute] {
940940
.resolve_macro_to_def_inner(mark, &path, MacroKind::Bang, false);
941941
if let Ok(def) = res {
942942
def
943+
} else if let Some(def) = resolver.all_macros.get(&path_str.into()) {
944+
*def
943945
} else {
944946
continue;
945947
}

0 commit comments

Comments
 (0)
Please sign in to comment.