diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-26 16:39:56 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-09-26 16:39:56 +0000 |
commit | 9ae3956f223b3f7961ffcca8da7f1a1b1f6585d7 (patch) | |
tree | c9a8e45c2fcb61a3ffb2637ab2a674676a23b313 /clang/test/Index/complete-documentation.cpp | |
parent | 39a76387e027054929cc893b475ed3d47e1fd1dc (diff) | |
download | bcm5719-llvm-9ae3956f223b3f7961ffcca8da7f1a1b1f6585d7.tar.gz bcm5719-llvm-9ae3956f223b3f7961ffcca8da7f1a1b1f6585d7.zip |
[libclang] Remove the ParentKind cursor kind from code-completion results.
This is to reduce dependency to cursors for the code-completion results.
llvm-svn: 164705
Diffstat (limited to 'clang/test/Index/complete-documentation.cpp')
-rw-r--r-- | clang/test/Index/complete-documentation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Index/complete-documentation.cpp b/clang/test/Index/complete-documentation.cpp index a64e62f239d..49b61f03ce6 100644 --- a/clang/test/Index/complete-documentation.cpp +++ b/clang/test/Index/complete-documentation.cpp @@ -47,5 +47,5 @@ void test1() { // CHECK-CC2: FieldDecl:{ResultType int}{TypedText T4}{{.*}}(brief comment: Ddd.) // RUN: env CINDEXTEST_COMPLETION_BRIEF_COMMENTS=1 c-index-test -code-completion-at=%s:37:6 %s | FileCheck -check-prefix=CC3 %s -// CHECK-CC3: CXXMethod:{ResultType void}{TypedText T7}{LeftParen (}{RightParen )} (34) (parent: StructDecl 'T6')(brief comment: Fff.) -// CHECK-CC3: CXXMethod:{ResultType void}{TypedText T8}{LeftParen (}{RightParen )} (34) (parent: StructDecl 'T6')(brief comment: Ggg.) +// CHECK-CC3: CXXMethod:{ResultType void}{TypedText T7}{LeftParen (}{RightParen )} (34)(brief comment: Fff.) +// CHECK-CC3: CXXMethod:{ResultType void}{TypedText T8}{LeftParen (}{RightParen )} (34)(brief comment: Ggg.) |