This commit is contained in:
Yuki Okushi
2020-03-01 12:23:33 +09:00
parent 610bceae71
commit 4253aa7137
84 changed files with 113 additions and 113 deletions

View File

@@ -1,13 +1,13 @@
//! calculate cognitive complexity and warn about overly complex functions
use rustc::hir::map::Map;
use rustc_ast::ast::Attribute;
use rustc_hir::intravisit::{walk_expr, FnKind, NestedVisitorMap, Visitor};
use rustc_hir::{Body, Expr, ExprKind, FnDecl, HirId};
use rustc_lint::{LateContext, LateLintPass, LintContext};
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::source_map::Span;
use rustc_span::BytePos;
use syntax::ast::Attribute;
use crate::utils::{match_type, paths, snippet_opt, span_lint_and_help, LimitStack};