[cfe-commits] r161917 - /cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
Jordan Rose
jordan_rose at apple.com
Tue Aug 14 17:52:03 PDT 2012
Author: jrose
Date: Tue Aug 14 19:52:03 2012
New Revision: 161917
URL: http://llvm.org/viewvc/llvm-project?rev=161917&view=rev
Log:
[analyzer] Doxygen comments in ObjCMethodCall.
No functionality change.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h?rev=161917&r1=161916&r2=161917&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h Tue Aug 14 19:52:03 2012
@@ -804,8 +804,12 @@
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:
More information about the cfe-commits
mailing list