xref: /llvm-project/clang/test/ExtractAPI/struct.c (revision e05c1b46d0d3739cc48ad912dbe6e9affce05927)
15bb5704cSZixu Wang // RUN: rm -rf %t
25bb5704cSZixu Wang // RUN: split-file %s %t
3e08c4354SZixu Wang // RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \
4e08c4354SZixu Wang // RUN: %t/reference.output.json.in >> %t/reference.output.json
5*e05c1b46SDaniel Grumberg // RUN: %clang -extract-api --pretty-sgf -target arm64-apple-macosx \
65bb5704cSZixu Wang // RUN: %t/input.h -o %t/output.json | FileCheck -allow-empty %s
75bb5704cSZixu Wang 
85bb5704cSZixu Wang // Generator version is not consistent across test runs, normalize it.
95bb5704cSZixu Wang // RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
105bb5704cSZixu Wang // RUN: %t/output.json >> %t/output-normalized.json
115bb5704cSZixu Wang // RUN: diff %t/reference.output.json %t/output-normalized.json
125bb5704cSZixu Wang 
135bb5704cSZixu Wang // CHECK-NOT: error:
145bb5704cSZixu Wang // CHECK-NOT: warning:
155bb5704cSZixu Wang 
165bb5704cSZixu Wang //--- input.h
175bb5704cSZixu Wang /// Color in RGBA
185bb5704cSZixu Wang struct Color {
195bb5704cSZixu Wang   unsigned Red;
205bb5704cSZixu Wang   unsigned Green;
215bb5704cSZixu Wang   unsigned Blue;
225bb5704cSZixu Wang   /// Alpha channel for transparency
235bb5704cSZixu Wang   unsigned Alpha;
245bb5704cSZixu Wang };
255bb5704cSZixu Wang 
265bb5704cSZixu Wang //--- reference.output.json.in
275bb5704cSZixu Wang {
285bb5704cSZixu Wang   "metadata": {
295bb5704cSZixu Wang     "formatVersion": {
305bb5704cSZixu Wang       "major": 0,
315bb5704cSZixu Wang       "minor": 5,
325bb5704cSZixu Wang       "patch": 3
335bb5704cSZixu Wang     },
345bb5704cSZixu Wang     "generator": "?"
355bb5704cSZixu Wang   },
365bb5704cSZixu Wang   "module": {
375bb5704cSZixu Wang     "name": "",
385bb5704cSZixu Wang     "platform": {
395bb5704cSZixu Wang       "architecture": "arm64",
405bb5704cSZixu Wang       "operatingSystem": {
415bb5704cSZixu Wang         "minimumVersion": {
425bb5704cSZixu Wang           "major": 11,
435bb5704cSZixu Wang           "minor": 0,
445bb5704cSZixu Wang           "patch": 0
455bb5704cSZixu Wang         },
465bb5704cSZixu Wang         "name": "macosx"
475bb5704cSZixu Wang       },
485bb5704cSZixu Wang       "vendor": "apple"
495bb5704cSZixu Wang     }
505bb5704cSZixu Wang   },
5128d79314SDaniel Grumberg   "relationships": [
525bb5704cSZixu Wang     {
535bb5704cSZixu Wang       "kind": "memberOf",
545bb5704cSZixu Wang       "source": "c:@S@Color@FI@Red",
5539dbfa72SDaniel Grumberg       "target": "c:@S@Color",
5639dbfa72SDaniel Grumberg       "targetFallback": "Color"
575bb5704cSZixu Wang     },
585bb5704cSZixu Wang     {
595bb5704cSZixu Wang       "kind": "memberOf",
605bb5704cSZixu Wang       "source": "c:@S@Color@FI@Green",
6139dbfa72SDaniel Grumberg       "target": "c:@S@Color",
6239dbfa72SDaniel Grumberg       "targetFallback": "Color"
635bb5704cSZixu Wang     },
645bb5704cSZixu Wang     {
655bb5704cSZixu Wang       "kind": "memberOf",
665bb5704cSZixu Wang       "source": "c:@S@Color@FI@Blue",
6739dbfa72SDaniel Grumberg       "target": "c:@S@Color",
6839dbfa72SDaniel Grumberg       "targetFallback": "Color"
695bb5704cSZixu Wang     },
705bb5704cSZixu Wang     {
715bb5704cSZixu Wang       "kind": "memberOf",
725bb5704cSZixu Wang       "source": "c:@S@Color@FI@Alpha",
7339dbfa72SDaniel Grumberg       "target": "c:@S@Color",
7439dbfa72SDaniel Grumberg       "targetFallback": "Color"
755bb5704cSZixu Wang     }
765bb5704cSZixu Wang   ],
775bb5704cSZixu Wang   "symbols": [
785bb5704cSZixu Wang     {
7928d79314SDaniel Grumberg       "accessLevel": "public",
805bb5704cSZixu Wang       "declarationFragments": [
815bb5704cSZixu Wang         {
825bb5704cSZixu Wang           "kind": "keyword",
835bb5704cSZixu Wang           "spelling": "struct"
845bb5704cSZixu Wang         },
855bb5704cSZixu Wang         {
865bb5704cSZixu Wang           "kind": "text",
875bb5704cSZixu Wang           "spelling": " "
885bb5704cSZixu Wang         },
895bb5704cSZixu Wang         {
905bb5704cSZixu Wang           "kind": "identifier",
915bb5704cSZixu Wang           "spelling": "Color"
92afce10c5SNagaChaitanya Vellanki         },
93afce10c5SNagaChaitanya Vellanki         {
94afce10c5SNagaChaitanya Vellanki           "kind": "text",
95afce10c5SNagaChaitanya Vellanki           "spelling": ";"
965bb5704cSZixu Wang         }
975bb5704cSZixu Wang       ],
985bb5704cSZixu Wang       "docComment": {
995bb5704cSZixu Wang         "lines": [
1005bb5704cSZixu Wang           {
1015bb5704cSZixu Wang             "range": {
1025bb5704cSZixu Wang               "end": {
10363537872SQuietMisdreavus                 "character": 17,
10463537872SQuietMisdreavus                 "line": 0
1055bb5704cSZixu Wang               },
1065bb5704cSZixu Wang               "start": {
10763537872SQuietMisdreavus                 "character": 4,
10863537872SQuietMisdreavus                 "line": 0
1095bb5704cSZixu Wang               }
1105bb5704cSZixu Wang             },
1115bb5704cSZixu Wang             "text": "Color in RGBA"
1125bb5704cSZixu Wang           }
1135bb5704cSZixu Wang         ]
1145bb5704cSZixu Wang       },
1155bb5704cSZixu Wang       "identifier": {
1165bb5704cSZixu Wang         "interfaceLanguage": "c",
1175bb5704cSZixu Wang         "precise": "c:@S@Color"
1185bb5704cSZixu Wang       },
1195bb5704cSZixu Wang       "kind": {
1205bb5704cSZixu Wang         "displayName": "Structure",
1215bb5704cSZixu Wang         "identifier": "c.struct"
1225bb5704cSZixu Wang       },
1235bb5704cSZixu Wang       "location": {
12428d79314SDaniel Grumberg         "position": {
12563537872SQuietMisdreavus           "character": 7,
12663537872SQuietMisdreavus           "line": 1
12728d79314SDaniel Grumberg         },
1285bb5704cSZixu Wang         "uri": "file://INPUT_DIR/input.h"
1295bb5704cSZixu Wang       },
1305bb5704cSZixu Wang       "names": {
13180ae3665SDaniel Grumberg         "navigator": [
13280ae3665SDaniel Grumberg           {
13380ae3665SDaniel Grumberg             "kind": "identifier",
13480ae3665SDaniel Grumberg             "spelling": "Color"
13580ae3665SDaniel Grumberg           }
13680ae3665SDaniel Grumberg         ],
1375bb5704cSZixu Wang         "subHeading": [
1385bb5704cSZixu Wang           {
1395bb5704cSZixu Wang             "kind": "identifier",
1405bb5704cSZixu Wang             "spelling": "Color"
1415bb5704cSZixu Wang           }
1425bb5704cSZixu Wang         ],
1435bb5704cSZixu Wang         "title": "Color"
14428d79314SDaniel Grumberg       },
14528d79314SDaniel Grumberg       "pathComponents": [
14628d79314SDaniel Grumberg         "Color"
14728d79314SDaniel Grumberg       ]
1485bb5704cSZixu Wang     },
1495bb5704cSZixu Wang     {
15028d79314SDaniel Grumberg       "accessLevel": "public",
1515bb5704cSZixu Wang       "declarationFragments": [
1525bb5704cSZixu Wang         {
1535bb5704cSZixu Wang           "kind": "typeIdentifier",
1545bb5704cSZixu Wang           "preciseIdentifier": "c:i",
1555bb5704cSZixu Wang           "spelling": "unsigned int"
1565bb5704cSZixu Wang         },
1575bb5704cSZixu Wang         {
1585bb5704cSZixu Wang           "kind": "text",
1595bb5704cSZixu Wang           "spelling": " "
1605bb5704cSZixu Wang         },
1615bb5704cSZixu Wang         {
1625bb5704cSZixu Wang           "kind": "identifier",
1635bb5704cSZixu Wang           "spelling": "Red"
164422bcd10SErick Velez         },
165422bcd10SErick Velez         {
166422bcd10SErick Velez           "kind": "text",
167422bcd10SErick Velez           "spelling": ";"
1685bb5704cSZixu Wang         }
1695bb5704cSZixu Wang       ],
1705bb5704cSZixu Wang       "identifier": {
1715bb5704cSZixu Wang         "interfaceLanguage": "c",
1725bb5704cSZixu Wang         "precise": "c:@S@Color@FI@Red"
1735bb5704cSZixu Wang       },
1745bb5704cSZixu Wang       "kind": {
1755bb5704cSZixu Wang         "displayName": "Instance Property",
1765bb5704cSZixu Wang         "identifier": "c.property"
1775bb5704cSZixu Wang       },
1785bb5704cSZixu Wang       "location": {
17928d79314SDaniel Grumberg         "position": {
18063537872SQuietMisdreavus           "character": 11,
18163537872SQuietMisdreavus           "line": 2
18228d79314SDaniel Grumberg         },
1835bb5704cSZixu Wang         "uri": "file://INPUT_DIR/input.h"
1845bb5704cSZixu Wang       },
1855bb5704cSZixu Wang       "names": {
18680ae3665SDaniel Grumberg         "navigator": [
18780ae3665SDaniel Grumberg           {
18880ae3665SDaniel Grumberg             "kind": "identifier",
18980ae3665SDaniel Grumberg             "spelling": "Red"
19080ae3665SDaniel Grumberg           }
19180ae3665SDaniel Grumberg         ],
1925bb5704cSZixu Wang         "subHeading": [
1935bb5704cSZixu Wang           {
1945bb5704cSZixu Wang             "kind": "identifier",
1955bb5704cSZixu Wang             "spelling": "Red"
1965bb5704cSZixu Wang           }
1975bb5704cSZixu Wang         ],
1985bb5704cSZixu Wang         "title": "Red"
19928d79314SDaniel Grumberg       },
20028d79314SDaniel Grumberg       "pathComponents": [
20128d79314SDaniel Grumberg         "Color",
20228d79314SDaniel Grumberg         "Red"
20328d79314SDaniel Grumberg       ]
2045bb5704cSZixu Wang     },
2055bb5704cSZixu Wang     {
20628d79314SDaniel Grumberg       "accessLevel": "public",
2075bb5704cSZixu Wang       "declarationFragments": [
2085bb5704cSZixu Wang         {
2095bb5704cSZixu Wang           "kind": "typeIdentifier",
2105bb5704cSZixu Wang           "preciseIdentifier": "c:i",
2115bb5704cSZixu Wang           "spelling": "unsigned int"
2125bb5704cSZixu Wang         },
2135bb5704cSZixu Wang         {
2145bb5704cSZixu Wang           "kind": "text",
2155bb5704cSZixu Wang           "spelling": " "
2165bb5704cSZixu Wang         },
2175bb5704cSZixu Wang         {
2185bb5704cSZixu Wang           "kind": "identifier",
2195bb5704cSZixu Wang           "spelling": "Green"
220422bcd10SErick Velez         },
221422bcd10SErick Velez         {
222422bcd10SErick Velez           "kind": "text",
223422bcd10SErick Velez           "spelling": ";"
2245bb5704cSZixu Wang         }
2255bb5704cSZixu Wang       ],
2265bb5704cSZixu Wang       "identifier": {
2275bb5704cSZixu Wang         "interfaceLanguage": "c",
2285bb5704cSZixu Wang         "precise": "c:@S@Color@FI@Green"
2295bb5704cSZixu Wang       },
2305bb5704cSZixu Wang       "kind": {
2315bb5704cSZixu Wang         "displayName": "Instance Property",
2325bb5704cSZixu Wang         "identifier": "c.property"
2335bb5704cSZixu Wang       },
2345bb5704cSZixu Wang       "location": {
23528d79314SDaniel Grumberg         "position": {
23663537872SQuietMisdreavus           "character": 11,
23763537872SQuietMisdreavus           "line": 3
23828d79314SDaniel Grumberg         },
2395bb5704cSZixu Wang         "uri": "file://INPUT_DIR/input.h"
2405bb5704cSZixu Wang       },
2415bb5704cSZixu Wang       "names": {
24280ae3665SDaniel Grumberg         "navigator": [
24380ae3665SDaniel Grumberg           {
24480ae3665SDaniel Grumberg             "kind": "identifier",
24580ae3665SDaniel Grumberg             "spelling": "Green"
24680ae3665SDaniel Grumberg           }
24780ae3665SDaniel Grumberg         ],
2485bb5704cSZixu Wang         "subHeading": [
2495bb5704cSZixu Wang           {
2505bb5704cSZixu Wang             "kind": "identifier",
2515bb5704cSZixu Wang             "spelling": "Green"
2525bb5704cSZixu Wang           }
2535bb5704cSZixu Wang         ],
2545bb5704cSZixu Wang         "title": "Green"
25528d79314SDaniel Grumberg       },
25628d79314SDaniel Grumberg       "pathComponents": [
25728d79314SDaniel Grumberg         "Color",
25828d79314SDaniel Grumberg         "Green"
25928d79314SDaniel Grumberg       ]
2605bb5704cSZixu Wang     },
2615bb5704cSZixu Wang     {
26228d79314SDaniel Grumberg       "accessLevel": "public",
2635bb5704cSZixu Wang       "declarationFragments": [
2645bb5704cSZixu Wang         {
2655bb5704cSZixu Wang           "kind": "typeIdentifier",
2665bb5704cSZixu Wang           "preciseIdentifier": "c:i",
2675bb5704cSZixu Wang           "spelling": "unsigned int"
2685bb5704cSZixu Wang         },
2695bb5704cSZixu Wang         {
2705bb5704cSZixu Wang           "kind": "text",
2715bb5704cSZixu Wang           "spelling": " "
2725bb5704cSZixu Wang         },
2735bb5704cSZixu Wang         {
2745bb5704cSZixu Wang           "kind": "identifier",
2755bb5704cSZixu Wang           "spelling": "Blue"
276422bcd10SErick Velez         },
277422bcd10SErick Velez         {
278422bcd10SErick Velez           "kind": "text",
279422bcd10SErick Velez           "spelling": ";"
2805bb5704cSZixu Wang         }
2815bb5704cSZixu Wang       ],
2825bb5704cSZixu Wang       "identifier": {
2835bb5704cSZixu Wang         "interfaceLanguage": "c",
2845bb5704cSZixu Wang         "precise": "c:@S@Color@FI@Blue"
2855bb5704cSZixu Wang       },
2865bb5704cSZixu Wang       "kind": {
2875bb5704cSZixu Wang         "displayName": "Instance Property",
2885bb5704cSZixu Wang         "identifier": "c.property"
2895bb5704cSZixu Wang       },
2905bb5704cSZixu Wang       "location": {
29128d79314SDaniel Grumberg         "position": {
29263537872SQuietMisdreavus           "character": 11,
29363537872SQuietMisdreavus           "line": 4
29428d79314SDaniel Grumberg         },
2955bb5704cSZixu Wang         "uri": "file://INPUT_DIR/input.h"
2965bb5704cSZixu Wang       },
2975bb5704cSZixu Wang       "names": {
29880ae3665SDaniel Grumberg         "navigator": [
29980ae3665SDaniel Grumberg           {
30080ae3665SDaniel Grumberg             "kind": "identifier",
30180ae3665SDaniel Grumberg             "spelling": "Blue"
30280ae3665SDaniel Grumberg           }
30380ae3665SDaniel Grumberg         ],
3045bb5704cSZixu Wang         "subHeading": [
3055bb5704cSZixu Wang           {
3065bb5704cSZixu Wang             "kind": "identifier",
3075bb5704cSZixu Wang             "spelling": "Blue"
3085bb5704cSZixu Wang           }
3095bb5704cSZixu Wang         ],
3105bb5704cSZixu Wang         "title": "Blue"
31128d79314SDaniel Grumberg       },
31228d79314SDaniel Grumberg       "pathComponents": [
31328d79314SDaniel Grumberg         "Color",
31428d79314SDaniel Grumberg         "Blue"
31528d79314SDaniel Grumberg       ]
3165bb5704cSZixu Wang     },
3175bb5704cSZixu Wang     {
31828d79314SDaniel Grumberg       "accessLevel": "public",
3195bb5704cSZixu Wang       "declarationFragments": [
3205bb5704cSZixu Wang         {
3215bb5704cSZixu Wang           "kind": "typeIdentifier",
3225bb5704cSZixu Wang           "preciseIdentifier": "c:i",
3235bb5704cSZixu Wang           "spelling": "unsigned int"
3245bb5704cSZixu Wang         },
3255bb5704cSZixu Wang         {
3265bb5704cSZixu Wang           "kind": "text",
3275bb5704cSZixu Wang           "spelling": " "
3285bb5704cSZixu Wang         },
3295bb5704cSZixu Wang         {
3305bb5704cSZixu Wang           "kind": "identifier",
3315bb5704cSZixu Wang           "spelling": "Alpha"
332422bcd10SErick Velez         },
333422bcd10SErick Velez         {
334422bcd10SErick Velez           "kind": "text",
335422bcd10SErick Velez           "spelling": ";"
3365bb5704cSZixu Wang         }
3375bb5704cSZixu Wang       ],
3385bb5704cSZixu Wang       "docComment": {
3395bb5704cSZixu Wang         "lines": [
3405bb5704cSZixu Wang           {
3415bb5704cSZixu Wang             "range": {
3425bb5704cSZixu Wang               "end": {
34363537872SQuietMisdreavus                 "character": 36,
34463537872SQuietMisdreavus                 "line": 5
3455bb5704cSZixu Wang               },
3465bb5704cSZixu Wang               "start": {
34763537872SQuietMisdreavus                 "character": 6,
34863537872SQuietMisdreavus                 "line": 5
3495bb5704cSZixu Wang               }
3505bb5704cSZixu Wang             },
3515bb5704cSZixu Wang             "text": "Alpha channel for transparency"
3525bb5704cSZixu Wang           }
3535bb5704cSZixu Wang         ]
3545bb5704cSZixu Wang       },
3555bb5704cSZixu Wang       "identifier": {
3565bb5704cSZixu Wang         "interfaceLanguage": "c",
3575bb5704cSZixu Wang         "precise": "c:@S@Color@FI@Alpha"
3585bb5704cSZixu Wang       },
3595bb5704cSZixu Wang       "kind": {
3605bb5704cSZixu Wang         "displayName": "Instance Property",
3615bb5704cSZixu Wang         "identifier": "c.property"
3625bb5704cSZixu Wang       },
3635bb5704cSZixu Wang       "location": {
36428d79314SDaniel Grumberg         "position": {
36563537872SQuietMisdreavus           "character": 11,
36663537872SQuietMisdreavus           "line": 6
36728d79314SDaniel Grumberg         },
3685bb5704cSZixu Wang         "uri": "file://INPUT_DIR/input.h"
3695bb5704cSZixu Wang       },
3705bb5704cSZixu Wang       "names": {
37180ae3665SDaniel Grumberg         "navigator": [
37280ae3665SDaniel Grumberg           {
37380ae3665SDaniel Grumberg             "kind": "identifier",
37480ae3665SDaniel Grumberg             "spelling": "Alpha"
37580ae3665SDaniel Grumberg           }
37680ae3665SDaniel Grumberg         ],
3775bb5704cSZixu Wang         "subHeading": [
3785bb5704cSZixu Wang           {
3795bb5704cSZixu Wang             "kind": "identifier",
3805bb5704cSZixu Wang             "spelling": "Alpha"
3815bb5704cSZixu Wang           }
3825bb5704cSZixu Wang         ],
3835bb5704cSZixu Wang         "title": "Alpha"
38428d79314SDaniel Grumberg       },
38528d79314SDaniel Grumberg       "pathComponents": [
38628d79314SDaniel Grumberg         "Color",
38728d79314SDaniel Grumberg         "Alpha"
38828d79314SDaniel Grumberg       ]
3895bb5704cSZixu Wang     }
3905bb5704cSZixu Wang   ]
3915bb5704cSZixu Wang }
392