ast_expr2.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef YYTOKENTYPE
00036 # define YYTOKENTYPE
00037
00038
00039 enum yytokentype {
00040 TOK_COMMA = 258,
00041 TOK_COLONCOLON = 259,
00042 TOK_COND = 260,
00043 TOK_OR = 261,
00044 TOK_AND = 262,
00045 TOK_NE = 263,
00046 TOK_LE = 264,
00047 TOK_GE = 265,
00048 TOK_LT = 266,
00049 TOK_GT = 267,
00050 TOK_EQ = 268,
00051 TOK_MINUS = 269,
00052 TOK_PLUS = 270,
00053 TOK_MOD = 271,
00054 TOK_DIV = 272,
00055 TOK_MULT = 273,
00056 TOK_COMPL = 274,
00057 TOK_TILDETILDE = 275,
00058 TOK_EQTILDE = 276,
00059 TOK_COLON = 277,
00060 TOK_LP = 278,
00061 TOK_RP = 279,
00062 TOKEN = 280
00063 };
00064 #endif
00065
00066
00067
00068 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
00069 typedef union YYSTYPE
00070 {
00071
00072
00073 #line 345 "ast_expr2.y"
00074
00075 struct val *val;
00076 struct expr_node *arglist;
00077
00078
00079
00080
00081 #line 82 "ast_expr2.h"
00082 } YYSTYPE;
00083 # define YYSTYPE_IS_TRIVIAL 1
00084 # define yystype YYSTYPE
00085 # define YYSTYPE_IS_DECLARED 1
00086 #endif
00087
00088
00089
00090 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
00091 typedef struct YYLTYPE
00092 {
00093 int first_line;
00094 int first_column;
00095 int last_line;
00096 int last_column;
00097 } YYLTYPE;
00098 # define yyltype YYLTYPE
00099 # define YYLTYPE_IS_DECLARED 1
00100 # define YYLTYPE_IS_TRIVIAL 1
00101 #endif
00102
00103
00104