rust/clippy_lints/src/dbg_macro.rs

69 lines
2.1 KiB
Rust
Raw Normal View History

use crate::utils::{snippet_opt, span_help_and_lint, span_lint_and_sugg};
2019-05-13 18:34:08 -05:00
use crate::utils::sym;
2019-01-30 11:39:38 -06:00
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
2019-04-08 15:43:55 -05:00
use rustc::{declare_lint_pass, declare_tool_lint};
use rustc_errors::Applicability;
use syntax::ast;
use syntax::source_map::Span;
use syntax::tokenstream::TokenStream;
2019-01-30 11:39:38 -06:00
declare_clippy_lint! {
/// **What it does:** Checks for usage of dbg!() macro.
///
/// **Why is this bad?** `dbg!` macro is intended as a debugging tool. It
/// should not be in version control.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// // Bad
/// dbg!(true)
///
/// // Good
/// true
/// ```
2019-01-30 11:39:38 -06:00
pub DBG_MACRO,
2019-01-31 18:23:40 -06:00
restriction,
2019-01-30 11:39:38 -06:00
"`dbg!` macro is intended as a debugging tool"
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(DbgMacro => [DBG_MACRO]);
2019-01-30 11:39:38 -06:00
2019-04-08 15:43:55 -05:00
impl EarlyLintPass for DbgMacro {
2019-01-30 11:39:38 -06:00
fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::Mac) {
2019-05-13 18:34:08 -05:00
if mac.node.path == *sym::dbg {
2019-02-03 03:50:00 -06:00
if let Some(sugg) = tts_span(mac.node.tts.clone()).and_then(|span| snippet_opt(cx, span)) {
span_lint_and_sugg(
cx,
DBG_MACRO,
mac.span,
"`dbg!` macro is intended as a debugging tool",
"ensure to avoid having uses of it in version control",
sugg,
Applicability::MaybeIncorrect,
);
} else {
span_help_and_lint(
cx,
DBG_MACRO,
mac.span,
"`dbg!` macro is intended as a debugging tool",
"ensure to avoid having uses of it in version control",
);
}
2019-01-30 11:39:38 -06:00
}
}
}
// Get span enclosing entire the token stream.
fn tts_span(tts: TokenStream) -> Option<Span> {
let mut cursor = tts.into_trees();
let first = cursor.next()?.span();
let span = match cursor.last() {
Some(tree) => first.to(tree.span()),
None => first,
};
Some(span)
}