diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-02-27 00:46:06 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-02-27 00:46:06 +0000 |
commit | 664e860beb2550bef24fb8946192f61648a71d7f (patch) | |
tree | af19f6fb553b830c4008bbe374c9446b467e2621 /lib/AST/CommentSema.cpp | |
parent | 714b509bb4f8be76e6616944551efe7a6e8358cd (diff) |
comment parsing: Properties are considered like methods, and people
think of them as having return values that may be computed. Don't
warn when using @return in their comment. // rdar://13189938
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176147 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CommentSema.cpp')
-rw-r--r-- | lib/AST/CommentSema.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/AST/CommentSema.cpp b/lib/AST/CommentSema.cpp index fd2b5b1810..73e49e71db 100644 --- a/lib/AST/CommentSema.cpp +++ b/lib/AST/CommentSema.cpp @@ -465,6 +465,9 @@ void Sema::checkReturnsCommand(const BlockCommandComment *Command) { } return; } + else if (isObjCPropertyDecl()) + return; + Diag(Command->getLocation(), diag::warn_doc_returns_not_attached_to_a_function_decl) << Command->getCommandName(Traits) @@ -652,6 +655,14 @@ bool Sema::isFunctionDecl() { inspectThisDecl(); return ThisDeclInfo->getKind() == DeclInfo::FunctionKind; } + +bool Sema::isObjCPropertyDecl() { + if (!ThisDeclInfo) + return false; + if (!ThisDeclInfo->IsFilled) + inspectThisDecl(); + return ThisDeclInfo->CurrentDecl->getKind() == Decl::ObjCProperty; +} bool Sema::isTemplateOrSpecialization() { if (!ThisDeclInfo) |