]> granicus.if.org Git - clang/commitdiff
[analyzer] Doxygen comments in ObjCMethodCall.
authorJordan Rose <jordan_rose@apple.com>
Wed, 15 Aug 2012 00:52:03 +0000 (00:52 +0000)
committerJordan Rose <jordan_rose@apple.com>
Wed, 15 Aug 2012 00:52:03 +0000 (00:52 +0000)
No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161917 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h

index 6e04ba6fe5cb21621a5131ff7e4ab333003d0b99..f6c5830c2955f0d0efe224f868d49b1a62ead7db 100644 (file)
@@ -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: