rust/clippy_lints/src/dbg_macro.rs

79 lines
2.1 KiB
Rust
Raw Normal View History

use crate::utils::{span_help_and_lint, span_lint_and_sugg, snippet_opt};
2019-01-30 11:39:38 -06:00
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
2019-01-31 21:03:13 -06:00
use syntax::ast;
use rustc_errors::Applicability;
use syntax::tokenstream::TokenStream;
use syntax::source_map::Span;
2019-01-30 11:39:38 -06:00
2019-01-31 18:23:40 -06:00
/// **What it does:** Checks for usage of dbg!() macro.
2019-01-30 11:39:38 -06:00
///
2019-01-31 18:23:40 -06:00
/// **Why is this bad?** `dbg!` macro is intended as a debugging tool. It
/// should not be in version control.
2019-01-30 11:39:38 -06:00
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// // Bad
/// dbg!(true)
///
/// // Good
/// true
/// ```
declare_clippy_lint! {
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"
}
#[derive(Copy, Clone, Debug)]
pub struct Pass;
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array!(DBG_MACRO)
}
fn name(&self) -> &'static str {
"DbgMacro"
}
}
impl EarlyLintPass for Pass {
fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::Mac) {
if mac.node.path == "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)
}