diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-02 23:39:56 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-02 23:39:56 +0000 |
commit | e7f067567278e04ce4cc40cc08651980ad7f3004 (patch) | |
tree | 21e7af6268070d39c460394c86f4b1ebd1973c6c /clang/test/Index/complete-cxx-inline-methods.cpp | |
parent | 1f4603d498a31f3722ff303c694584f383841475 (diff) | |
download | bcm5719-llvm-e7f067567278e04ce4cc40cc08651980ad7f3004.tar.gz bcm5719-llvm-e7f067567278e04ce4cc40cc08651980ad7f3004.zip |
Test code completion for constructor initializers within the class
definition. This already worked; <rdar://problem/10208871>.
llvm-svn: 143595
Diffstat (limited to 'clang/test/Index/complete-cxx-inline-methods.cpp')
-rw-r--r-- | clang/test/Index/complete-cxx-inline-methods.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/Index/complete-cxx-inline-methods.cpp b/clang/test/Index/complete-cxx-inline-methods.cpp index e25949df4ca..48fa8683af4 100644 --- a/clang/test/Index/complete-cxx-inline-methods.cpp +++ b/clang/test/Index/complete-cxx-inline-methods.cpp @@ -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) |