resolve: Put different parent scopes into a single structure
This commit is contained in:
parent
f2302daef3
commit
1b6be5a1ca
6 changed files with 108 additions and 72 deletions
|
@ -13,7 +13,7 @@
|
||||||
//! Here we build the "reduced graph": the graph of the module tree without
|
//! Here we build the "reduced graph": the graph of the module tree without
|
||||||
//! any imports resolved.
|
//! any imports resolved.
|
||||||
|
|
||||||
use macros::{InvocationData, LegacyScope};
|
use macros::{InvocationData, ParentScope, LegacyScope};
|
||||||
use resolve_imports::ImportDirective;
|
use resolve_imports::ImportDirective;
|
||||||
use resolve_imports::ImportDirectiveSubclass::{self, GlobImport, SingleImport};
|
use resolve_imports::ImportDirectiveSubclass::{self, GlobImport, SingleImport};
|
||||||
use {Module, ModuleData, ModuleKind, NameBinding, NameBindingKind, ToNameBinding};
|
use {Module, ModuleData, ModuleKind, NameBinding, NameBindingKind, ToNameBinding};
|
||||||
|
@ -1061,8 +1061,15 @@ impl<'a, 'b, 'cl> Visitor<'a> for BuildReducedGraphVisitor<'a, 'b, 'cl> {
|
||||||
|
|
||||||
fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
|
fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
|
||||||
if !attr.is_sugared_doc && is_builtin_attr(attr) {
|
if !attr.is_sugared_doc && is_builtin_attr(attr) {
|
||||||
self.resolver.current_module.builtin_attrs.borrow_mut().push((
|
let parent_scope = ParentScope {
|
||||||
attr.path.segments[0].ident, self.expansion, self.current_legacy_scope
|
module: self.resolver.current_module.nearest_item_scope(),
|
||||||
|
expansion: self.expansion,
|
||||||
|
legacy: self.current_legacy_scope,
|
||||||
|
// Let's hope discerning built-in attributes from derive helpers is not necessary
|
||||||
|
derives: Vec::new(),
|
||||||
|
};
|
||||||
|
parent_scope.module.builtin_attrs.borrow_mut().push((
|
||||||
|
attr.path.segments[0].ident, parent_scope
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
visit::walk_attribute(self, attr);
|
visit::walk_attribute(self, attr);
|
||||||
|
|
|
@ -80,7 +80,7 @@ use std::mem::replace;
|
||||||
use rustc_data_structures::sync::Lrc;
|
use rustc_data_structures::sync::Lrc;
|
||||||
|
|
||||||
use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
|
use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
|
||||||
use macros::{InvocationData, LegacyBinding, LegacyScope};
|
use macros::{InvocationData, LegacyBinding, ParentScope};
|
||||||
|
|
||||||
// NB: This module needs to be declared first so diagnostics are
|
// NB: This module needs to be declared first so diagnostics are
|
||||||
// registered before they are used.
|
// registered before they are used.
|
||||||
|
@ -1009,9 +1009,9 @@ pub struct ModuleData<'a> {
|
||||||
normal_ancestor_id: DefId,
|
normal_ancestor_id: DefId,
|
||||||
|
|
||||||
resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
|
resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
|
||||||
legacy_macro_resolutions: RefCell<Vec<(Ident, MacroKind, Mark, LegacyScope<'a>, Option<Def>)>>,
|
legacy_macro_resolutions: RefCell<Vec<(Ident, MacroKind, ParentScope<'a>, Option<Def>)>>,
|
||||||
macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
|
macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
|
||||||
builtin_attrs: RefCell<Vec<(Ident, Mark, LegacyScope<'a>)>>,
|
builtin_attrs: RefCell<Vec<(Ident, ParentScope<'a>)>>,
|
||||||
|
|
||||||
// Macro invocations that can expand into items in this module.
|
// Macro invocations that can expand into items in this module.
|
||||||
unresolved_invocations: RefCell<FxHashSet<Mark>>,
|
unresolved_invocations: RefCell<FxHashSet<Mark>>,
|
||||||
|
@ -3494,16 +3494,17 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
|
||||||
path_span: Span,
|
path_span: Span,
|
||||||
crate_lint: CrateLint,
|
crate_lint: CrateLint,
|
||||||
) -> PathResult<'a> {
|
) -> PathResult<'a> {
|
||||||
self.resolve_path_with_parent_expansion(base_module, path, opt_ns, Mark::root(),
|
let parent_scope = ParentScope { module: self.current_module, ..self.dummy_parent_scope() };
|
||||||
record_used, path_span, crate_lint)
|
self.resolve_path_with_parent_scope(base_module, path, opt_ns, &parent_scope,
|
||||||
|
record_used, path_span, crate_lint)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resolve_path_with_parent_expansion(
|
fn resolve_path_with_parent_scope(
|
||||||
&mut self,
|
&mut self,
|
||||||
base_module: Option<ModuleOrUniformRoot<'a>>,
|
base_module: Option<ModuleOrUniformRoot<'a>>,
|
||||||
path: &[Ident],
|
path: &[Ident],
|
||||||
opt_ns: Option<Namespace>, // `None` indicates a module path
|
opt_ns: Option<Namespace>, // `None` indicates a module path
|
||||||
parent_expansion: Mark,
|
parent_scope: &ParentScope<'a>,
|
||||||
record_used: bool,
|
record_used: bool,
|
||||||
path_span: Span,
|
path_span: Span,
|
||||||
crate_lint: CrateLint,
|
crate_lint: CrateLint,
|
||||||
|
@ -3511,6 +3512,7 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
|
||||||
let mut module = base_module;
|
let mut module = base_module;
|
||||||
let mut allow_super = true;
|
let mut allow_super = true;
|
||||||
let mut second_binding = None;
|
let mut second_binding = None;
|
||||||
|
self.current_module = parent_scope.module;
|
||||||
|
|
||||||
debug!(
|
debug!(
|
||||||
"resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
|
"resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
|
||||||
|
@ -3596,9 +3598,8 @@ impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
|
||||||
self.resolve_ident_in_module(module, ident, ns, record_used, path_span)
|
self.resolve_ident_in_module(module, ident, ns, record_used, path_span)
|
||||||
} else if opt_ns == Some(MacroNS) {
|
} else if opt_ns == Some(MacroNS) {
|
||||||
assert!(ns == TypeNS);
|
assert!(ns == TypeNS);
|
||||||
self.resolve_lexical_macro_path_segment(ident, ns, None, parent_expansion,
|
self.resolve_lexical_macro_path_segment(ident, ns, None, parent_scope, record_used,
|
||||||
record_used, record_used, path_span)
|
record_used, path_span).map(|(b, _)| b)
|
||||||
.map(|(binding, _)| binding)
|
|
||||||
} else {
|
} else {
|
||||||
let record_used_id =
|
let record_used_id =
|
||||||
if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
|
if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
|
||||||
|
|
|
@ -101,6 +101,15 @@ pub enum LegacyScope<'a> {
|
||||||
Invocation(&'a InvocationData<'a>),
|
Invocation(&'a InvocationData<'a>),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Everything you need to resolve a macro path.
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct ParentScope<'a> {
|
||||||
|
crate module: Module<'a>,
|
||||||
|
crate expansion: Mark,
|
||||||
|
crate legacy: LegacyScope<'a>,
|
||||||
|
crate derives: Vec<ast::Path>,
|
||||||
|
}
|
||||||
|
|
||||||
pub struct ProcMacError {
|
pub struct ProcMacError {
|
||||||
crate_name: Symbol,
|
crate_name: Symbol,
|
||||||
name: Symbol,
|
name: Symbol,
|
||||||
|
@ -326,14 +335,15 @@ impl<'a, 'crateloader: 'a> base::Resolver for Resolver<'a, 'crateloader> {
|
||||||
InvocationKind::Attr { attr: None, .. } =>
|
InvocationKind::Attr { attr: None, .. } =>
|
||||||
return Ok(None),
|
return Ok(None),
|
||||||
InvocationKind::Attr { attr: Some(ref attr), ref traits, .. } =>
|
InvocationKind::Attr { attr: Some(ref attr), ref traits, .. } =>
|
||||||
(&attr.path, MacroKind::Attr, &traits[..]),
|
(&attr.path, MacroKind::Attr, traits.clone()),
|
||||||
InvocationKind::Bang { ref mac, .. } =>
|
InvocationKind::Bang { ref mac, .. } =>
|
||||||
(&mac.node.path, MacroKind::Bang, &[][..]),
|
(&mac.node.path, MacroKind::Bang, Vec::new()),
|
||||||
InvocationKind::Derive { ref path, .. } =>
|
InvocationKind::Derive { ref path, .. } =>
|
||||||
(path, MacroKind::Derive, &[][..]),
|
(path, MacroKind::Derive, Vec::new()),
|
||||||
};
|
};
|
||||||
|
|
||||||
let (def, ext) = self.resolve_macro_to_def(path, kind, invoc_id, derives_in_scope, force)?;
|
let parent_scope = self.invoc_parent_scope(invoc_id, derives_in_scope);
|
||||||
|
let (def, ext) = self.resolve_macro_to_def(path, kind, &parent_scope, force)?;
|
||||||
|
|
||||||
if let Def::Macro(def_id, _) = def {
|
if let Def::Macro(def_id, _) = def {
|
||||||
self.macro_defs.insert(invoc.expansion_data.mark, def_id);
|
self.macro_defs.insert(invoc.expansion_data.mark, def_id);
|
||||||
|
@ -349,9 +359,10 @@ impl<'a, 'crateloader: 'a> base::Resolver for Resolver<'a, 'crateloader> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resolve_macro_path(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
fn resolve_macro_path(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
||||||
derives_in_scope: &[ast::Path], force: bool)
|
derives_in_scope: Vec<ast::Path>, force: bool)
|
||||||
-> Result<Lrc<SyntaxExtension>, Determinacy> {
|
-> Result<Lrc<SyntaxExtension>, Determinacy> {
|
||||||
Ok(self.resolve_macro_to_def(path, kind, invoc_id, derives_in_scope, force)?.1)
|
let parent_scope = self.invoc_parent_scope(invoc_id, derives_in_scope);
|
||||||
|
Ok(self.resolve_macro_to_def(path, kind, &parent_scope, force)?.1)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn check_unused_macros(&self) {
|
fn check_unused_macros(&self) {
|
||||||
|
@ -373,10 +384,28 @@ impl<'a, 'crateloader: 'a> base::Resolver for Resolver<'a, 'crateloader> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, 'cl> Resolver<'a, 'cl> {
|
impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
fn resolve_macro_to_def(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
pub fn dummy_parent_scope(&mut self) -> ParentScope<'a> {
|
||||||
derives_in_scope: &[ast::Path], force: bool)
|
self.invoc_parent_scope(Mark::root(), Vec::new())
|
||||||
-> Result<(Def, Lrc<SyntaxExtension>), Determinacy> {
|
}
|
||||||
let def = self.resolve_macro_to_def_inner(path, kind, invoc_id, derives_in_scope, force);
|
|
||||||
|
fn invoc_parent_scope(&mut self, invoc_id: Mark, derives: Vec<ast::Path>) -> ParentScope<'a> {
|
||||||
|
let invoc = self.invocations[&invoc_id];
|
||||||
|
ParentScope {
|
||||||
|
module: invoc.module.get().nearest_item_scope(),
|
||||||
|
expansion: invoc_id.parent(),
|
||||||
|
legacy: invoc.parent_legacy_scope.get(),
|
||||||
|
derives,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn resolve_macro_to_def(
|
||||||
|
&mut self,
|
||||||
|
path: &ast::Path,
|
||||||
|
kind: MacroKind,
|
||||||
|
parent_scope: &ParentScope<'a>,
|
||||||
|
force: bool,
|
||||||
|
) -> Result<(Def, Lrc<SyntaxExtension>), Determinacy> {
|
||||||
|
let def = self.resolve_macro_to_def_inner(path, kind, parent_scope, force);
|
||||||
|
|
||||||
// Report errors and enforce feature gates for the resolved macro.
|
// Report errors and enforce feature gates for the resolved macro.
|
||||||
if def != Err(Determinacy::Undetermined) {
|
if def != Err(Determinacy::Undetermined) {
|
||||||
|
@ -440,15 +469,15 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
Ok((def, self.get_macro(def)))
|
Ok((def, self.get_macro(def)))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn resolve_macro_to_def_inner(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
pub fn resolve_macro_to_def_inner(
|
||||||
derives_in_scope: &[ast::Path], force: bool)
|
&mut self,
|
||||||
-> Result<Def, Determinacy> {
|
path: &ast::Path,
|
||||||
|
kind: MacroKind,
|
||||||
|
parent_scope: &ParentScope<'a>,
|
||||||
|
force: bool,
|
||||||
|
) -> Result<Def, Determinacy> {
|
||||||
let ast::Path { ref segments, span } = *path;
|
let ast::Path { ref segments, span } = *path;
|
||||||
let mut path: Vec<_> = segments.iter().map(|seg| seg.ident).collect();
|
let mut path: Vec<_> = segments.iter().map(|seg| seg.ident).collect();
|
||||||
let invocation = self.invocations[&invoc_id];
|
|
||||||
let parent_expansion = invoc_id.parent();
|
|
||||||
let parent_legacy_scope = invocation.parent_legacy_scope.get();
|
|
||||||
self.current_module = invocation.module.get().nearest_item_scope();
|
|
||||||
|
|
||||||
// Possibly apply the macro helper hack
|
// Possibly apply the macro helper hack
|
||||||
if kind == MacroKind::Bang && path.len() == 1 &&
|
if kind == MacroKind::Bang && path.len() == 1 &&
|
||||||
|
@ -458,9 +487,9 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
}
|
}
|
||||||
|
|
||||||
if path.len() > 1 {
|
if path.len() > 1 {
|
||||||
let def = match self.resolve_path_with_parent_expansion(None, &path, Some(MacroNS),
|
let def = match self.resolve_path_with_parent_scope(None, &path, Some(MacroNS),
|
||||||
parent_expansion, false, span,
|
parent_scope, false, span,
|
||||||
CrateLint::No) {
|
CrateLint::No) {
|
||||||
PathResult::NonModule(path_res) => match path_res.base_def() {
|
PathResult::NonModule(path_res) => match path_res.base_def() {
|
||||||
Def::Err => Err(Determinacy::Determined),
|
Def::Err => Err(Determinacy::Determined),
|
||||||
def @ _ => {
|
def @ _ => {
|
||||||
|
@ -480,19 +509,17 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
Err(Determinacy::Determined)
|
Err(Determinacy::Determined)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
self.current_module.macro_resolutions.borrow_mut()
|
parent_scope.module.macro_resolutions.borrow_mut()
|
||||||
.push((path.into_boxed_slice(), span));
|
.push((path.into_boxed_slice(), span));
|
||||||
return def;
|
return def;
|
||||||
}
|
}
|
||||||
|
|
||||||
let legacy_resolution = self.resolve_legacy_scope(
|
let result = if let Some(legacy_binding) = self.resolve_legacy_scope(path[0], Some(kind),
|
||||||
path[0], Some(kind), parent_expansion, parent_legacy_scope, false
|
parent_scope, false) {
|
||||||
);
|
|
||||||
let result = if let Some(legacy_binding) = legacy_resolution {
|
|
||||||
Ok(legacy_binding.def())
|
Ok(legacy_binding.def())
|
||||||
} else {
|
} else {
|
||||||
match self.resolve_lexical_macro_path_segment(path[0], MacroNS, Some(kind),
|
match self.resolve_lexical_macro_path_segment(path[0], MacroNS, Some(kind),
|
||||||
parent_expansion, false, force, span) {
|
parent_scope, false, force, span) {
|
||||||
Ok((binding, _)) => Ok(binding.def_ignoring_ambiguity()),
|
Ok((binding, _)) => Ok(binding.def_ignoring_ambiguity()),
|
||||||
Err(Determinacy::Undetermined) => return Err(Determinacy::Undetermined),
|
Err(Determinacy::Undetermined) => return Err(Determinacy::Undetermined),
|
||||||
Err(Determinacy::Determined) => {
|
Err(Determinacy::Determined) => {
|
||||||
|
@ -502,8 +529,8 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
self.current_module.legacy_macro_resolutions.borrow_mut()
|
parent_scope.module.legacy_macro_resolutions.borrow_mut()
|
||||||
.push((path[0], kind, parent_expansion, parent_legacy_scope, result.ok()));
|
.push((path[0], kind, parent_scope.clone(), result.ok()));
|
||||||
|
|
||||||
if let Ok(Def::NonMacroAttr(NonMacroAttrKind::Custom)) = result {} else {
|
if let Ok(Def::NonMacroAttr(NonMacroAttrKind::Custom)) = result {} else {
|
||||||
return result;
|
return result;
|
||||||
|
@ -521,9 +548,9 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
assert!(kind == MacroKind::Attr);
|
assert!(kind == MacroKind::Attr);
|
||||||
enum ConvertToDeriveHelper { Yes, No, DontKnow }
|
enum ConvertToDeriveHelper { Yes, No, DontKnow }
|
||||||
let mut convert_to_derive_helper = ConvertToDeriveHelper::No;
|
let mut convert_to_derive_helper = ConvertToDeriveHelper::No;
|
||||||
for derive in derives_in_scope {
|
for derive in &parent_scope.derives {
|
||||||
match self.resolve_macro_path(derive, MacroKind::Derive, invoc_id, &[], force) {
|
match self.resolve_macro_to_def(derive, MacroKind::Derive, parent_scope, force) {
|
||||||
Ok(ext) => if let SyntaxExtension::ProcMacroDerive(_, ref inert_attrs, _) = *ext {
|
Ok((_, ext)) => if let SyntaxExtension::ProcMacroDerive(_, inert_attrs, _) = &*ext {
|
||||||
if inert_attrs.contains(&path[0].name) {
|
if inert_attrs.contains(&path[0].name) {
|
||||||
convert_to_derive_helper = ConvertToDeriveHelper::Yes;
|
convert_to_derive_helper = ConvertToDeriveHelper::Yes;
|
||||||
break
|
break
|
||||||
|
@ -551,7 +578,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
mut ident: Ident,
|
mut ident: Ident,
|
||||||
ns: Namespace,
|
ns: Namespace,
|
||||||
kind: Option<MacroKind>,
|
kind: Option<MacroKind>,
|
||||||
parent_expansion: Mark,
|
parent_scope: &ParentScope<'a>,
|
||||||
record_used: bool,
|
record_used: bool,
|
||||||
force: bool,
|
force: bool,
|
||||||
path_span: Span,
|
path_span: Span,
|
||||||
|
@ -610,8 +637,8 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Go through all the scopes and try to resolve the name.
|
// Go through all the scopes and try to resolve the name.
|
||||||
let mut where_to_resolve = WhereToResolve::Module(self.current_module);
|
let mut where_to_resolve = WhereToResolve::Module(parent_scope.module);
|
||||||
let mut use_prelude = !self.current_module.no_implicit_prelude;
|
let mut use_prelude = !parent_scope.module.no_implicit_prelude;
|
||||||
loop {
|
loop {
|
||||||
let result = match where_to_resolve {
|
let result = match where_to_resolve {
|
||||||
WhereToResolve::Module(module) => {
|
WhereToResolve::Module(module) => {
|
||||||
|
@ -755,7 +782,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
// Found another solution, if the first one was "weak", report an error.
|
// Found another solution, if the first one was "weak", report an error.
|
||||||
if result.0.def() != innermost_result.0.def() &&
|
if result.0.def() != innermost_result.0.def() &&
|
||||||
(innermost_result.0.is_glob_import() ||
|
(innermost_result.0.is_glob_import() ||
|
||||||
innermost_result.0.may_appear_after(parent_expansion, result.0)) {
|
innermost_result.0.may_appear_after(parent_scope.expansion, result.0)) {
|
||||||
self.ambiguity_errors.push(AmbiguityError {
|
self.ambiguity_errors.push(AmbiguityError {
|
||||||
ident,
|
ident,
|
||||||
b1: innermost_result.0,
|
b1: innermost_result.0,
|
||||||
|
@ -797,13 +824,13 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn resolve_legacy_scope(&mut self,
|
fn resolve_legacy_scope(
|
||||||
ident: Ident,
|
&mut self,
|
||||||
kind: Option<MacroKind>,
|
ident: Ident,
|
||||||
parent_expansion: Mark,
|
kind: Option<MacroKind>,
|
||||||
parent_legacy_scope: LegacyScope<'a>,
|
parent_scope: &ParentScope<'a>,
|
||||||
record_used: bool)
|
record_used: bool,
|
||||||
-> Option<&'a NameBinding<'a>> {
|
) -> Option<&'a NameBinding<'a>> {
|
||||||
if macro_kind_mismatch(ident.name, kind, Some(MacroKind::Bang)) {
|
if macro_kind_mismatch(ident.name, kind, Some(MacroKind::Bang)) {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
@ -824,7 +851,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
let mut innermost_result: Option<&NameBinding> = None;
|
let mut innermost_result: Option<&NameBinding> = None;
|
||||||
|
|
||||||
// Go through all the scopes and try to resolve the name.
|
// Go through all the scopes and try to resolve the name.
|
||||||
let mut where_to_resolve = parent_legacy_scope;
|
let mut where_to_resolve = parent_scope.legacy;
|
||||||
loop {
|
loop {
|
||||||
let result = match where_to_resolve {
|
let result = match where_to_resolve {
|
||||||
LegacyScope::Binding(legacy_binding) if ident == legacy_binding.ident =>
|
LegacyScope::Binding(legacy_binding) if ident == legacy_binding.ident =>
|
||||||
|
@ -852,7 +879,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
if let Some(innermost_result) = innermost_result {
|
if let Some(innermost_result) = innermost_result {
|
||||||
// Found another solution, if the first one was "weak", report an error.
|
// Found another solution, if the first one was "weak", report an error.
|
||||||
if result.def() != innermost_result.def() &&
|
if result.def() != innermost_result.def() &&
|
||||||
innermost_result.may_appear_after(parent_expansion, result) {
|
innermost_result.may_appear_after(parent_scope.expansion, result) {
|
||||||
self.ambiguity_errors.push(AmbiguityError {
|
self.ambiguity_errors.push(AmbiguityError {
|
||||||
ident,
|
ident,
|
||||||
b1: innermost_result,
|
b1: innermost_result,
|
||||||
|
@ -889,14 +916,15 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for &(ident, kind, parent_expansion, parent_legacy_scope, def)
|
let legacy_macro_resolutions =
|
||||||
in module.legacy_macro_resolutions.borrow().iter() {
|
mem::replace(&mut *module.legacy_macro_resolutions.borrow_mut(), Vec::new());
|
||||||
|
for (ident, kind, parent_scope, def) in legacy_macro_resolutions {
|
||||||
let span = ident.span;
|
let span = ident.span;
|
||||||
let legacy_resolution = self.resolve_legacy_scope(
|
let legacy_resolution = self.resolve_legacy_scope(
|
||||||
ident, Some(kind), parent_expansion, parent_legacy_scope, true
|
ident, Some(kind), &parent_scope, true
|
||||||
);
|
);
|
||||||
let resolution = self.resolve_lexical_macro_path_segment(
|
let resolution = self.resolve_lexical_macro_path_segment(
|
||||||
ident, MacroNS, Some(kind), parent_expansion, true, true, span
|
ident, MacroNS, Some(kind), &parent_scope, true, true, span
|
||||||
);
|
);
|
||||||
|
|
||||||
let check_consistency = |this: &Self, new_def: Def| {
|
let check_consistency = |this: &Self, new_def: Def| {
|
||||||
|
@ -932,7 +960,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
(Some(legacy_binding), Ok((binding, FromPrelude(from_prelude))))
|
(Some(legacy_binding), Ok((binding, FromPrelude(from_prelude))))
|
||||||
if legacy_binding.def() != binding.def_ignoring_ambiguity() &&
|
if legacy_binding.def() != binding.def_ignoring_ambiguity() &&
|
||||||
(!from_prelude ||
|
(!from_prelude ||
|
||||||
legacy_binding.may_appear_after(parent_expansion, binding)) => {
|
legacy_binding.may_appear_after(parent_scope.expansion, binding)) => {
|
||||||
self.report_ambiguity_error(ident, legacy_binding, binding);
|
self.report_ambiguity_error(ident, legacy_binding, binding);
|
||||||
},
|
},
|
||||||
// OK, non-macro-expanded legacy wins over prelude even if defs are different
|
// OK, non-macro-expanded legacy wins over prelude even if defs are different
|
||||||
|
@ -953,13 +981,13 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
for &(ident, parent_expansion, parent_legacy_scope)
|
let builtin_attrs = mem::replace(&mut *module.builtin_attrs.borrow_mut(), Vec::new());
|
||||||
in module.builtin_attrs.borrow().iter() {
|
for (ident, parent_scope) in builtin_attrs {
|
||||||
let resolve_legacy = |this: &mut Self| this.resolve_legacy_scope(
|
let resolve_legacy = |this: &mut Self| this.resolve_legacy_scope(
|
||||||
ident, Some(MacroKind::Attr), parent_expansion, parent_legacy_scope, true
|
ident, Some(MacroKind::Attr), &parent_scope, true
|
||||||
);
|
);
|
||||||
let resolve_modern = |this: &mut Self| this.resolve_lexical_macro_path_segment(
|
let resolve_modern = |this: &mut Self| this.resolve_lexical_macro_path_segment(
|
||||||
ident, MacroNS, Some(MacroKind::Attr), parent_expansion, true, true, ident.span
|
ident, MacroNS, Some(MacroKind::Attr), &parent_scope, true, true, ident.span
|
||||||
).map(|(binding, _)| binding).ok();
|
).map(|(binding, _)| binding).ok();
|
||||||
|
|
||||||
if let Some(binding) = resolve_legacy(self).or_else(|| resolve_modern(self)) {
|
if let Some(binding) = resolve_legacy(self).or_else(|| resolve_modern(self)) {
|
||||||
|
|
|
@ -398,12 +398,12 @@ impl<'a, 'tcx, 'rcx, 'cstore> DocFolder for LinkCollector<'a, 'tcx, 'rcx, 'cstor
|
||||||
/// Resolve a string as a macro
|
/// Resolve a string as a macro
|
||||||
fn macro_resolve(cx: &DocContext, path_str: &str) -> Option<Def> {
|
fn macro_resolve(cx: &DocContext, path_str: &str) -> Option<Def> {
|
||||||
use syntax::ext::base::{MacroKind, SyntaxExtension};
|
use syntax::ext::base::{MacroKind, SyntaxExtension};
|
||||||
use syntax::ext::hygiene::Mark;
|
|
||||||
let segment = ast::PathSegment::from_ident(Ident::from_str(path_str));
|
let segment = ast::PathSegment::from_ident(Ident::from_str(path_str));
|
||||||
let path = ast::Path { segments: vec![segment], span: DUMMY_SP };
|
let path = ast::Path { segments: vec![segment], span: DUMMY_SP };
|
||||||
let mut resolver = cx.resolver.borrow_mut();
|
let mut resolver = cx.resolver.borrow_mut();
|
||||||
let mark = Mark::root();
|
let parent_scope = resolver.dummy_parent_scope();
|
||||||
if let Ok(def) = resolver.resolve_macro_to_def_inner(&path, MacroKind::Bang, mark, &[], false) {
|
if let Ok(def) = resolver.resolve_macro_to_def_inner(&path, MacroKind::Bang,
|
||||||
|
&parent_scope, false) {
|
||||||
if let SyntaxExtension::DeclMacro { .. } = *resolver.get_macro(def) {
|
if let SyntaxExtension::DeclMacro { .. } = *resolver.get_macro(def) {
|
||||||
return Some(def);
|
return Some(def);
|
||||||
}
|
}
|
||||||
|
|
|
@ -730,7 +730,7 @@ pub trait Resolver {
|
||||||
fn resolve_macro_invocation(&mut self, invoc: &Invocation, invoc_id: Mark, force: bool)
|
fn resolve_macro_invocation(&mut self, invoc: &Invocation, invoc_id: Mark, force: bool)
|
||||||
-> Result<Option<Lrc<SyntaxExtension>>, Determinacy>;
|
-> Result<Option<Lrc<SyntaxExtension>>, Determinacy>;
|
||||||
fn resolve_macro_path(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
fn resolve_macro_path(&mut self, path: &ast::Path, kind: MacroKind, invoc_id: Mark,
|
||||||
derives_in_scope: &[ast::Path], force: bool)
|
derives_in_scope: Vec<ast::Path>, force: bool)
|
||||||
-> Result<Lrc<SyntaxExtension>, Determinacy>;
|
-> Result<Lrc<SyntaxExtension>, Determinacy>;
|
||||||
|
|
||||||
fn check_unused_macros(&self);
|
fn check_unused_macros(&self);
|
||||||
|
@ -768,7 +768,7 @@ impl Resolver for DummyResolver {
|
||||||
Err(Determinacy::Determined)
|
Err(Determinacy::Determined)
|
||||||
}
|
}
|
||||||
fn resolve_macro_path(&mut self, _path: &ast::Path, _kind: MacroKind, _invoc_id: Mark,
|
fn resolve_macro_path(&mut self, _path: &ast::Path, _kind: MacroKind, _invoc_id: Mark,
|
||||||
_derives_in_scope: &[ast::Path], _force: bool)
|
_derives_in_scope: Vec<ast::Path>, _force: bool)
|
||||||
-> Result<Lrc<SyntaxExtension>, Determinacy> {
|
-> Result<Lrc<SyntaxExtension>, Determinacy> {
|
||||||
Err(Determinacy::Determined)
|
Err(Determinacy::Determined)
|
||||||
}
|
}
|
||||||
|
|
|
@ -384,7 +384,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
|
||||||
let mark = Mark::fresh(self.cx.current_expansion.mark);
|
let mark = Mark::fresh(self.cx.current_expansion.mark);
|
||||||
derives.push(mark);
|
derives.push(mark);
|
||||||
let item = match self.cx.resolver.resolve_macro_path(
|
let item = match self.cx.resolver.resolve_macro_path(
|
||||||
path, MacroKind::Derive, Mark::root(), &[], false) {
|
path, MacroKind::Derive, Mark::root(), Vec::new(), false) {
|
||||||
Ok(ext) => match *ext {
|
Ok(ext) => match *ext {
|
||||||
BuiltinDerive(..) => item_with_markers.clone(),
|
BuiltinDerive(..) => item_with_markers.clone(),
|
||||||
_ => item.clone(),
|
_ => item.clone(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue