2016-09-07 18:21:59 -05:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2016-11-10 04:29:36 -06:00
|
|
|
use {Module, ModuleKind, NameBinding, NameBindingKind, Resolver, AmbiguityError};
|
|
|
|
use Namespace::{self, MacroNS};
|
|
|
|
use ResolveResult::{Success, Indeterminate, Failed};
|
2016-09-14 16:03:09 -05:00
|
|
|
use build_reduced_graph::BuildReducedGraphVisitor;
|
2016-11-10 04:11:25 -06:00
|
|
|
use resolve_imports::ImportResolver;
|
2016-10-28 01:52:45 -05:00
|
|
|
use rustc::hir::def_id::{DefId, BUILTIN_MACROS_CRATE, CRATE_DEF_INDEX, DefIndex};
|
|
|
|
use rustc::hir::def::{Def, Export};
|
2016-09-23 16:13:59 -05:00
|
|
|
use rustc::hir::map::{self, DefCollector};
|
2016-11-07 16:08:26 -06:00
|
|
|
use rustc::ty;
|
2016-09-16 03:50:34 -05:00
|
|
|
use std::cell::Cell;
|
2016-09-07 18:21:59 -05:00
|
|
|
use std::rc::Rc;
|
2016-11-10 04:29:36 -06:00
|
|
|
use syntax::ast::{self, Name};
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::errors::DiagnosticBuilder;
|
2016-10-15 15:50:30 -05:00
|
|
|
use syntax::ext::base::{self, Determinacy, MultiModifier, MultiDecorator};
|
2016-09-16 01:45:03 -05:00
|
|
|
use syntax::ext::base::{NormalTT, SyntaxExtension};
|
2016-10-14 18:08:53 -05:00
|
|
|
use syntax::ext::expand::Expansion;
|
2016-10-06 03:04:30 -05:00
|
|
|
use syntax::ext::hygiene::Mark;
|
2016-09-21 01:25:09 -05:00
|
|
|
use syntax::ext::tt::macro_rules;
|
2016-11-07 21:16:54 -06:00
|
|
|
use syntax::fold::Folder;
|
|
|
|
use syntax::ptr::P;
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::util::lev_distance::find_best_match_for_name;
|
2016-10-28 01:52:45 -05:00
|
|
|
use syntax::visit::Visitor;
|
2016-11-07 16:08:26 -06:00
|
|
|
use syntax_pos::{Span, DUMMY_SP};
|
2016-09-07 18:21:59 -05:00
|
|
|
|
2016-09-14 04:55:20 -05:00
|
|
|
#[derive(Clone)]
|
2016-10-03 18:48:19 -05:00
|
|
|
pub struct InvocationData<'a> {
|
2016-09-16 03:50:34 -05:00
|
|
|
pub module: Cell<Module<'a>>,
|
2016-10-15 22:39:52 -05:00
|
|
|
pub def_index: DefIndex,
|
2016-09-23 16:13:59 -05:00
|
|
|
// True if this expansion is in a `const_integer` position, for example `[u32; m!()]`.
|
|
|
|
// c.f. `DefCollector::visit_ast_const_integer`.
|
2016-10-15 22:39:52 -05:00
|
|
|
pub const_integer: bool,
|
2016-10-06 03:04:30 -05:00
|
|
|
// The scope in which the invocation path is resolved.
|
|
|
|
pub legacy_scope: Cell<LegacyScope<'a>>,
|
|
|
|
// The smallest scope that includes this invocation's expansion,
|
|
|
|
// or `Empty` if this invocation has not been expanded yet.
|
|
|
|
pub expansion: Cell<LegacyScope<'a>>,
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
|
|
|
|
2016-10-03 18:48:19 -05:00
|
|
|
impl<'a> InvocationData<'a> {
|
2016-09-14 16:03:09 -05:00
|
|
|
pub fn root(graph_root: Module<'a>) -> Self {
|
2016-10-03 18:48:19 -05:00
|
|
|
InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
module: Cell::new(graph_root),
|
2016-09-14 04:55:20 -05:00
|
|
|
def_index: CRATE_DEF_INDEX,
|
2016-09-23 16:13:59 -05:00
|
|
|
const_integer: false,
|
2016-10-06 03:04:30 -05:00
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
2016-10-06 03:04:30 -05:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub enum LegacyScope<'a> {
|
|
|
|
Empty,
|
|
|
|
Invocation(&'a InvocationData<'a>), // The scope of the invocation, not including its expansion
|
|
|
|
Expansion(&'a InvocationData<'a>), // The scope of the invocation, including its expansion
|
|
|
|
Binding(&'a LegacyBinding<'a>),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct LegacyBinding<'a> {
|
2016-11-22 19:51:37 -06:00
|
|
|
pub parent: Cell<LegacyScope<'a>>,
|
2016-10-31 01:48:59 -05:00
|
|
|
pub name: ast::Name,
|
2016-10-10 22:48:54 -05:00
|
|
|
ext: Rc<SyntaxExtension>,
|
2016-10-31 01:48:59 -05:00
|
|
|
pub span: Span,
|
2016-10-06 03:04:30 -05:00
|
|
|
}
|
|
|
|
|
2016-11-10 04:29:36 -06:00
|
|
|
pub enum MacroBinding<'a> {
|
|
|
|
Legacy(&'a LegacyBinding<'a>),
|
|
|
|
Modern(&'a NameBinding<'a>),
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
impl<'a> base::Resolver for Resolver<'a> {
|
2016-09-04 19:10:27 -05:00
|
|
|
fn next_node_id(&mut self) -> ast::NodeId {
|
|
|
|
self.session.next_node_id()
|
|
|
|
}
|
|
|
|
|
2016-09-23 02:23:01 -05:00
|
|
|
fn get_module_scope(&mut self, id: ast::NodeId) -> Mark {
|
|
|
|
let mark = Mark::fresh();
|
|
|
|
let module = self.module_map[&id];
|
2016-10-03 18:48:19 -05:00
|
|
|
self.invocations.insert(mark, self.arenas.alloc_invocation_data(InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
module: Cell::new(module),
|
2016-09-23 02:23:01 -05:00
|
|
|
def_index: module.def_id().unwrap().index,
|
2016-09-23 16:13:59 -05:00
|
|
|
const_integer: false,
|
2016-10-06 03:04:30 -05:00
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
2016-09-16 03:50:34 -05:00
|
|
|
}));
|
2016-09-23 02:23:01 -05:00
|
|
|
mark
|
|
|
|
}
|
|
|
|
|
2016-11-07 21:16:54 -06:00
|
|
|
fn eliminate_crate_var(&mut self, item: P<ast::Item>) -> P<ast::Item> {
|
|
|
|
struct EliminateCrateVar<'b, 'a: 'b>(&'b mut Resolver<'a>);
|
|
|
|
|
|
|
|
impl<'a, 'b> Folder for EliminateCrateVar<'a, 'b> {
|
|
|
|
fn fold_path(&mut self, mut path: ast::Path) -> ast::Path {
|
|
|
|
let ident = path.segments[0].identifier;
|
2016-11-17 08:04:20 -06:00
|
|
|
if ident.name == "$crate" {
|
2016-11-07 21:16:54 -06:00
|
|
|
path.global = true;
|
|
|
|
let module = self.0.resolve_crate_var(ident.ctxt);
|
|
|
|
if module.is_local() {
|
|
|
|
path.segments.remove(0);
|
|
|
|
} else {
|
|
|
|
path.segments[0].identifier = match module.kind {
|
|
|
|
ModuleKind::Def(_, name) => ast::Ident::with_empty_ctxt(name),
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
path
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EliminateCrateVar(self).fold_item(item).expect_one("")
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
fn visit_expansion(&mut self, mark: Mark, expansion: &Expansion) {
|
2016-10-06 03:04:30 -05:00
|
|
|
let invocation = self.invocations[&mark];
|
|
|
|
self.collect_def_ids(invocation, expansion);
|
|
|
|
|
|
|
|
self.current_module = invocation.module.get();
|
2016-11-11 04:51:15 -06:00
|
|
|
self.current_module.unresolved_invocations.borrow_mut().remove(&mark);
|
2016-10-06 03:04:30 -05:00
|
|
|
let mut visitor = BuildReducedGraphVisitor {
|
|
|
|
resolver: self,
|
|
|
|
legacy_scope: LegacyScope::Invocation(invocation),
|
2016-10-10 22:42:06 -05:00
|
|
|
expansion: mark,
|
2016-10-06 03:04:30 -05:00
|
|
|
};
|
|
|
|
expansion.visit_with(&mut visitor);
|
2016-11-10 04:29:36 -06:00
|
|
|
self.current_module.unresolved_invocations.borrow_mut().remove(&mark);
|
2016-10-06 03:04:30 -05:00
|
|
|
invocation.expansion.set(visitor.legacy_scope);
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
2016-10-19 01:51:40 -05:00
|
|
|
fn add_macro(&mut self, scope: Mark, mut def: ast::MacroDef, export: bool) {
|
2016-11-17 08:04:20 -06:00
|
|
|
if def.ident.name == "macro_rules" {
|
2016-09-25 18:38:22 -05:00
|
|
|
self.session.span_err(def.span, "user-defined macros may not be named `macro_rules`");
|
|
|
|
}
|
2016-10-19 01:51:40 -05:00
|
|
|
|
|
|
|
let invocation = self.invocations[&scope];
|
|
|
|
let binding = self.arenas.alloc_legacy_binding(LegacyBinding {
|
2016-11-22 19:51:37 -06:00
|
|
|
parent: Cell::new(invocation.legacy_scope.get()),
|
2016-10-19 01:51:40 -05:00
|
|
|
name: def.ident.name,
|
|
|
|
ext: Rc::new(macro_rules::compile(&self.session.parse_sess, &def)),
|
|
|
|
span: def.span,
|
|
|
|
});
|
|
|
|
invocation.legacy_scope.set(LegacyScope::Binding(binding));
|
|
|
|
self.macro_names.insert(def.ident.name);
|
|
|
|
|
|
|
|
if export {
|
2016-09-21 01:25:09 -05:00
|
|
|
def.id = self.next_node_id();
|
2016-10-28 01:52:45 -05:00
|
|
|
DefCollector::new(&mut self.definitions).with_parent(CRATE_DEF_INDEX, |collector| {
|
|
|
|
collector.visit_macro_def(&def)
|
|
|
|
});
|
|
|
|
self.macro_exports.push(Export {
|
|
|
|
name: def.ident.name,
|
|
|
|
def: Def::Macro(self.definitions.local_def_id(def.id)),
|
|
|
|
});
|
2016-09-21 01:25:09 -05:00
|
|
|
self.exported_macros.push(def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 00:49:56 -05:00
|
|
|
fn add_ext(&mut self, ident: ast::Ident, ext: Rc<SyntaxExtension>) {
|
2016-09-07 18:21:59 -05:00
|
|
|
if let NormalTT(..) = *ext {
|
|
|
|
self.macro_names.insert(ident.name);
|
|
|
|
}
|
2016-10-28 01:52:45 -05:00
|
|
|
let def_id = DefId {
|
|
|
|
krate: BUILTIN_MACROS_CRATE,
|
|
|
|
index: DefIndex::new(self.macro_map.len()),
|
|
|
|
};
|
|
|
|
self.macro_map.insert(def_id, ext);
|
2016-11-07 16:08:26 -06:00
|
|
|
let binding = self.arenas.alloc_name_binding(NameBinding {
|
|
|
|
kind: NameBindingKind::Def(Def::Macro(def_id)),
|
|
|
|
span: DUMMY_SP,
|
|
|
|
vis: ty::Visibility::PrivateExternal,
|
2016-11-07 16:23:26 -06:00
|
|
|
expansion: Mark::root(),
|
2016-11-07 16:08:26 -06:00
|
|
|
});
|
|
|
|
self.builtin_macros.insert(ident.name, binding);
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn add_expansions_at_stmt(&mut self, id: ast::NodeId, macros: Vec<Mark>) {
|
|
|
|
self.macros_at_scope.insert(id, macros);
|
|
|
|
}
|
|
|
|
|
2016-11-10 04:11:25 -06:00
|
|
|
fn resolve_imports(&mut self) {
|
|
|
|
ImportResolver { resolver: self }.resolve_imports()
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
fn find_attr_invoc(&mut self, attrs: &mut Vec<ast::Attribute>) -> Option<ast::Attribute> {
|
|
|
|
for i in 0..attrs.len() {
|
2016-11-14 22:34:52 -06:00
|
|
|
match self.builtin_macros.get(&attrs[i].name()).cloned() {
|
2016-11-10 04:29:36 -06:00
|
|
|
Some(binding) => match *self.get_macro(binding) {
|
2016-09-06 00:57:58 -05:00
|
|
|
MultiModifier(..) | MultiDecorator(..) | SyntaxExtension::AttrProcMacro(..) => {
|
|
|
|
return Some(attrs.remove(i))
|
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
_ => {}
|
|
|
|
},
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-10-14 18:08:53 -05:00
|
|
|
fn resolve_macro(&mut self, scope: Mark, path: &ast::Path, force: bool)
|
2016-10-10 22:41:48 -05:00
|
|
|
-> Result<Rc<SyntaxExtension>, Determinacy> {
|
2016-10-14 18:08:53 -05:00
|
|
|
if path.segments.len() > 1 || path.global || !path.segments[0].parameters.is_empty() {
|
|
|
|
self.session.span_err(path.span, "expected macro name without module separators");
|
|
|
|
return Err(Determinacy::Determined);
|
|
|
|
}
|
|
|
|
let name = path.segments[0].identifier.name;
|
2016-09-07 18:21:59 -05:00
|
|
|
|
2016-10-07 19:30:24 -05:00
|
|
|
let invocation = self.invocations[&scope];
|
2016-11-10 04:29:36 -06:00
|
|
|
self.current_module = invocation.module.get();
|
2016-11-22 19:51:37 -06:00
|
|
|
let result = match self.resolve_legacy_scope(&invocation.legacy_scope, name, false) {
|
2016-11-10 04:29:36 -06:00
|
|
|
Some(MacroBinding::Legacy(binding)) => Ok(binding.ext.clone()),
|
|
|
|
Some(MacroBinding::Modern(binding)) => Ok(self.get_macro(binding)),
|
|
|
|
None => match self.resolve_in_item_lexical_scope(name, MacroNS, None) {
|
|
|
|
Some(binding) => Ok(self.get_macro(binding)),
|
|
|
|
None => return Err(if force {
|
|
|
|
let msg = format!("macro undefined: '{}!'", name);
|
|
|
|
let mut err = self.session.struct_span_err(path.span, &msg);
|
|
|
|
self.suggest_macro_name(&name.as_str(), &mut err);
|
|
|
|
err.emit();
|
|
|
|
Determinacy::Determined
|
|
|
|
} else {
|
|
|
|
Determinacy::Undetermined
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
if self.use_extern_macros {
|
|
|
|
self.current_module.legacy_macro_resolutions.borrow_mut()
|
|
|
|
.push((scope, name, path.span));
|
|
|
|
}
|
|
|
|
result
|
2016-09-25 22:17:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Resolver<'a> {
|
2016-11-10 04:29:36 -06:00
|
|
|
// Resolve the name in the module's lexical scope, excluding non-items.
|
2016-11-17 02:16:32 -06:00
|
|
|
fn resolve_in_item_lexical_scope(&mut self,
|
|
|
|
name: Name,
|
|
|
|
ns: Namespace,
|
|
|
|
record_used: Option<Span>)
|
|
|
|
-> Option<&'a NameBinding<'a>> {
|
2016-11-10 04:29:36 -06:00
|
|
|
let mut module = self.current_module;
|
|
|
|
let mut potential_expanded_shadower = None;
|
|
|
|
loop {
|
|
|
|
// Since expanded macros may not shadow the lexical scope (enforced below),
|
|
|
|
// we can ignore unresolved invocations (indicated by the penultimate argument).
|
2016-10-11 02:47:21 -05:00
|
|
|
match self.resolve_name_in_module(module, name, ns, true, record_used) {
|
2016-11-10 04:29:36 -06:00
|
|
|
Success(binding) => {
|
|
|
|
let span = match record_used {
|
|
|
|
Some(span) => span,
|
|
|
|
None => return Some(binding),
|
|
|
|
};
|
|
|
|
if let Some(shadower) = potential_expanded_shadower {
|
|
|
|
self.ambiguity_errors.push(AmbiguityError {
|
|
|
|
span: span, name: name, b1: shadower, b2: binding, lexical: true,
|
|
|
|
});
|
|
|
|
return Some(shadower);
|
|
|
|
} else if binding.expansion == Mark::root() {
|
|
|
|
return Some(binding);
|
|
|
|
} else {
|
|
|
|
potential_expanded_shadower = Some(binding);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Indeterminate => return None,
|
|
|
|
Failed(..) => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
match module.kind {
|
|
|
|
ModuleKind::Block(..) => module = module.parent.unwrap(),
|
|
|
|
ModuleKind::Def(..) => return potential_expanded_shadower,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-17 02:16:32 -06:00
|
|
|
pub fn resolve_legacy_scope(&mut self,
|
2016-11-22 19:51:37 -06:00
|
|
|
mut scope: &'a Cell<LegacyScope<'a>>,
|
2016-11-17 02:16:32 -06:00
|
|
|
name: Name,
|
|
|
|
record_used: bool)
|
|
|
|
-> Option<MacroBinding<'a>> {
|
2016-10-31 17:17:15 -05:00
|
|
|
let mut possible_time_travel = None;
|
2016-10-06 03:04:30 -05:00
|
|
|
let mut relative_depth: u32 = 0;
|
2016-11-10 04:29:36 -06:00
|
|
|
let mut binding = None;
|
2016-09-07 18:21:59 -05:00
|
|
|
loop {
|
2016-11-22 19:51:37 -06:00
|
|
|
match scope.get() {
|
2016-10-06 03:04:30 -05:00
|
|
|
LegacyScope::Empty => break,
|
|
|
|
LegacyScope::Expansion(invocation) => {
|
2016-11-22 19:51:37 -06:00
|
|
|
match invocation.expansion.get() {
|
|
|
|
LegacyScope::Invocation(_) => scope.set(invocation.legacy_scope.get()),
|
|
|
|
LegacyScope::Empty => {
|
|
|
|
if possible_time_travel.is_none() {
|
|
|
|
possible_time_travel = Some(scope);
|
|
|
|
}
|
|
|
|
scope = &invocation.legacy_scope;
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
relative_depth += 1;
|
|
|
|
scope = &invocation.expansion;
|
2016-10-31 17:17:15 -05:00
|
|
|
}
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
}
|
|
|
|
LegacyScope::Invocation(invocation) => {
|
2016-10-10 22:48:54 -05:00
|
|
|
relative_depth = relative_depth.saturating_sub(1);
|
2016-11-22 19:51:37 -06:00
|
|
|
scope = &invocation.legacy_scope;
|
2016-10-10 22:48:54 -05:00
|
|
|
}
|
2016-11-10 04:29:36 -06:00
|
|
|
LegacyScope::Binding(potential_binding) => {
|
|
|
|
if potential_binding.name == name {
|
|
|
|
if (!self.use_extern_macros || record_used) && relative_depth > 0 {
|
|
|
|
self.disallowed_shadowing.push(potential_binding);
|
2016-10-06 03:04:30 -05:00
|
|
|
}
|
2016-11-10 04:29:36 -06:00
|
|
|
binding = Some(potential_binding);
|
|
|
|
break
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-11-22 19:51:37 -06:00
|
|
|
scope = &potential_binding.parent;
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
};
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
|
2016-11-10 04:29:36 -06:00
|
|
|
let binding = match binding {
|
|
|
|
Some(binding) => MacroBinding::Legacy(binding),
|
|
|
|
None => match self.builtin_macros.get(&name).cloned() {
|
|
|
|
Some(binding) => MacroBinding::Modern(binding),
|
|
|
|
None => return None,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
if !self.use_extern_macros {
|
|
|
|
if let Some(scope) = possible_time_travel {
|
|
|
|
// Check for disallowed shadowing later
|
|
|
|
self.lexical_macro_resolutions.push((name, scope));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(binding)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn finalize_current_module_macro_resolutions(&mut self) {
|
|
|
|
let module = self.current_module;
|
|
|
|
for &(mark, name, span) in module.legacy_macro_resolutions.borrow().iter() {
|
2016-11-22 19:51:37 -06:00
|
|
|
let legacy_scope = &self.invocations[&mark].legacy_scope;
|
2016-11-10 04:29:36 -06:00
|
|
|
let legacy_resolution = self.resolve_legacy_scope(legacy_scope, name, true);
|
|
|
|
let resolution = self.resolve_in_item_lexical_scope(name, MacroNS, Some(span));
|
|
|
|
let (legacy_resolution, resolution) = match (legacy_resolution, resolution) {
|
|
|
|
(Some(legacy_resolution), Some(resolution)) => (legacy_resolution, resolution),
|
|
|
|
_ => continue,
|
|
|
|
};
|
|
|
|
let (legacy_span, participle) = match legacy_resolution {
|
|
|
|
MacroBinding::Modern(binding) if binding.def() == resolution.def() => continue,
|
|
|
|
MacroBinding::Modern(binding) => (binding.span, "imported"),
|
|
|
|
MacroBinding::Legacy(binding) => (binding.span, "defined"),
|
|
|
|
};
|
|
|
|
let msg1 = format!("`{}` could resolve to the macro {} here", name, participle);
|
|
|
|
let msg2 = format!("`{}` could also resolve to the macro imported here", name);
|
|
|
|
self.session.struct_span_err(span, &format!("`{}` is ambiguous", name))
|
|
|
|
.span_note(legacy_span, &msg1)
|
|
|
|
.span_note(resolution.span, &msg2)
|
|
|
|
.emit();
|
2016-10-31 17:17:15 -05:00
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
2016-09-21 01:25:09 -05:00
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
fn suggest_macro_name(&mut self, name: &str, err: &mut DiagnosticBuilder<'a>) {
|
|
|
|
if let Some(suggestion) = find_best_match_for_name(self.macro_names.iter(), name, None) {
|
|
|
|
if suggestion != name {
|
|
|
|
err.help(&format!("did you mean `{}!`?", suggestion));
|
|
|
|
} else {
|
|
|
|
err.help(&format!("have you added the `#[macro_use]` on the module/import?"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-21 01:25:09 -05:00
|
|
|
|
2016-10-06 03:04:30 -05:00
|
|
|
fn collect_def_ids(&mut self, invocation: &'a InvocationData<'a>, expansion: &Expansion) {
|
2016-10-03 18:48:19 -05:00
|
|
|
let Resolver { ref mut invocations, arenas, graph_root, .. } = *self;
|
2016-10-06 03:04:30 -05:00
|
|
|
let InvocationData { def_index, const_integer, .. } = *invocation;
|
2016-09-16 03:50:34 -05:00
|
|
|
|
2016-09-23 16:13:59 -05:00
|
|
|
let visit_macro_invoc = &mut |invoc: map::MacroInvocationData| {
|
2016-10-03 18:48:19 -05:00
|
|
|
invocations.entry(invoc.mark).or_insert_with(|| {
|
|
|
|
arenas.alloc_invocation_data(InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
def_index: invoc.def_index,
|
|
|
|
const_integer: invoc.const_integer,
|
|
|
|
module: Cell::new(graph_root),
|
2016-10-06 03:04:30 -05:00
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
2016-09-16 03:50:34 -05:00
|
|
|
})
|
2016-09-14 04:55:20 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-09-16 01:45:03 -05:00
|
|
|
let mut def_collector = DefCollector::new(&mut self.definitions);
|
2016-09-14 04:55:20 -05:00
|
|
|
def_collector.visit_macro_invoc = Some(visit_macro_invoc);
|
2016-09-28 21:23:19 -05:00
|
|
|
def_collector.with_parent(def_index, |def_collector| {
|
|
|
|
if const_integer {
|
|
|
|
if let Expansion::Expr(ref expr) = *expansion {
|
|
|
|
def_collector.visit_ast_const_integer(expr);
|
|
|
|
}
|
|
|
|
}
|
2016-09-23 16:13:59 -05:00
|
|
|
expansion.visit_with(def_collector)
|
|
|
|
});
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|