summaryrefslogtreecommitdiffstats
path: root/include/clang/Sema/CodeCompleteConsumer.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-08-26 15:07:07 +0000
committerDouglas Gregor <dgregor@apple.com>2010-08-26 15:07:07 +0000
commit458433d2f0f5c96a9e0d21decdd44bebccf20b11 (patch)
tree794359d35a7e2ddc77c732b524ab73c367639c6a /include/clang/Sema/CodeCompleteConsumer.h
parent9a2d44c5fbc46ce9ee6dd829a7bac8ca750ad090 (diff)
Implement code completion for @selector expressions
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/CodeCompleteConsumer.h')
-rw-r--r--include/clang/Sema/CodeCompleteConsumer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Sema/CodeCompleteConsumer.h b/include/clang/Sema/CodeCompleteConsumer.h
index d290d39a93..55bd576f96 100644
--- a/include/clang/Sema/CodeCompleteConsumer.h
+++ b/include/clang/Sema/CodeCompleteConsumer.h
@@ -190,7 +190,9 @@ public:
///
/// This context usually implies that no completions should be added,
/// unless they come from an appropriate natural-language dictionary.
- CCC_NaturalLanguage
+ CCC_NaturalLanguage,
+ /// \brief Code completion for a selector, as in an @selector expression.
+ CCC_SelectorName
};
private: