1 | struct bonk { }; |
2 | void test(bonk X) { |
3 | X = X; |
4 | __is_base_of(bonk, bonk); |
5 | } |
6 | |
7 | struct X { |
8 | X operator++(); |
9 | X operator++(int); |
10 | }; |
11 | void test2(X x) { |
12 | ++(x); |
13 | (x)++; |
14 | } |
15 | |
16 | struct S1 { void f(); }; |
17 | struct S2 { S1 *operator->(); }; |
18 | void test3(S2 s2) { |
19 | s2->f(); |
20 | X foo; |
21 | } |
22 | |
23 | template <bool (*tfn)(X*)> |
24 | struct TS { |
25 | void foo(); |
26 | }; |
27 | |
28 | template <bool (*tfn)(X*)> |
29 | void TS<tfn>::foo() {} |
30 | |
31 | void test4() { |
32 | if (int p = 0) |
33 | return; |
34 | } |
35 | |
36 | class C { |
37 | ~C(); |
38 | }; |
39 | |
40 | auto test5(X) -> X; |
41 | |
42 | // RUN: c-index-test -test-annotate-tokens=%s:1:1:41:1 %s -std=c++14 -fno-delayed-template-parsing | FileCheck %s |
43 | // CHECK: Keyword: "struct" [1:1 - 1:7] StructDecl=bonk:1:8 (Definition) |
44 | // CHECK: Identifier: "bonk" [1:8 - 1:12] StructDecl=bonk:1:8 (Definition) |
45 | // CHECK: Punctuation: "{" [1:13 - 1:14] StructDecl=bonk:1:8 (Definition) |
46 | // CHECK: Punctuation: "}" [1:15 - 1:16] StructDecl=bonk:1:8 (Definition) |
47 | // CHECK: Punctuation: ";" [1:16 - 1:17] |
48 | // CHECK: Keyword: "void" [2:1 - 2:5] FunctionDecl=test:2:6 (Definition) |
49 | // CHECK: Identifier: "test" [2:6 - 2:10] FunctionDecl=test:2:6 (Definition) |
50 | // CHECK: Punctuation: "(" [2:10 - 2:11] FunctionDecl=test:2:6 (Definition) |
51 | // CHECK: Identifier: "bonk" [2:11 - 2:15] TypeRef=struct bonk:1:8 |
52 | // CHECK: Identifier: "X" [2:16 - 2:17] ParmDecl=X:2:16 (Definition) |
53 | // CHECK: Punctuation: ")" [2:17 - 2:18] FunctionDecl=test:2:6 (Definition) |
54 | // CHECK: Punctuation: "{" [2:19 - 2:20] CompoundStmt= |
55 | // CHECK: Identifier: "X" [3:5 - 3:6] DeclRefExpr=X:2:16 |
56 | // CHECK: Punctuation: "=" [3:7 - 3:8] DeclRefExpr=operator=:1:8 |
57 | // CHECK: Identifier: "X" [3:9 - 3:10] DeclRefExpr=X:2:16 |
58 | // CHECK: Punctuation: ";" [3:10 - 3:11] CompoundStmt= |
59 | // CHECK: Keyword: "__is_base_of" [4:5 - 4:17] UnexposedExpr= |
60 | // CHECK: Punctuation: "(" [4:17 - 4:18] UnexposedExpr= |
61 | // CHECK: Identifier: "bonk" [4:18 - 4:22] TypeRef=struct bonk:1:8 |
62 | // CHECK: Punctuation: "," [4:22 - 4:23] UnexposedExpr= |
63 | // CHECK: Identifier: "bonk" [4:24 - 4:28] TypeRef=struct bonk:1:8 |
64 | // CHECK: Punctuation: ")" [4:28 - 4:29] UnexposedExpr= |
65 | // CHECK: Punctuation: ";" [4:29 - 4:30] CompoundStmt= |
66 | // CHECK: Punctuation: "}" [5:1 - 5:2] CompoundStmt= |
67 | // CHECK: Keyword: "struct" [7:1 - 7:7] StructDecl=X:7:8 (Definition) |
68 | // CHECK: Identifier: "X" [7:8 - 7:9] StructDecl=X:7:8 (Definition) |
69 | // CHECK: Punctuation: "{" [7:10 - 7:11] StructDecl=X:7:8 (Definition) |
70 | // CHECK: Identifier: "X" [8:3 - 8:4] TypeRef=struct X:7:8 |
71 | // CHECK: Keyword: "operator" [8:5 - 8:13] CXXMethod=operator++:8:5 |
72 | // CHECK: Punctuation: "++" [8:13 - 8:15] CXXMethod=operator++:8:5 |
73 | // CHECK: Punctuation: "(" [8:15 - 8:16] CXXMethod=operator++:8:5 |
74 | // CHECK: Punctuation: ")" [8:16 - 8:17] CXXMethod=operator++:8:5 |
75 | // CHECK: Punctuation: ";" [8:17 - 8:18] StructDecl=X:7:8 (Definition) |
76 | // CHECK: Identifier: "X" [9:3 - 9:4] TypeRef=struct X:7:8 |
77 | // CHECK: Keyword: "operator" [9:5 - 9:13] CXXMethod=operator++:9:5 |
78 | // CHECK: Punctuation: "++" [9:13 - 9:15] CXXMethod=operator++:9:5 |
79 | // CHECK: Punctuation: "(" [9:15 - 9:16] CXXMethod=operator++:9:5 |
80 | // CHECK: Keyword: "int" [9:16 - 9:19] ParmDecl=:9:19 (Definition |
81 | // CHECK: Punctuation: ")" [9:19 - 9:20] CXXMethod=operator++:9:5 |
82 | // CHECK: Punctuation: ";" [9:20 - 9:21] StructDecl=X:7:8 (Definition) |
83 | // CHECK: Punctuation: "}" [10:1 - 10:2] StructDecl=X:7:8 (Definition) |
84 | // CHECK: Punctuation: ";" [10:2 - 10:3] |
85 | // CHECK: Keyword: "void" [11:1 - 11:5] FunctionDecl=test2:11:6 (Definition) |
86 | // CHECK: Identifier: "test2" [11:6 - 11:11] FunctionDecl=test2:11:6 (Definition) |
87 | // CHECK: Punctuation: "(" [11:11 - 11:12] FunctionDecl=test2:11:6 (Definition) |
88 | // CHECK: Identifier: "X" [11:12 - 11:13] TypeRef=struct X:7:8 |
89 | // CHECK: Identifier: "x" [11:14 - 11:15] ParmDecl=x:11:14 (Definition) |
90 | // CHECK: Punctuation: ")" [11:15 - 11:16] FunctionDecl=test2:11:6 (Definition) |
91 | // CHECK: Punctuation: "{" [11:17 - 11:18] CompoundStmt= |
92 | // CHECK: Punctuation: "++" [12:3 - 12:5] CallExpr=operator++:8:5 |
93 | // CHECK: Punctuation: "(" [12:5 - 12:6] ParenExpr= |
94 | // CHECK: Identifier: "x" [12:6 - 12:7] DeclRefExpr=x:11:14 |
95 | // CHECK: Punctuation: ")" [12:7 - 12:8] ParenExpr= |
96 | // CHECK: Punctuation: ";" [12:8 - 12:9] CompoundStmt= |
97 | // CHECK: Punctuation: "(" [13:3 - 13:4] ParenExpr= |
98 | // CHECK: Identifier: "x" [13:4 - 13:5] DeclRefExpr=x:11:14 |
99 | // CHECK: Punctuation: ")" [13:5 - 13:6] ParenExpr= |
100 | // CHECK: Punctuation: "++" [13:6 - 13:8] DeclRefExpr=operator++:9:5 |
101 | // CHECK: Punctuation: ";" [13:8 - 13:9] CompoundStmt= |
102 | // CHECK: Punctuation: "}" [14:1 - 14:2] CompoundStmt= |
103 | // CHECK: Keyword: "struct" [16:1 - 16:7] StructDecl=S1:16:8 (Definition) |
104 | // CHECK: Identifier: "S1" [16:8 - 16:10] StructDecl=S1:16:8 (Definition) |
105 | // CHECK: Punctuation: "{" [16:11 - 16:12] StructDecl=S1:16:8 (Definition) |
106 | // CHECK: Keyword: "void" [16:13 - 16:17] CXXMethod=f:16:18 |
107 | // CHECK: Identifier: "f" [16:18 - 16:19] CXXMethod=f:16:18 |
108 | // CHECK: Punctuation: "(" [16:19 - 16:20] CXXMethod=f:16:18 |
109 | // CHECK: Punctuation: ")" [16:20 - 16:21] CXXMethod=f:16:18 |
110 | // CHECK: Punctuation: ";" [16:21 - 16:22] StructDecl=S1:16:8 (Definition) |
111 | // CHECK: Punctuation: "}" [16:23 - 16:24] StructDecl=S1:16:8 (Definition) |
112 | // CHECK: Punctuation: ";" [16:24 - 16:25] |
113 | // CHECK: Keyword: "struct" [17:1 - 17:7] StructDecl=S2:17:8 (Definition) |
114 | // CHECK: Identifier: "S2" [17:8 - 17:10] StructDecl=S2:17:8 (Definition) |
115 | // CHECK: Punctuation: "{" [17:11 - 17:12] StructDecl=S2:17:8 (Definition) |
116 | // CHECK: Identifier: "S1" [17:13 - 17:15] TypeRef=struct S1:16:8 |
117 | // CHECK: Punctuation: "*" [17:16 - 17:17] CXXMethod=operator->:17:17 |
118 | // CHECK: Keyword: "operator" [17:17 - 17:25] CXXMethod=operator->:17:17 |
119 | // CHECK: Punctuation: "->" [17:25 - 17:27] CXXMethod=operator->:17:17 |
120 | // CHECK: Punctuation: "(" [17:27 - 17:28] CXXMethod=operator->:17:17 |
121 | // CHECK: Punctuation: ")" [17:28 - 17:29] CXXMethod=operator->:17:17 |
122 | // CHECK: Punctuation: ";" [17:29 - 17:30] StructDecl=S2:17:8 (Definition) |
123 | // CHECK: Punctuation: "}" [17:31 - 17:32] StructDecl=S2:17:8 (Definition) |
124 | // CHECK: Punctuation: ";" [17:32 - 17:33] |
125 | // CHECK: Keyword: "void" [18:1 - 18:5] FunctionDecl=test3:18:6 (Definition) |
126 | // CHECK: Identifier: "test3" [18:6 - 18:11] FunctionDecl=test3:18:6 (Definition) |
127 | // CHECK: Punctuation: "(" [18:11 - 18:12] FunctionDecl=test3:18:6 (Definition) |
128 | // CHECK: Identifier: "S2" [18:12 - 18:14] TypeRef=struct S2:17:8 |
129 | // CHECK: Identifier: "s2" [18:15 - 18:17] ParmDecl=s2:18:15 (Definition) |
130 | // CHECK: Punctuation: ")" [18:17 - 18:18] FunctionDecl=test3:18:6 (Definition) |
131 | // CHECK: Punctuation: "{" [18:19 - 18:20] CompoundStmt= |
132 | // CHECK: Identifier: "s2" [19:3 - 19:5] DeclRefExpr=s2:18:15 |
133 | // CHECK: Punctuation: "->" [19:5 - 19:7] DeclRefExpr=operator->:17:17 |
134 | // CHECK: Identifier: "f" [19:7 - 19:8] MemberRefExpr=f:16:18 |
135 | // CHECK: Punctuation: "(" [19:8 - 19:9] CallExpr=f:16:18 |
136 | // CHECK: Punctuation: ")" [19:9 - 19:10] CallExpr=f:16:18 |
137 | // CHECK: Punctuation: ";" [19:10 - 19:11] CompoundStmt= |
138 | // CHECK: Identifier: "X" [20:3 - 20:4] TypeRef=struct X:7:8 |
139 | // CHECK: Identifier: "foo" [20:5 - 20:8] VarDecl=foo:20:5 (Definition) |
140 | // CHECK: Punctuation: ";" [20:8 - 20:9] DeclStmt= |
141 | // CHECK: Punctuation: "}" [21:1 - 21:2] CompoundStmt= |
142 | // CHECK: Keyword: "template" [23:1 - 23:9] ClassTemplate=TS:24:8 (Definition) |
143 | // CHECK: Punctuation: "<" [23:10 - 23:11] ClassTemplate=TS:24:8 (Definition) |
144 | // CHECK: Keyword: "bool" [23:11 - 23:15] NonTypeTemplateParameter=tfn:23:18 (Definition) |
145 | // CHECK: Punctuation: "(" [23:16 - 23:17] NonTypeTemplateParameter=tfn:23:18 (Definition) |
146 | // CHECK: Punctuation: "*" [23:17 - 23:18] NonTypeTemplateParameter=tfn:23:18 (Definition) |
147 | // CHECK: Identifier: "tfn" [23:18 - 23:21] NonTypeTemplateParameter=tfn:23:18 (Definition) |
148 | // CHECK: Punctuation: ")" [23:21 - 23:22] NonTypeTemplateParameter=tfn:23:18 (Definition) |
149 | // CHECK: Punctuation: "(" [23:22 - 23:23] NonTypeTemplateParameter=tfn:23:18 (Definition) |
150 | // CHECK: Identifier: "X" [23:23 - 23:24] TypeRef=struct X:7:8 |
151 | // CHECK: Punctuation: "*" [23:24 - 23:25] ParmDecl=:23:25 (Definition) |
152 | // CHECK: Punctuation: ")" [23:25 - 23:26] NonTypeTemplateParameter=tfn:23:18 (Definition) |
153 | // CHECK: Punctuation: ">" [23:26 - 23:27] ClassTemplate=TS:24:8 (Definition) |
154 | // CHECK: Keyword: "struct" [24:1 - 24:7] ClassTemplate=TS:24:8 (Definition) |
155 | // CHECK: Identifier: "TS" [24:8 - 24:10] ClassTemplate=TS:24:8 (Definition) |
156 | // CHECK: Punctuation: "{" [24:11 - 24:12] ClassTemplate=TS:24:8 (Definition) |
157 | // CHECK: Keyword: "void" [25:3 - 25:7] CXXMethod=foo:25:8 |
158 | // CHECK: Identifier: "foo" [25:8 - 25:11] CXXMethod=foo:25:8 |
159 | // CHECK: Punctuation: "(" [25:11 - 25:12] CXXMethod=foo:25:8 |
160 | // CHECK: Punctuation: ")" [25:12 - 25:13] CXXMethod=foo:25:8 |
161 | // CHECK: Punctuation: ";" [25:13 - 25:14] ClassTemplate=TS:24:8 (Definition) |
162 | // CHECK: Punctuation: "}" [26:1 - 26:2] ClassTemplate=TS:24:8 (Definition) |
163 | // CHECK: Punctuation: ";" [26:2 - 26:3] |
164 | // CHECK: Keyword: "template" [28:1 - 28:9] CXXMethod=foo:29:15 (Definition) |
165 | // CHECK: Punctuation: "<" [28:10 - 28:11] CXXMethod=foo:29:15 (Definition) |
166 | // CHECK: Keyword: "bool" [28:11 - 28:15] NonTypeTemplateParameter=tfn:28:18 (Definition) |
167 | // CHECK: Punctuation: "(" [28:16 - 28:17] NonTypeTemplateParameter=tfn:28:18 (Definition) |
168 | // CHECK: Punctuation: "*" [28:17 - 28:18] NonTypeTemplateParameter=tfn:28:18 (Definition) |
169 | // CHECK: Identifier: "tfn" [28:18 - 28:21] NonTypeTemplateParameter=tfn:28:18 (Definition) |
170 | // CHECK: Punctuation: ")" [28:21 - 28:22] NonTypeTemplateParameter=tfn:28:18 (Definition) |
171 | // CHECK: Punctuation: "(" [28:22 - 28:23] NonTypeTemplateParameter=tfn:28:18 (Definition) |
172 | // CHECK: Identifier: "X" [28:23 - 28:24] TypeRef=struct X:7:8 |
173 | // CHECK: Punctuation: "*" [28:24 - 28:25] ParmDecl=:28:25 (Definition) |
174 | // CHECK: Punctuation: ")" [28:25 - 28:26] NonTypeTemplateParameter=tfn:28:18 (Definition) |
175 | // CHECK: Punctuation: ">" [28:26 - 28:27] CXXMethod=foo:29:15 (Definition) |
176 | // CHECK: Keyword: "void" [29:1 - 29:5] CXXMethod=foo:29:15 (Definition) |
177 | // CHECK: Identifier: "TS" [29:6 - 29:8] TemplateRef=TS:24:8 |
178 | // CHECK: Punctuation: "<" [29:8 - 29:9] CXXMethod=foo:29:15 (Definition) |
179 | // CHECK: Identifier: "tfn" [29:9 - 29:12] DeclRefExpr=tfn:28:18 |
180 | // CHECK: Punctuation: ">" [29:12 - 29:13] CXXMethod=foo:29:15 (Definition) |
181 | // CHECK: Punctuation: "::" [29:13 - 29:15] CXXMethod=foo:29:15 (Definition) |
182 | // CHECK: Identifier: "foo" [29:15 - 29:18] CXXMethod=foo:29:15 (Definition) |
183 | // CHECK: Punctuation: "(" [29:18 - 29:19] CXXMethod=foo:29:15 (Definition) |
184 | // CHECK: Punctuation: ")" [29:19 - 29:20] CXXMethod=foo:29:15 (Definition) |
185 | // CHECK: Punctuation: "{" [29:21 - 29:22] CompoundStmt= |
186 | // CHECK: Punctuation: "}" [29:22 - 29:23] CompoundStmt= |
187 | // CHECK: Punctuation: "~" [37:3 - 37:4] CXXDestructor=~C:37:3 |
188 | // CHECK: Identifier: "C" [37:4 - 37:5] CXXDestructor=~C:37:3 |
189 | // CHECK: Keyword: "auto" [40:1 - 40:5] FunctionDecl=test5:40:6 |
190 | // CHECK: Identifier: "test5" [40:6 - 40:11] FunctionDecl=test5:40:6 |
191 | // CHECK: Punctuation: "(" [40:11 - 40:12] FunctionDecl=test5:40:6 |
192 | // CHECK: Identifier: "X" [40:12 - 40:13] TypeRef=struct X:7:8 |
193 | // CHECK: Punctuation: ")" [40:13 - 40:14] FunctionDecl=test5:40:6 |
194 | // CHECK: Punctuation: "->" [40:15 - 40:17] FunctionDecl=test5:40:6 |
195 | // CHECK: Identifier: "X" [40:18 - 40:19] TypeRef=struct X:7:8 |
196 | // CHECK: Punctuation: ";" [40:19 - 40:20] |
197 | |
198 | // RUN: env LIBCLANG_DISABLE_CRASH_RECOVERY=1 c-index-test -test-annotate-tokens=%s:32:1:32:13 %s | FileCheck %s -check-prefix=CHECK2 |
199 | // CHECK2: Keyword: "if" [32:3 - 32:5] IfStmt= |
200 | // CHECK2: Punctuation: "(" [32:6 - 32:7] IfStmt= |
201 | // CHECK2: Keyword: "int" [32:7 - 32:10] VarDecl=p:32:11 (Definition) |
202 | // CHECK2: Identifier: "p" [32:11 - 32:12] VarDecl=p:32:11 (Definition) |
203 | // CHECK2: Punctuation: "=" [32:13 - 32:14] VarDecl=p:32:11 (Definition) |
204 | |