diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-10-20 21:14:49 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-10-20 21:14:49 +0000 |
commit | 36981b17ed939300f6f8fc2355a255f711fcef71 (patch) | |
tree | ee2483e98b09cac943dc93a6969d83ca737ff139 /test/Index/file-refs.m | |
parent | 180abc3db9ae3b4fc63cd65b15697e6ffcc8a657 (diff) | |
download | src-60b5621695dbd6af84d81eb60706f8b559a77591.tar.gz src-60b5621695dbd6af84d81eb60706f8b559a77591.zip |
Vendor import of clang release_30 branch r142614:vendor/clang/clang-r142614
Diffstat (limited to 'test/Index/file-refs.m')
-rw-r--r-- | test/Index/file-refs.m | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/test/Index/file-refs.m b/test/Index/file-refs.m new file mode 100644 index 000000000000..2267259d58a2 --- /dev/null +++ b/test/Index/file-refs.m @@ -0,0 +1,87 @@ +@class Foo; + +@interface Foo +-(id)setWithInt:(int)i andFloat:(float)f; +@end + +@implementation Foo +-(id)setWithInt:(int)i andFloat:(float)f { + return self; +} +@end + +void test(Foo *foo) { + [foo setWithInt:0 andFloat:0]; + [foo setWithInt: 2 andFloat: 3]; +} + +@protocol Prot1 +-(void)protMeth; +@end + +@protocol Prot2<Prot1> +@end + +@interface Base<Prot2> +@end + +@interface Sub : Base +-(void)protMeth; +@end + +@implementation Sub +-(void)protMeth {} +@end + +void test2(Sub *s, id<Prot1> p) { + [s protMeth]; + [p protMeth]; +} + + +// RUN: c-index-test \ + +// RUN: -file-refs-at=%s:7:18 \ +// CHECK: ObjCImplementationDecl=Foo:7:17 (Definition) +// CHECK-NEXT: ObjCClassRef=Foo:3:12 =[1:8 - 1:11] +// CHECK-NEXT: ObjCInterfaceDecl=Foo:3:12 =[3:12 - 3:15] +// CHECK-NEXT: ObjCImplementationDecl=Foo:7:17 (Definition) =[7:17 - 7:20] +// CHECK-NEXT: ObjCClassRef=Foo:3:12 =[13:11 - 13:14] + +// RUN: -file-refs-at=%s:4:10 \ +// CHECK-NEXT: ObjCInstanceMethodDecl=setWithInt:andFloat::4:1 +// CHECK-NEXT: ObjCInstanceMethodDecl=setWithInt:andFloat::4:1 =[4:6 - 4:16] +// CHECK-NEXT: ObjCInstanceMethodDecl=setWithInt:andFloat::8:1 (Definition) [Overrides @4:1] =[8:6 - 8:16] +// CHECK-NEXT: ObjCMessageExpr=setWithInt:andFloat::4:1 =[14:8 - 14:18] +// CHECK-NEXT: ObjCMessageExpr=setWithInt:andFloat::4:1 =[15:8 - 15:18] + +// RUN: -file-refs-at=%s:15:27 \ +// CHECK-NEXT: ObjCMessageExpr=setWithInt:andFloat::4:1 +// CHECK-NEXT: ObjCInstanceMethodDecl=setWithInt:andFloat::4:1 =[4:24 - 4:32] +// CHECK-NEXT: ObjCInstanceMethodDecl=setWithInt:andFloat::8:1 (Definition) [Overrides @4:1] =[8:24 - 8:32] +// CHECK-NEXT: ObjCMessageExpr=setWithInt:andFloat::4:1 =[14:21 - 14:29] +// CHECK-NEXT: ObjCMessageExpr=setWithInt:andFloat::4:1 =[15:22 - 15:30] + +// RUN: -file-refs-at=%s:18:13 \ +// CHECK-NEXT: ObjCProtocolDecl=Prot1:18:11 (Definition) +// CHECK-NEXT: ObjCProtocolDecl=Prot1:18:11 (Definition) =[18:11 - 18:16] +// CHECK-NEXT: ObjCProtocolRef=Prot1:18:11 =[22:17 - 22:22] +// CHECK-NEXT: ObjCProtocolRef=Prot1:18:11 =[36:23 - 36:28] + +// RUN: -file-refs-at=%s:38:10 \ +// CHECK-NEXT: ObjCMessageExpr=protMeth:19:1 +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:19:1 =[19:8 - 19:16] +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:29:1 [Overrides @19:1] =[29:8 - 29:16] +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:33:1 (Definition) [Overrides @29:1] =[33:8 - 33:16] +// CHECK-NEXT: ObjCMessageExpr=protMeth:29:1 =[37:6 - 37:14] +// CHECK-NEXT: ObjCMessageExpr=protMeth:19:1 =[38:6 - 38:14] + +// RUN: -file-refs-at=%s:33:12 \ +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:33:1 (Definition) [Overrides @29:1] +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:19:1 =[19:8 - 19:16] +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:29:1 [Overrides @19:1] =[29:8 - 29:16] +// CHECK-NEXT: ObjCInstanceMethodDecl=protMeth:33:1 (Definition) [Overrides @29:1] =[33:8 - 33:16] +// CHECK-NEXT: ObjCMessageExpr=protMeth:29:1 =[37:6 - 37:14] +// CHECK-NEXT: ObjCMessageExpr=protMeth:19:1 =[38:6 - 38:14] + +// RUN: %s | FileCheck %s |