y.tab.h
634 Bytes
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
typedef union {
UNION_DEFS();
} YYSTYPE;
#define ID 258
#define INT 259
#define REAL 260
#define BOOL 261
#define STRING 262
#define MAP 263
#define CLASS 264
#define INT_LIT 265
#define REAL_LIT 266
#define BOOL_LIT 267
#define STRING_LIT 268
#define RETURN 269
#define RECURSE 270
#define BREAK 271
#define SKIP 272
#define RETRY 273
#define ELSE 274
#define COND 275
#define WHILE 276
#define IDENTICAL 277
#define ASSIGN 278
#define RETURNS 279
#define AND 280
#define OR 281
#define NOT 282
#define LT 283
#define LE 284
#define EQ 285
#define NE 286
#define GE 287
#define GT 288
#define UMINUS 289
extern YYSTYPE yylval;