diff options
author | Lua Team <team@lua.org> | 1994-07-08 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 1994-07-08 12:00:00 +0000 |
commit | 944fc7d7d95575f2b8023c1f3d4ac19e1369fc76 (patch) | |
tree | eabf0822f2058229cd0d49c7928683b8cf0ed88e /src/y.tab.h | |
parent | 8b5979a7e8b9732aa2883d2384f853d87b594770 (diff) | |
download | lua-github-1.1.tar.gz |
Lua 1.11.1
Diffstat (limited to 'src/y.tab.h')
-rw-r--r-- | src/y.tab.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/y.tab.h b/src/y.tab.h new file mode 100644 index 00000000..5bee29f9 --- /dev/null +++ b/src/y.tab.h @@ -0,0 +1,37 @@ + +typedef union +{ + int vInt; + long vLong; + float vFloat; + char *pChar; + Word vWord; + Byte *pByte; +} YYSTYPE; +extern YYSTYPE yylval; +# define WRONGTOKEN 257 +# define NIL 258 +# define IF 259 +# define THEN 260 +# define ELSE 261 +# define ELSEIF 262 +# define WHILE 263 +# define DO 264 +# define REPEAT 265 +# define UNTIL 266 +# define END 267 +# define RETURN 268 +# define LOCAL 269 +# define NUMBER 270 +# define FUNCTION 271 +# define STRING 272 +# define NAME 273 +# define DEBUG 274 +# define AND 275 +# define OR 276 +# define NE 277 +# define LE 278 +# define GE 279 +# define CONC 280 +# define UNARY 281 +# define NOT 282 |