Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 1 | // Note: the run lines follow their respective tests, since line/column |
| 2 | // matter in this test. |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 3 | #define nil (void*)0 |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 4 | @protocol FooTestProtocol |
| 5 | + protocolClassMethod; |
| 6 | - protocolInstanceMethod : (int)value; |
| 7 | @end |
| 8 | @interface Foo <FooTestProtocol> { |
| 9 | void *isa; |
| 10 | } |
| 11 | + (int)classMethod1:a withKeyword:(int)b; |
| 12 | + (void)classMethod2; |
| 13 | + new; |
| 14 | - instanceMethod1; |
| 15 | @end |
| 16 | |
| 17 | @interface Foo (FooTestCategory) |
| 18 | + categoryClassMethod; |
| 19 | - categoryInstanceMethod; |
| 20 | @end |
| 21 | |
| 22 | void func() { |
| 23 | Foo *obj = [Foo new]; |
| 24 | [obj xx]; |
| 25 | } |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 26 | |
| 27 | @interface MyClass { } |
| 28 | + (int)MyClassMethod:(id)obj; |
| 29 | - (int)MyInstMethod:(id)x second:(id)y; |
| 30 | @end |
| 31 | |
| 32 | @interface MySubClass : MyClass { } |
| 33 | + (int)MySubClassMethod; |
| 34 | - (int)MySubInstMethod; |
| 35 | @end |
| 36 | |
| 37 | @implementation MyClass |
| 38 | + (int)MyClassMethod:(id)obj { |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | + (int)MyPrivateMethod { |
| 43 | return 1; |
| 44 | } |
| 45 | |
| 46 | - (int)MyInstMethod:(id)x second:(id)y { |
| 47 | return 2; |
| 48 | } |
| 49 | |
| 50 | - (int)MyPrivateInstMethod { |
| 51 | return 3; |
| 52 | } |
| 53 | @end |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 54 | MyClass *getMyClass(); |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 55 | @implementation MySubClass |
| 56 | + (int)MySubClassMethod { |
| 57 | return 2; |
| 58 | } |
| 59 | |
| 60 | + (int)MySubPrivateMethod { |
| 61 | return [super MyPrivateMethod]; |
| 62 | } |
| 63 | |
| 64 | - (int)MySubInstMethod:(id)obj { |
| 65 | return [super MyInstMethod: obj second:obj]; |
| 66 | } |
| 67 | |
| 68 | - (int)MyInstMethod:(id)x second:(id)y { |
| 69 | return 3; |
| 70 | } |
| 71 | @end |
| 72 | |
| 73 | void test_super_var(MySubClass *super) { |
| 74 | [super MyInstMethod: super second:super]; |
| 75 | } |
| 76 | |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 77 | @protocol FooTestProtocol2 |
| 78 | - (int)secondProtocolInstanceMethod; |
| 79 | @end |
| 80 | |
| 81 | void test_qual_id(id<FooTestProtocol,FooTestProtocol2> ptr) { |
| 82 | [ptr protocolInstanceMethod:1]; |
| 83 | } |
| 84 | |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 85 | @interface Overload |
| 86 | - (int)Method:(int)i; |
| 87 | - (int)Method; |
| 88 | - (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2; |
| 89 | - (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj; |
| 90 | - (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj; |
| 91 | - (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2; |
| 92 | @end |
| 93 | |
| 94 | void test_overload(Overload *ovl) { |
| 95 | [ovl Method:1 Arg1:1 OtherArg:ovl]; |
| 96 | } |
| 97 | |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 98 | @interface Ellipsis |
Douglas Gregor | aaa107a | 2010-08-23 23:51:41 +0000 | [diff] [blame] | 99 | - (int)Method:(int)i, ...; |
| 100 | - (int)SentinelMethod:(int)i, ... __attribute__((sentinel(0,1))); |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 101 | @end |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 102 | void f(Ellipsis *e) { |
| 103 | [e Method:1, 2, 3]; |
| 104 | } |
| 105 | |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 106 | @interface Overload2 |
| 107 | + (int)Method:(int)i; |
| 108 | + (int)Method; |
| 109 | + (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2; |
| 110 | + (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj; |
| 111 | + (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj; |
| 112 | + (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2; |
| 113 | @end |
| 114 | |
| 115 | void test_overload2(void) { |
| 116 | [Overload2 Method:1 Arg1:1 OtherArg:ovl]; |
| 117 | } |
| 118 | |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 119 | void msg_id(id x) { |
| 120 | [x Method:1 Arg1:1 OtherArg:ovl]; |
| 121 | [[x blarg] Method:1 Arg1:1 OtherArg:ovl]; |
| 122 | [id Method:1 Arg1:1 OtherArg:ovl]; |
| 123 | } |
| 124 | |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 125 | @interface A |
| 126 | - (void)method1; |
| 127 | @end |
| 128 | |
| 129 | @interface B : A |
| 130 | - (void)method2; |
| 131 | @end |
| 132 | |
| 133 | void test_ranking(B *b) { |
| 134 | [b method1]; |
| 135 | } |
| 136 | |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 137 | // RUN: c-index-test -code-completion-at=%s:23:19 %s | FileCheck -check-prefix=CHECK-CC1 %s |
| 138 | // CHECK-CC1: {TypedText categoryClassMethod} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 139 | // CHECK-CC1: {TypedText classMethod1:}{Placeholder (id)}{HorizontalSpace }{Text withKeyword:}{Placeholder (int)} |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 140 | // CHECK-CC1: {TypedText classMethod2} |
| 141 | // CHECK-CC1: {TypedText new} |
| 142 | // CHECK-CC1: {TypedText protocolClassMethod} |
Douglas Gregor | 9630eb6 | 2009-11-17 16:44:22 +0000 | [diff] [blame] | 143 | // RUN: c-index-test -code-completion-at=%s:24:8 %s | FileCheck -check-prefix=CHECK-CC2 %s |
| 144 | // CHECK-CC2: {TypedText categoryInstanceMethod} |
| 145 | // CHECK-CC2: {TypedText instanceMethod1} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 146 | // CHECK-CC2: {TypedText protocolInstanceMethod:}{Placeholder (int)} |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 147 | // RUN: c-index-test -code-completion-at=%s:61:16 %s | FileCheck -check-prefix=CHECK-CC3 %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 148 | // CHECK-CC3: ObjCClassMethodDecl:{ResultType int}{TypedText MyClassMethod:}{Placeholder (id)} |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 149 | // CHECK-CC3: ObjCClassMethodDecl:{ResultType int}{TypedText MyPrivateMethod} |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 150 | // RUN: c-index-test -code-completion-at=%s:65:16 %s | FileCheck -check-prefix=CHECK-CC4 %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 151 | // CHECK-CC4: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{Text second:}{Placeholder (id)} |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 152 | // CHECK-CC4: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyPrivateInstMethod} |
Douglas Gregor | 24a069f | 2009-11-17 17:59:40 +0000 | [diff] [blame] | 153 | // RUN: c-index-test -code-completion-at=%s:74:9 %s | FileCheck -check-prefix=CHECK-CC5 %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 154 | // CHECK-CC5: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{Text second:}{Placeholder (id)} |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 155 | // CHECK-CC5: ObjCInstanceMethodDecl:{ResultType int}{TypedText MySubInstMethod} |
Douglas Gregor | f74a419 | 2009-11-18 00:06:18 +0000 | [diff] [blame] | 156 | // RUN: c-index-test -code-completion-at=%s:82:8 %s | FileCheck -check-prefix=CHECK-CC6 %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 157 | // CHECK-CC6: ObjCInstanceMethodDecl:{ResultType id}{TypedText protocolInstanceMethod:}{Placeholder (int)} |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 158 | // CHECK-CC6: ObjCInstanceMethodDecl:{ResultType int}{TypedText secondProtocolInstanceMethod} |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 159 | // RUN: c-index-test -code-completion-at=%s:95:8 %s | FileCheck -check-prefix=CHECK-CC7 %s |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 160 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 161 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)} |
| 162 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
| 163 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 164 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text SomeArg:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 165 | // CHECK-CC7: ObjCInstanceMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 166 | // RUN: c-index-test -code-completion-at=%s:95:17 %s | FileCheck -check-prefix=CHECK-CC8 %s |
Douglas Gregor | ff5ce6e | 2009-12-18 18:53:37 +0000 | [diff] [blame] | 167 | // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText } |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 168 | // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
| 169 | // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 170 | // CHECK-CC8: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
Douglas Gregor | d3c6854 | 2009-11-19 01:08:35 +0000 | [diff] [blame] | 171 | // RUN: c-index-test -code-completion-at=%s:95:24 %s | FileCheck -check-prefix=CHECK-CC9 %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 172 | // CHECK-CC9: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText Arg2:}{Placeholder (int)} |
| 173 | // CHECK-CC9: ObjCInstanceMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText OtherArg:}{Placeholder (id)} |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 174 | // RUN: c-index-test -code-completion-at=%s:61:11 %s | FileCheck -check-prefix=CHECK-CCA %s |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 175 | // CHECK-CCA: TypedefDecl:{TypedText Class} |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 176 | // CHECK-CCA-NEXT: ObjCInterfaceDecl:{TypedText Foo} |
| 177 | // CHECK-CCA-NOT: FunctionDecl:{ResultType void}{TypedText func}{LeftParen (}{RightParen )} |
| 178 | // CHECK-CCA:FunctionDecl:{ResultType MyClass *}{TypedText getMyClass}{LeftParen (}{RightParen )} |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 179 | // CHECK-CCA: TypedefDecl:{TypedText id} |
| 180 | // CHECK-CCA: ObjCInterfaceDecl:{TypedText MyClass} |
| 181 | // CHECK-CCA: ObjCInterfaceDecl:{TypedText MySubClass} |
Douglas Gregor | ab0b4f1 | 2010-01-13 23:24:38 +0000 | [diff] [blame] | 182 | // CHECK-CCA: {ResultType Class}{TypedText self} |
Douglas Gregor | 2a7925c | 2009-12-07 09:54:55 +0000 | [diff] [blame] | 183 | // CHECK-CCA: {TypedText super} |
Douglas Gregor | 2a17af0 | 2009-12-23 00:21:46 +0000 | [diff] [blame] | 184 | // RUN: c-index-test -code-completion-at=%s:103:6 %s | FileCheck -check-prefix=CHECK-CCB %s |
Douglas Gregor | e17794f | 2010-08-31 05:13:43 +0000 | [diff] [blame] | 185 | // CHECK-CCB: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int), ...} |
| 186 | // CHECK-CCB: ObjCInstanceMethodDecl:{ResultType int}{TypedText SentinelMethod:}{Placeholder (int), ...}{Text , nil} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 187 | // RUN: c-index-test -code-completion-at=%s:116:14 %s | FileCheck -check-prefix=CHECK-CCC %s |
| 188 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 189 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)} |
| 190 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
| 191 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 192 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (float)}{HorizontalSpace }{Text SomeArg:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 193 | // CHECK-CCC: ObjCClassMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 194 | // RUN: c-index-test -code-completion-at=%s:116:23 %s | FileCheck -check-prefix=CHECK-CCD %s |
| 195 | // CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText } |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 196 | // CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
| 197 | // CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText Arg1:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
| 198 | // CHECK-CCD: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{TypedText SomeArg:}{Placeholder (int)}{HorizontalSpace }{Text OtherArg:}{Placeholder (id)} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 199 | // RUN: c-index-test -code-completion-at=%s:116:30 %s | FileCheck -check-prefix=CHECK-CCE %s |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 200 | // CHECK-CCE: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText Arg2:}{Placeholder (int)} |
| 201 | // CHECK-CCE: ObjCClassMethodDecl:{ResultType int}{Informative Method:}{Informative Arg1:}{TypedText OtherArg:}{Placeholder (id)} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 202 | // RUN: c-index-test -code-completion-at=%s:61:11 %s | FileCheck -check-prefix=CHECK-CCF %s |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 203 | // CHECK-CCF: TypedefDecl:{TypedText Class} |
| 204 | // CHECK-CCF: ObjCInterfaceDecl:{TypedText Foo} |
Douglas Gregor | 8e254cf | 2010-05-27 23:06:34 +0000 | [diff] [blame] | 205 | // CHECK-CCF-NOT: FunctionDecl:{ResultType void}{TypedText func}{LeftParen (}{RightParen )} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 206 | // CHECK-CCF: TypedefDecl:{TypedText id} |
| 207 | // CHECK-CCF: ObjCInterfaceDecl:{TypedText MyClass} |
| 208 | // CHECK-CCF: ObjCInterfaceDecl:{TypedText MySubClass} |
Douglas Gregor | 85372b9 | 2010-04-06 15:27:03 +0000 | [diff] [blame] | 209 | // CHECK-CCF: {ResultType Class}{TypedText self} |
| 210 | // CHECK-CCF: {TypedText super} |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 211 | // RUN: c-index-test -code-completion-at=%s:120:6 %s | FileCheck -check-prefix=CHECK-CCG %s |
Douglas Gregor | 9214819 | 2010-08-26 00:30:24 +0000 | [diff] [blame] | 212 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText categoryInstanceMethod} |
| 213 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod1} |
| 214 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText Method} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 215 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyInstMethod:}{Placeholder (id)}{HorizontalSpace }{Text second:}{Placeholder (id)} |
Douglas Gregor | 9214819 | 2010-08-26 00:30:24 +0000 | [diff] [blame] | 216 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MyPrivateInstMethod} |
| 217 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText MySubInstMethod} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 218 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType id}{TypedText protocolInstanceMethod:}{Placeholder (int)} |
Douglas Gregor | 9214819 | 2010-08-26 00:30:24 +0000 | [diff] [blame] | 219 | // CHECK-CCG: ObjCInstanceMethodDecl:{ResultType int}{TypedText secondProtocolInstanceMethod} |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 220 | // RUN: c-index-test -code-completion-at=%s:121:14 %s | FileCheck -check-prefix=CHECK-CCG %s |
| 221 | // RUN: c-index-test -code-completion-at=%s:122:7 %s | FileCheck -check-prefix=CHECK-CCH %s |
| 222 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText categoryClassMethod} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 223 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText classMethod1:}{Placeholder (id)}{HorizontalSpace }{Text withKeyword:}{Placeholder (int)} |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 224 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType void}{TypedText classMethod2} |
| 225 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText Method} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 226 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText Method:}{Placeholder (int)} |
| 227 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MyClassMethod:}{Placeholder (id)} |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 228 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MyPrivateMethod} |
| 229 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MySubClassMethod} |
| 230 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText MySubPrivateMethod} |
| 231 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText new} |
Douglas Gregor | aba4808 | 2010-08-29 19:47:46 +0000 | [diff] [blame] | 232 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType int}{TypedText OtherMethod:}{Placeholder (float)}{HorizontalSpace }{Text Arg1:}{Placeholder (int)}{HorizontalSpace }{Text Arg2:}{Placeholder (int)} |
Douglas Gregor | 13438f9 | 2010-04-06 16:40:00 +0000 | [diff] [blame] | 233 | // CHECK-CCH: ObjCClassMethodDecl:{ResultType id}{TypedText protocolClassMethod} |
Douglas Gregor | 408be5a | 2010-08-25 01:08:01 +0000 | [diff] [blame] | 234 | // RUN: c-index-test -code-completion-at=%s:134:6 %s | FileCheck -check-prefix=CHECK-CCI %s |
| 235 | // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method1} (22) |
| 236 | // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2} (20) |