2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::{span_lint, span_lint_and_then};
|
2021-01-29 07:31:08 +00:00
|
|
|
use rustc_ast::ast::{
|
2021-08-08 14:49:13 +00:00
|
|
|
Arm, AssocItem, AssocItemKind, Attribute, Block, FnDecl, FnKind, Item, ItemKind, Local, Pat, PatKind,
|
2021-01-29 07:31:08 +00:00
|
|
|
};
|
2020-03-01 03:23:33 +00:00
|
|
|
use rustc_ast::visit::{walk_block, walk_expr, walk_pat, Visitor};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass};
|
2020-05-28 13:45:24 +00:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 10:00:00 +00:00
|
|
|
use rustc_span::source_map::Span;
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2020-07-13 06:45:35 +00:00
|
|
|
use rustc_span::symbol::{Ident, Symbol};
|
2019-09-24 21:55:05 +00:00
|
|
|
use std::cmp::Ordering;
|
2016-03-01 09:13:54 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for names that are very similar and thus confusing.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It's hard to distinguish between names that differ only
|
2019-03-05 16:50:33 +00:00
|
|
|
/// by a single character.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// let checked_exp = something;
|
|
|
|
/// let checked_expr = something_else;
|
|
|
|
/// ```
|
2016-03-01 09:13:54 +00:00
|
|
|
pub SIMILAR_NAMES,
|
2018-03-28 13:24:26 +00:00
|
|
|
pedantic,
|
2016-03-01 09:13:54 +00:00
|
|
|
"similarly named items and bindings"
|
|
|
|
}
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for too many variables whose name consists of a
|
2019-03-05 16:50:33 +00:00
|
|
|
/// single character.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It's hard to memorize what a variable means without a
|
2019-03-05 16:50:33 +00:00
|
|
|
/// descriptive name.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// let (a, b, c, d, e, f, g) = (...);
|
|
|
|
/// ```
|
2016-03-01 12:05:39 +00:00
|
|
|
pub MANY_SINGLE_CHAR_NAMES,
|
2021-09-14 16:48:30 +00:00
|
|
|
pedantic,
|
2016-03-01 12:05:39 +00:00
|
|
|
"too many single character bindings"
|
|
|
|
}
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks if you have variables whose name consists of just
|
2019-03-05 16:50:33 +00:00
|
|
|
/// underscores and digits.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It's hard to memorize what a variable means without a
|
2019-03-05 16:50:33 +00:00
|
|
|
/// descriptive name.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
|
|
|
/// let _1 = 1;
|
|
|
|
/// let ___1 = 1;
|
|
|
|
/// let __1___2 = 11;
|
|
|
|
/// ```
|
2017-11-03 01:01:41 +00:00
|
|
|
pub JUST_UNDERSCORES_AND_DIGITS,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2017-11-03 01:01:41 +00:00
|
|
|
"unclear name"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2016-03-01 12:05:39 +00:00
|
|
|
pub struct NonExpressiveNames {
|
2017-05-09 13:23:38 +00:00
|
|
|
pub single_char_binding_names_threshold: u64,
|
2016-03-01 12:05:39 +00:00
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl_lint_pass!(NonExpressiveNames => [SIMILAR_NAMES, MANY_SINGLE_CHAR_NAMES, JUST_UNDERSCORES_AND_DIGITS]);
|
2016-03-01 09:13:54 +00:00
|
|
|
|
2016-03-30 15:05:15 +00:00
|
|
|
struct ExistingName {
|
2020-07-13 06:45:35 +00:00
|
|
|
interned: Symbol,
|
2016-03-30 15:05:15 +00:00
|
|
|
span: Span,
|
|
|
|
len: usize,
|
2020-07-07 15:12:44 +00:00
|
|
|
exemptions: &'static [&'static str],
|
2016-03-30 15:05:15 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
struct SimilarNamesLocalVisitor<'a, 'tcx> {
|
2016-03-30 15:05:15 +00:00
|
|
|
names: Vec<ExistingName>,
|
2016-12-06 10:32:21 +00:00
|
|
|
cx: &'a EarlyContext<'tcx>,
|
2016-03-01 12:05:39 +00:00
|
|
|
lint: &'a NonExpressiveNames,
|
2019-04-03 19:06:39 +00:00
|
|
|
|
|
|
|
/// A stack of scopes containing the single-character bindings in each scope.
|
|
|
|
single_char_names: Vec<Vec<Ident>>,
|
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, 'tcx> SimilarNamesLocalVisitor<'a, 'tcx> {
|
2019-04-03 19:06:39 +00:00
|
|
|
fn check_single_char_names(&self) {
|
|
|
|
let num_single_char_names = self.single_char_names.iter().flatten().count();
|
|
|
|
let threshold = self.lint.single_char_binding_names_threshold;
|
2020-04-15 11:22:28 +00:00
|
|
|
if num_single_char_names as u64 > threshold {
|
2019-04-03 19:06:39 +00:00
|
|
|
let span = self
|
|
|
|
.single_char_names
|
|
|
|
.iter()
|
|
|
|
.flatten()
|
|
|
|
.map(|ident| ident.span)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
span_lint(
|
|
|
|
self.cx,
|
|
|
|
MANY_SINGLE_CHAR_NAMES,
|
|
|
|
span,
|
|
|
|
&format!(
|
|
|
|
"{} bindings with single-character names in scope",
|
|
|
|
num_single_char_names
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 15:05:15 +00:00
|
|
|
// this list contains lists of names that are allowed to be similar
|
|
|
|
// the assumption is that no name is ever contained in multiple lists.
|
2018-05-30 16:24:44 +00:00
|
|
|
#[rustfmt::skip]
|
2020-07-07 15:12:44 +00:00
|
|
|
const ALLOWED_TO_BE_SIMILAR: &[&[&str]] = &[
|
2016-03-30 15:05:15 +00:00
|
|
|
&["parsed", "parser"],
|
|
|
|
&["lhs", "rhs"],
|
2016-03-31 13:38:43 +00:00
|
|
|
&["tx", "rx"],
|
|
|
|
&["set", "get"],
|
2017-10-27 08:51:43 +00:00
|
|
|
&["args", "arms"],
|
|
|
|
&["qpath", "path"],
|
|
|
|
&["lit", "lint"],
|
2021-06-03 06:41:37 +00:00
|
|
|
&["wparam", "lparam"],
|
2021-08-12 09:16:25 +00:00
|
|
|
&["iter", "item"],
|
2016-03-01 09:13:54 +00:00
|
|
|
];
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
struct SimilarNamesNameVisitor<'a, 'tcx, 'b>(&'b mut SimilarNamesLocalVisitor<'a, 'tcx>);
|
2016-03-01 09:13:54 +00:00
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, 'tcx, 'b> Visitor<'tcx> for SimilarNamesNameVisitor<'a, 'tcx, 'b> {
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_pat(&mut self, pat: &'tcx Pat) {
|
2019-09-27 15:16:06 +00:00
|
|
|
match pat.kind {
|
2020-05-28 13:45:24 +00:00
|
|
|
PatKind::Ident(_, ident, _) => {
|
|
|
|
if !pat.span.from_expansion() {
|
|
|
|
self.check_ident(ident);
|
|
|
|
}
|
|
|
|
},
|
2020-12-10 12:20:07 +00:00
|
|
|
PatKind::Struct(_, _, ref fields, _) => {
|
2018-11-27 20:14:15 +00:00
|
|
|
for field in fields {
|
2019-08-16 02:30:38 +00:00
|
|
|
if !field.is_shorthand {
|
|
|
|
self.visit_pat(&field.pat);
|
2018-11-27 20:14:15 +00:00
|
|
|
}
|
2016-05-11 14:44:43 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-09-08 10:40:04 +00:00
|
|
|
// just go through the first pattern, as either all patterns
|
|
|
|
// bind the same bindings or rustc would have errored much earlier
|
|
|
|
PatKind::Or(ref pats) => self.visit_pat(&pats[0]),
|
2016-05-11 14:44:43 +00:00
|
|
|
_ => walk_pat(self, pat),
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2020-07-07 15:12:44 +00:00
|
|
|
fn get_exemptions(interned_name: &str) -> Option<&'static [&'static str]> {
|
|
|
|
for &list in ALLOWED_TO_BE_SIMILAR {
|
|
|
|
if allowed_to_be_similar(interned_name, list) {
|
|
|
|
return Some(list);
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
2016-03-30 15:05:15 +00:00
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2020-07-07 15:12:44 +00:00
|
|
|
fn allowed_to_be_similar(interned_name: &str, list: &[&str]) -> bool {
|
2017-09-05 09:33:04 +00:00
|
|
|
list.iter()
|
|
|
|
.any(|&name| interned_name.starts_with(name) || interned_name.ends_with(name))
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'a, 'tcx, 'b> SimilarNamesNameVisitor<'a, 'tcx, 'b> {
|
2019-04-03 19:06:39 +00:00
|
|
|
fn check_short_ident(&mut self, ident: Ident) {
|
|
|
|
// Ignore shadowing
|
|
|
|
if self
|
|
|
|
.0
|
|
|
|
.single_char_names
|
|
|
|
.iter()
|
|
|
|
.flatten()
|
|
|
|
.any(|id| id.name == ident.name)
|
|
|
|
{
|
2016-03-14 13:34:47 +00:00
|
|
|
return;
|
2019-06-20 11:44:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(scope) = &mut self.0.single_char_names.last_mut() {
|
2019-04-03 19:06:39 +00:00
|
|
|
scope.push(ident);
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-03 19:06:39 +00:00
|
|
|
|
2019-01-13 15:19:02 +00:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-04-03 19:06:39 +00:00
|
|
|
fn check_ident(&mut self, ident: Ident) {
|
|
|
|
let interned_name = ident.name.as_str();
|
2016-03-01 09:13:54 +00:00
|
|
|
if interned_name.chars().any(char::is_uppercase) {
|
|
|
|
return;
|
|
|
|
}
|
2017-11-03 01:01:41 +00:00
|
|
|
if interned_name.chars().all(|c| c.is_digit(10) || c == '_') {
|
|
|
|
span_lint(
|
|
|
|
self.0.cx,
|
2017-11-03 20:54:33 +00:00
|
|
|
JUST_UNDERSCORES_AND_DIGITS,
|
2019-04-03 19:06:39 +00:00
|
|
|
ident.span,
|
2017-11-03 20:54:33 +00:00
|
|
|
"consider choosing a more descriptive name",
|
2017-11-03 01:01:41 +00:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2021-01-30 17:06:34 +00:00
|
|
|
if interned_name.starts_with('_') {
|
|
|
|
// these bindings are typically unused or represent an ignored portion of a destructuring pattern
|
|
|
|
return;
|
|
|
|
}
|
2016-03-01 12:05:39 +00:00
|
|
|
let count = interned_name.chars().count();
|
|
|
|
if count < 3 {
|
2016-03-30 15:05:15 +00:00
|
|
|
if count == 1 {
|
2019-04-03 19:06:39 +00:00
|
|
|
self.check_short_ident(ident);
|
2016-03-08 13:36:21 +00:00
|
|
|
}
|
2016-03-01 09:13:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-03-30 15:05:15 +00:00
|
|
|
for existing_name in &self.0.names {
|
2020-07-07 15:12:44 +00:00
|
|
|
if allowed_to_be_similar(&interned_name, existing_name.exemptions) {
|
2016-03-30 15:05:15 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-09-24 21:55:05 +00:00
|
|
|
match existing_name.len.cmp(&count) {
|
|
|
|
Ordering::Greater => {
|
2020-07-26 19:07:07 +00:00
|
|
|
if existing_name.len - count != 1
|
|
|
|
|| levenstein_not_1(&interned_name, &existing_name.interned.as_str())
|
|
|
|
{
|
2019-09-24 21:55:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Ordering::Less => {
|
2020-07-26 19:07:07 +00:00
|
|
|
if count - existing_name.len != 1
|
|
|
|
|| levenstein_not_1(&existing_name.interned.as_str(), &interned_name)
|
|
|
|
{
|
2019-09-24 21:55:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Ordering::Equal => {
|
|
|
|
let mut interned_chars = interned_name.chars();
|
2020-07-13 06:45:35 +00:00
|
|
|
let interned_str = existing_name.interned.as_str();
|
|
|
|
let mut existing_chars = interned_str.chars();
|
2019-09-24 21:55:05 +00:00
|
|
|
let first_i = interned_chars.next().expect("we know we have at least one char");
|
|
|
|
let first_e = existing_chars.next().expect("we know we have at least one char");
|
|
|
|
let eq_or_numeric = |(a, b): (char, char)| a == b || a.is_numeric() && b.is_numeric();
|
2016-03-14 13:34:47 +00:00
|
|
|
|
2019-09-24 21:55:05 +00:00
|
|
|
if eq_or_numeric((first_i, first_e)) {
|
|
|
|
let last_i = interned_chars.next_back().expect("we know we have at least two chars");
|
|
|
|
let last_e = existing_chars.next_back().expect("we know we have at least two chars");
|
|
|
|
if eq_or_numeric((last_i, last_e)) {
|
|
|
|
if interned_chars
|
|
|
|
.zip(existing_chars)
|
|
|
|
.filter(|&ie| !eq_or_numeric(ie))
|
|
|
|
.count()
|
|
|
|
!= 1
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let second_last_i = interned_chars
|
|
|
|
.next_back()
|
|
|
|
.expect("we know we have at least three chars");
|
|
|
|
let second_last_e = existing_chars
|
|
|
|
.next_back()
|
|
|
|
.expect("we know we have at least three chars");
|
|
|
|
if !eq_or_numeric((second_last_i, second_last_e))
|
|
|
|
|| second_last_i == '_'
|
|
|
|
|| !interned_chars.zip(existing_chars).all(eq_or_numeric)
|
|
|
|
{
|
|
|
|
// allowed similarity foo_x, foo_y
|
|
|
|
// or too many chars differ (foo_x, boo_y) or (foox, booy)
|
|
|
|
continue;
|
|
|
|
}
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-09-24 21:55:05 +00:00
|
|
|
let second_i = interned_chars.next().expect("we know we have at least two chars");
|
|
|
|
let second_e = existing_chars.next().expect("we know we have at least two chars");
|
|
|
|
if !eq_or_numeric((second_i, second_e))
|
|
|
|
|| second_i == '_'
|
2017-11-04 19:55:56 +00:00
|
|
|
|| !interned_chars.zip(existing_chars).all(eq_or_numeric)
|
2017-08-09 07:30:56 +00:00
|
|
|
{
|
2019-09-24 21:55:05 +00:00
|
|
|
// allowed similarity x_foo, y_foo
|
|
|
|
// or too many chars differ (x_foo, y_boo) or (xfoo, yboo)
|
2016-03-14 13:34:47 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-03-30 14:40:21 +00:00
|
|
|
}
|
2019-09-24 21:55:05 +00:00
|
|
|
},
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
self.0.cx,
|
|
|
|
SIMILAR_NAMES,
|
2019-04-03 19:06:39 +00:00
|
|
|
ident.span,
|
2017-08-09 07:30:56 +00:00
|
|
|
"binding's name is too similar to existing binding",
|
|
|
|
|diag| {
|
|
|
|
diag.span_note(existing_name.span, "existing binding defined here");
|
|
|
|
},
|
|
|
|
);
|
2016-03-01 09:13:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-03-30 15:05:15 +00:00
|
|
|
self.0.names.push(ExistingName {
|
2020-07-07 15:12:44 +00:00
|
|
|
exemptions: get_exemptions(&interned_name).unwrap_or(&[]),
|
2020-07-13 06:45:35 +00:00
|
|
|
interned: ident.name,
|
2019-04-03 19:06:39 +00:00
|
|
|
span: ident.span,
|
2016-03-30 15:05:15 +00:00
|
|
|
len: count,
|
|
|
|
});
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 12:05:39 +00:00
|
|
|
impl<'a, 'b> SimilarNamesLocalVisitor<'a, 'b> {
|
2016-03-08 13:36:21 +00:00
|
|
|
/// ensure scoping rules work
|
|
|
|
fn apply<F: for<'c> Fn(&'c mut Self)>(&mut self, f: F) {
|
|
|
|
let n = self.names.len();
|
|
|
|
let single_char_count = self.single_char_names.len();
|
|
|
|
f(self);
|
|
|
|
self.names.truncate(n);
|
|
|
|
self.single_char_names.truncate(single_char_count);
|
2016-03-01 12:05:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for SimilarNamesLocalVisitor<'a, 'tcx> {
|
|
|
|
fn visit_local(&mut self, local: &'tcx Local) {
|
2021-07-25 23:27:44 +00:00
|
|
|
if let Some((init, els)) = &local.kind.init_else_opt() {
|
|
|
|
self.apply(|this| walk_expr(this, init));
|
|
|
|
if let Some(els) = els {
|
|
|
|
self.apply(|this| walk_block(this, els));
|
|
|
|
}
|
2016-03-08 13:36:21 +00:00
|
|
|
}
|
2017-08-09 07:30:56 +00:00
|
|
|
// add the pattern after the expression because the bindings aren't available
|
|
|
|
// yet in the init
|
2016-12-21 09:25:14 +00:00
|
|
|
// expression
|
2016-03-08 13:36:21 +00:00
|
|
|
SimilarNamesNameVisitor(self).visit_pat(&*local.pat);
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_block(&mut self, blk: &'tcx Block) {
|
2019-04-03 19:06:39 +00:00
|
|
|
self.single_char_names.push(vec![]);
|
|
|
|
|
2016-05-11 14:44:43 +00:00
|
|
|
self.apply(|this| walk_block(this, blk));
|
2019-04-03 19:06:39 +00:00
|
|
|
|
|
|
|
self.check_single_char_names();
|
|
|
|
self.single_char_names.pop();
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_arm(&mut self, arm: &'tcx Arm) {
|
2019-04-03 19:06:39 +00:00
|
|
|
self.single_char_names.push(vec![]);
|
|
|
|
|
2016-03-08 13:36:21 +00:00
|
|
|
self.apply(|this| {
|
2019-09-06 11:57:27 +00:00
|
|
|
SimilarNamesNameVisitor(this).visit_pat(&arm.pat);
|
2016-05-11 14:44:43 +00:00
|
|
|
this.apply(|this| walk_expr(this, &arm.body));
|
2016-03-08 13:36:21 +00:00
|
|
|
});
|
2019-04-03 19:06:39 +00:00
|
|
|
|
|
|
|
self.check_single_char_names();
|
|
|
|
self.single_char_names.pop();
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
2016-06-28 13:54:23 +00:00
|
|
|
fn visit_item(&mut self, _: &Item) {
|
2016-05-02 08:52:55 +00:00
|
|
|
// do not recurse into inner items
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 12:05:39 +00:00
|
|
|
impl EarlyLintPass for NonExpressiveNames {
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &Item) {
|
2020-05-28 13:45:24 +00:00
|
|
|
if in_external_macro(cx.sess, item.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-29 07:31:08 +00:00
|
|
|
if let ItemKind::Fn(box FnKind(_, ref sig, _, Some(ref blk))) = item.kind {
|
2019-11-08 20:12:08 +00:00
|
|
|
do_check(self, cx, &item.attrs, &sig.decl, blk);
|
2018-02-02 06:49:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 20:19:46 +00:00
|
|
|
fn check_impl_item(&mut self, cx: &EarlyContext<'_>, item: &AssocItem) {
|
2020-05-28 13:45:24 +00:00
|
|
|
if in_external_macro(cx.sess, item.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-29 07:31:08 +00:00
|
|
|
if let AssocItemKind::Fn(box FnKind(_, ref sig, _, Some(ref blk))) = item.kind {
|
2018-02-02 06:49:47 +00:00
|
|
|
do_check(self, cx, &item.attrs, &sig.decl, blk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn do_check(lint: &mut NonExpressiveNames, cx: &EarlyContext<'_>, attrs: &[Attribute], decl: &FnDecl, blk: &Block) {
|
2020-11-05 13:29:48 +00:00
|
|
|
if !attrs.iter().any(|attr| attr.has_name(sym::test)) {
|
2018-02-02 06:49:47 +00:00
|
|
|
let mut visitor = SimilarNamesLocalVisitor {
|
|
|
|
names: Vec::new(),
|
2018-03-15 15:07:15 +00:00
|
|
|
cx,
|
|
|
|
lint,
|
2019-04-03 19:06:39 +00:00
|
|
|
single_char_names: vec![vec![]],
|
2018-02-02 06:49:47 +00:00
|
|
|
};
|
2019-04-03 19:06:39 +00:00
|
|
|
|
2018-02-02 06:49:47 +00:00
|
|
|
// initialize with function arguments
|
|
|
|
for arg in &decl.inputs {
|
|
|
|
SimilarNamesNameVisitor(&mut visitor).visit_pat(&arg.pat);
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
2018-02-02 06:49:47 +00:00
|
|
|
// walk all other bindings
|
|
|
|
walk_block(&mut visitor, blk);
|
2019-04-03 19:06:39 +00:00
|
|
|
|
|
|
|
visitor.check_single_char_names();
|
2016-03-01 09:13:54 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-14 13:34:47 +00:00
|
|
|
|
2016-03-19 16:48:29 +00:00
|
|
|
/// Precondition: `a_name.chars().count() < b_name.chars().count()`.
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2016-03-14 13:34:47 +00:00
|
|
|
fn levenstein_not_1(a_name: &str, b_name: &str) -> bool {
|
|
|
|
debug_assert!(a_name.chars().count() < b_name.chars().count());
|
|
|
|
let mut a_chars = a_name.chars();
|
|
|
|
let mut b_chars = b_name.chars();
|
|
|
|
while let (Some(a), Some(b)) = (a_chars.next(), b_chars.next()) {
|
|
|
|
if a == b {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if let Some(b2) = b_chars.next() {
|
|
|
|
// check if there's just one character inserted
|
2016-03-23 13:50:47 +00:00
|
|
|
return a != b2 || a_chars.ne(b_chars);
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
2020-12-20 16:19:49 +00:00
|
|
|
// tuple
|
|
|
|
// ntuple
|
|
|
|
return true;
|
2016-03-14 13:34:47 +00:00
|
|
|
}
|
|
|
|
// for item in items
|
|
|
|
true
|
|
|
|
}
|