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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
|
/* A Bison parser, made by GNU Bison 2.0. */
/* Skeleton parser for Yacc-like parsing with Bison,
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* As a special exception, when this file is copied by Bison into a
Bison output file, you may use that output file without restriction.
This special exception was added by the Free Software Foundation
in version 1.24 of Bison. */
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
IDENTIFIER = 258,
CONSTANT = 259,
STRING_LITERAL = 260,
SIZEOF = 261,
PTR_OP = 262,
INC_OP = 263,
DEC_OP = 264,
LEFT_OP = 265,
RIGHT_OP = 266,
LE_OP = 267,
GE_OP = 268,
EQ_OP = 269,
NE_OP = 270,
AND_OP = 271,
OR_OP = 272,
MUL_ASSIGN = 273,
DIV_ASSIGN = 274,
MOD_ASSIGN = 275,
ADD_ASSIGN = 276,
SUB_ASSIGN = 277,
LEFT_ASSIGN = 278,
RIGHT_ASSIGN = 279,
AND_ASSIGN = 280,
XOR_ASSIGN = 281,
OR_ASSIGN = 282,
TYPE_NAME = 283,
TYPEDEF = 284,
EXTERN = 285,
STATIC = 286,
AUTO = 287,
REGISTER = 288,
CHAR = 289,
SHORT = 290,
INT = 291,
UINT = 292,
INT64 = 293,
LONG = 294,
SIGNED = 295,
UNSIGNED = 296,
FLOAT = 297,
DOUBLE = 298,
CONST = 299,
VOLATILE = 300,
VOID = 301,
VALIST = 302,
STRUCT = 303,
UNION = 304,
ENUM = 305,
ELLIPSIS = 306,
CASE = 307,
DEFAULT = 308,
IF = 309,
SWITCH = 310,
WHILE = 311,
DO = 312,
FOR = 313,
GOTO = 314,
CONTINUE = 315,
BREAK = 316,
RETURN = 317,
IFX = 318,
ELSE = 319,
CLASS = 320,
THISCLASS = 321,
CLASS_NAME = 322,
PROPERTY = 323,
SETPROP = 324,
GETPROP = 325,
NEWOP = 326,
RENEW = 327,
DELETE = 328,
EXT_DECL = 329,
EXT_STORAGE = 330,
IMPORT = 331,
DEFINE = 332,
VIRTUAL = 333,
EXT_ATTRIB = 334,
PUBLIC = 335,
PRIVATE = 336,
TYPED_OBJECT = 337,
ANY_OBJECT = 338,
_INCREF = 339,
EXTENSION = 340,
ASM = 341,
TYPEOF = 342,
WATCH = 343,
STOPWATCHING = 344,
FIREWATCHERS = 345,
WATCHABLE = 346,
CLASS_DESIGNER = 347,
CLASS_NO_EXPANSION = 348,
CLASS_FIXED = 349,
ISPROPSET = 350,
CLASS_DEFAULT_PROPERTY = 351,
PROPERTY_CATEGORY = 352,
CLASS_DATA = 353,
CLASS_PROPERTY = 354,
SUBCLASS = 355,
NAMESPACE = 356,
NEW0OP = 357,
RENEW0 = 358,
VAARG = 359,
DBTABLE = 360,
DBFIELD = 361,
DBINDEX = 362,
DATABASE_OPEN = 363
};
#endif
#define IDENTIFIER 258
#define CONSTANT 259
#define STRING_LITERAL 260
#define SIZEOF 261
#define PTR_OP 262
#define INC_OP 263
#define DEC_OP 264
#define LEFT_OP 265
#define RIGHT_OP 266
#define LE_OP 267
#define GE_OP 268
#define EQ_OP 269
#define NE_OP 270
#define AND_OP 271
#define OR_OP 272
#define MUL_ASSIGN 273
#define DIV_ASSIGN 274
#define MOD_ASSIGN 275
#define ADD_ASSIGN 276
#define SUB_ASSIGN 277
#define LEFT_ASSIGN 278
#define RIGHT_ASSIGN 279
#define AND_ASSIGN 280
#define XOR_ASSIGN 281
#define OR_ASSIGN 282
#define TYPE_NAME 283
#define TYPEDEF 284
#define EXTERN 285
#define STATIC 286
#define AUTO 287
#define REGISTER 288
#define CHAR 289
#define SHORT 290
#define INT 291
#define UINT 292
#define INT64 293
#define LONG 294
#define SIGNED 295
#define UNSIGNED 296
#define FLOAT 297
#define DOUBLE 298
#define CONST 299
#define VOLATILE 300
#define VOID 301
#define VALIST 302
#define STRUCT 303
#define UNION 304
#define ENUM 305
#define ELLIPSIS 306
#define CASE 307
#define DEFAULT 308
#define IF 309
#define SWITCH 310
#define WHILE 311
#define DO 312
#define FOR 313
#define GOTO 314
#define CONTINUE 315
#define BREAK 316
#define RETURN 317
#define IFX 318
#define ELSE 319
#define CLASS 320
#define THISCLASS 321
#define CLASS_NAME 322
#define PROPERTY 323
#define SETPROP 324
#define GETPROP 325
#define NEWOP 326
#define RENEW 327
#define DELETE 328
#define EXT_DECL 329
#define EXT_STORAGE 330
#define IMPORT 331
#define DEFINE 332
#define VIRTUAL 333
#define EXT_ATTRIB 334
#define PUBLIC 335
#define PRIVATE 336
#define TYPED_OBJECT 337
#define ANY_OBJECT 338
#define _INCREF 339
#define EXTENSION 340
#define ASM 341
#define TYPEOF 342
#define WATCH 343
#define STOPWATCHING 344
#define FIREWATCHERS 345
#define WATCHABLE 346
#define CLASS_DESIGNER 347
#define CLASS_NO_EXPANSION 348
#define CLASS_FIXED 349
#define ISPROPSET 350
#define CLASS_DEFAULT_PROPERTY 351
#define PROPERTY_CATEGORY 352
#define CLASS_DATA 353
#define CLASS_PROPERTY 354
#define SUBCLASS 355
#define NAMESPACE 356
#define NEW0OP 357
#define RENEW0 358
#define VAARG 359
#define DBTABLE 360
#define DBFIELD 361
#define DBINDEX 362
#define DATABASE_OPEN 363
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
#line 42 "grammar.y"
typedef union YYSTYPE {
SpecifierType specifierType;
int i;
AccessMode declMode;
Identifier id;
Expression exp;
Specifier specifier;
OldList * list;
Enumerator enumerator;
Declarator declarator;
Pointer pointer;
Initializer initializer;
InitDeclarator initDeclarator;
TypeName typeName;
Declaration declaration;
Statement stmt;
FunctionDefinition function;
External external;
Context context;
AsmField asmField;
Instantiation instance;
MembersInit membersInit;
MemberInit memberInit;
ClassFunction classFunction;
ClassDefinition _class;
ClassDef classDef;
PropertyDef prop;
char * string;
Symbol symbol;
PropertyWatch propertyWatch;
TemplateParameter templateParameter;
TemplateArgument templateArgument;
TemplateDatatype templateDatatype;
DBTableEntry dbtableEntry;
DBIndexItem dbindexItem;
DBTableDef dbtableDef;
} YYSTYPE;
/* Line 1318 of yacc.c. */
#line 293 "grammar.eh"
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
extern YYSTYPE yylval;
#if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
typedef struct YYLTYPE
{
int first_line;
int first_column;
int last_line;
int last_column;
} YYLTYPE;
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
# define YYLTYPE_IS_DECLARED 1
# define YYLTYPE_IS_TRIVIAL 1
#endif
extern YYLTYPE yylloc;
|