aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-10-08 21:55:05 +0000
committerSteve Naroff <snaroff@apple.com>2009-10-08 21:55:05 +0000
commitece8e71d12b6f4cb2dc501297afef126dab8ad74 (patch)
tree9993ab0de315ab53b19a38b2488fd4ba9ccc3d91 /include/clang/Parse/Action.h
parent8408db36ee6592dd08d20ffcaac36ba81cffd5b8 (diff)
Add code completion support for ObjC property declarations/attributes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83579 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index 4be5a763a9..5e0a360df1 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -2340,6 +2340,14 @@ public:
///
/// \param S the scope in which the operator keyword occurs.
virtual void CodeCompleteOperatorName(Scope *S) { }
+
+ /// \brief Code completion for an ObjC property decl.
+ ///
+ /// This code completion action is invoked when the code-completion token is
+ /// found after the left paren.
+ ///
+ /// \param S the scope in which the operator keyword occurs.
+ virtual void CodeCompleteObjCProperty(Scope *S, ObjCDeclSpec &ODS) { }
//@}
};