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
|
typedef union {
int i;
id v;
} YYSTYPE;
#define CLASS 257
#define END 258
#define EXTENSION 259
#define EXTERN 260
#define IMPLEMENTATION 261
#define INSTANCE 262
#define INTERFACE 263
#define POSING 264
#define RECEIVER 265
#define SUPER 266
#define CONST 267
#define LOCAL 268
#define OLD 269
#define IF 270
#define ELSE 271
#define DO 272
#define FOR 273
#define WHILE 274
#define BREAK 275
#define CONTINUE 276
#define RETURN 277
#define PRE 278
#define POST 279
#define PUBLIC 280
#define PRIVATE 281
#define PROTECTED 282
#define MUTABLE 283
#define STATIC 284
#define DEFERRED 285
#define REDEFINE 286
#define REDECLARE 287
#define CATCH 288
#define BIND 289
#define UNWIND 290
#define DYNAMIC 291
#define EQ 292
#define GE 293
#define LE 294
#define NE 295
#define AND 296
#define OR 297
#define IMPLIES 298
#define SHL 299
#define SHR 300
#define LSR 301
#define TYPEDEF 302
#define VOID 303
#define NIL 304
#define PLUSPLUS 305
#define MINMIN 306
#define ASSIGN 307
#define STRING_CST 308
#define IDENTIFIER 309
#define NUMBER 310
#define TYPE 311
#define BASIC_TYPE 312
#define C_LITERAL 313
#define UNARY_MINUS 314
|