aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-11-18 22:56:13 +0000
committerDouglas Gregor <dgregor@apple.com>2009-11-18 22:56:13 +0000
commit424b2a546dbd09cf70d43087771c7fff851ca158 (patch)
tree5d31614d8091b1bd9ed7e06726df95c502d7d4ff /include/clang/Parse/Action.h
parent6826314938f8510cd1a6b03b5d032592456ae27b (diff)
Code completion after @dynamic
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index 3165b0eb2f..0c1335cb70 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -2408,12 +2408,12 @@ public:
IdentifierInfo *ClassName) {
}
- /// \brief Code completion for the property names when synthesizing an
+ /// \brief Code completion for the property names when defining an
/// Objective-C property.
///
- /// This code completion action is invoked after the @synthesized and after
- /// each "," in an @synthesized definition.
- virtual void CodeCompleteObjCPropertySynthesize(Scope *S,
+ /// This code completion action is invoked after @synthesize or @dynamic and
+ /// after each "," within one of those definitions.
+ virtual void CodeCompleteObjCPropertyDefinition(Scope *S,
DeclPtrTy ObjCImpDecl) {
}