-
Notifications
You must be signed in to change notification settings - Fork 2
/
xpl_parser.tab.h
47 lines (47 loc) · 1.12 KB
/
xpl_parser.tab.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
#define tINTEGER 257
#define tFLOAT 258
#define tIDENTIFIER 259
#define tSTRING 260
#define tINTEGER_T 261
#define tREAL_T 262
#define tSTRING_T 263
#define tWHILE 264
#define tIF 265
#define tPRINTLN 266
#define tSTOP 267
#define tRETURN 268
#define tNEXT 269
#define tPROCEDURE_T 270
#define tUSE 271
#define tPUBLIC 272
#define tELSIF 273
#define tSWEEP 274
#define tNULL 275
#define tFROM 276
#define tTO 277
#define tAPPLY 278
#define tELSE 279
#define tEQ 280
#define tNE 281
#define tGE 282
#define tLE 283
#define tUNARY 284
#ifdef YYSTYPE
#undef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
#endif
#ifndef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
typedef union {
int i; /* integer value */
double d; /* 8 byte float */
std::string *s; /* symbol name or string literal */
cdk::basic_node *node; /* node pointer */
cdk::sequence_node *sequence;
cdk::expression_node *expression; /* expression nodes */
cdk::lvalue_node *lvalue;
xpl::block_node *block;
basic_type *type;
} YYSTYPE;
#endif /* !YYSTYPE_IS_DECLARED */
extern YYSTYPE yylval;