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