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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#define LOGICAL_OR 257
#define LOGICAL_XOR 258
#define LOGICAL_AND 259
#define PHP_PRINT 260
#define PLUS_EQUAL 261
#define MINUS_EQUAL 262
#define MUL_EQUAL 263
#define DIV_EQUAL 264
#define CONCAT_EQUAL 265
#define MOD_EQUAL 266
#define AND_EQUAL 267
#define OR_EQUAL 268
#define XOR_EQUAL 269
#define SHIFT_LEFT_EQUAL 270
#define SHIFT_RIGHT_EQUAL 271
#define BOOLEAN_OR 272
#define BOOLEAN_AND 273
#define IS_EQUAL 274
#define IS_NOT_EQUAL 275
#define IS_SMALLER_OR_EQUAL 276
#define IS_GREATER_OR_EQUAL 277
#define SHIFT_LEFT 278
#define SHIFT_RIGHT 279
#define INCREMENT 280
#define DECREMENT 281
#define INT_CAST 282
#define DOUBLE_CAST 283
#define STRING_CAST 284
#define ARRAY_CAST 285
#define OBJECT_CAST 286
#define NEW 287
#define EXIT 288
#define IF 289
#define ELSEIF 290
#define ELSE 291
#define ENDIF 292
#define LNUMBER 293
#define DNUMBER 294
#define STRING 295
#define NUM_STRING 296
#define INLINE_HTML 297
#define CHARACTER 298
#define BAD_CHARACTER 299
#define ENCAPSED_AND_WHITESPACE 300
#define PHP_ECHO 301
#define DO 302
#define WHILE 303
#define ENDWHILE 304
#define FOR 305
#define ENDFOR 306
#define SWITCH 307
#define ENDSWITCH 308
#define CASE 309
#define DEFAULT 310
#define BREAK 311
#define CONTINUE 312
#define CONTINUED_WHILE 313
#define CONTINUED_DOWHILE 314
#define CONTINUED_FOR 315
#define OLD_FUNCTION 316
#define FUNCTION 317
#define IC_FUNCTION 318
#define PHP_CONST 319
#define RETURN 320
#define INCLUDE 321
#define REQUIRE 322
#define HIGHLIGHT_FILE 323
#define HIGHLIGHT_STRING 324
#define PHP_GLOBAL 325
#define PHP_STATIC 326
#define PHP_UNSET 327
#define PHP_ISSET 328
#define PHP_EMPTY 329
#define CLASS 330
#define EXTENDS 331
#define PHP_CLASS_OPERATOR 332
#define PHP_DOUBLE_ARROW 333
#define PHP_LIST 334
#define PHP_ARRAY 335
#define VAR 336
#define EVAL 337
#define DONE_EVAL 338
#define PHP_LINE 339
#define PHP_FILE 340
#define STRING_CONSTANT 341
|