diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-26 15:07:07 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-26 15:07:07 +0000 |
commit | 458433d2f0f5c96a9e0d21decdd44bebccf20b11 (patch) | |
tree | 794359d35a7e2ddc77c732b524ab73c367639c6a /lib/Frontend/ASTUnit.cpp | |
parent | 9a2d44c5fbc46ce9ee6dd829a7bac8ca750ad090 (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 'lib/Frontend/ASTUnit.cpp')
-rw-r--r-- | lib/Frontend/ASTUnit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/ASTUnit.cpp b/lib/Frontend/ASTUnit.cpp index 874fd012b3..851c6669fe 100644 --- a/lib/Frontend/ASTUnit.cpp +++ b/lib/Frontend/ASTUnit.cpp @@ -1554,6 +1554,7 @@ void CalculateHiddenNames(const CodeCompletionContext &Context, case CodeCompletionContext::CCC_PreprocessorExpression: case CodeCompletionContext::CCC_PreprocessorDirective: case CodeCompletionContext::CCC_NaturalLanguage: + case CodeCompletionContext::CCC_SelectorName: // We're looking for nothing, or we're looking for names that cannot // be hidden. return; |