1 #define ARITH_NUM 258 2 #define ARITH_LPAREN 259 3 #define ARITH_RPAREN 260 4 #define ARITH_OR 261 5 #define ARITH_AND 262 6 #define ARITH_BOR 263 7 #define ARITH_BXOR 264 8 #define ARITH_BAND 265 9 #define ARITH_NE 266 10 #define ARITH_EQ 267 11 #define ARITH_LE 268 12 #define ARITH_GE 269 13 #define ARITH_GT 270 14 #define ARITH_LT 271 15 #define ARITH_RSHIFT 272 16 #define ARITH_LSHIFT 273 17 #define ARITH_SUB 274 18 #define ARITH_ADD 275 19 #define ARITH_REM 276 20 #define ARITH_DIV 277 21 #define ARITH_MUL 278 22 #define ARITH_BNOT 279 23 #define ARITH_NOT 280 24 #define ARITH_UNARYPLUS 281 25 #define ARITH_UNARYMINUS 282 26