blob: de3fdd64601389bb0aeae08d4d1ba0699e6b578d [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 Zhang8c348b32017-11-30 19:05:08 +000020 Finder->addMatcher(objcMessageExpr(hasSelector("init"),
21 hasReceiverType(asString("NSError *")))
22 .bind("nserrorInit"),
23 this);
24}
25
26void AvoidNSErrorInitCheck::check(const MatchFinder::MatchResult &Result) {
27 const auto *MatchedExpr =
28 Result.Nodes.getNodeAs<ObjCMessageExpr>("nserrorInit");
Stephen Kelly43465bf2018-08-09 22:42:26 +000029 diag(MatchedExpr->getBeginLoc(),
Yan Zhang8c348b32017-11-30 19:05:08 +000030 "use errorWithDomain:code:userInfo: or initWithDomain:code:userInfo: to "
31 "create a new NSError");
32}
33
34} // namespace objc
35} // namespace tidy
36} // namespace clang