10#include "clang/AST/ASTContext.h"
11#include "clang/ASTMatchers/ASTMatchFinder.h"
20 hasType(cxxRecordDecl(
21 isSameOrDerivedFrom(matchesName(
"[Ee]xception|EXCEPTION")))),
24 stmt(anyOf(cxxThrowExpr(), callExpr(), returnStmt()))),
25 hasAncestor(decl(anyOf(varDecl(), fieldDecl()))),
26 hasAncestor(expr(cxxNewExpr(hasAnyPlacementArg(anything())))),
27 allOf(hasAncestor(cxxConstructorDecl()),
28 unless(hasAncestor(cxxCatchStmt()))))))
29 .bind(
"temporary-exception-not-thrown"),
34 const auto *TemporaryExpr =
35 Result.Nodes.getNodeAs<Expr>(
"temporary-exception-not-thrown");
37 diag(TemporaryExpr->getBeginLoc(),
"suspicious exception object created but "
38 "not thrown; did you mean 'throw %0'?")
39 << TemporaryExpr->getType().getBaseTypeIdentifier()->getName();
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.