aboutsummaryrefslogtreecommitdiff
path: root/y_tab.h
diff options
context:
space:
mode:
Diffstat (limited to 'y_tab.h')
-rw-r--r--y_tab.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/y_tab.h b/y_tab.h
new file mode 100644
index 00000000..b973d540
--- /dev/null
+++ b/y_tab.h
@@ -0,0 +1,35 @@
1
2typedef union
3{
4 int vInt;
5 long vLong;
6 float vFloat;
7 Word vWord;
8 Byte *pByte;
9} YYSTYPE;
10extern YYSTYPE yylval;
11# define NIL 257
12# define IF 258
13# define THEN 259
14# define ELSE 260
15# define ELSEIF 261
16# define WHILE 262
17# define DO 263
18# define REPEAT 264
19# define UNTIL 265
20# define END 266
21# define RETURN 267
22# define LOCAL 268
23# define NUMBER 269
24# define FUNCTION 270
25# define NAME 271
26# define STRING 272
27# define DEBUG 273
28# define NOT 274
29# define AND 275
30# define OR 276
31# define NE 277
32# define LE 278
33# define GE 279
34# define CONC 280
35# define UNARY 281