diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-19 01:20:04 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-19 01:20:04 +0000 |
commit | ad27e8b777726ed63f8c8dfbdee1cc40121ead23 (patch) | |
tree | 45f273294306d63f49e55bed170631a56b406bec /clang/test/Index/TestClassDecl.m | |
parent | 6c0fb92c03cdd0398362b6d4be1b3c368b822f09 (diff) | |
download | bcm5719-llvm-ad27e8b777726ed63f8c8dfbdee1cc40121ead23.tar.gz bcm5719-llvm-ad27e8b777726ed63f8c8dfbdee1cc40121ead23.zip |
Introduce clang_getCursorReferenced, to get a cursor pointing at the
entity that a particular cursor references.
llvm-svn: 93830
Diffstat (limited to 'clang/test/Index/TestClassDecl.m')
-rw-r--r-- | clang/test/Index/TestClassDecl.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Index/TestClassDecl.m b/clang/test/Index/TestClassDecl.m index 20431ca23f3..a536b996445 100644 --- a/clang/test/Index/TestClassDecl.m +++ b/clang/test/Index/TestClassDecl.m @@ -32,7 +32,7 @@ void function(Foo * arg) // CHECK-scan: {start_line=13 start_col=24 end_line=16 end_col=1} FunctionDefn=function:13:6 // CHECK-scan: {start_line=16 start_col=2 end_line=38 end_col=1} Invalid Cursor => NoDeclFound -// CHECK-load: TestClassDecl.m:10:12: ObjCInterfaceDecl=Foo:10:1 [Extent=10:1:11:4] +// CHECK-load: TestClassDecl.m:10:12: ObjCInterfaceDecl=Foo:10:12 [Extent=10:1:11:4] // CHECK-load: TestClassDecl.m:13:6: FunctionDefn=function:13:6 [Extent=13:6:16:1] // CHECK-load: TestClassDecl.m:13:21: ParmDecl=arg:13:21 [Extent=13:21:13:23] |