diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-10-27 15:50:22 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-10-27 15:50:22 +0000 |
commit | 6ea75dbeb089bb398f611256320fc9a88d830f2f (patch) | |
tree | 8587a7755a8e4c08a4d13d8d8217d4dfe75527bc /clang/test/Index/index-file.cpp | |
parent | c7cb88066990d9b794c208252e13ef48a56b2439 (diff) | |
download | bcm5719-llvm-6ea75dbeb089bb398f611256320fc9a88d830f2f.tar.gz bcm5719-llvm-6ea75dbeb089bb398f611256320fc9a88d830f2f.zip |
Index: expose is_mutable_field
Expose isMutable via libClang and python bindings.
Patch by Jonathan B Coe!
llvm-svn: 251410
Diffstat (limited to 'clang/test/Index/index-file.cpp')
-rw-r--r-- | clang/test/Index/index-file.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Index/index-file.cpp b/clang/test/Index/index-file.cpp index d42b4b2de7d..f1ae68a2508 100644 --- a/clang/test/Index/index-file.cpp +++ b/clang/test/Index/index-file.cpp @@ -24,6 +24,10 @@ template <> void A<int>::meth(); template class A<int>; } +class B { + mutable int x_; + int y_; +}; // RUN: c-index-test -index-file %s > %t // RUN: FileCheck %s -input-file=%t @@ -31,3 +35,5 @@ template class A<int>; // CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 11:8 // CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 15:6 // CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 23:26 +// CHECK: [indexDeclaration]: kind: field | name: x_ | USR: c:@S@B@FI@x_ | lang: C++ | cursor: FieldDecl=x_:28:15 (Definition) (mutable) | loc: 28:15 | semantic-container: [B:27:7] | lexical-container: [B:27:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0 +// CHECK: [indexDeclaration]: kind: field | name: y_ | USR: c:@S@B@FI@y_ | lang: C++ | cursor: FieldDecl=y_:29:7 (Definition) | loc: 29:7 | semantic-container: [B:27:7] | lexical-container: [B:27:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0 |