clang-tools 22.0.0git
StaticAccessedThroughInstanceCheck.h
Go to the documentation of this file.
1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H
11
12#include "../ClangTidyCheck.h"
13
15
16/// Checks for member expressions that access static members through
17/// instances and replaces them with uses of the appropriate qualified-id.
18///
19/// For the user-facing documentation see:
20/// https://clang.llvm.org/extra/clang-tidy/checks/readability/static-accessed-through-instance.html
22public:
24 : ClangTidyCheck(Name, Context),
25 NameSpecifierNestingThreshold(
26 Options.get("NameSpecifierNestingThreshold", 3U)) {}
27 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
28 return LangOpts.CPlusPlus;
29 }
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 std::optional<TraversalKind> getCheckTraversalKind() const override {
35 return TK_IgnoreUnlessSpelledInSource;
36 }
37
38private:
39 const unsigned NameSpecifierNestingThreshold;
40};
41
42} // namespace clang::tidy::readability
43
44#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_STATIC_ACCESSED_THROUGH_INSTANCE_H
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
llvm::StringMap< ClangTidyValue > OptionMap