annotate-tokens.m revision fbd84caf62a21afa4db5f730e2e2603ead17bb65
1@interface Foo
2- (int)compare:(Foo*)other;
3@end
4
5@implementation Foo
6- (int)compare:(Foo*)other {
7  return 0;
8  (void)@encode(Foo);
9}
10@end
11
12// RUN: c-index-test -test-annotate-tokens=%s:1:1:10:5 %s | FileCheck %s
13// CHECK: Punctuation: "@" [1:1 - 1:2] ObjCInterfaceDecl=Foo:1:12
14// CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=Foo:1:12
15// CHECK: Identifier: "Foo" [1:12 - 1:15] ObjCInterfaceDecl=Foo:1:12
16// CHECK: Punctuation: "-" [2:1 - 2:2] ObjCInstanceMethodDecl=compare::2:1
17// CHECK: Punctuation: "(" [2:3 - 2:4] ObjCInstanceMethodDecl=compare::2:1
18// CHECK: Keyword: "int" [2:4 - 2:7] ObjCInstanceMethodDecl=compare::2:1
19// CHECK: Punctuation: ")" [2:7 - 2:8] ObjCInstanceMethodDecl=compare::2:1
20// CHECK: Identifier: "compare" [2:8 - 2:15] ObjCInstanceMethodDecl=compare::2:1
21// CHECK: Punctuation: ":" [2:15 - 2:16] ObjCInstanceMethodDecl=compare::2:1
22// CHECK: Punctuation: "(" [2:16 - 2:17] ObjCInstanceMethodDecl=compare::2:1
23// CHECK: Identifier: "Foo" [2:17 - 2:20] ObjCClassRef=Foo:1:12
24// CHECK: Punctuation: "*" [2:20 - 2:21] ParmDecl=other:2:22 (Definition)
25// CHECK: Punctuation: ")" [2:21 - 2:22] ParmDecl=other:2:22 (Definition)
26// CHECK: Identifier: "other" [2:22 - 2:27] ParmDecl=other:2:22 (Definition)
27// CHECK: Punctuation: ";" [2:27 - 2:28] ObjCInstanceMethodDecl=compare::2:1
28// CHECK: Punctuation: "@" [3:1 - 3:2] ObjCInterfaceDecl=Foo:1:12
29// CHECK: Keyword: "end" [3:2 - 3:5] ObjCInterfaceDecl=Foo:1:12
30// CHECK: Punctuation: "@" [5:1 - 5:2] ObjCImplementationDecl=Foo:5:1 (Definition)
31// CHECK: Keyword: "implementation" [5:2 - 5:16] ObjCImplementationDecl=Foo:5:1 (Definition)
32// CHECK: Identifier: "Foo" [5:17 - 5:20] ObjCImplementationDecl=Foo:5:1 (Definition)
33// CHECK: Punctuation: "-" [6:1 - 6:2] ObjCInstanceMethodDecl=compare::6:1 (Definition)
34// CHECK: Punctuation: "(" [6:3 - 6:4] ObjCInstanceMethodDecl=compare::6:1 (Definition)
35// CHECK: Keyword: "int" [6:4 - 6:7] ObjCInstanceMethodDecl=compare::6:1 (Definition)
36// CHECK: Punctuation: ")" [6:7 - 6:8] ObjCInstanceMethodDecl=compare::6:1 (Definition)
37// CHECK: Identifier: "compare" [6:8 - 6:15] ObjCInstanceMethodDecl=compare::6:1 (Definition)
38// CHECK: Punctuation: ":" [6:15 - 6:16] ObjCInstanceMethodDecl=compare::6:1 (Definition)
39// CHECK: Punctuation: "(" [6:16 - 6:17] ObjCInstanceMethodDecl=compare::6:1 (Definition)
40// CHECK: Identifier: "Foo" [6:17 - 6:20] ObjCClassRef=Foo:1:12
41// CHECK: Punctuation: "*" [6:20 - 6:21] ParmDecl=other:6:22 (Definition)
42// CHECK: Punctuation: ")" [6:21 - 6:22] ParmDecl=other:6:22 (Definition)
43// CHECK: Identifier: "other" [6:22 - 6:27] ParmDecl=other:6:22 (Definition)
44// CHECK: Punctuation: "{" [6:28 - 6:29] UnexposedStmt=
45// CHECK: Keyword: "return" [7:3 - 7:9] UnexposedStmt=
46// CHECK: Literal: "0" [7:10 - 7:11] UnexposedExpr=
47// CHECK: Punctuation: ";" [7:11 - 7:12] UnexposedStmt=
48// CHECK: Punctuation: "(" [8:3 - 8:4] UnexposedExpr=
49// CHECK: Keyword: "void" [8:4 - 8:8] UnexposedExpr=
50// CHECK: Punctuation: ")" [8:8 - 8:9] UnexposedExpr=
51// CHECK: Punctuation: "@" [8:9 - 8:10] UnexposedExpr=
52// CHECK: Keyword: "encode" [8:10 - 8:16] UnexposedExpr=
53// CHECK: Punctuation: "(" [8:16 - 8:17] UnexposedExpr=
54// CHECK: Identifier: "Foo" [8:17 - 8:20] ObjCClassRef=Foo:1:12
55// CHECK: Punctuation: ")" [8:20 - 8:21] UnexposedExpr=
56// CHECK: Punctuation: ";" [8:21 - 8:22] UnexposedStmt=
57// CHECK: Punctuation: "}" [9:1 - 9:2] UnexposedStmt=
58// CHECK: Punctuation: "@" [10:1 - 10:2] ObjCImplementationDecl=Foo:5:1 (Definition)
59// CHECK: Keyword: "end" [10:2 - 10:5]
60