1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
|
// RUN: rm -rf %t
// RUN: %clang_cc1 -extract-api --pretty-sgf --emit-sgf-symbol-labels-for-testing \
// RUN: -triple arm64-apple-macosx -x c++-header %s -o %t/output.symbols.json -verify
class Foo {
// RUN: FileCheck %s --input-file %t/output.symbols.json --check-prefix GETCOUNT
int getCount();
// GETCOUNT: "!testRelLabel": "memberOf $ c:@S@Foo@F@getCount# $ c:@S@Foo"
// GETCOUNT-LABEL: "!testLabel": "c:@S@Foo@F@getCount#"
// GETCOUNT: "accessLevel": "private",
// GETCOUNT: "declarationFragments": [
// GETCOUNT-NEXT: {
// GETCOUNT-NEXT: "kind": "typeIdentifier",
// GETCOUNT-NEXT: "preciseIdentifier": "c:I",
// GETCOUNT-NEXT: "spelling": "int"
// GETCOUNT-NEXT: },
// GETCOUNT-NEXT: {
// GETCOUNT-NEXT: "kind": "text",
// GETCOUNT-NEXT: "spelling": " "
// GETCOUNT-NEXT: },
// GETCOUNT-NEXT: {
// GETCOUNT-NEXT: "kind": "identifier",
// GETCOUNT-NEXT: "spelling": "getCount"
// GETCOUNT-NEXT: },
// GETCOUNT-NEXT: {
// GETCOUNT-NEXT: "kind": "text",
// GETCOUNT-NEXT: "spelling": "();"
// GETCOUNT-NEXT: }
// GETCOUNT-NEXT: ],
// GETCOUNT: "functionSignature": {
// GETCOUNT-NEXT: "returns": [
// GETCOUNT-NEXT: {
// GETCOUNT-NEXT: "kind": "typeIdentifier",
// GETCOUNT-NEXT: "preciseIdentifier": "c:I",
// GETCOUNT-NEXT: "spelling": "int"
// GETCOUNT-NEXT: }
// GETCOUNT-NEXT: ]
// GETCOUNT-NEXT: },
// GETCOUNT: "displayName": "Instance Method",
// GETCOUNT-NEXT: "identifier": "c++.method"
// GETCOUNT: "title": "getCount"
// GETCOUNT: "pathComponents": [
// GETCOUNT-NEXT: "Foo",
// GETCOUNT-NEXT: "getCount"
// GETCOUNT-NEXT: ]
// RUN: FileCheck %s --input-file %t/output.symbols.json --check-prefix SETL
virtual void setLength(int length) noexcept;
// SETL: "!testRelLabel": "memberOf $ c:@S@Foo@F@setLength#I# $ c:@S@Foo"
// SETL-LABEL: "!testLabel": "c:@S@Foo@F@setLength#I#"
// SETL: "declarationFragments": [
// SETL-NEXT: {
// SETL-NEXT: "kind": "keyword",
// SETL-NEXT: "spelling": "virtual"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": " "
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "typeIdentifier",
// SETL-NEXT: "preciseIdentifier": "c:v",
// SETL-NEXT: "spelling": "void"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": " "
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "identifier",
// SETL-NEXT: "spelling": "setLength"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": "("
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "typeIdentifier",
// SETL-NEXT: "preciseIdentifier": "c:I",
// SETL-NEXT: "spelling": "int"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": " "
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "internalParam",
// SETL-NEXT: "spelling": "length"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": ") "
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "keyword",
// SETL-NEXT: "spelling": "noexcept"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": ";"
// SETL-NEXT: }
// SETL-NEXT: ],
// SETL: "functionSignature": {
// SETL-NEXT: "parameters": [
// SETL-NEXT: {
// SETL-NEXT: "declarationFragments": [
// SETL-NEXT: {
// SETL-NEXT: "kind": "typeIdentifier",
// SETL-NEXT: "preciseIdentifier": "c:I",
// SETL-NEXT: "spelling": "int"
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "text",
// SETL-NEXT: "spelling": " "
// SETL-NEXT: },
// SETL-NEXT: {
// SETL-NEXT: "kind": "internalParam",
// SETL-NEXT: "spelling": "length"
// SETL-NEXT: }
// SETL-NEXT: ],
// SETL-NEXT: "name": "length"
// SETL-NEXT: }
// SETL-NEXT: ],
// SETL-NEXT: "returns": [
// SETL-NEXT: {
// SETL-NEXT: "kind": "typeIdentifier",
// SETL-NEXT: "preciseIdentifier": "c:v",
// SETL-NEXT: "spelling": "void"
// SETL-NEXT: }
// SETL-NEXT: ]
// SETL-NEXT: },
public:
// RUN: FileCheck %s --input-file %t/output.symbols.json --check-prefix GETFOO
static double getFoo();
// GETFOO: "!testRelLabel": "memberOf $ c:@S@Foo@F@getFoo#S $ c:@S@Foo"
// GETFOO-LABEL: "!testLabel": "c:@S@Foo@F@getFoo#S"
// GETFOO: "accessLevel": "public",
// GETFOO: "declarationFragments": [
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "keyword",
// GETFOO-NEXT: "spelling": "static"
// GETFOO-NEXT: },
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "text",
// GETFOO-NEXT: "spelling": " "
// GETFOO-NEXT: },
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "typeIdentifier",
// GETFOO-NEXT: "preciseIdentifier": "c:d",
// GETFOO-NEXT: "spelling": "double"
// GETFOO-NEXT: },
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "text",
// GETFOO-NEXT: "spelling": " "
// GETFOO-NEXT: },
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "identifier",
// GETFOO-NEXT: "spelling": "getFoo"
// GETFOO-NEXT: },
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "text",
// GETFOO-NEXT: "spelling": "();"
// GETFOO-NEXT: }
// GETFOO-NEXT: ],
// GETFOO: "functionSignature": {
// GETFOO-NEXT: "returns": [
// GETFOO-NEXT: {
// GETFOO-NEXT: "kind": "typeIdentifier",
// GETFOO-NEXT: "preciseIdentifier": "c:d",
// GETFOO-NEXT: "spelling": "double"
// GETFOO-NEXT: }
// GETFOO-NEXT: ]
// GETFOO-NEXT: },
// GETFOO: "kind": {
// GETFOO-NEXT: "displayName": "Static Method",
// GETFOO-NEXT: "identifier": "c++.type.method"
// GETFOO-NEXT: },
protected:
// RUN: FileCheck %s --input-file %t/output.symbols.json --check-prefix GETBAR
constexpr int getBar() const;
// GETBAR: "!testRelLabel": "memberOf $ c:@S@Foo@F@getBar#1 $ c:@S@Foo"
// GETBAR-LABEL: "!testLabel": "c:@S@Foo@F@getBar#1"
// GETBAR: "accessLevel": "protected"
// GETBAR: "declarationFragments": [
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "keyword",
// GETBAR-NEXT: "spelling": "constexpr"
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "text",
// GETBAR-NEXT: "spelling": " "
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "typeIdentifier",
// GETBAR-NEXT: "preciseIdentifier": "c:I",
// GETBAR-NEXT: "spelling": "int"
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "text",
// GETBAR-NEXT: "spelling": " "
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "identifier",
// GETBAR-NEXT: "spelling": "getBar"
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "text",
// GETBAR-NEXT: "spelling": "() "
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "keyword",
// GETBAR-NEXT: "spelling": "const"
// GETBAR-NEXT: },
// GETBAR-NEXT: {
// GETBAR-NEXT: "kind": "text",
// GETBAR-NEXT: "spelling": ";"
// GETBAR-NEXT: }
// GETBAR-NEXT: ],
};
// expected-no-diagnostics
|