blob: 0b558f81ab722e9bb8e88cf4354139042a6ec5a8 [file] [log] [blame]
Douglas Gregordc845342010-05-25 05:58:43 +00001/* Run lines are at the end, since line/column matter in this test. */
2
3@interface A
4- (void)method:(int)x;
5@end
6
7@implementation A
8- (void)method:(int)x {
9 A *a = [A method:1];
Douglas Gregor200b2922010-09-17 22:25:06 +000010 blarg * blah = wibble;
11 A *a2;
12 z = [a2 method:1];
Douglas Gregor94859892010-09-17 22:41:34 +000013 blah ? blech : [a2 method:1];
Douglas Gregorac5fd842010-09-18 01:28:11 +000014 (a * a2)([a2 method:1]);
Douglas Gregordc845342010-05-25 05:58:43 +000015}
16@end
17
Douglas Gregord8e8a582010-05-25 21:41:55 +000018// RUN: c-index-test -code-completion-at=%s:9:20 -Xclang -code-completion-patterns %s 2>%t | FileCheck -check-prefix=CHECK-CC1 %s
Douglas Gregordc845342010-05-25 05:58:43 +000019// RUN: not grep error %t
20// CHECK-CC1: NotImplemented:{TypedText @encode}{LeftParen (}{Placeholder type-name}{RightParen )}
Douglas Gregor4710e5b2010-05-28 00:49:12 +000021// CHECK-CC1-NOT: NotImplemented:{TypedText _Bool}
Douglas Gregordc845342010-05-25 05:58:43 +000022// CHECK-CC1: VarDecl:{ResultType A *}{TypedText a}
23// CHECK-CC1: NotImplemented:{TypedText sizeof}{LeftParen (}{Placeholder expression-or-type}{RightParen )}
24
Daniel Dunbar95365722010-09-03 15:45:00 +000025// RUN: c-index-test -code-completion-at=%s:10:24 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC2 %s
Douglas Gregor4710e5b2010-05-28 00:49:12 +000026// CHECK-CC2: NotImplemented:{TypedText @encode}{LeftParen (}{Placeholder type-name}{RightParen )}
27// CHECK-CC2: NotImplemented:{TypedText _Bool}
28// CHECK-CC2: VarDecl:{ResultType A *}{TypedText a}
29// CHECK-CC2: NotImplemented:{TypedText sizeof}{LeftParen (}{Placeholder expression-or-type}{RightParen )}
Douglas Gregor200b2922010-09-17 22:25:06 +000030// RUN: c-index-test -code-completion-at=%s:12:11 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
31// CHECK-CC3: ObjCInstanceMethodDecl:{ResultType void}{TypedText method:}{Placeholder (int)} (17)
Douglas Gregor94859892010-09-17 22:41:34 +000032// RUN: c-index-test -code-completion-at=%s:13:22 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
Douglas Gregorac5fd842010-09-18 01:28:11 +000033// RUN: c-index-test -code-completion-at=%s:14:16 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s