diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-07 09:51:25 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-07 09:51:25 +0000 |
commit | 9a0c85e640a08174569a303db22981612f05d385 (patch) | |
tree | 3f0990a21f4df96d16611f7b61f7c9cfe10f2b1d /include/clang/Parse/Action.h | |
parent | c464ae8444edb6d07ea49b7a0eae1674c0fa1bb8 (diff) |
Code completion for Objective-C @ keywords that are statements or expressions
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-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 2db254b8f5..b5d5764a63 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -2420,6 +2420,12 @@ public: virtual void CodeCompleteObjCAtDirective(Scope *S, DeclPtrTy ObjCImpDecl, bool InInterface) { } + /// \brief Code completion after the '@' in a statement. + virtual void CodeCompleteObjCAtStatement(Scope *S) { } + + /// \brief Code completion after the '@' in an expression. + virtual void CodeCompleteObjCAtExpression(Scope *S) { } + /// \brief Code completion for an ObjC property decl. /// /// This code completion action is invoked when the code-completion token is |