diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-18 04:49:41 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-18 04:49:41 +0000 |
commit | 083128f6b13dfa4fc615a838c49b516d901b1ac0 (patch) | |
tree | def44ecba839527fc44cdc64cf2821def09ce5d6 /include | |
parent | f9a7c18a4db3afca497fc44ee8cf802db5626494 (diff) |
Code completion after @property, providing the names of forward-declared properties
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Parse/Action.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index ee852ff95c..a9b3213323 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -2365,6 +2365,12 @@ public: /// parsed. virtual void CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols, unsigned NumProtocols) { } + + /// \brief Code completion for a protocol declaration or definition, after + /// the @protocol but before any identifier. + /// + /// \param S the scope in which the protocol declaration occurs. + virtual void CodeCompleteObjCProtocolDecl(Scope *S) { } //@} }; |