[analyzer] Doxygen comments in ObjCMethodCall.

No functionality change.

llvm-svn: 161917
This commit is contained in:
Jordan Rose 2012-08-15 00:52:03 +00:00
parent 5132aaeb04
commit 3e45307564
1 changed files with 4 additions and 0 deletions

View 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: