-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgram_parser.cpp.h
121 lines (121 loc) · 2.26 KB
/
gram_parser.cpp.h
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
#define IDENT 258
#define STRING 259
#define FIELD_NAME 260
#define TYPEDEF_NAME 261
#define TAG 262
#define CHAR_CONST 263
#define INUM 264
#define RNUM 265
#define COMMENT 266
#define PP_LINE 267
#define PP_INCLUDE 268
#define PP_DEFINE 269
#define PP_UNDEF 270
#define PP_ERROR 271
#define PP_IF 272
#define PP_IFDEF 273
#define PP_IFNDEF 274
#define PP_ELSE 275
#define PP_ELIF 276
#define PP_ENDIF 277
#define PP_IDENT 278
#define PP_PRAGMA 279
#define INVALID 280
#define AUTO 281
#define BREAK 282
#define CASE 283
#define CHAR 284
#define CONST 285
#define CONT 286
#define DEFLT 287
#define DO 288
#define DOUBLE 289
#define ELSE 290
#define ENUM 291
#define EXTRN 292
#define IF 293
#define FOR 294
#define PARFOR 295
#define FLOAT 296
#define GOTO 297
#define INT 298
#define LONG 299
#define REGISTR 300
#define RETURN 301
#define SHORT 302
#define SGNED 303
#define STATIC 304
#define STRUCT 305
#define SWITCH 306
#define TYPEDEF 307
#define UNION 308
#define UNSGNED 309
#define VOID 310
#define VOLATILE 311
#define WHILE 312
#define PLUS_EQ 313
#define MINUS_EQ 314
#define STAR_EQ 315
#define DIV_EQ 316
#define MOD_EQ 317
#define B_NOT_EQ 318
#define B_AND_EQ 319
#define B_OR_EQ 320
#define B_XOR_EQ 321
#define L_SHIFT_EQ 322
#define R_SHIFT_EQ 323
#define EQUAL 324
#define LESS_EQ 325
#define GRTR_EQ 326
#define NOT_EQ 327
#define RPAREN 328
#define RBRCKT 329
#define LBRACE 330
#define RBRACE 331
#define SEMICOLON 332
#define COMMA 333
#define ELLIPSIS 334
#define LB_SIGN 335
#define DOUB_LB_SIGN 336
#define BACKQUOTE 337
#define AT 338
#define DOLLAR 339
#define CPP_INCLUDE 340
#define CPP_DEFINE 341
#define CPP_LINE 342
#define PARBLOCK 343
#define COMMA_OP 344
#define EQ 345
#define ASSIGN 346
#define QUESTMARK 347
#define COLON 348
#define COMMA_SEP 349
#define OR 350
#define AND 351
#define B_OR 352
#define B_XOR 353
#define B_AND 354
#define COMP_EQ 355
#define COMP_ARITH 356
#define LESS 357
#define GRTR 358
#define L_SHIFT 359
#define R_SHIFT 360
#define PLUS 361
#define MINUS 362
#define STAR 363
#define DIV 364
#define MOD 365
#define CAST 366
#define UNARY 367
#define NOT 368
#define B_NOT 369
#define SIZEOF 370
#define INCR 371
#define DECR 372
#define HYPERUNARY 373
#define ARROW 374
#define DOT 375
#define LPAREN 376
#define LBRCKT 377
#define FOPT 378