[PATCH] D46639: [CodeComplete] Provide completion in decls even for incomplete types

Ilya Biryukov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed May 9 07:53:58 PDT 2018


ilya-biryukov created this revision.
ilya-biryukov added reviewers: bkramer, aaron.ballman, sammccall.

This change fixes lack of completions in the following case
('^'designates completion points) :

  void f(^);
  struct Incomplete;
  Incomplete g(^);


Repository:
  rC Clang

https://reviews.llvm.org/D46639

Files:
  lib/Sema/SemaCodeComplete.cpp
  test/CodeCompletion/incomplete-ret-type.cpp


Index: test/CodeCompletion/incomplete-ret-type.cpp
===================================================================
--- /dev/null
+++ test/CodeCompletion/incomplete-ret-type.cpp
@@ -0,0 +1,13 @@
+struct IncompleteType;
+int int_value;
+typedef int int_typedef;
+
+void f(in);
+IncompleteType g(in);
+// Completing should produce results even if types are incomplete.
+// Note that clang is expected to return an error code since 'in' does not resolve.
+// RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:5:9 %s -o - | FileCheck %s
+// RUN: not %clang_cc1 -fsyntax-only -code-completion-at=%s:6:19 %s -o - | FileCheck %s
+// CHECK: COMPLETION: int{{$}}
+// CHECK: COMPLETION: int_typedef
+// CHECK: COMPLETION: int_value
Index: lib/Sema/SemaCodeComplete.cpp
===================================================================
--- lib/Sema/SemaCodeComplete.cpp
+++ lib/Sema/SemaCodeComplete.cpp
@@ -4493,10 +4493,8 @@
     return;
 
   // A complete type is needed to lookup for constructors.
-  if (!isCompleteType(Loc, Type))
-    return;
-
-  CXXRecordDecl *RD = Type->getAsCXXRecordDecl();
+  CXXRecordDecl *RD =
+      isCompleteType(Loc, Type) ? Type->getAsCXXRecordDecl() : nullptr;
   if (!RD) {
     CodeCompleteExpression(S, Type);
     return;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46639.145922.patch
Type: text/x-patch
Size: 1265 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180509/e8f9cb77/attachment-0001.bin>


More information about the cfe-commits mailing list