When code-completing a case statement for a switch on a value of

enumeration type, prioritize the enumeration constants and don't
provide completions for any other expressions. Fixes <rdar://problem/7283668>.

llvm-svn: 125991
This commit is contained in:
Douglas Gregor 2011-02-18 23:30:37 +00:00
parent 2d6390d47b
commit 3a69eafa88
5 changed files with 29 additions and 13 deletions

View File

@ -36,6 +36,9 @@ enum {
/// \brief Priority for the next initialization in a constructor initializer /// \brief Priority for the next initialization in a constructor initializer
/// list. /// list.
CCP_NextInitializer = 7, CCP_NextInitializer = 7,
/// \brief Priority for an enumeration constant inside a switch whose
/// condition is of the enumeration type.
CCP_EnumInCase = 7,
/// \brief Priority for a send-to-super completion. /// \brief Priority for a send-to-super completion.
CCP_SuperCompletion = 20, CCP_SuperCompletion = 20,
/// \brief Priority for a declaration that is in the local scope. /// \brief Priority for a declaration that is in the local scope.
@ -153,6 +156,9 @@ public:
enum Kind { enum Kind {
/// \brief An unspecified code-completion context. /// \brief An unspecified code-completion context.
CCC_Other, CCC_Other,
/// \brief An unspecified code-completion context where we should also add
/// macro completions.
CCC_OtherWithMacros,
/// \brief Code completion occurred within a "top-level" completion context, /// \brief Code completion occurred within a "top-level" completion context,
/// e.g., at namespace or global scope. /// e.g., at namespace or global scope.
CCC_TopLevel, CCC_TopLevel,

View File

@ -333,8 +333,8 @@ void ASTUnit::CacheCodeCompletionResults() {
| (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1)) | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
| (1 << (CodeCompletionContext::CCC_MacroNameUse - 1)) | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
| (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1)) | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
| (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1)); | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
| (1 << (CodeCompletionContext::CCC_OtherWithMacros - 1));
CachedResult.Priority = Results[I].Priority; CachedResult.Priority = Results[I].Priority;
CachedResult.Kind = Results[I].CursorKind; CachedResult.Kind = Results[I].CursorKind;
@ -1790,6 +1790,7 @@ static void CalculateHiddenNames(const CodeCompletionContext &Context,
case CodeCompletionContext::CCC_SelectorName: case CodeCompletionContext::CCC_SelectorName:
case CodeCompletionContext::CCC_TypeQualifiers: case CodeCompletionContext::CCC_TypeQualifiers:
case CodeCompletionContext::CCC_Other: case CodeCompletionContext::CCC_Other:
case CodeCompletionContext::CCC_OtherWithMacros:
// We're looking for nothing, or we're looking for names that cannot // We're looking for nothing, or we're looking for names that cannot
// be hidden. // be hidden.
return; return;

View File

@ -63,6 +63,7 @@ bool CodeCompletionContext::wantConstructorResults() const {
case CCC_SelectorName: case CCC_SelectorName:
case CCC_TypeQualifiers: case CCC_TypeQualifiers:
case CCC_Other: case CCC_Other:
case CCC_OtherWithMacros:
return false; return false;
} }

View File

@ -3331,15 +3331,16 @@ void Sema::CodeCompleteCase(Scope *S) {
if (EnumeratorsSeen.count(*E)) if (EnumeratorsSeen.count(*E))
continue; continue;
Results.AddResult(CodeCompletionResult(*E, Qualifier), CodeCompletionResult R(*E, Qualifier);
CurContext, 0, false); R.Priority = CCP_EnumInCase;
Results.AddResult(R, CurContext, 0, false);
} }
Results.ExitScope(); Results.ExitScope();
if (CodeCompleter->includeMacros()) if (CodeCompleter->includeMacros())
AddMacroResults(PP, Results); AddMacroResults(PP, Results);
HandleCodeCompleteResults(this, CodeCompleter, HandleCodeCompleteResults(this, CodeCompleter,
CodeCompletionContext::CCC_Expression, CodeCompletionContext::CCC_OtherWithMacros,
Results.data(),Results.size()); Results.data(),Results.size());
} }

View File

@ -1,15 +1,22 @@
// Note: the run lines follow their respective tests, since line/column // Note: the run lines follow their respective tests, since line/column
// matter in this test. // matter in this test.
enum { enum Color {
Red = 17, Color_Red = 17,
Green, Color_Green,
Blue Color_Blue
}; };
int Greeby();
void f() { void f(Color color) {
switch (color) {
case Red:
}
} }
// RUN: c-index-test -code-completion-at=%s:11:1 %s | FileCheck -check-prefix=CHECK-CC1 %s // RUN: c-index-test -code-completion-at=%s:11:1 %s | FileCheck -check-prefix=CHECK-CC1 %s
// CHECK-CC1: EnumConstantDecl:{ResultType enum <anonymous>}{TypedText Red} // CHECK-CC1: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Red}
// RUN: c-index-test -code-completion-at=%s:12:8 %s | FileCheck -check-prefix=CHECK-CC2 %s
// CHECK-CC2: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Blue} (7)
// CHECK-CC2-NEXT: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Green} (7)
// CHECK-CC2-NEXT: EnumConstantDecl:{ResultType enum Color}{TypedText Color_Red} (7)