10#include "clang/AST/ASTContext.h"
11#include "clang/ASTMatchers/ASTMatchFinder.h"
18 return Node.getBeginLoc().isValid();
22 clang::ast_matchers::internal::Matcher<clang::Type>,
24 const clang::Type *TypeNode =
Node.getTypePtr();
25 return TypeNode !=
nullptr &&
26 InnerMatcher.matches(*TypeNode, Finder,
Builder);
30 return Node.isExternCContext();
34 const clang::DeclContext *DC =
Node.getDeclContext();
35 const auto *FD = llvm::dyn_cast<clang::FunctionDecl>(DC);
36 return FD ? FD->isMain() :
false;
45 typeLoc(hasValidBeginLoc(), hasType(arrayType()),
46 unless(anyOf(hasParent(parmVarDecl(isArgvOfMain())),
47 hasParent(varDecl(isExternC())),
49 hasParent(recordDecl(isExternCContext())))),
50 hasAncestor(functionDecl(isExternC())))))
56 const auto *ArrayType = Result.Nodes.getNodeAs<TypeLoc>(
"typeloc");
58 diag(ArrayType->getBeginLoc(),
59 "do not declare %select{C-style|C VLA}0 arrays, use "
60 "%select{std::array<>|std::vector<>}0 instead")
61 << ArrayType->getTypePtr()->isVariableArrayType();
CodeCompletionBuilder Builder
::clang::DynTypedNode Node
DiagnosticBuilder diag(SourceLocation Loc, StringRef Description, DiagnosticIDs::Level Level=DiagnosticIDs::Warning)
Add a diagnostic with the check's name.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
AST_MATCHER_P(UserDefinedLiteral, hasLiteral, clang::ast_matchers::internal::Matcher< Expr >, InnerMatcher)
AST_MATCHER(Decl, declHasNoReturnAttr)
matches a Decl if it has a "no return" attribute of any kind