blob: c2eebabe8e91a67d607b98ff2791bab8e3461184 [file] [log] [blame]
Gabor Horvath40b65122017-08-08 15:33:48 +00001//===--- StaticAccessedThroughInstanceCheck.h - clang-tidy-------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H
11#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H
12
13#include "../ClangTidy.h"
14
15namespace clang {
16namespace tidy {
17namespace readability {
18
19/// \@brief Checks for member expressions that access static members through
20/// instances and replaces them with uses of the appropriate qualified-id.
21///
22/// For the user-facing documentation see:
23/// http://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html
24class StaticAccessedThroughInstanceCheck : public ClangTidyCheck {
25public:
26 StaticAccessedThroughInstanceCheck(StringRef Name, ClangTidyContext *Context)
27 : ClangTidyCheck(Name, Context),
28 NameSpecifierNestingThreshold(
29 Options.get("NameSpecifierNestingThreshold", 3)) {}
30
31 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
32 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
33 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
34
35private:
36 const unsigned NameSpecifierNestingThreshold;
37};
38
39} // namespace readability
40} // namespace tidy
41} // namespace clang
42
43#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H