]> granicus.if.org Git - clang/commitdiff
Test code completion for constructor initializers within the class
authorDouglas Gregor <dgregor@apple.com>
Wed, 2 Nov 2011 23:39:56 +0000 (23:39 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 2 Nov 2011 23:39:56 +0000 (23:39 +0000)
definition. This already worked; <rdar://problem/10208871>.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143595 91177308-0d34-0410-b5e6-96231b3b80d8

test/Index/complete-cxx-inline-methods.cpp

index e25949df4cabd3bb24acf4bc6ffbf7743b8d892d..48fa8683af41523b39186e7eb191128cabc4f122 100644 (file)
@@ -12,6 +12,15 @@ void MyCls::out_foo() {
   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 @@ void MyCls::out_foo() {
 // 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)