blob: 5f33906471d0ea323e2bc154f70035cf15d32aa6 [file] [log] [blame]
Douglas Gregor437fbc52012-07-31 00:50:07 +00001// This test is line- and column-sensitive. See below for run lines.
2
3
4@interface A
5- instanceMethod:(int)value withOther:(int)other;
6+ classMethod;
7@end
8
9@interface B : A
10@end
11
12@implementation B
13- someMethod:(A*)a {
14 [a classMethod];
15 [A classMethod];
16 [a instanceMethod:0 withOther:1];
17 [self someMethod:a];
18 [super instanceMethod];
19}
20
21@end
22
23// RUN: c-index-test -code-completion-at=%s:14:6 -std=c++11 %s | FileCheck -check-prefix=CHECK-CC1 %s
24// CHECK-CC1: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod:}{Placeholder (int)}{HorizontalSpace }{TypedText withOther:}{Placeholder (int)} (35) (parent: ObjCInterfaceDecl 'A')
25
26// RUN: c-index-test -code-completion-at=%s:15:6 -std=c++11 %s | FileCheck -check-prefix=CHECK-CC2 %s
27// CHECK-CC2: ObjCClassMethodDecl:{ResultType id}{TypedText classMethod} (35) (parent: ObjCInterfaceDecl 'A')
28
29// RUN: c-index-test -code-completion-at=%s:16:4 -std=c++11 %s | FileCheck -check-prefix=CHECK-CC3 %s
30// CHECK-CC3: ObjCInterfaceDecl:{TypedText A} (50) (parent: TranslationUnit '(null)')
31// CHECK-CC3: ParmDecl:{ResultType A *}{TypedText a} (34)
32// CHECK-CC3: ObjCInterfaceDecl:{TypedText B} (50) (parent: TranslationUnit '(null)')
33// CHECK-CC3: TypedefDecl:{TypedText Class} (50) (parent: TranslationUnit '(null)')
34
35
36// RUN: c-index-test -code-completion-at=%s:16:21 -x objective-c++ -std=c++11 %s | FileCheck -check-prefix=CHECK-CC4 %s
37// CHECK-CC4: NotImplemented:{ResultType B *}{TypedText self} (34)
38// CHECK-CC4: NotImplemented:{ResultType A *}{TypedText super} (40)
39
40// RUN: c-index-test -code-completion-at=%s:18:10 -x objective-c++ -std=c++11 %s | FileCheck -check-prefix=CHECK-CC1 %s