1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#define LOGICAL_OR 257
#define LOGICAL_AND 258
#define PLUS_EQUAL 259
#define MINUS_EQUAL 260
#define MUL_EQUAL 261
#define DIV_EQUAL 262
#define CONCAT_EQUAL 263
#define MOD_EQUAL 264
#define AND_EQUAL 265
#define OR_EQUAL 266
#define XOR_EQUAL 267
#define BOOLEAN_OR 268
#define BOOLEAN_AND 269
#define IS_EQUAL 270
#define IS_NOT_EQUAL 271
#define IS_SMALLER_OR_EQUAL 272
#define IS_GREATER_OR_EQUAL 273
#define SHIFT_LEFT 274
#define SHIFT_RIGHT 275
#define INCREMENT 276
#define DECREMENT 277
#define INT_CAST 278
#define DOUBLE_CAST 279
#define STRING_CAST 280
#define EXIT 281
#define IF 282
#define ELSEIF 283
#define ELSE 284
#define ENDIF 285
#define LNUMBER 286
#define DNUMBER 287
#define STRING 288
#define NUM_STRING 289
#define INLINE_HTML 290
#define CHAR 291
#define ENCAPSED_AND_WHITESPACE 292
#define PHPECHO 293
#define PHPHEADER 294
#define DO 295
#define WHILE 296
#define ENDWHILE 297
#define FOR 298
#define SWITCH 299
#define ENDSWITCH 300
#define CASE 301
#define DEFAULT 302
#define BREAK 303
#define CONTINUE 304
#define FUNCTION 305
#define RETURN 306
#define INCLUDE 307
#define _INCLUDE 308
#define SHOW_SOURCE 309
#define PHP_GLOBAL 310
#define PHP_STATIC 311
#define PHP_UNSET 312
#define PHP_ISSET 313
#define CLASS 314
#define EXTENDS 315
#define PHP_CLASS_OPERATOR 316
#define PHP_DOUBLE_ARROW 317
#define PHP_LIST 318
#define PHP_ARRAY 319
#define NEW 320
#define VAR 321
#define EVAL 322
#define DONE_EVAL 323
#define END_PHP3 324
|