blob: 2a2f3eed0c29f6418ca4e86fc7a787599f9a7b9d [file] [log] [blame]
Argyrios Kyrtzidis43dee222011-02-14 18:13:31 +00001//===--- Checkers.td - Static Analyzer Checkers -===-----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10include "clang/StaticAnalyzer/Checkers/CheckerBase.td"
11
12def Cocoa : Package<"cocoa">;
13
14def : Checker<"ObjCSelfInitChecker">,
15 InPackage<Cocoa>,
16 Named<"SelfInit">,
17 HelpText<"Check that 'self' is propely initialized inside an initializer method">,
18 DescFile<"ObjCSelfInitChecker.cpp">;