diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-10-04 04:48:02 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-10-04 04:48:02 +0000 |
commit | 52f53fb3031f3269d03a3ea0b1d7e1cd85459346 (patch) | |
tree | 080d8cfa37a676e70a19f6b78393178ee19658ef /clang/test/Index/c-index-getCursor-test.m | |
parent | b047fed5cd7ef61a20a4ea61ac91708fce846b80 (diff) | |
download | bcm5719-llvm-52f53fb3031f3269d03a3ea0b1d7e1cd85459346.tar.gz bcm5719-llvm-52f53fb3031f3269d03a3ea0b1d7e1cd85459346.zip |
Improve location fidelity of objc decls.
-Add the location of the class name to all objc container decls, not just ObjCInterfaceDecl.
-Make objc decls consistent with the rest of the NamedDecls and have getLocation() point to the
class name, not the location of '@'.
llvm-svn: 141061
Diffstat (limited to 'clang/test/Index/c-index-getCursor-test.m')
-rw-r--r-- | clang/test/Index/c-index-getCursor-test.m | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/Index/c-index-getCursor-test.m b/clang/test/Index/c-index-getCursor-test.m index 5aeb0fd5310..5bbb62b8daf 100644 --- a/clang/test/Index/c-index-getCursor-test.m +++ b/clang/test/Index/c-index-getCursor-test.m @@ -80,15 +80,15 @@ void f() { // CHECK: [20:1 - 20:23] ObjCInstanceMethodDecl=floatMethod:20:1 // CHECK: [20:23 - 21:5] ObjCCategoryDecl=FooCat:18:12 // CHECK: [21:5 - 23:1] Invalid Cursor => NoDeclFound -// CHECK: [23:1 - 24:1] ObjCProtocolDecl=Proto:23:1 (Definition) +// CHECK: [23:1 - 24:1] ObjCProtocolDecl=Proto:23:11 (Definition) // CHECK: [24:1 - 24:11] ObjCInstanceMethodDecl=pMethod:24:1 -// CHECK: [24:11 - 25:5] ObjCProtocolDecl=Proto:23:1 (Definition) +// CHECK: [24:11 - 25:5] ObjCProtocolDecl=Proto:23:11 (Definition) // CHECK: [25:5 - 27:1] Invalid Cursor => NoDeclFound -// CHECK: [27:1 - 27:17] ObjCProtocolDecl=SubP:27:1 (Definition) +// CHECK: [27:1 - 27:17] ObjCProtocolDecl=SubP:27:11 (Definition) // CHECK: [27:17 - 27:22] ObjCProtocolRef=Proto:23:1 -// CHECK: [27:22 - 28:1] ObjCProtocolDecl=SubP:27:1 (Definition) +// CHECK: [27:22 - 28:1] ObjCProtocolDecl=SubP:27:11 (Definition) // CHECK: [28:1 - 28:12] ObjCInstanceMethodDecl=spMethod:28:1 -// CHECK: [28:12 - 29:5] ObjCProtocolDecl=SubP:27:1 (Definition) +// CHECK: [28:12 - 29:5] ObjCProtocolDecl=SubP:27:11 (Definition) // CHECK: [29:5 - 31:1] Invalid Cursor => NoDeclFound // CHECK: [31:1 - 31:18] ObjCInterfaceDecl=Baz:31:12 // CHECK: [31:18 - 31:21] ObjCSuperClassRef=Bar:12:12 |