/* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison interface for Yacc-like parsers in C
Copyright 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
*/
#pragma once
/* Debug traces. */
extern bool yydebug;
enum yytokentype {
LEXEOF = 0,
SECTION = 258,
TYPE = 259,
SYMBOL = 260,
NUMBER = 261,
COMMENT = 262,
EOL = 263,
MUL = 264,
DIV = 265,
MOD = 266,
PLUS = 267,
MINUS = 268,
LSH = 269,
RSH = 270,
AND = 271,
XOR = 272,
OR = 273,
ASSIGN = 274,
UMINUS = 275
};
typedef union YYSTYPE {
unsigned code;
long value;
char *string;
}YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
extern YYSTYPE yylval;
int yyparse();
Detected encoding: ASCII (7 bit) | 2
|