From 3e4530756496559ece7cf196230a07e836940415 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Wed, 15 Aug 2012 00:52:03 +0000 Subject: [PATCH] [analyzer] Doxygen comments in ObjCMethodCall. No functionality change. llvm-svn: 161917 --- .../clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h index 6e04ba6fe5cb..f6c5830c2955 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h @@ -804,8 +804,12 @@ public: return getOriginExpr()->getReceiverInterface(); } + /// Returns how the message was written in the source (property access, + /// subscript, or explicit message send). ObjCMessageKind getMessageKind() const; + /// Returns true if this property access or subscript is a setter (has the + /// form of an assignment). bool isSetter() const { switch (getMessageKind()) { case OCM_Message: