├── FitbitFBBinderVisitor.cpp ├── FitbitFBBinderVisitor.h ├── KVC Warning Test ├── Department.h ├── Department.m ├── Employee.h ├── Employee.m ├── KVC Warning Test.xcodeproj │ └── project.pbxproj ├── clang_warning_wrapper.sh └── main.m ├── KeyPathValidationConsumer.cpp ├── KeyPathValidationConsumer.h ├── KeyPathValidator.exports ├── KeyPathsAffectingVisitor.cpp ├── KeyPathsAffectingVisitor.h ├── LICENSE.txt ├── Makefile ├── README.md ├── ValidateKeyPathsAction.cpp ├── ValueForKeyVisitor.cpp ├── ValueForKeyVisitor.h └── test ├── basic.m └── binder.m /FitbitFBBinderVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/FitbitFBBinderVisitor.cpp -------------------------------------------------------------------------------- /FitbitFBBinderVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/FitbitFBBinderVisitor.h -------------------------------------------------------------------------------- /KVC Warning Test/Department.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/Department.h -------------------------------------------------------------------------------- /KVC Warning Test/Department.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/Department.m -------------------------------------------------------------------------------- /KVC Warning Test/Employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/Employee.h -------------------------------------------------------------------------------- /KVC Warning Test/Employee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/Employee.m -------------------------------------------------------------------------------- /KVC Warning Test/KVC Warning Test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/KVC Warning Test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KVC Warning Test/clang_warning_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/clang_warning_wrapper.sh -------------------------------------------------------------------------------- /KVC Warning Test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KVC Warning Test/main.m -------------------------------------------------------------------------------- /KeyPathValidationConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KeyPathValidationConsumer.cpp -------------------------------------------------------------------------------- /KeyPathValidationConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KeyPathValidationConsumer.h -------------------------------------------------------------------------------- /KeyPathValidator.exports: -------------------------------------------------------------------------------- 1 | _ZN4llvm8Registry* 2 | -------------------------------------------------------------------------------- /KeyPathsAffectingVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KeyPathsAffectingVisitor.cpp -------------------------------------------------------------------------------- /KeyPathsAffectingVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/KeyPathsAffectingVisitor.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/README.md -------------------------------------------------------------------------------- /ValidateKeyPathsAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/ValidateKeyPathsAction.cpp -------------------------------------------------------------------------------- /ValueForKeyVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/ValueForKeyVisitor.cpp -------------------------------------------------------------------------------- /ValueForKeyVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/ValueForKeyVisitor.h -------------------------------------------------------------------------------- /test/basic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/test/basic.m -------------------------------------------------------------------------------- /test/binder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmah/Clang-KeyPathValidator/HEAD/test/binder.m --------------------------------------------------------------------------------