Support #[allow] etc logic on a per macro level
This commit extends the current unused macro linter to support directives like #[allow(unused_macros)] or #[deny(unused_macros)] directly next to the macro definition, or in one of the modules the macro is inside. Before, we only supported such directives at a per crate level, due to the crate's NodeId being passed to session.add_lint. We also had to implement handling of the macro's NodeId in the lint visitor.
This commit is contained in:
@@ -49,6 +49,7 @@ use hir;
|
|||||||
use hir::def_id::LOCAL_CRATE;
|
use hir::def_id::LOCAL_CRATE;
|
||||||
use hir::intravisit as hir_visit;
|
use hir::intravisit as hir_visit;
|
||||||
use syntax::visit as ast_visit;
|
use syntax::visit as ast_visit;
|
||||||
|
use syntax::tokenstream::ThinTokenStream;
|
||||||
|
|
||||||
/// Information about the registered lints.
|
/// Information about the registered lints.
|
||||||
///
|
///
|
||||||
@@ -1125,6 +1126,13 @@ impl<'a> ast_visit::Visitor<'a> for EarlyContext<'a> {
|
|||||||
fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
|
fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
|
||||||
run_lints!(self, check_attribute, early_passes, attr);
|
run_lints!(self, check_attribute, early_passes, attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn visit_mac_def(&mut self, _mac: &'a ThinTokenStream, id: ast::NodeId) {
|
||||||
|
let lints = self.sess.lints.borrow_mut().take(id);
|
||||||
|
for early_lint in lints {
|
||||||
|
self.early_lint(&early_lint);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum CheckLintNameResult {
|
enum CheckLintNameResult {
|
||||||
|
|||||||
@@ -103,7 +103,8 @@ impl<'a> Registry<'a> {
|
|||||||
}
|
}
|
||||||
self.syntax_exts.push((name, match extension {
|
self.syntax_exts.push((name, match extension {
|
||||||
NormalTT(ext, _, allow_internal_unstable) => {
|
NormalTT(ext, _, allow_internal_unstable) => {
|
||||||
NormalTT(ext, Some(self.krate_span), allow_internal_unstable)
|
let nid = ast::CRATE_NODE_ID;
|
||||||
|
NormalTT(ext, Some((nid, self.krate_span)), allow_internal_unstable)
|
||||||
}
|
}
|
||||||
IdentTT(ext, _, allow_internal_unstable) => {
|
IdentTT(ext, _, allow_internal_unstable) => {
|
||||||
IdentTT(ext, Some(self.krate_span), allow_internal_unstable)
|
IdentTT(ext, Some(self.krate_span), allow_internal_unstable)
|
||||||
|
|||||||
@@ -305,17 +305,14 @@ impl<'a> base::Resolver for Resolver<'a> {
|
|||||||
|
|
||||||
fn check_unused_macros(&self) {
|
fn check_unused_macros(&self) {
|
||||||
for (did, _) in self.unused_macros.iter().filter(|&(_, b)| *b) {
|
for (did, _) in self.unused_macros.iter().filter(|&(_, b)| *b) {
|
||||||
let span = match *self.macro_map[did] {
|
let id_span = match *self.macro_map[did] {
|
||||||
SyntaxExtension::NormalTT(_, sp, _) => sp,
|
SyntaxExtension::NormalTT(_, isp, _) => isp,
|
||||||
SyntaxExtension::IdentTT(_, sp, _) => sp,
|
|
||||||
_ => None
|
_ => None
|
||||||
};
|
};
|
||||||
if let Some(span) = span {
|
if let Some((id, span)) = id_span {
|
||||||
let lint = lint::builtin::UNUSED_MACROS;
|
let lint = lint::builtin::UNUSED_MACROS;
|
||||||
let msg = "unused macro".to_string();
|
let msg = "unused macro definition".to_string();
|
||||||
// We are using CRATE_NODE_ID here even though its inaccurate, as we
|
self.session.add_lint(lint, id, span, msg);
|
||||||
// sadly don't have the NodeId of the macro definition.
|
|
||||||
self.session.add_lint(lint, ast::CRATE_NODE_ID, span, msg);
|
|
||||||
} else {
|
} else {
|
||||||
bug!("attempted to create unused macro error, but span not available");
|
bug!("attempted to create unused macro error, but span not available");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -535,7 +535,7 @@ pub enum SyntaxExtension {
|
|||||||
///
|
///
|
||||||
/// The `bool` dictates whether the contents of the macro can
|
/// The `bool` dictates whether the contents of the macro can
|
||||||
/// directly use `#[unstable]` things (true == yes).
|
/// directly use `#[unstable]` things (true == yes).
|
||||||
NormalTT(Box<TTMacroExpander>, Option<Span>, bool),
|
NormalTT(Box<TTMacroExpander>, Option<(ast::NodeId, Span)>, bool),
|
||||||
|
|
||||||
/// A function-like syntax extension that has an extra ident before
|
/// A function-like syntax extension that has an extra ident before
|
||||||
/// the block.
|
/// the block.
|
||||||
|
|||||||
@@ -469,7 +469,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
|
|||||||
call_site: span,
|
call_site: span,
|
||||||
callee: NameAndSpan {
|
callee: NameAndSpan {
|
||||||
format: MacroBang(Symbol::intern(&format!("{}", path))),
|
format: MacroBang(Symbol::intern(&format!("{}", path))),
|
||||||
span: exp_span,
|
span: exp_span.map(|(_, s)| s),
|
||||||
allow_internal_unstable: allow_internal_unstable,
|
allow_internal_unstable: allow_internal_unstable,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -252,7 +252,11 @@ pub fn compile(sess: &ParseSess, features: &RefCell<Features>, def: &ast::Item)
|
|||||||
valid: valid,
|
valid: valid,
|
||||||
});
|
});
|
||||||
|
|
||||||
NormalTT(exp, Some(def.span), attr::contains_name(&def.attrs, "allow_internal_unstable"))
|
NormalTT(
|
||||||
|
exp,
|
||||||
|
Some((def.id, def.span)),
|
||||||
|
attr::contains_name(&def.attrs, "allow_internal_unstable")
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn check_lhs_nt_follows(sess: &ParseSess,
|
fn check_lhs_nt_follows(sess: &ParseSess,
|
||||||
|
|||||||
Reference in New Issue
Block a user