Gabor Horvath | 40b6512 | 2017-08-08 15:33:48 +0000 | [diff] [blame^] | 1 | //===--- 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 | |
| 15 | namespace clang { |
| 16 | namespace tidy { |
| 17 | namespace 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 |
| 24 | class StaticAccessedThroughInstanceCheck : public ClangTidyCheck { |
| 25 | public: |
| 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 | |
| 35 | private: |
| 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 |