blob: eb18dcd29eb802251e72f8b98230f071859a6ba9 [file] [log] [blame]
Yan Zhang8c348b32017-11-30 19:05:08 +00001//===--- AvoidNSErrorInitCheck.cpp - clang-tidy----------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Yan Zhang8c348b32017-11-30 19:05:08 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "AvoidNSErrorInitCheck.h"
10#include "clang/AST/ASTContext.h"
11#include "clang/ASTMatchers/ASTMatchFinder.h"
12
13using namespace clang::ast_matchers;
14
15namespace clang {
16namespace tidy {
17namespace objc {
18
19void AvoidNSErrorInitCheck::registerMatchers(MatchFinder *Finder) {
Yan Zhangc7faee72018-03-07 18:59:25 +000020 // this check should only be applied to ObjC sources.
Erik Pilkingtonfa983902018-10-30 20:31:30 +000021 if (!getLangOpts().ObjC)
Yan Zhangc7faee72018-03-07 18:59:25 +000022 return;
Erik Pilkingtonfa983902018-10-30 20:31:30 +000023
Yan Zhang8c348b32017-11-30 19:05:08 +000024 Finder->addMatcher(objcMessageExpr(hasSelector("init"),
25 hasReceiverType(asString("NSError *")))
26 .bind("nserrorInit"),
27 this);
28}
29
30void AvoidNSErrorInitCheck::check(const MatchFinder::MatchResult &Result) {
31 const auto *MatchedExpr =
32 Result.Nodes.getNodeAs<ObjCMessageExpr>("nserrorInit");
Stephen Kelly43465bf2018-08-09 22:42:26 +000033 diag(MatchedExpr->getBeginLoc(),
Yan Zhang8c348b32017-11-30 19:05:08 +000034 "use errorWithDomain:code:userInfo: or initWithDomain:code:userInfo: to "
35 "create a new NSError");
36}
37
38} // namespace objc
39} // namespace tidy
40} // namespace clang