xref: /llvm-project/clang/test/ExtractAPI/enum.c (revision fa649df8e54c2aa8921a42ad8d10e1e45700e5d7)
171b4c226SZixu Wang // RUN: rm -rf %t
271b4c226SZixu 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_cc1 -extract-api --pretty-sgf -triple arm64-apple-macosx \
6c1e17c7dSDuncan P. N. Exon Smith // RUN:   -x c-header %t/input.h -o %t/output.json -verify
771b4c226SZixu Wang 
871b4c226SZixu Wang // Generator version is not consistent across test runs, normalize it.
971b4c226SZixu Wang // RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
1071b4c226SZixu Wang // RUN: %t/output.json >> %t/output-normalized.json
1171b4c226SZixu Wang // RUN: diff %t/reference.output.json %t/output-normalized.json
1271b4c226SZixu Wang 
1371b4c226SZixu Wang //--- input.h
1471b4c226SZixu Wang /// Kinds of vehicles
1571b4c226SZixu Wang enum Vehicle {
1671b4c226SZixu Wang   Bicycle,
1771b4c226SZixu Wang   Car,
1871b4c226SZixu Wang   Train, ///< Move this to the top! -Sheldon
1971b4c226SZixu Wang   Ship,
2071b4c226SZixu Wang   Airplane,
2171b4c226SZixu Wang };
2271b4c226SZixu Wang 
2371b4c226SZixu Wang enum Direction : unsigned char {
2471b4c226SZixu Wang   North = 0,
2571b4c226SZixu Wang   East,
2671b4c226SZixu Wang   South,
2771b4c226SZixu Wang   West
2871b4c226SZixu Wang };
2971b4c226SZixu Wang 
307443a504SDaniel Grumberg enum {
317443a504SDaniel Grumberg   Constant = 1
327443a504SDaniel Grumberg };
337443a504SDaniel Grumberg 
347443a504SDaniel Grumberg enum {
357443a504SDaniel Grumberg   OtherConstant = 2
367443a504SDaniel Grumberg };
37c1e17c7dSDuncan P. N. Exon Smith // expected-no-diagnostics
387443a504SDaniel Grumberg 
3971b4c226SZixu Wang //--- reference.output.json.in
4071b4c226SZixu Wang {
4171b4c226SZixu Wang   "metadata": {
4271b4c226SZixu Wang     "formatVersion": {
4371b4c226SZixu Wang       "major": 0,
4471b4c226SZixu Wang       "minor": 5,
4571b4c226SZixu Wang       "patch": 3
4671b4c226SZixu Wang     },
4771b4c226SZixu Wang     "generator": "?"
4871b4c226SZixu Wang   },
4971b4c226SZixu Wang   "module": {
5071b4c226SZixu Wang     "name": "",
5171b4c226SZixu Wang     "platform": {
5271b4c226SZixu Wang       "architecture": "arm64",
5371b4c226SZixu Wang       "operatingSystem": {
5471b4c226SZixu Wang         "minimumVersion": {
5571b4c226SZixu Wang           "major": 11,
5671b4c226SZixu Wang           "minor": 0,
5771b4c226SZixu Wang           "patch": 0
5871b4c226SZixu Wang         },
5971b4c226SZixu Wang         "name": "macosx"
6071b4c226SZixu Wang       },
6171b4c226SZixu Wang       "vendor": "apple"
6271b4c226SZixu Wang     }
6371b4c226SZixu Wang   },
6428d79314SDaniel Grumberg   "relationships": [
6571b4c226SZixu Wang     {
6671b4c226SZixu Wang       "kind": "memberOf",
6771b4c226SZixu Wang       "source": "c:@E@Vehicle@Bicycle",
6839dbfa72SDaniel Grumberg       "target": "c:@E@Vehicle",
6939dbfa72SDaniel Grumberg       "targetFallback": "Vehicle"
7071b4c226SZixu Wang     },
7171b4c226SZixu Wang     {
7271b4c226SZixu Wang       "kind": "memberOf",
7371b4c226SZixu Wang       "source": "c:@E@Vehicle@Car",
7439dbfa72SDaniel Grumberg       "target": "c:@E@Vehicle",
7539dbfa72SDaniel Grumberg       "targetFallback": "Vehicle"
7671b4c226SZixu Wang     },
7771b4c226SZixu Wang     {
7871b4c226SZixu Wang       "kind": "memberOf",
7971b4c226SZixu Wang       "source": "c:@E@Vehicle@Train",
8039dbfa72SDaniel Grumberg       "target": "c:@E@Vehicle",
8139dbfa72SDaniel Grumberg       "targetFallback": "Vehicle"
8271b4c226SZixu Wang     },
8371b4c226SZixu Wang     {
8471b4c226SZixu Wang       "kind": "memberOf",
8571b4c226SZixu Wang       "source": "c:@E@Vehicle@Ship",
8639dbfa72SDaniel Grumberg       "target": "c:@E@Vehicle",
8739dbfa72SDaniel Grumberg       "targetFallback": "Vehicle"
8871b4c226SZixu Wang     },
8971b4c226SZixu Wang     {
9071b4c226SZixu Wang       "kind": "memberOf",
9171b4c226SZixu Wang       "source": "c:@E@Vehicle@Airplane",
9239dbfa72SDaniel Grumberg       "target": "c:@E@Vehicle",
9339dbfa72SDaniel Grumberg       "targetFallback": "Vehicle"
9471b4c226SZixu Wang     },
9571b4c226SZixu Wang     {
9671b4c226SZixu Wang       "kind": "memberOf",
9771b4c226SZixu Wang       "source": "c:@E@Direction@North",
9839dbfa72SDaniel Grumberg       "target": "c:@E@Direction",
9939dbfa72SDaniel Grumberg       "targetFallback": "Direction"
10071b4c226SZixu Wang     },
10171b4c226SZixu Wang     {
10271b4c226SZixu Wang       "kind": "memberOf",
10371b4c226SZixu Wang       "source": "c:@E@Direction@East",
10439dbfa72SDaniel Grumberg       "target": "c:@E@Direction",
10539dbfa72SDaniel Grumberg       "targetFallback": "Direction"
10671b4c226SZixu Wang     },
10771b4c226SZixu Wang     {
10871b4c226SZixu Wang       "kind": "memberOf",
10971b4c226SZixu Wang       "source": "c:@E@Direction@South",
11039dbfa72SDaniel Grumberg       "target": "c:@E@Direction",
11139dbfa72SDaniel Grumberg       "targetFallback": "Direction"
11271b4c226SZixu Wang     },
11371b4c226SZixu Wang     {
11471b4c226SZixu Wang       "kind": "memberOf",
11571b4c226SZixu Wang       "source": "c:@E@Direction@West",
11639dbfa72SDaniel Grumberg       "target": "c:@E@Direction",
11739dbfa72SDaniel Grumberg       "targetFallback": "Direction"
11871b4c226SZixu Wang     }
11971b4c226SZixu Wang   ],
12071b4c226SZixu Wang   "symbols": [
12171b4c226SZixu Wang     {
12228d79314SDaniel Grumberg       "accessLevel": "public",
12371b4c226SZixu Wang       "declarationFragments": [
12471b4c226SZixu Wang         {
12571b4c226SZixu Wang           "kind": "keyword",
12671b4c226SZixu Wang           "spelling": "enum"
12771b4c226SZixu Wang         },
12871b4c226SZixu Wang         {
12971b4c226SZixu Wang           "kind": "text",
13071b4c226SZixu Wang           "spelling": " "
13171b4c226SZixu Wang         },
13271b4c226SZixu Wang         {
13371b4c226SZixu Wang           "kind": "identifier",
13471b4c226SZixu Wang           "spelling": "Vehicle"
13571b4c226SZixu Wang         },
13671b4c226SZixu Wang         {
13771b4c226SZixu Wang           "kind": "text",
13871b4c226SZixu Wang           "spelling": " : "
13971b4c226SZixu Wang         },
14071b4c226SZixu Wang         {
14171b4c226SZixu Wang           "kind": "typeIdentifier",
14271b4c226SZixu Wang           "preciseIdentifier": "c:i",
14371b4c226SZixu Wang           "spelling": "unsigned int"
144afce10c5SNagaChaitanya Vellanki         },
145afce10c5SNagaChaitanya Vellanki         {
146afce10c5SNagaChaitanya Vellanki           "kind": "text",
147afce10c5SNagaChaitanya Vellanki           "spelling": ";"
14871b4c226SZixu Wang         }
14971b4c226SZixu Wang       ],
15071b4c226SZixu Wang       "docComment": {
15171b4c226SZixu Wang         "lines": [
15271b4c226SZixu Wang           {
15371b4c226SZixu Wang             "range": {
15471b4c226SZixu Wang               "end": {
15563537872SQuietMisdreavus                 "character": 21,
15663537872SQuietMisdreavus                 "line": 0
15771b4c226SZixu Wang               },
15871b4c226SZixu Wang               "start": {
15963537872SQuietMisdreavus                 "character": 4,
16063537872SQuietMisdreavus                 "line": 0
16171b4c226SZixu Wang               }
16271b4c226SZixu Wang             },
16371b4c226SZixu Wang             "text": "Kinds of vehicles"
16471b4c226SZixu Wang           }
16571b4c226SZixu Wang         ]
16671b4c226SZixu Wang       },
16771b4c226SZixu Wang       "identifier": {
16871b4c226SZixu Wang         "interfaceLanguage": "c",
16971b4c226SZixu Wang         "precise": "c:@E@Vehicle"
17071b4c226SZixu Wang       },
17171b4c226SZixu Wang       "kind": {
17271b4c226SZixu Wang         "displayName": "Enumeration",
17371b4c226SZixu Wang         "identifier": "c.enum"
17471b4c226SZixu Wang       },
17571b4c226SZixu Wang       "location": {
17628d79314SDaniel Grumberg         "position": {
17763537872SQuietMisdreavus           "character": 5,
17863537872SQuietMisdreavus           "line": 1
17928d79314SDaniel Grumberg         },
18071b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
18171b4c226SZixu Wang       },
18271b4c226SZixu Wang       "names": {
18380ae3665SDaniel Grumberg         "navigator": [
18480ae3665SDaniel Grumberg           {
18580ae3665SDaniel Grumberg             "kind": "identifier",
18680ae3665SDaniel Grumberg             "spelling": "Vehicle"
18780ae3665SDaniel Grumberg           }
18880ae3665SDaniel Grumberg         ],
18971b4c226SZixu Wang         "subHeading": [
19071b4c226SZixu Wang           {
19171b4c226SZixu Wang             "kind": "identifier",
19271b4c226SZixu Wang             "spelling": "Vehicle"
19371b4c226SZixu Wang           }
19471b4c226SZixu Wang         ],
19571b4c226SZixu Wang         "title": "Vehicle"
19628d79314SDaniel Grumberg       },
19728d79314SDaniel Grumberg       "pathComponents": [
19828d79314SDaniel Grumberg         "Vehicle"
19928d79314SDaniel Grumberg       ]
20071b4c226SZixu Wang     },
20171b4c226SZixu Wang     {
20228d79314SDaniel Grumberg       "accessLevel": "public",
20371b4c226SZixu Wang       "declarationFragments": [
20471b4c226SZixu Wang         {
20571b4c226SZixu Wang           "kind": "identifier",
20671b4c226SZixu Wang           "spelling": "Bicycle"
20771b4c226SZixu Wang         }
20871b4c226SZixu Wang       ],
20971b4c226SZixu Wang       "identifier": {
21071b4c226SZixu Wang         "interfaceLanguage": "c",
21171b4c226SZixu Wang         "precise": "c:@E@Vehicle@Bicycle"
21271b4c226SZixu Wang       },
21371b4c226SZixu Wang       "kind": {
21471b4c226SZixu Wang         "displayName": "Enumeration Case",
21571b4c226SZixu Wang         "identifier": "c.enum.case"
21671b4c226SZixu Wang       },
21771b4c226SZixu Wang       "location": {
21828d79314SDaniel Grumberg         "position": {
21963537872SQuietMisdreavus           "character": 2,
22063537872SQuietMisdreavus           "line": 2
22128d79314SDaniel Grumberg         },
22271b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
22371b4c226SZixu Wang       },
22471b4c226SZixu Wang       "names": {
22580ae3665SDaniel Grumberg         "navigator": [
22680ae3665SDaniel Grumberg           {
22780ae3665SDaniel Grumberg             "kind": "identifier",
22880ae3665SDaniel Grumberg             "spelling": "Bicycle"
22980ae3665SDaniel Grumberg           }
23080ae3665SDaniel Grumberg         ],
23171b4c226SZixu Wang         "subHeading": [
23271b4c226SZixu Wang           {
23371b4c226SZixu Wang             "kind": "identifier",
23471b4c226SZixu Wang             "spelling": "Bicycle"
23571b4c226SZixu Wang           }
23671b4c226SZixu Wang         ],
23771b4c226SZixu Wang         "title": "Bicycle"
23828d79314SDaniel Grumberg       },
23928d79314SDaniel Grumberg       "pathComponents": [
24028d79314SDaniel Grumberg         "Vehicle",
24128d79314SDaniel Grumberg         "Bicycle"
24228d79314SDaniel Grumberg       ]
24371b4c226SZixu Wang     },
24471b4c226SZixu Wang     {
24528d79314SDaniel Grumberg       "accessLevel": "public",
24671b4c226SZixu Wang       "declarationFragments": [
24771b4c226SZixu Wang         {
24871b4c226SZixu Wang           "kind": "identifier",
24971b4c226SZixu Wang           "spelling": "Car"
25071b4c226SZixu Wang         }
25171b4c226SZixu Wang       ],
25271b4c226SZixu Wang       "identifier": {
25371b4c226SZixu Wang         "interfaceLanguage": "c",
25471b4c226SZixu Wang         "precise": "c:@E@Vehicle@Car"
25571b4c226SZixu Wang       },
25671b4c226SZixu Wang       "kind": {
25771b4c226SZixu Wang         "displayName": "Enumeration Case",
25871b4c226SZixu Wang         "identifier": "c.enum.case"
25971b4c226SZixu Wang       },
26071b4c226SZixu Wang       "location": {
26128d79314SDaniel Grumberg         "position": {
26263537872SQuietMisdreavus           "character": 2,
26363537872SQuietMisdreavus           "line": 3
26428d79314SDaniel Grumberg         },
26571b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
26671b4c226SZixu Wang       },
26771b4c226SZixu Wang       "names": {
26880ae3665SDaniel Grumberg         "navigator": [
26980ae3665SDaniel Grumberg           {
27080ae3665SDaniel Grumberg             "kind": "identifier",
27180ae3665SDaniel Grumberg             "spelling": "Car"
27280ae3665SDaniel Grumberg           }
27380ae3665SDaniel Grumberg         ],
27471b4c226SZixu Wang         "subHeading": [
27571b4c226SZixu Wang           {
27671b4c226SZixu Wang             "kind": "identifier",
27771b4c226SZixu Wang             "spelling": "Car"
27871b4c226SZixu Wang           }
27971b4c226SZixu Wang         ],
28071b4c226SZixu Wang         "title": "Car"
28128d79314SDaniel Grumberg       },
28228d79314SDaniel Grumberg       "pathComponents": [
28328d79314SDaniel Grumberg         "Vehicle",
28428d79314SDaniel Grumberg         "Car"
28528d79314SDaniel Grumberg       ]
28671b4c226SZixu Wang     },
28771b4c226SZixu Wang     {
28828d79314SDaniel Grumberg       "accessLevel": "public",
28971b4c226SZixu Wang       "declarationFragments": [
29071b4c226SZixu Wang         {
29171b4c226SZixu Wang           "kind": "identifier",
29271b4c226SZixu Wang           "spelling": "Train"
29371b4c226SZixu Wang         }
29471b4c226SZixu Wang       ],
29571b4c226SZixu Wang       "docComment": {
29671b4c226SZixu Wang         "lines": [
29771b4c226SZixu Wang           {
29871b4c226SZixu Wang             "range": {
29971b4c226SZixu Wang               "end": {
30063537872SQuietMisdreavus                 "character": 44,
30163537872SQuietMisdreavus                 "line": 4
30271b4c226SZixu Wang               },
30371b4c226SZixu Wang               "start": {
30463537872SQuietMisdreavus                 "character": 14,
30563537872SQuietMisdreavus                 "line": 4
30671b4c226SZixu Wang               }
30771b4c226SZixu Wang             },
30871b4c226SZixu Wang             "text": "Move this to the top! -Sheldon"
30971b4c226SZixu Wang           }
31071b4c226SZixu Wang         ]
31171b4c226SZixu Wang       },
31271b4c226SZixu Wang       "identifier": {
31371b4c226SZixu Wang         "interfaceLanguage": "c",
31471b4c226SZixu Wang         "precise": "c:@E@Vehicle@Train"
31571b4c226SZixu Wang       },
31671b4c226SZixu Wang       "kind": {
31771b4c226SZixu Wang         "displayName": "Enumeration Case",
31871b4c226SZixu Wang         "identifier": "c.enum.case"
31971b4c226SZixu Wang       },
32071b4c226SZixu Wang       "location": {
32128d79314SDaniel Grumberg         "position": {
32263537872SQuietMisdreavus           "character": 2,
32363537872SQuietMisdreavus           "line": 4
32428d79314SDaniel Grumberg         },
32571b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
32671b4c226SZixu Wang       },
32771b4c226SZixu Wang       "names": {
32880ae3665SDaniel Grumberg         "navigator": [
32980ae3665SDaniel Grumberg           {
33080ae3665SDaniel Grumberg             "kind": "identifier",
33180ae3665SDaniel Grumberg             "spelling": "Train"
33280ae3665SDaniel Grumberg           }
33380ae3665SDaniel Grumberg         ],
33471b4c226SZixu Wang         "subHeading": [
33571b4c226SZixu Wang           {
33671b4c226SZixu Wang             "kind": "identifier",
33771b4c226SZixu Wang             "spelling": "Train"
33871b4c226SZixu Wang           }
33971b4c226SZixu Wang         ],
34071b4c226SZixu Wang         "title": "Train"
34128d79314SDaniel Grumberg       },
34228d79314SDaniel Grumberg       "pathComponents": [
34328d79314SDaniel Grumberg         "Vehicle",
34428d79314SDaniel Grumberg         "Train"
34528d79314SDaniel Grumberg       ]
34671b4c226SZixu Wang     },
34771b4c226SZixu Wang     {
34828d79314SDaniel Grumberg       "accessLevel": "public",
34971b4c226SZixu Wang       "declarationFragments": [
35071b4c226SZixu Wang         {
35171b4c226SZixu Wang           "kind": "identifier",
35271b4c226SZixu Wang           "spelling": "Ship"
35371b4c226SZixu Wang         }
35471b4c226SZixu Wang       ],
35571b4c226SZixu Wang       "identifier": {
35671b4c226SZixu Wang         "interfaceLanguage": "c",
35771b4c226SZixu Wang         "precise": "c:@E@Vehicle@Ship"
35871b4c226SZixu Wang       },
35971b4c226SZixu Wang       "kind": {
36071b4c226SZixu Wang         "displayName": "Enumeration Case",
36171b4c226SZixu Wang         "identifier": "c.enum.case"
36271b4c226SZixu Wang       },
36371b4c226SZixu Wang       "location": {
36428d79314SDaniel Grumberg         "position": {
36563537872SQuietMisdreavus           "character": 2,
36663537872SQuietMisdreavus           "line": 5
36728d79314SDaniel Grumberg         },
36871b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
36971b4c226SZixu Wang       },
37071b4c226SZixu Wang       "names": {
37180ae3665SDaniel Grumberg         "navigator": [
37280ae3665SDaniel Grumberg           {
37380ae3665SDaniel Grumberg             "kind": "identifier",
37480ae3665SDaniel Grumberg             "spelling": "Ship"
37580ae3665SDaniel Grumberg           }
37680ae3665SDaniel Grumberg         ],
37771b4c226SZixu Wang         "subHeading": [
37871b4c226SZixu Wang           {
37971b4c226SZixu Wang             "kind": "identifier",
38071b4c226SZixu Wang             "spelling": "Ship"
38171b4c226SZixu Wang           }
38271b4c226SZixu Wang         ],
38371b4c226SZixu Wang         "title": "Ship"
38428d79314SDaniel Grumberg       },
38528d79314SDaniel Grumberg       "pathComponents": [
38628d79314SDaniel Grumberg         "Vehicle",
38728d79314SDaniel Grumberg         "Ship"
38828d79314SDaniel Grumberg       ]
38971b4c226SZixu Wang     },
39071b4c226SZixu Wang     {
39128d79314SDaniel Grumberg       "accessLevel": "public",
39271b4c226SZixu Wang       "declarationFragments": [
39371b4c226SZixu Wang         {
39471b4c226SZixu Wang           "kind": "identifier",
39571b4c226SZixu Wang           "spelling": "Airplane"
39671b4c226SZixu Wang         }
39771b4c226SZixu Wang       ],
39871b4c226SZixu Wang       "identifier": {
39971b4c226SZixu Wang         "interfaceLanguage": "c",
40071b4c226SZixu Wang         "precise": "c:@E@Vehicle@Airplane"
40171b4c226SZixu Wang       },
40271b4c226SZixu Wang       "kind": {
40371b4c226SZixu Wang         "displayName": "Enumeration Case",
40471b4c226SZixu Wang         "identifier": "c.enum.case"
40571b4c226SZixu Wang       },
40671b4c226SZixu Wang       "location": {
40728d79314SDaniel Grumberg         "position": {
40863537872SQuietMisdreavus           "character": 2,
40963537872SQuietMisdreavus           "line": 6
41028d79314SDaniel Grumberg         },
41171b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
41271b4c226SZixu Wang       },
41371b4c226SZixu Wang       "names": {
41480ae3665SDaniel Grumberg         "navigator": [
41580ae3665SDaniel Grumberg           {
41680ae3665SDaniel Grumberg             "kind": "identifier",
41780ae3665SDaniel Grumberg             "spelling": "Airplane"
41880ae3665SDaniel Grumberg           }
41980ae3665SDaniel Grumberg         ],
42071b4c226SZixu Wang         "subHeading": [
42171b4c226SZixu Wang           {
42271b4c226SZixu Wang             "kind": "identifier",
42371b4c226SZixu Wang             "spelling": "Airplane"
42471b4c226SZixu Wang           }
42571b4c226SZixu Wang         ],
42671b4c226SZixu Wang         "title": "Airplane"
42728d79314SDaniel Grumberg       },
42828d79314SDaniel Grumberg       "pathComponents": [
42928d79314SDaniel Grumberg         "Vehicle",
43028d79314SDaniel Grumberg         "Airplane"
43128d79314SDaniel Grumberg       ]
43271b4c226SZixu Wang     },
43371b4c226SZixu Wang     {
43428d79314SDaniel Grumberg       "accessLevel": "public",
43571b4c226SZixu Wang       "declarationFragments": [
43671b4c226SZixu Wang         {
43771b4c226SZixu Wang           "kind": "keyword",
43871b4c226SZixu Wang           "spelling": "enum"
43971b4c226SZixu Wang         },
44071b4c226SZixu Wang         {
44171b4c226SZixu Wang           "kind": "text",
44271b4c226SZixu Wang           "spelling": " "
44371b4c226SZixu Wang         },
44471b4c226SZixu Wang         {
44571b4c226SZixu Wang           "kind": "identifier",
44671b4c226SZixu Wang           "spelling": "Direction"
44771b4c226SZixu Wang         },
44871b4c226SZixu Wang         {
44971b4c226SZixu Wang           "kind": "text",
45071b4c226SZixu Wang           "spelling": " : "
45171b4c226SZixu Wang         },
45271b4c226SZixu Wang         {
45371b4c226SZixu Wang           "kind": "typeIdentifier",
45471b4c226SZixu Wang           "preciseIdentifier": "c:c",
45571b4c226SZixu Wang           "spelling": "unsigned char"
456afce10c5SNagaChaitanya Vellanki         },
457afce10c5SNagaChaitanya Vellanki         {
458afce10c5SNagaChaitanya Vellanki           "kind": "text",
459afce10c5SNagaChaitanya Vellanki           "spelling": ";"
46071b4c226SZixu Wang         }
46171b4c226SZixu Wang       ],
46271b4c226SZixu Wang       "identifier": {
46371b4c226SZixu Wang         "interfaceLanguage": "c",
46471b4c226SZixu Wang         "precise": "c:@E@Direction"
46571b4c226SZixu Wang       },
46671b4c226SZixu Wang       "kind": {
46771b4c226SZixu Wang         "displayName": "Enumeration",
46871b4c226SZixu Wang         "identifier": "c.enum"
46971b4c226SZixu Wang       },
47071b4c226SZixu Wang       "location": {
47128d79314SDaniel Grumberg         "position": {
47263537872SQuietMisdreavus           "character": 5,
47363537872SQuietMisdreavus           "line": 9
47428d79314SDaniel Grumberg         },
47571b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
47671b4c226SZixu Wang       },
47771b4c226SZixu Wang       "names": {
47880ae3665SDaniel Grumberg         "navigator": [
47980ae3665SDaniel Grumberg           {
48080ae3665SDaniel Grumberg             "kind": "identifier",
48180ae3665SDaniel Grumberg             "spelling": "Direction"
48280ae3665SDaniel Grumberg           }
48380ae3665SDaniel Grumberg         ],
48471b4c226SZixu Wang         "subHeading": [
48571b4c226SZixu Wang           {
48671b4c226SZixu Wang             "kind": "identifier",
48771b4c226SZixu Wang             "spelling": "Direction"
48871b4c226SZixu Wang           }
48971b4c226SZixu Wang         ],
49071b4c226SZixu Wang         "title": "Direction"
49128d79314SDaniel Grumberg       },
49228d79314SDaniel Grumberg       "pathComponents": [
49328d79314SDaniel Grumberg         "Direction"
49428d79314SDaniel Grumberg       ]
49571b4c226SZixu Wang     },
49671b4c226SZixu Wang     {
49728d79314SDaniel Grumberg       "accessLevel": "public",
49871b4c226SZixu Wang       "declarationFragments": [
49971b4c226SZixu Wang         {
50071b4c226SZixu Wang           "kind": "identifier",
50171b4c226SZixu Wang           "spelling": "North"
50271b4c226SZixu Wang         }
50371b4c226SZixu Wang       ],
50471b4c226SZixu Wang       "identifier": {
50571b4c226SZixu Wang         "interfaceLanguage": "c",
50671b4c226SZixu Wang         "precise": "c:@E@Direction@North"
50771b4c226SZixu Wang       },
50871b4c226SZixu Wang       "kind": {
50971b4c226SZixu Wang         "displayName": "Enumeration Case",
51071b4c226SZixu Wang         "identifier": "c.enum.case"
51171b4c226SZixu Wang       },
51271b4c226SZixu Wang       "location": {
51328d79314SDaniel Grumberg         "position": {
51463537872SQuietMisdreavus           "character": 2,
51563537872SQuietMisdreavus           "line": 10
51628d79314SDaniel Grumberg         },
51771b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
51871b4c226SZixu Wang       },
51971b4c226SZixu Wang       "names": {
52080ae3665SDaniel Grumberg         "navigator": [
52180ae3665SDaniel Grumberg           {
52280ae3665SDaniel Grumberg             "kind": "identifier",
52380ae3665SDaniel Grumberg             "spelling": "North"
52480ae3665SDaniel Grumberg           }
52580ae3665SDaniel Grumberg         ],
52671b4c226SZixu Wang         "subHeading": [
52771b4c226SZixu Wang           {
52871b4c226SZixu Wang             "kind": "identifier",
52971b4c226SZixu Wang             "spelling": "North"
53071b4c226SZixu Wang           }
53171b4c226SZixu Wang         ],
53271b4c226SZixu Wang         "title": "North"
53328d79314SDaniel Grumberg       },
53428d79314SDaniel Grumberg       "pathComponents": [
53528d79314SDaniel Grumberg         "Direction",
53628d79314SDaniel Grumberg         "North"
53728d79314SDaniel Grumberg       ]
53871b4c226SZixu Wang     },
53971b4c226SZixu Wang     {
54028d79314SDaniel Grumberg       "accessLevel": "public",
54171b4c226SZixu Wang       "declarationFragments": [
54271b4c226SZixu Wang         {
54371b4c226SZixu Wang           "kind": "identifier",
54471b4c226SZixu Wang           "spelling": "East"
54571b4c226SZixu Wang         }
54671b4c226SZixu Wang       ],
54771b4c226SZixu Wang       "identifier": {
54871b4c226SZixu Wang         "interfaceLanguage": "c",
54971b4c226SZixu Wang         "precise": "c:@E@Direction@East"
55071b4c226SZixu Wang       },
55171b4c226SZixu Wang       "kind": {
55271b4c226SZixu Wang         "displayName": "Enumeration Case",
55371b4c226SZixu Wang         "identifier": "c.enum.case"
55471b4c226SZixu Wang       },
55571b4c226SZixu Wang       "location": {
55628d79314SDaniel Grumberg         "position": {
55763537872SQuietMisdreavus           "character": 2,
55863537872SQuietMisdreavus           "line": 11
55928d79314SDaniel Grumberg         },
56071b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
56171b4c226SZixu Wang       },
56271b4c226SZixu Wang       "names": {
56380ae3665SDaniel Grumberg         "navigator": [
56480ae3665SDaniel Grumberg           {
56580ae3665SDaniel Grumberg             "kind": "identifier",
56680ae3665SDaniel Grumberg             "spelling": "East"
56780ae3665SDaniel Grumberg           }
56880ae3665SDaniel Grumberg         ],
56971b4c226SZixu Wang         "subHeading": [
57071b4c226SZixu Wang           {
57171b4c226SZixu Wang             "kind": "identifier",
57271b4c226SZixu Wang             "spelling": "East"
57371b4c226SZixu Wang           }
57471b4c226SZixu Wang         ],
57571b4c226SZixu Wang         "title": "East"
57628d79314SDaniel Grumberg       },
57728d79314SDaniel Grumberg       "pathComponents": [
57828d79314SDaniel Grumberg         "Direction",
57928d79314SDaniel Grumberg         "East"
58028d79314SDaniel Grumberg       ]
58171b4c226SZixu Wang     },
58271b4c226SZixu Wang     {
58328d79314SDaniel Grumberg       "accessLevel": "public",
58471b4c226SZixu Wang       "declarationFragments": [
58571b4c226SZixu Wang         {
58671b4c226SZixu Wang           "kind": "identifier",
58771b4c226SZixu Wang           "spelling": "South"
58871b4c226SZixu Wang         }
58971b4c226SZixu Wang       ],
59071b4c226SZixu Wang       "identifier": {
59171b4c226SZixu Wang         "interfaceLanguage": "c",
59271b4c226SZixu Wang         "precise": "c:@E@Direction@South"
59371b4c226SZixu Wang       },
59471b4c226SZixu Wang       "kind": {
59571b4c226SZixu Wang         "displayName": "Enumeration Case",
59671b4c226SZixu Wang         "identifier": "c.enum.case"
59771b4c226SZixu Wang       },
59871b4c226SZixu Wang       "location": {
59928d79314SDaniel Grumberg         "position": {
60063537872SQuietMisdreavus           "character": 2,
60163537872SQuietMisdreavus           "line": 12
60228d79314SDaniel Grumberg         },
60371b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
60471b4c226SZixu Wang       },
60571b4c226SZixu Wang       "names": {
60680ae3665SDaniel Grumberg         "navigator": [
60780ae3665SDaniel Grumberg           {
60880ae3665SDaniel Grumberg             "kind": "identifier",
60980ae3665SDaniel Grumberg             "spelling": "South"
61080ae3665SDaniel Grumberg           }
61180ae3665SDaniel Grumberg         ],
61271b4c226SZixu Wang         "subHeading": [
61371b4c226SZixu Wang           {
61471b4c226SZixu Wang             "kind": "identifier",
61571b4c226SZixu Wang             "spelling": "South"
61671b4c226SZixu Wang           }
61771b4c226SZixu Wang         ],
61871b4c226SZixu Wang         "title": "South"
61928d79314SDaniel Grumberg       },
62028d79314SDaniel Grumberg       "pathComponents": [
62128d79314SDaniel Grumberg         "Direction",
62228d79314SDaniel Grumberg         "South"
62328d79314SDaniel Grumberg       ]
62471b4c226SZixu Wang     },
62571b4c226SZixu Wang     {
62628d79314SDaniel Grumberg       "accessLevel": "public",
62771b4c226SZixu Wang       "declarationFragments": [
62871b4c226SZixu Wang         {
62971b4c226SZixu Wang           "kind": "identifier",
63071b4c226SZixu Wang           "spelling": "West"
63171b4c226SZixu Wang         }
63271b4c226SZixu Wang       ],
63371b4c226SZixu Wang       "identifier": {
63471b4c226SZixu Wang         "interfaceLanguage": "c",
63571b4c226SZixu Wang         "precise": "c:@E@Direction@West"
63671b4c226SZixu Wang       },
63771b4c226SZixu Wang       "kind": {
63871b4c226SZixu Wang         "displayName": "Enumeration Case",
63971b4c226SZixu Wang         "identifier": "c.enum.case"
64071b4c226SZixu Wang       },
64171b4c226SZixu Wang       "location": {
64228d79314SDaniel Grumberg         "position": {
64363537872SQuietMisdreavus           "character": 2,
64463537872SQuietMisdreavus           "line": 13
64528d79314SDaniel Grumberg         },
64671b4c226SZixu Wang         "uri": "file://INPUT_DIR/input.h"
64771b4c226SZixu Wang       },
64871b4c226SZixu Wang       "names": {
64980ae3665SDaniel Grumberg         "navigator": [
65080ae3665SDaniel Grumberg           {
65180ae3665SDaniel Grumberg             "kind": "identifier",
65280ae3665SDaniel Grumberg             "spelling": "West"
65380ae3665SDaniel Grumberg           }
65480ae3665SDaniel Grumberg         ],
65571b4c226SZixu Wang         "subHeading": [
65671b4c226SZixu Wang           {
65771b4c226SZixu Wang             "kind": "identifier",
65871b4c226SZixu Wang             "spelling": "West"
65971b4c226SZixu Wang           }
66071b4c226SZixu Wang         ],
66171b4c226SZixu Wang         "title": "West"
66228d79314SDaniel Grumberg       },
66328d79314SDaniel Grumberg       "pathComponents": [
66428d79314SDaniel Grumberg         "Direction",
66528d79314SDaniel Grumberg         "West"
66628d79314SDaniel Grumberg       ]
6677443a504SDaniel Grumberg     },
6687443a504SDaniel Grumberg     {
6697443a504SDaniel Grumberg       "accessLevel": "public",
6707443a504SDaniel Grumberg       "declarationFragments": [
6717443a504SDaniel Grumberg         {
6727443a504SDaniel Grumberg           "kind": "identifier",
6737443a504SDaniel Grumberg           "spelling": "Constant"
6747443a504SDaniel Grumberg         }
6757443a504SDaniel Grumberg       ],
6767443a504SDaniel Grumberg       "identifier": {
6777443a504SDaniel Grumberg         "interfaceLanguage": "c",
6787443a504SDaniel Grumberg         "precise": "c:@Ea@Constant@Constant"
6797443a504SDaniel Grumberg       },
6807443a504SDaniel Grumberg       "kind": {
6817443a504SDaniel Grumberg         "displayName": "Enumeration Case",
6827443a504SDaniel Grumberg         "identifier": "c.enum.case"
6837443a504SDaniel Grumberg       },
6847443a504SDaniel Grumberg       "location": {
6857443a504SDaniel Grumberg         "position": {
68663537872SQuietMisdreavus           "character": 2,
68763537872SQuietMisdreavus           "line": 17
6887443a504SDaniel Grumberg         },
6897443a504SDaniel Grumberg         "uri": "file://INPUT_DIR/input.h"
6907443a504SDaniel Grumberg       },
6917443a504SDaniel Grumberg       "names": {
6927443a504SDaniel Grumberg         "navigator": [
6937443a504SDaniel Grumberg           {
6947443a504SDaniel Grumberg             "kind": "identifier",
6957443a504SDaniel Grumberg             "spelling": "Constant"
6967443a504SDaniel Grumberg           }
6977443a504SDaniel Grumberg         ],
6987443a504SDaniel Grumberg         "subHeading": [
6997443a504SDaniel Grumberg           {
7007443a504SDaniel Grumberg             "kind": "identifier",
7017443a504SDaniel Grumberg             "spelling": "Constant"
7027443a504SDaniel Grumberg           }
7037443a504SDaniel Grumberg         ],
7047443a504SDaniel Grumberg         "title": "Constant"
7057443a504SDaniel Grumberg       },
7067443a504SDaniel Grumberg       "pathComponents": [
7077443a504SDaniel Grumberg         "Constant"
7087443a504SDaniel Grumberg       ]
7097443a504SDaniel Grumberg     },
7107443a504SDaniel Grumberg     {
7117443a504SDaniel Grumberg       "accessLevel": "public",
7127443a504SDaniel Grumberg       "declarationFragments": [
7137443a504SDaniel Grumberg         {
7147443a504SDaniel Grumberg           "kind": "identifier",
7157443a504SDaniel Grumberg           "spelling": "OtherConstant"
7167443a504SDaniel Grumberg         }
7177443a504SDaniel Grumberg       ],
7187443a504SDaniel Grumberg       "identifier": {
7197443a504SDaniel Grumberg         "interfaceLanguage": "c",
7207443a504SDaniel Grumberg         "precise": "c:@Ea@OtherConstant@OtherConstant"
7217443a504SDaniel Grumberg       },
7227443a504SDaniel Grumberg       "kind": {
7237443a504SDaniel Grumberg         "displayName": "Enumeration Case",
7247443a504SDaniel Grumberg         "identifier": "c.enum.case"
7257443a504SDaniel Grumberg       },
7267443a504SDaniel Grumberg       "location": {
7277443a504SDaniel Grumberg         "position": {
72863537872SQuietMisdreavus           "character": 2,
72963537872SQuietMisdreavus           "line": 21
7307443a504SDaniel Grumberg         },
7317443a504SDaniel Grumberg         "uri": "file://INPUT_DIR/input.h"
7327443a504SDaniel Grumberg       },
7337443a504SDaniel Grumberg       "names": {
7347443a504SDaniel Grumberg         "navigator": [
7357443a504SDaniel Grumberg           {
7367443a504SDaniel Grumberg             "kind": "identifier",
7377443a504SDaniel Grumberg             "spelling": "OtherConstant"
7387443a504SDaniel Grumberg           }
7397443a504SDaniel Grumberg         ],
7407443a504SDaniel Grumberg         "subHeading": [
7417443a504SDaniel Grumberg           {
7427443a504SDaniel Grumberg             "kind": "identifier",
7437443a504SDaniel Grumberg             "spelling": "OtherConstant"
7447443a504SDaniel Grumberg           }
7457443a504SDaniel Grumberg         ],
7467443a504SDaniel Grumberg         "title": "OtherConstant"
7477443a504SDaniel Grumberg       },
7487443a504SDaniel Grumberg       "pathComponents": [
7497443a504SDaniel Grumberg         "OtherConstant"
7507443a504SDaniel Grumberg       ]
75171b4c226SZixu Wang     }
75271b4c226SZixu Wang   ]
75371b4c226SZixu Wang }
754