[cfe-commits] r143595 - /cfe/trunk/test/Index/complete-cxx-inline-methods.cpp

Douglas Gregor dgregor at apple.com
Wed Nov 2 16:39:56 PDT 2011


Author: dgregor
Date: Wed Nov  2 18:39:56 2011
New Revision: 143595

URL: http://llvm.org/viewvc/llvm-project?rev=143595&view=rev
Log:
Test code completion for constructor initializers within the class
definition. This already worked; <rdar://problem/10208871>.

Modified:
    cfe/trunk/test/Index/complete-cxx-inline-methods.cpp

Modified: cfe/trunk/test/Index/complete-cxx-inline-methods.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Index/complete-cxx-inline-methods.cpp?rev=143595&r1=143594&r2=143595&view=diff
==============================================================================
--- cfe/trunk/test/Index/complete-cxx-inline-methods.cpp (original)
+++ cfe/trunk/test/Index/complete-cxx-inline-methods.cpp Wed Nov  2 18:39:56 2011
@@ -12,6 +12,15 @@
   vec.x = 0;
 }
 
+class OtherClass : public MyCls {
+public:
+  OtherClass(const OtherClass &other) : MyCls(other), value(value) { }
+
+private:
+  int value;
+  MyCls *object;
+};
+
 // RUN: c-index-test -code-completion-at=%s:3:9 %s | FileCheck %s
 // RUN: c-index-test -code-completion-at=%s:12:7 %s | FileCheck %s
 // CHECK:      CXXMethod:{ResultType MyCls::Vec &}{TypedText operator=}{LeftParen (}{Placeholder const MyCls::Vec &}{RightParen )} (34)
@@ -22,3 +31,12 @@
 // CHECK-NEXT: Completion contexts:
 // CHECK-NEXT: Dot member access
 // CHECK-NEXT: Container Kind: StructDecl
+
+// RUN: c-index-test -code-completion-at=%s:17:41 %s | FileCheck -check-prefix=CHECK-CTOR-INIT %s
+// CHECK-CTOR-INIT: NotImplemented:{TypedText MyCls}{LeftParen (}{Placeholder args}{RightParen )} (7)
+// CHECK-CTOR-INIT: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
+// CHECK-CTOR-INIT: MemberRef:{TypedText value}{LeftParen (}{Placeholder args}{RightParen )} (35)
+// RUN: c-index-test -code-completion-at=%s:17:55 %s | FileCheck -check-prefix=CHECK-CTOR-INIT-2 %s
+// CHECK-CTOR-INIT-2-NOT: NotImplemented:{TypedText MyCls}{LeftParen (}{Placeholder args}{RightParen )}
+// CHECK-CTOR-INIT-2: MemberRef:{TypedText object}{LeftParen (}{Placeholder args}{RightParen )} (35)
+// CHECK-CTOR-INIT-2: MemberRef:{TypedText value}{LeftParen (}{Placeholder args}{RightParen )} (7)





More information about the cfe-commits mailing list