diff options
Diffstat (limited to 'src/moc/moc_yacc.cpp')
-rw-r--r-- | src/moc/moc_yacc.cpp | 6113 |
1 files changed, 3867 insertions, 2246 deletions
diff --git a/src/moc/moc_yacc.cpp b/src/moc/moc_yacc.cpp index 72867ec..b30fa23 100644 --- a/src/moc/moc_yacc.cpp +++ b/src/moc/moc_yacc.cpp @@ -1,14 +1,75 @@ -#ifndef lint -static char yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93"; -#endif -#define YYBYACC 1 -#define YYMAJOR 1 -#define YYMINOR 9 -#define yyclearin (yychar=(-1)) -#define yyerrok (yyerrflag=0) -#define YYRECOVERING (yyerrflag!=0) -#define YYPREFIX "yy" -#line 55 "moc.y" + +/* A Bison parser, made by GNU Bison 2.4.1. */ + +/* Skeleton implementation for Bison's Yacc-like parsers in C + + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */ + +/* As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. */ + +/* C LALR(1) parser skeleton written by Richard Stallman, by + simplifying the original so-called "semantic" parser. */ + +/* All symbols defined below should begin with yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Bison version. */ +#define YYBISON_VERSION "2.4.1" + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 0 + +/* Push parsers. */ +#define YYPUSH 0 + +/* Pull parsers. */ +#define YYPULL 1 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + + + +/* Copy the first part of user declarations. */ + +/* Line 189 of yacc.c */ +#line 57 "moc.y" + #define MOC_YACC_CODE void yyerror( const char *msg ); @@ -52,10 +113,10 @@ bool isEnumType( const char* type ); int enumIndex( const char* type ); bool isVariantType( const char* type ); int qvariant_nameToType( const char* name ); -static void init(); /* initialize*/ -static void initClass(); /* prepare for new class*/ -static void generateClass(); /* generate C++ code for class*/ -static void initExpression(); /* prepare for new expression*/ +static void init(); // initialize +static void initClass(); // prepare for new class +static void generateClass(); // generate C++ code for class +static void initExpression(); // prepare for new expression static void enterNameSpace( const char *name = 0 ); static void leaveNameSpace(); static void selectOutsideClassState(); @@ -79,7 +140,7 @@ static const char* const utype_map[] = }; inline bool isIdentChar( char x ) -{ /* Avoid bug in isalnum*/ +{ // Avoid bug in isalnum return x == '_' || (x >= '0' && x <= '9') || (x >= 'a' && x <= 'z') || (x >= 'A' && x <= 'Z'); } @@ -278,7 +339,7 @@ static QCString rmWS( const char * ); enum Access { Private, Protected, Public }; -class Argument /* single arg meta data*/ +class Argument // single arg meta data { public: Argument( const char *left, const char *right, const char* argName = 0, bool isDefaultArgument = FALSE ) @@ -326,7 +387,7 @@ public: bool isDefault; }; -class ArgList : public QPtrList<Argument> { /* member function arg list*/ +class ArgList : public QPtrList<Argument> { // member function arg list public: ArgList() { setAutoDelete( TRUE ); } ~ArgList() { clear(); } @@ -363,10 +424,10 @@ public: }; -struct Function /* member function meta data*/ +struct Function // member function meta data { Access access; - QCString qualifier; /* const or volatile*/ + QCString qualifier; // const or volatile QCString name; QCString type; QCString signature; @@ -383,7 +444,7 @@ struct Function /* member function meta data*/ } }; -class FuncList : public QPtrList<Function> { /* list of member functions*/ +class FuncList : public QPtrList<Function> { // list of member functions public: FuncList( bool autoDelete = FALSE ) { setAutoDelete( autoDelete ); } @@ -405,7 +466,7 @@ public: bool set; }; -class EnumList : public QPtrList<Enum> { /* list of property enums*/ +class EnumList : public QPtrList<Enum> { // list of property enums public: EnumList() { setAutoDelete(TRUE); } }; @@ -452,10 +513,10 @@ struct Property Function* setfunc; Function* getfunc; - int oredEnum; /* If the enums item may be ored. That means the data type is int.*/ - /* Allowed values are 1 (True), 0 (False), and -1 (Unset)*/ - QCString enumsettype; /* contains the set function type in case of oredEnum*/ - QCString enumgettype; /* contains the get function type in case of oredEnum*/ + int oredEnum; // If the enums item may be ored. That means the data type is int. + // Allowed values are 1 (True), 0 (False), and -1 (Unset) + QCString enumsettype; // contains the set function type in case of oredEnum + QCString enumgettype; // contains the get function type in case of oredEnum enum Specification { Unspecified, Class, Reference, Pointer, ConstCharStar }; Specification sspec; @@ -485,7 +546,7 @@ struct Property } }; -class PropList : public QPtrList<Property> { /* list of properties*/ +class PropList : public QPtrList<Property> { // list of properties public: PropList() { setAutoDelete( TRUE ); } }; @@ -500,7 +561,7 @@ struct ClassInfo QCString value; }; -class ClassInfoList : public QPtrList<ClassInfo> { /* list of class infos*/ +class ClassInfoList : public QPtrList<ClassInfo> { // list of class infos public: ClassInfoList() { setAutoDelete( TRUE ); } }; @@ -510,61 +571,61 @@ class parser_reg { parser_reg(); ~parser_reg(); - /* some temporary values*/ - QCString tmpExpression; /* Used to store the characters the lexer*/ - /* is currently skipping (see addExpressionChar and friends)*/ - QCString fileName; /* file name*/ - QCString outputFile; /* output file name*/ - QCString pchFile; /* name of PCH file (used on Windows)*/ - QStrList includeFiles; /* name of #include files*/ - QCString includePath; /* #include file path*/ - QCString qtPath; /* #include qt file path*/ - int gen_count; /*number of classes generated*/ - bool noInclude; /* no #include <filename>*/ - bool generatedCode; /* no code generated*/ - bool mocError; /* moc parsing error occurred*/ - bool hasVariantIncluded; /*whether or not qvariant.h was included yet*/ - QCString className; /* name of parsed class*/ - QCString superClassName; /* name of first super class*/ - QStrList multipleSuperClasses; /* other superclasses*/ - FuncList signals; /* signal interface*/ - FuncList slots; /* slots interface*/ - FuncList propfuncs; /* all possible property access functions*/ - FuncList funcs; /* all parsed functions, including signals*/ - EnumList enums; /* enums used in properties*/ - PropList props; /* list of all properties*/ - ClassInfoList infos; /* list of all class infos*/ - -/* Used to store the values in the Q_PROPERTY macro*/ - QCString propWrite; /* set function*/ - QCString propRead; /* get function*/ - QCString propReset; /* reset function*/ - QCString propStored; /**/ - QCString propDesignable; /* "true", "false" or function or empty if not specified*/ - QCString propScriptable; /* "true", "false" or function or empty if not specified*/ - bool propOverride; /* Wether OVERRIDE was detected*/ - - QStrList qtEnums; /* Used to store the contents of Q_ENUMS*/ - QStrList qtSets; /* Used to store the contents of Q_SETS*/ + // some temporary values + QCString tmpExpression; // Used to store the characters the lexer + // is currently skipping (see addExpressionChar and friends) + QCString fileName; // file name + QCString outputFile; // output file name + QCString pchFile; // name of PCH file (used on Windows) + QStrList includeFiles; // name of #include files + QCString includePath; // #include file path + QCString qtPath; // #include qt file path + int gen_count; //number of classes generated + bool noInclude; // no #include <filename> + bool generatedCode; // no code generated + bool mocError; // moc parsing error occurred + bool hasVariantIncluded; //whether or not qvariant.h was included yet + QCString className; // name of parsed class + QCString superClassName; // name of first super class + QStrList multipleSuperClasses; // other superclasses + FuncList signals; // signal interface + FuncList slots; // slots interface + FuncList propfuncs; // all possible property access functions + FuncList funcs; // all parsed functions, including signals + EnumList enums; // enums used in properties + PropList props; // list of all properties + ClassInfoList infos; // list of all class infos + +// Used to store the values in the Q_PROPERTY macro + QCString propWrite; // set function + QCString propRead; // get function + QCString propReset; // reset function + QCString propStored; // + QCString propDesignable; // "true", "false" or function or empty if not specified + QCString propScriptable; // "true", "false" or function or empty if not specified + bool propOverride; // Wether OVERRIDE was detected + + QStrList qtEnums; // Used to store the contents of Q_ENUMS + QStrList qtSets; // Used to store the contents of Q_SETS }; static parser_reg *g = 0; -ArgList *addArg( Argument * ); /* add arg to tmpArgList*/ +ArgList *addArg( Argument * ); // add arg to tmpArgList enum Member { SignalMember, SlotMember, PropertyCandidateMember }; -void addMember( Member ); /* add tmpFunc to current class*/ -void addEnum(); /* add tmpEnum to current class*/ +void addMember( Member ); // add tmpFunc to current class +void addEnum(); // add tmpEnum to current class -char *stradd( const char *, const char * ); /* add two strings*/ -char *stradd( const char *, const char *, /* add three strings*/ +char *stradd( const char *, const char * ); // add two strings +char *stradd( const char *, const char *, // add three strings const char * ); -char *stradd( const char *, const char *, /* adds 4 strings*/ +char *stradd( const char *, const char *, // adds 4 strings const char *, const char * ); char *straddSpc( const char *, const char * ); @@ -575,35 +636,35 @@ char *straddSpc( const char *, const char *, extern int yydebug; bool lexDebug = FALSE; -int lineNo; /* current line number*/ -bool errorControl = FALSE; /* controled errors*/ +int lineNo; // current line number +bool errorControl = FALSE; // controled errors bool displayWarnings = TRUE; -bool skipClass; /* don't generate for class*/ -bool skipFunc; /* don't generate for func*/ -bool templateClass; /* class is a template*/ -bool templateClassOld; /* previous class is a template*/ - -ArgList *tmpArgList; /* current argument list*/ -Function *tmpFunc; /* current member function*/ -Enum *tmpEnum; /* current enum*/ -Access tmpAccess; /* current access permission*/ -Access subClassPerm; /* current access permission*/ - -bool Q_OBJECTdetected; /* TRUE if current class*/ - /* contains the Q_OBJECT macro*/ -bool Q_PROPERTYdetected; /* TRUE if current class*/ - /* contains at least one Q_PROPERTY,*/ - /* Q_OVERRIDE, Q_SETS or Q_ENUMS macro*/ -bool tmpPropOverride; /* current property override setting*/ - -int tmpYYStart; /* Used to store the lexers current mode*/ -int tmpYYStart2; /* Used to store the lexers current mode*/ - /* (if tmpYYStart is already used)*/ - -/* if the format revision changes, you MUST change it in qmetaobject.h too*/ -const int formatRevision = 26; /* moc output format revision*/ - -/* if the flags change, you HAVE to change it in qmetaobject.h too*/ +bool skipClass; // don't generate for class +bool skipFunc; // don't generate for func +bool templateClass; // class is a template +bool templateClassOld; // previous class is a template + +ArgList *tmpArgList; // current argument list +Function *tmpFunc; // current member function +Enum *tmpEnum; // current enum +Access tmpAccess; // current access permission +Access subClassPerm; // current access permission + +bool Q_OBJECTdetected; // TRUE if current class + // contains the Q_OBJECT macro +bool Q_PROPERTYdetected; // TRUE if current class + // contains at least one Q_PROPERTY, + // Q_OVERRIDE, Q_SETS or Q_ENUMS macro +bool tmpPropOverride; // current property override setting + +int tmpYYStart; // Used to store the lexers current mode +int tmpYYStart2; // Used to store the lexers current mode + // (if tmpYYStart is already used) + +// if the format revision changes, you MUST change it in qmetaobject.h too +const int formatRevision = 26; // moc output format revision + +// if the flags change, you HAVE to change it in qmetaobject.h too enum Flags { Invalid = 0x00000000, Readable = 0x00000001, @@ -637,9 +698,159 @@ extern "C" int hack_isatty( int ) # define YYDEBUG 1 # include "moc_yacc.h" # include "moc_lex.cpp" -#endif /*YYBISON*/ -#line 689 "moc.y" -typedef union { +#endif //YYBISON + + +/* Line 189 of yacc.c */ +#line 706 "moc_yacc" + +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif + +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 +#endif + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + CHAR_VAL = 258, + INT_VAL = 259, + DOUBLE_VAL = 260, + STRING = 261, + IDENTIFIER = 262, + FRIEND = 263, + TYPEDEF = 264, + AUTO = 265, + REGISTER = 266, + STATIC = 267, + EXTERN = 268, + INLINE = 269, + VIRTUAL = 270, + CONST = 271, + VOLATILE = 272, + CHAR = 273, + SHORT = 274, + INT = 275, + LONG = 276, + SIGNED = 277, + UNSIGNED = 278, + FLOAT = 279, + DOUBLE = 280, + VOID = 281, + ENUM = 282, + CLASS = 283, + STRUCT = 284, + UNION = 285, + ASM = 286, + PRIVATE = 287, + PROTECTED = 288, + PUBLIC = 289, + OPERATOR = 290, + DBL_COLON = 291, + TRIPLE_DOT = 292, + TEMPLATE = 293, + NAMESPACE = 294, + USING = 295, + MUTABLE = 296, + THROW = 297, + SIGNALS = 298, + SLOTS = 299, + Q_OBJECT = 300, + Q_PROPERTY = 301, + Q_OVERRIDE = 302, + Q_CLASSINFO = 303, + Q_ENUMS = 304, + Q_SETS = 305, + READ = 306, + WRITE = 307, + STORED = 308, + DESIGNABLE = 309, + SCRIPTABLE = 310, + RESET = 311 + }; +#endif +/* Tokens. */ +#define CHAR_VAL 258 +#define INT_VAL 259 +#define DOUBLE_VAL 260 +#define STRING 261 +#define IDENTIFIER 262 +#define FRIEND 263 +#define TYPEDEF 264 +#define AUTO 265 +#define REGISTER 266 +#define STATIC 267 +#define EXTERN 268 +#define INLINE 269 +#define VIRTUAL 270 +#define CONST 271 +#define VOLATILE 272 +#define CHAR 273 +#define SHORT 274 +#define INT 275 +#define LONG 276 +#define SIGNED 277 +#define UNSIGNED 278 +#define FLOAT 279 +#define DOUBLE 280 +#define VOID 281 +#define ENUM 282 +#define CLASS 283 +#define STRUCT 284 +#define UNION 285 +#define ASM 286 +#define PRIVATE 287 +#define PROTECTED 288 +#define PUBLIC 289 +#define OPERATOR 290 +#define DBL_COLON 291 +#define TRIPLE_DOT 292 +#define TEMPLATE 293 +#define NAMESPACE 294 +#define USING 295 +#define MUTABLE 296 +#define THROW 297 +#define SIGNALS 298 +#define SLOTS 299 +#define Q_OBJECT 300 +#define Q_PROPERTY 301 +#define Q_OVERRIDE 302 +#define Q_CLASSINFO 303 +#define Q_ENUMS 304 +#define Q_SETS 305 +#define READ 306 +#define WRITE 307 +#define STORED 308 +#define DESIGNABLE 309 +#define SCRIPTABLE 310 +#define RESET 311 + + + + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED +typedef union YYSTYPE +{ + +/* Line 214 of yacc.c */ +#line 692 "moc.y" + char char_val; int int_val; double double_val; @@ -648,1003 +859,3579 @@ typedef union { Function *function; ArgList *arg_list; Argument *arg; + + + +/* Line 214 of yacc.c */ +#line 867 "moc_yacc" } YYSTYPE; -#line 653 "y.tab.c" -#define CHAR_VAL 257 -#define INT_VAL 258 -#define DOUBLE_VAL 259 -#define STRING 260 -#define IDENTIFIER 261 -#define FRIEND 262 -#define TYPEDEF 263 -#define AUTO 264 -#define REGISTER 265 -#define STATIC 266 -#define EXTERN 267 -#define INLINE 268 -#define VIRTUAL 269 -#define CONST 270 -#define VOLATILE 271 -#define CHAR 272 -#define SHORT 273 -#define INT 274 -#define LONG 275 -#define SIGNED 276 -#define UNSIGNED 277 -#define FLOAT 278 -#define DOUBLE 279 -#define VOID 280 -#define ENUM 281 -#define CLASS 282 -#define STRUCT 283 -#define UNION 284 -#define ASM 285 -#define PRIVATE 286 -#define PROTECTED 287 -#define PUBLIC 288 -#define OPERATOR 289 -#define DBL_COLON 290 -#define TRIPLE_DOT 291 -#define TEMPLATE 292 -#define NAMESPACE 293 -#define USING 294 -#define MUTABLE 295 -#define THROW 296 -#define SIGNALS 297 -#define SLOTS 298 -#define Q_OBJECT 299 -#define Q_PROPERTY 300 -#define Q_OVERRIDE 301 -#define Q_CLASSINFO 302 -#define Q_ENUMS 303 -#define Q_SETS 304 -#define READ 305 -#define WRITE 306 -#define STORED 307 -#define DESIGNABLE 308 -#define SCRIPTABLE 309 -#define RESET 310 -#define YYERRCODE 256 -short yylhs[] = { -1, - 0, 0, 40, 40, 40, 40, 40, 42, 42, 48, - 50, 46, 51, 52, 47, 49, 43, 45, 44, 44, - 54, 41, 1, 1, 2, 55, 56, 57, 58, 30, - 30, 30, 30, 30, 29, 31, 31, 32, 32, 59, - 59, 59, 59, 34, 34, 33, 33, 11, 11, 11, - 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, - 13, 3, 60, 60, 14, 14, 15, 15, 16, 16, - 17, 17, 17, 19, 19, 21, 21, 25, 25, 61, - 61, 20, 20, 24, 62, 24, 24, 63, 24, 22, - 22, 23, 64, 23, 65, 23, 23, 23, 35, 35, - 66, 35, 35, 39, 67, 10, 10, 73, 10, 74, - 10, 75, 72, 76, 72, 38, 38, 37, 37, 36, - 36, 26, 26, 27, 27, 28, 28, 71, 71, 71, - 78, 77, 81, 53, 53, 53, 53, 53, 53, 18, - 18, 18, 18, 18, 82, 82, 79, 83, 69, 69, - 84, 68, 68, 85, 86, 86, 88, 87, 4, 4, - 80, 80, 89, 89, 91, 91, 93, 90, 94, 90, - 90, 96, 99, 90, 100, 101, 90, 102, 103, 90, - 104, 106, 90, 107, 109, 90, 92, 92, 111, 92, - 92, 98, 98, 112, 112, 113, 95, 95, 115, 115, - 116, 110, 110, 117, 117, 118, 119, 119, 5, 6, - 6, 7, 7, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 9, 9, 9, 120, 120, 120, 120, - 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, - 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, - 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, - 120, 120, 120, 120, 120, 120, 120, 121, 121, 122, - 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, - 122, 114, 114, 114, 114, 114, 114, 114, 114, 126, - 127, 114, 124, 124, 128, 129, 128, 130, 128, 123, - 131, 123, 125, 133, 133, 132, 132, 70, 70, 134, - 134, 134, 135, 136, 135, 138, 97, 137, 137, 137, - 137, 137, 137, 137, 105, 105, 108, 108, +# define YYSTYPE_IS_TRIVIAL 1 +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +#endif + + +/* Copy the second part of user declarations. */ + + +/* Line 264 of yacc.c */ +#line 879 "moc_yacc" + +#ifdef short +# undef short +#endif + +#ifdef YYTYPE_UINT8 +typedef YYTYPE_UINT8 yytype_uint8; +#else +typedef unsigned char yytype_uint8; +#endif + +#ifdef YYTYPE_INT8 +typedef YYTYPE_INT8 yytype_int8; +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +typedef signed char yytype_int8; +#else +typedef short int yytype_int8; +#endif + +#ifdef YYTYPE_UINT16 +typedef YYTYPE_UINT16 yytype_uint16; +#else +typedef unsigned short int yytype_uint16; +#endif + +#ifdef YYTYPE_INT16 +typedef YYTYPE_INT16 yytype_int16; +#else +typedef short int yytype_int16; +#endif + +#ifndef YYSIZE_T +# ifdef __SIZE_TYPE__ +# define YYSIZE_T __SIZE_TYPE__ +# elif defined size_t +# define YYSIZE_T size_t +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include <stddef.h> /* INFRINGES ON USER NAME SPACE */ +# define YYSIZE_T size_t +# else +# define YYSIZE_T unsigned int +# endif +#endif + +#define YYSIZE_MAXIMUM ((YYSIZE_T) -1) + +#ifndef YY_ +# if YYENABLE_NLS +# if ENABLE_NLS +# include <libintl.h> /* INFRINGES ON USER NAME SPACE */ +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(e) ((void) (e)) +#else +# define YYUSE(e) /* empty */ +#endif + +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) +#else +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int yyi) +#else +static int +YYID (yyi) + int yyi; +#endif +{ + return yyi; +} +#endif + +#if ! defined yyoverflow || YYERROR_VERBOSE + +/* The parser invokes alloca or malloc; define the necessary symbols. */ + +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca +# elif defined __BUILTIN_VA_ARG_INCR +# include <alloca.h> /* INFRINGES ON USER NAME SPACE */ +# elif defined _AIX +# define YYSTACK_ALLOC __alloca +# elif defined _MSC_VER +# include <malloc.h> /* INFRINGES ON USER NAME SPACE */ +# define alloca _alloca +# else +# define YYSTACK_ALLOC alloca +# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ +# ifndef _STDLIB_H +# define _STDLIB_H 1 +# endif +# endif +# endif +# endif +# endif + +# ifdef YYSTACK_ALLOC + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) +# ifndef YYSTACK_ALLOC_MAXIMUM + /* The OS might guarantee only one guard page at the bottom of the stack, + and a page size can be as small as 4096 bytes. So we cannot safely + invoke alloca (N) if N exceeds 4096. Use a slightly smaller number + to allow for a few compiler-allocated temporary stack slots. */ +# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ +# endif +# else +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE +# ifndef YYSTACK_ALLOC_MAXIMUM +# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM +# endif +# if (defined __cplusplus && ! defined _STDLIB_H \ + && ! ((defined YYMALLOC || defined malloc) \ + && (defined YYFREE || defined free))) +# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ +# ifndef _STDLIB_H +# define _STDLIB_H 1 +# endif +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# ifndef YYFREE +# define YYFREE free +# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void free (void *); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# endif +#endif /* ! defined yyoverflow || YYERROR_VERBOSE */ + + +#if (! defined yyoverflow \ + && (! defined __cplusplus \ + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + +/* A type that is properly aligned for any stack member. */ +union yyalloc +{ + yytype_int16 yyss_alloc; + YYSTYPE yyvs_alloc; }; -short yylen[] = { 2, - 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, - 0, 7, 0, 0, 6, 1, 5, 2, 2, 2, - 0, 3, 1, 1, 4, 0, 0, 0, 0, 1, - 1, 1, 1, 1, 3, 0, 1, 1, 2, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 4, 0, 1, 2, 2, 1, 2, 3, 1, - 2, 2, 2, 2, 3, 0, 1, 0, 1, 0, - 1, 3, 1, 2, 0, 5, 4, 0, 7, 0, - 1, 2, 0, 4, 0, 5, 1, 3, 1, 2, - 0, 5, 3, 1, 8, 1, 2, 0, 4, 0, - 5, 0, 4, 0, 5, 0, 1, 1, 2, 2, - 2, 0, 1, 1, 2, 1, 1, 1, 1, 3, - 0, 3, 0, 5, 1, 3, 3, 4, 2, 1, - 1, 1, 1, 1, 2, 3, 2, 3, 0, 1, - 4, 0, 1, 2, 1, 3, 0, 5, 0, 1, - 0, 1, 2, 1, 1, 1, 0, 3, 0, 4, - 1, 0, 0, 7, 0, 0, 7, 0, 0, 9, - 0, 0, 7, 0, 0, 7, 2, 3, 0, 3, - 1, 0, 1, 2, 1, 1, 0, 1, 2, 1, - 1, 0, 1, 2, 1, 1, 0, 2, 2, 3, - 1, 4, 4, 1, 3, 2, 3, 2, 1, 3, - 2, 3, 2, 1, 1, 1, 3, 3, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, - 2, 2, 1, 3, 2, 2, 2, 0, 1, 2, - 1, 3, 5, 2, 3, 4, 3, 2, 6, 4, - 5, 3, 4, 6, 4, 4, 5, 3, 3, 0, - 0, 7, 1, 3, 1, 0, 4, 0, 3, 0, - 0, 3, 2, 0, 1, 5, 4, 0, 1, 0, - 1, 3, 1, 0, 4, 0, 4, 0, 3, 3, - 3, 3, 3, 3, 0, 2, 0, 2, + +/* The size of the maximum gap between one aligned stack and the next. */ +# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) + +/* The size of an array large to enough to hold all stacks, each with + N elements. */ +# define YYSTACK_BYTES(N) \ + ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + + YYSTACK_GAP_MAXIMUM) + +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T yyi; \ + for (yyi = 0; yyi < (Count); yyi++) \ + (To)[yyi] = (From)[yyi]; \ + } \ + while (YYID (0)) +# endif +# endif + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ + Stack = &yyptr->Stack_alloc; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 2 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 612 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 79 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 140 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 329 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 492 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 311 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const yytype_uint8 yytranslate[] = +{ + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 78, 2, 2, 2, 74, 69, 2, + 66, 67, 68, 71, 63, 72, 2, 73, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 70, 60, + 61, 59, 62, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 64, 2, 65, 75, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 57, 76, 58, 77, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 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 }; -short yydefred[] = { 1, - 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, - 9, 0, 0, 0, 19, 20, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 26, 140, 40, - 41, 42, 43, 44, 45, 46, 47, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 141, 139, 142, 144, - 143, 0, 70, 24, 0, 22, 65, 66, 133, 0, - 0, 0, 0, 147, 160, 0, 0, 0, 0, 11, - 1, 0, 26, 146, 0, 0, 0, 136, 137, 0, - 0, 224, 225, 226, 0, 219, 211, 0, 214, 0, - 17, 1, 0, 0, 62, 0, 69, 169, 166, 171, - 172, 175, 178, 181, 184, 165, 0, 0, 164, 167, - 138, 0, 221, 0, 216, 0, 0, 223, 218, 0, - 15, 25, 0, 0, 0, 0, 0, 0, 134, 163, - 0, 0, 0, 220, 215, 210, 222, 217, 12, 0, - 0, 0, 0, 0, 0, 191, 0, 0, 189, 168, - 212, 213, 0, 33, 34, 0, 0, 0, 0, 0, - 0, 64, 271, 0, 0, 52, 0, 49, 48, 38, - 0, 31, 32, 30, 0, 170, 201, 0, 200, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 187, 0, 0, 108, 112, 0, 0, 0, 303, 73, - 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 278, 0, - 0, 0, 0, 0, 0, 0, 270, 0, 118, 0, - 51, 0, 0, 0, 0, 0, 39, 290, 207, 199, - 0, 0, 301, 207, 0, 309, 0, 316, 173, 176, - 0, 326, 182, 328, 185, 188, 206, 0, 205, 190, - 0, 195, 196, 27, 27, 110, 114, 0, 0, 0, - 311, 252, 253, 0, 254, 0, 267, 266, 244, 248, - 259, 242, 261, 243, 0, 262, 245, 246, 247, 249, - 260, 250, 251, 0, 0, 288, 0, 207, 277, 126, - 127, 120, 0, 124, 121, 0, 0, 0, 275, 119, - 148, 72, 0, 71, 0, 0, 272, 0, 0, 0, - 83, 0, 0, 27, 0, 207, 0, 207, 0, 0, - 0, 0, 0, 0, 204, 194, 109, 0, 27, 27, - 0, 314, 0, 0, 257, 258, 264, 227, 228, 207, - 0, 125, 0, 276, 280, 0, 291, 208, 0, 0, - 81, 74, 93, 0, 0, 0, 97, 0, 302, 0, - 0, 0, 298, 0, 99, 0, 293, 0, 0, 0, - 0, 0, 0, 0, 317, 174, 177, 179, 183, 186, - 113, 111, 0, 0, 29, 312, 307, 0, 281, 0, - 273, 0, 0, 75, 82, 27, 0, 104, 85, 0, - 95, 92, 35, 296, 0, 27, 101, 100, 207, 0, - 0, 0, 0, 0, 0, 0, 0, 115, 306, 315, - 279, 207, 0, 0, 153, 0, 98, 28, 0, 27, - 27, 103, 299, 27, 0, 294, 319, 320, 322, 323, - 324, 321, 180, 0, 0, 154, 0, 0, 0, 150, - 94, 86, 88, 0, 297, 0, 157, 0, 0, 0, - 28, 96, 102, 27, 156, 79, 0, 131, 0, 128, - 105, 129, 89, 0, 151, 0, 0, 158, 132, 130, + +#if YYDEBUG +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const yytype_uint16 yyprhs[] = +{ + 0, 0, 3, 4, 7, 9, 11, 13, 15, 17, + 19, 21, 22, 23, 31, 32, 33, 40, 42, 48, + 51, 54, 57, 58, 62, 64, 66, 71, 72, 73, + 74, 75, 77, 79, 81, 83, 85, 89, 90, 92, + 94, 97, 99, 101, 103, 105, 107, 109, 111, 113, + 115, 117, 119, 122, 124, 126, 128, 130, 132, 134, + 136, 138, 140, 142, 147, 148, 150, 153, 156, 158, + 161, 165, 167, 170, 173, 176, 179, 183, 184, 186, + 187, 189, 190, 192, 196, 198, 201, 202, 208, 213, + 214, 222, 223, 225, 228, 229, 234, 235, 241, 243, + 247, 249, 252, 253, 259, 263, 265, 274, 276, 279, + 280, 285, 286, 292, 293, 298, 299, 305, 306, 308, + 310, 313, 316, 319, 320, 322, 324, 327, 329, 331, + 333, 335, 339, 340, 344, 345, 351, 353, 357, 361, + 366, 369, 371, 373, 375, 377, 379, 382, 386, 389, + 393, 394, 396, 401, 402, 404, 407, 409, 413, 414, + 420, 421, 423, 424, 426, 429, 431, 433, 435, 436, + 440, 441, 446, 448, 449, 450, 458, 459, 460, 468, + 469, 470, 480, 481, 482, 490, 491, 492, 500, 503, + 507, 508, 512, 514, 515, 517, 520, 522, 524, 525, + 527, 530, 532, 534, 535, 537, 540, 542, 544, 545, + 548, 551, 555, 557, 562, 567, 569, 573, 576, 580, + 583, 585, 589, 592, 596, 599, 601, 603, 605, 609, + 613, 615, 617, 619, 621, 623, 625, 627, 629, 631, + 633, 635, 637, 639, 642, 645, 648, 651, 654, 657, + 660, 663, 666, 669, 672, 675, 678, 681, 684, 688, + 692, 695, 698, 701, 704, 706, 710, 713, 716, 719, + 720, 722, 725, 727, 731, 737, 740, 744, 749, 753, + 756, 763, 768, 774, 778, 783, 790, 795, 800, 806, + 810, 814, 815, 816, 824, 826, 830, 832, 833, 838, + 839, 843, 844, 845, 849, 852, 853, 855, 861, 866, + 867, 869, 870, 872, 876, 878, 879, 884, 885, 890, + 891, 895, 899, 903, 907, 911, 915, 916, 919, 920 }; -short yydgoto[] = { 93, - 53, 54, 162, 64, 65, 85, 86, 87, 88, 163, - 164, 165, 166, 167, 168, 69, 169, 48, 318, 319, - 320, 365, 366, 321, 477, 302, 303, 304, 322, 170, - 217, 171, 172, 173, 374, 229, 306, 307, 375, 4, - 5, 6, 7, 8, 9, 10, 11, 26, 94, 92, - 14, 71, 21, 12, 72, 337, 462, 430, 174, 22, - 362, 438, 471, 406, 440, 444, 244, 434, 459, 247, - 481, 196, 264, 339, 265, 340, 482, 486, 23, 107, - 76, 24, 175, 460, 435, 456, 457, 474, 108, 109, - 110, 150, 131, 123, 176, 124, 184, 260, 330, 125, - 331, 126, 427, 127, 188, 333, 128, 190, 334, 256, - 193, 261, 262, 263, 178, 179, 258, 259, 316, 219, - 180, 181, 245, 376, 182, 315, 402, 377, 441, 416, - 324, 199, 344, 270, 271, 395, 385, 329, + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yytype_int16 yyrhs[] = +{ + 80, 0, -1, -1, 80, 81, -1, 93, -1, 82, + -1, 90, -1, 92, -1, 91, -1, 83, -1, 86, + -1, -1, -1, 39, 7, 84, 57, 85, 89, 58, + -1, -1, -1, 39, 87, 57, 88, 89, 58, -1, + 80, -1, 39, 7, 59, 114, 60, -1, 40, 39, + -1, 40, 7, -1, 40, 36, -1, -1, 94, 148, + 60, -1, 7, -1, 96, -1, 7, 61, 97, 62, + -1, -1, -1, -1, -1, 105, -1, 107, -1, 106, + -1, 8, -1, 9, -1, 103, 108, 103, -1, -1, + 104, -1, 101, -1, 104, 101, -1, 10, -1, 11, + -1, 12, -1, 13, -1, 14, -1, 15, -1, 16, + -1, 17, -1, 116, -1, 114, -1, 109, -1, 109, + 110, -1, 110, -1, 18, -1, 19, -1, 20, -1, + 21, -1, 22, -1, 23, -1, 24, -1, 25, -1, + 26, -1, 38, 61, 97, 62, -1, -1, 111, -1, + 112, 28, -1, 112, 29, -1, 115, -1, 36, 115, + -1, 115, 36, 95, -1, 95, -1, 113, 7, -1, + 27, 7, -1, 30, 7, -1, 118, 120, -1, 121, + 63, 37, -1, -1, 121, -1, -1, 122, -1, -1, + 37, -1, 121, 63, 122, -1, 122, -1, 102, 125, + -1, -1, 102, 125, 59, 123, 99, -1, 102, 125, + 131, 125, -1, -1, 102, 125, 131, 125, 59, 124, + 99, -1, -1, 126, -1, 126, 141, -1, -1, 64, + 127, 98, 65, -1, -1, 126, 64, 128, 98, 65, + -1, 141, -1, 66, 126, 67, -1, 131, -1, 129, + 141, -1, -1, 129, 64, 130, 98, 65, -1, 66, + 129, 67, -1, 7, -1, 66, 117, 67, 142, 156, + 154, 210, 145, -1, 7, -1, 7, 136, -1, -1, + 7, 59, 134, 98, -1, -1, 7, 136, 59, 135, + 98, -1, -1, 64, 137, 98, 65, -1, -1, 136, + 64, 138, 98, 65, -1, -1, 140, -1, 141, -1, + 140, 141, -1, 68, 142, -1, 69, 142, -1, -1, + 143, -1, 144, -1, 143, 144, -1, 16, -1, 17, + -1, 60, -1, 146, -1, 59, 4, 60, -1, -1, + 57, 147, 58, -1, -1, 152, 57, 149, 162, 58, + -1, 151, -1, 151, 68, 7, -1, 151, 69, 7, + -1, 151, 66, 7, 67, -1, 111, 150, -1, 7, + -1, 110, -1, 107, -1, 105, -1, 106, -1, 113, + 115, -1, 113, 7, 95, -1, 151, 161, -1, 113, + 115, 161, -1, -1, 155, -1, 42, 66, 119, 67, + -1, -1, 157, -1, 70, 158, -1, 159, -1, 159, + 63, 158, -1, -1, 114, 66, 160, 98, 67, -1, + -1, 190, -1, -1, 163, -1, 163, 165, -1, 165, + -1, 194, -1, 44, -1, -1, 164, 166, 178, -1, + -1, 43, 167, 70, 183, -1, 45, -1, -1, -1, + 46, 168, 66, 214, 67, 169, 180, -1, -1, -1, + 47, 170, 66, 214, 67, 171, 180, -1, -1, -1, + 48, 172, 66, 6, 63, 6, 67, 173, 180, -1, + -1, -1, 49, 174, 66, 217, 67, 175, 180, -1, + -1, -1, 50, 176, 66, 218, 67, 177, 180, -1, + 43, 70, -1, 44, 70, 186, -1, -1, 70, 179, + 180, -1, 7, -1, -1, 181, -1, 181, 182, -1, + 182, -1, 198, -1, -1, 184, -1, 184, 185, -1, + 185, -1, 198, -1, -1, 187, -1, 187, 188, -1, + 188, -1, 198, -1, -1, 189, 60, -1, 70, 191, + -1, 191, 63, 193, -1, 193, -1, 7, 66, 7, + 67, -1, 7, 66, 110, 67, -1, 114, -1, 15, + 194, 114, -1, 15, 114, -1, 194, 15, 114, -1, + 194, 114, -1, 192, -1, 15, 194, 192, -1, 15, + 192, -1, 194, 15, 192, -1, 194, 192, -1, 32, + -1, 33, -1, 34, -1, 103, 7, 139, -1, 103, + 110, 139, -1, 71, -1, 72, -1, 68, -1, 73, + -1, 74, -1, 75, -1, 69, -1, 76, -1, 77, + -1, 78, -1, 59, -1, 61, -1, 62, -1, 71, + 59, -1, 72, 59, -1, 68, 59, -1, 73, 59, + -1, 74, 59, -1, 75, 59, -1, 69, 59, -1, + 76, 59, -1, 77, 59, -1, 78, 59, -1, 59, + 59, -1, 61, 59, -1, 62, 59, -1, 61, 61, + -1, 62, 62, -1, 61, 61, 59, -1, 62, 62, + 59, -1, 69, 69, -1, 76, 76, -1, 71, 71, + -1, 72, 72, -1, 63, -1, 72, 62, 68, -1, + 72, 62, -1, 66, 67, -1, 64, 65, -1, -1, + 15, -1, 108, 133, -1, 133, -1, 196, 77, 133, + -1, 104, 108, 103, 139, 133, -1, 104, 108, -1, + 108, 140, 133, -1, 108, 104, 139, 133, -1, 108, + 35, 195, -1, 35, 195, -1, 104, 108, 103, 139, + 35, 195, -1, 108, 140, 35, 195, -1, 108, 104, + 139, 35, 195, -1, 197, 132, 189, -1, 197, 205, + 60, 189, -1, 197, 205, 63, 201, 60, 189, -1, + 207, 210, 60, 189, -1, 40, 114, 60, 189, -1, + 40, 39, 114, 60, 189, -1, 39, 7, 57, -1, + 153, 60, 189, -1, -1, -1, 153, 57, 199, 58, + 200, 60, 189, -1, 202, -1, 201, 63, 202, -1, + 129, -1, -1, 7, 70, 203, 98, -1, -1, 70, + 204, 98, -1, -1, -1, 70, 206, 98, -1, 27, + 209, -1, -1, 63, -1, 7, 57, 211, 208, 58, + -1, 57, 211, 208, 58, -1, -1, 7, -1, -1, + 212, -1, 211, 63, 212, -1, 7, -1, -1, 7, + 59, 213, 100, -1, -1, 7, 7, 215, 216, -1, + -1, 51, 7, 216, -1, 52, 7, 216, -1, 56, + 7, 216, -1, 53, 7, 216, -1, 54, 7, 216, + -1, 55, 7, 216, -1, -1, 7, 217, -1, -1, + 7, 218, -1 }; -short yysindex[] = { 0, - 70, -206, -111, 0, 0, 0, 0, 0, 0, 0, - 0, -220, 41, 10, 0, 0, 0, 67, 912, -96, - 152, 124, 91, 559, -81, 98, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, -54, 0, 0, 0, 0, -14, - -3, 59, 354, 0, 0, 201, 61, 233, -54, 0, - 0, 266, 0, 0, 61, 1186, 329, 0, 0, 206, - 245, 0, 0, 0, 328, 0, 0, -83, 0, -54, - 0, 0, 70, 287, 0, 348, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 295, 1186, 0, 0, - 0, 438, 0, -66, 0, 354, -66, 0, 0, 303, - 0, 0, 384, 406, 411, 457, 468, 480, 0, 0, - -42, 434, 481, 0, 0, 0, 0, 0, 0, 1064, - 265, 265, 291, 292, 306, 0, 506, 515, 0, 0, - 0, 0, 353, 0, 0, 0, -71, 315, 467, 337, - -48, 0, 0, 276, 1230, 0, 374, 0, 0, 0, - 1098, 0, 0, 0, -26, 0, 0, 1064, 0, 436, - 119, 375, 377, 568, 575, 545, 292, 604, 306, 607, - 0, 1064, 1064, 0, 0, -30, 520, 389, 0, 0, - 596, 393, 394, 0, 570, 624, 600, 177, 355, 379, - 605, 606, 609, 22, 612, 613, 986, 1229, 0, 572, - -81, 635, 13, 467, 349, 349, 0, 363, 0, -36, - 0, 201, -53, 440, 1229, 441, 0, 0, 0, 0, - 443, 1229, 0, 0, 204, 0, 649, 0, 0, 0, - 463, 0, 0, 0, 0, 0, 0, 1064, 0, 0, - 1064, 0, 0, 0, 0, 0, 0, 389, 664, 665, - 0, 0, 0, 702, 0, 708, 0, 0, 0, 0, - 0, 0, 0, 0, 626, 0, 0, 0, 0, 0, - 0, 0, 0, 285, 285, 0, 667, 0, 0, 0, - 0, 0, 349, 0, 0, 285, -201, 467, 0, 0, - 0, 0, 285, 0, 599, 724, 0, 743, 742, 494, - 0, 277, 1119, 0, 724, 0, -21, 0, 764, 1064, - 1064, 746, 1064, 1064, 0, 0, 0, 719, 0, 0, - 665, 0, 389, 693, 0, 0, 0, 0, 0, 0, - 724, 0, 467, 0, 0, -38, 0, 0, 349, 784, - 0, 0, 0, 277, -22, 178, 0, 1229, 0, 724, - 798, 29, 0, 407, 0, 458, 0, 724, 601, 617, - 622, 625, 646, 647, 0, 0, 0, 0, 0, 0, - 0, 0, 786, 762, 0, 0, 0, 724, 0, 467, - 0, 874, 881, 0, 0, 0, 65, 0, 0, 277, - 0, 0, 0, 0, 385, 0, 0, 0, 0, -21, - 764, 764, 764, 764, 764, 764, 1064, 0, 0, 0, - 0, 0, -81, 657, 0, 861, 0, 0, 894, 0, - 0, 0, 0, 0, 724, 0, 0, 0, 0, 0, - 0, 0, 0, 724, 916, 0, 913, 948, 375, 0, - 0, 0, 0, 889, 0, 933, 0, -81, 1229, 26, - 0, 0, 0, 0, 0, 0, 991, 0, 799, 0, - 0, 0, 0, 1015, 0, 936, 1004, 0, 0, 0, + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const yytype_uint16 yyrline[] = +{ + 0, 807, 807, 808, 811, 813, 814, 815, 816, 819, + 820, 824, 825, 823, 832, 833, 832, 840, 843, 848, + 851, 852, 855, 855, 864, 865, 868, 880, 893, 902, + 905, 911, 912, 913, 914, 915, 918, 921, 922, 925, + 926, 929, 930, 931, 932, 935, 936, 939, 940, 943, + 944, 945, 948, 950, 953, 954, 955, 956, 957, 958, + 959, 960, 961, 964, 970, 971, 977, 978, 981, 982, + 986, 988, 992, 993, 994, 999, 1000, 1006, 1007, 1010, + 1011, 1014, 1015, 1021, 1024, 1027, 1030, 1029, 1033, 1038, + 1036, 1044, 1045, 1048, 1050, 1050, 1055, 1055, 1060, 1061, + 1064, 1065, 1067, 1067, 1072, 1075, 1078, 1090, 1091, 1093, + 1093, 1096, 1096, 1102, 1102, 1104, 1104, 1109, 1110, 1113, + 1114, 1117, 1118, 1125, 1126, 1129, 1130, 1134, 1135, 1138, + 1139, 1140, 1143, 1143, 1151, 1150, 1156, 1158, 1160, 1162, + 1166, 1170, 1171, 1172, 1173, 1174, 1178, 1183, 1191, 1195, + 1200, 1201, 1205, 1208, 1209, 1212, 1215, 1216, 1220, 1220, + 1225, 1226, 1229, 1230, 1233, 1234, 1238, 1239, 1243, 1243, + 1245, 1245, 1247, 1255, 1258, 1255, 1262, 1265, 1262, 1269, + 1271, 1269, 1276, 1277, 1276, 1282, 1283, 1282, 1290, 1292, + 1293, 1293, 1303, 1310, 1311, 1314, 1315, 1318, 1321, 1322, + 1325, 1326, 1330, 1333, 1334, 1337, 1338, 1341, 1344, 1345, + 1348, 1351, 1352, 1355, 1357, 1361, 1362, 1363, 1364, 1365, + 1366, 1367, 1368, 1369, 1370, 1373, 1374, 1375, 1378, 1379, + 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, + 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, + 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, + 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1422, + 1423, 1426, 1429, 1436, 1443, 1451, 1453, 1457, 1462, 1464, + 1466, 1469, 1471, 1477, 1478, 1480, 1483, 1485, 1487, 1489, + 1492, 1495, 1498, 1494, 1503, 1504, 1507, 1508, 1508, 1510, + 1510, 1514, 1515, 1515, 1520, 1525, 1526, 1529, 1536, 1540, + 1541, 1544, 1545, 1546, 1549, 1550, 1550, 1555, 1554, 1591, + 1592, 1593, 1594, 1595, 1596, 1597, 1600, 1601, 1604, 1605 }; -short yyrindex[] = { 0, - 330, 941, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 199, 943, 0, 0, 0, 0, 0, 373, 0, - 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 76, 0, 0, 327, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 40, 0, 0, 71, 0, - 0, 0, 0, 0, 0, 940, 0, 0, 0, 31, - 0, 0, 0, 0, 78, 0, 0, 0, 0, 82, - 0, 0, -90, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 953, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 594, - 0, 0, 0, 1062, 1068, 0, 0, 0, 0, 0, - 0, 0, 113, 0, 0, 1032, 0, 0, 1140, 0, - 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, - 199, 0, 0, 0, 0, 0, 0, 602, 0, 0, - 504, 1065, 0, 0, 0, 0, 1062, 0, 1068, 0, - 0, 911, 934, 0, 0, 516, 316, 33, 0, 0, - 548, 618, 620, 0, 0, 0, 663, 1018, 1160, 1209, - 1364, 1366, 1386, 1388, 1391, 1393, 0, 4, 0, 0, - 0, 0, 1396, 1140, -18, -18, 0, 37, 0, 0, - 0, 168, 80, 0, 191, 0, 0, 0, 0, 0, - 0, 187, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 942, 0, 0, - 988, 0, 0, 0, 0, 0, 0, 33, 49, 998, - 0, 0, 0, 1398, 0, 1418, 0, 0, 0, 0, - 0, 0, 0, 0, 1420, 0, 0, 0, 0, 0, - 0, 0, 0, 1423, 1423, 0, 0, 0, 0, 0, - 0, 0, -29, 0, 0, 360, 0, 1140, 0, 0, - 0, 0, 37, 0, 0, 478, 0, 0, -37, 1084, - 0, -27, 199, 0, 527, 0, 0, 0, 1085, 934, - 934, 0, 934, 934, 0, 0, 0, 0, 0, 0, - 998, 0, 1002, 0, 0, 0, 0, 0, 0, 0, - 571, 0, 1140, 0, 0, 0, 0, 0, 298, 408, - 0, 0, 0, 0, -23, 64, 0, 9, 0, 648, - 477, 0, 0, 510, 0, 0, 0, 697, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 741, 0, 1140, - 0, 0, 238, 0, 0, 0, 0, 0, 0, -34, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1085, 1085, 1085, 1085, 1085, 1085, 934, 0, 0, 0, - 0, 0, 0, -2, 0, 0, 0, 0, -16, 0, - 0, 0, 0, 0, 818, 0, 0, 0, 0, 0, - 0, 0, 0, 867, 0, 0, 350, 0, 58, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +#endif + +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE +/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ +static const char *const yytname[] = +{ + "$end", "error", "$undefined", "CHAR_VAL", "INT_VAL", "DOUBLE_VAL", + "STRING", "IDENTIFIER", "FRIEND", "TYPEDEF", "AUTO", "REGISTER", + "STATIC", "EXTERN", "INLINE", "VIRTUAL", "CONST", "VOLATILE", "CHAR", + "SHORT", "INT", "LONG", "SIGNED", "UNSIGNED", "FLOAT", "DOUBLE", "VOID", + "ENUM", "CLASS", "STRUCT", "UNION", "ASM", "PRIVATE", "PROTECTED", + "PUBLIC", "OPERATOR", "DBL_COLON", "TRIPLE_DOT", "TEMPLATE", "NAMESPACE", + "USING", "MUTABLE", "THROW", "SIGNALS", "SLOTS", "Q_OBJECT", + "Q_PROPERTY", "Q_OVERRIDE", "Q_CLASSINFO", "Q_ENUMS", "Q_SETS", "READ", + "WRITE", "STORED", "DESIGNABLE", "SCRIPTABLE", "RESET", "'{'", "'}'", + "'='", "';'", "'<'", "'>'", "','", "'['", "']'", "'('", "')'", "'*'", + "'&'", "':'", "'+'", "'-'", "'/'", "'%'", "'^'", "'|'", "'~'", "'!'", + "$accept", "declaration_seq", "declaration", "namespace_def", + "named_namespace_def", "$@1", "$@2", "unnamed_namespace_def", "$@3", + "$@4", "namespace_body", "namespace_alias_def", "using_directive", + "using_declaration", "class_def", "$@5", "class_name", + "template_class_name", "template_args", "const_expression", + "def_argument", "enumerator_expression", "decl_specifier", + "decl_specifiers", "decl_specs_opt", "decl_specs", + "storage_class_specifier", "fct_specifier", "type_specifier", + "type_name", "simple_type_names", "simple_type_name", "template_spec", + "opt_template_spec", "class_key", "complete_class_name", + "qualified_class_name", "elaborated_type_specifier", + "argument_declaration_list", "arg_declaration_list_opt", + "opt_exception_argument", "triple_dot_opt", "arg_declaration_list", + "argument_declaration", "$@6", "$@7", "abstract_decl_opt", + "abstract_decl", "$@8", "$@9", "declarator", "$@10", "dname", "fct_decl", + "fct_name", "$@11", "$@12", "array_decls", "$@13", "$@14", + "ptr_operators_opt", "ptr_operators", "ptr_operator", + "cv_qualifier_list_opt", "cv_qualifier_list", "cv_qualifier", + "fct_body_or_semicolon", "fct_body", "$@15", "class_specifier", "$@16", + "whatever", "class_head", "full_class_head", "nested_class_head", + "exception_spec_opt", "exception_spec", "ctor_initializer_opt", + "ctor_initializer", "mem_initializer_list", "mem_initializer", "$@17", + "opt_base_spec", "opt_obj_member_list", "obj_member_list", + "qt_access_specifier", "obj_member_area", "$@18", "$@19", "$@20", "$@21", + "$@22", "$@23", "$@24", "$@25", "$@26", "$@27", "$@28", "$@29", + "slot_area", "$@30", "opt_property_candidates", + "property_candidate_declarations", "property_candidate_declaration", + "opt_signal_declarations", "signal_declarations", "signal_declaration", + "opt_slot_declarations", "slot_declarations", "slot_declaration", + "opt_semicolons", "base_spec", "base_list", "qt_macro_name", + "base_specifier", "access_specifier", "operator_name", "opt_virtual", + "type_and_name", "signal_or_slot", "$@31", "$@32", + "member_declarator_list", "member_declarator", "$@33", "$@34", + "opt_bitfield", "$@35", "enum_specifier", "opt_komma", "enum_tail", + "opt_identifier", "enum_list", "enumerator", "$@36", "property", "$@37", + "prop_statements", "qt_enums", "qt_sets", 0 }; -short yygindex[] = { 1152, - 347, 0, 1150, 930, 0, 0, 435, 1056, 449, 283, - -135, 0, 57, -11, -25, 122, 0, 0, 0, 0, - 0, 765, 810, -294, 0, -159, 0, 892, 0, -10, - -44, -156, 1177, 1182, 830, 244, 1039, 301, 840, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1114, 0, - 0, 0, 0, 0, 1134, 231, 752, 0, 1207, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 768, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 780, 0, 0, 0, 1142, - 0, 0, 0, 0, 0, 0, 1109, -186, 0, 0, - 0, 0, 0, 0, 1067, 0, 0, 1063, 0, 0, - 0, 0, 994, -82, 0, 1078, 0, 999, 274, -170, - 0, 0, 0, 0, 0, 0, 0, 849, 0, 0, - 0, 0, 931, 1005, 974, 0, 856, 0, +#endif + +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const yytype_uint16 yytoknum[] = +{ + 0, 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, 123, 125, 61, + 59, 60, 62, 44, 91, 93, 40, 41, 42, 38, + 58, 43, 45, 47, 37, 94, 124, 126, 33 }; -#define YYTABLESIZE 1510 -short yytable[] = { 68, - 20, 226, 218, 77, 63, 225, 90, 228, 123, 90, - 123, 123, 123, 90, 123, 149, 90, 84, 372, 122, - 84, 122, 122, 122, 87, 122, 90, 87, 123, 123, - 266, 123, 239, 90, 16, 235, 373, 89, 409, 122, - 122, 37, 122, 37, 37, 37, 36, 37, 36, 36, - 36, 198, 36, 299, 13, 115, 149, 177, 149, 223, - 267, 123, 119, 135, 37, 405, 305, 218, 372, 36, - 73, 18, 122, 194, 23, 47, 310, 23, 218, 23, - 23, 23, 290, 23, 480, 218, 479, 353, 135, 23, - 89, 138, 313, 123, 37, 177, 238, 23, 23, 36, - 23, 25, 226, 195, 91, 437, 225, 91, 67, 257, - 67, 67, 67, 23, 67, 23, 308, 23, 308, 68, - 149, 68, 68, 68, 91, 68, 28, 159, 67, 67, - 23, 67, 27, 23, 23, 222, 209, 355, 159, 68, - 68, 55, 68, 386, 387, 291, 389, 390, 478, 15, - 23, 218, 106, 23, 23, 411, 106, 310, 242, 236, - 237, 67, 23, 50, 52, 50, 50, 50, 133, 50, - 106, 106, 68, 313, 476, 257, 243, 80, 16, 66, - 308, 17, 399, 50, 50, 117, 50, 368, 90, 197, - 313, 21, 21, 67, 80, 297, 218, 323, 23, 403, - 209, 21, 159, 218, 68, 71, 67, 237, 67, 71, - 56, 218, 66, 59, 281, 226, 50, 237, 146, 225, - 70, 231, 223, 67, 223, 23, 23, 76, 36, 431, - 274, 123, 36, 90, 274, 75, 75, 280, 408, 371, - 453, 67, 122, 218, 221, 112, 77, 327, 274, 274, - 400, 78, 308, 77, 147, 148, 90, 78, 149, 123, - 73, 123, 326, 90, 37, 73, 123, 84, 411, 36, - 122, 66, 122, 295, 87, 37, 37, 37, 37, 37, - 37, 37, 37, 37, 37, 37, 37, 37, 233, 408, - 23, 91, 37, 37, 37, 37, 152, 116, 152, 36, - 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, - 23, 236, 218, 226, 226, 323, 364, 225, 225, 79, - 23, 66, 226, 413, 91, 116, 225, 95, 23, 23, - 23, 67, 67, 67, 67, 67, 67, 67, 67, 67, - 67, 67, 68, 68, 68, 68, 68, 68, 68, 68, - 68, 68, 68, 72, 91, 122, 122, 72, 122, 67, - 152, 67, 2, 3, 145, 23, 145, 363, 145, 111, - 68, 116, 68, 23, 23, 23, 23, 23, 23, 23, - 23, 23, 23, 23, 145, 145, 50, 50, 50, 50, - 50, 50, 50, 50, 50, 50, 50, 283, 74, 117, - 226, 23, 23, 117, 225, 57, 58, 455, 155, 122, - 155, 121, 73, 194, 50, 282, 50, 117, 117, 129, - 122, 97, 226, 286, 323, 442, 225, 139, 71, 71, - 71, 71, 71, 71, 71, 71, 71, 71, 71, 284, - 285, 140, 455, 195, 226, 141, 227, 36, 225, 145, - 142, 36, 274, 273, 275, 276, 71, 23, 36, 36, - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, - 36, 36, 155, 310, 151, 417, 36, 76, 36, 36, - 63, 63, 36, 36, 36, 36, 36, 36, 36, 36, - 36, 36, 36, 36, 36, 338, 143, 417, 152, 216, - 36, 420, 36, 212, 208, 80, 206, 144, 207, 209, - 204, 210, 309, 211, 104, 113, 419, 325, 104, 145, - 104, 152, 118, 317, 106, 183, 202, 201, 203, 114, - 82, 83, 84, 152, 67, 104, 223, 154, 155, 30, - 31, 32, 33, 34, 35, 36, 37, 300, 134, 310, - 186, 137, 187, 295, 369, 107, 106, 205, 122, 107, - 213, 241, 300, 191, 224, 367, 189, 104, 295, 392, - 393, 351, 192, 107, 107, 200, 72, 72, 72, 72, - 72, 72, 72, 72, 72, 72, 72, 239, 251, 354, - 214, 239, 215, 122, 348, 349, 62, 220, 60, 370, - 61, 378, 289, 289, 72, 239, 239, 367, 249, 412, - 155, 21, 21, 356, 80, 250, 63, 418, 300, 301, - 117, 21, 81, 398, 154, 155, 30, 31, 32, 33, - 34, 35, 36, 37, 232, 246, 436, 248, 401, 82, - 83, 84, 268, 67, 253, 155, 443, 255, 117, 269, - 412, 282, 282, 367, 64, 64, 272, 240, 418, 241, - 279, 240, 277, 241, 278, 287, 288, 347, 36, 289, - 464, 465, 292, 293, 466, 240, 240, 241, 241, 36, - 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, - 36, 36, 445, 298, 296, 286, 286, 36, 132, 36, - 312, 314, 231, 223, 484, 454, 231, 328, 343, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 197, 268, - 231, 231, 332, 357, 342, 350, 198, 268, 154, 155, - 30, 31, 32, 33, 34, 35, 36, 37, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, - 289, 289, 345, 289, 289, 289, 289, 289, 346, 289, - 289, 289, 283, 283, 289, 289, 289, 289, 289, 289, - 289, 289, 358, 359, 361, 360, 388, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 282, 391, 282, 282, 282, 282, 282, 397, 282, 282, - 282, 285, 285, 282, 282, 282, 282, 282, 282, 282, - 282, 286, 286, 286, 286, 286, 286, 286, 286, 286, - 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, - 286, 286, 286, 286, 286, 414, 286, 286, 286, 286, - 286, 421, 286, 286, 286, 287, 287, 286, 286, 286, - 286, 286, 286, 286, 286, 63, 63, 422, 428, 197, - 197, 197, 423, 63, 63, 424, 429, 198, 198, 198, - 197, 197, 197, 197, 197, 197, 197, 197, 198, 198, - 198, 198, 198, 198, 198, 198, 425, 426, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 432, 283, 283, 283, 283, 283, 433, 283, - 283, 283, 284, 284, 283, 283, 283, 283, 283, 283, - 283, 283, 458, 461, 463, 467, 468, 285, 285, 285, - 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, - 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, - 285, 472, 285, 285, 285, 285, 285, 469, 285, 285, - 285, 292, 292, 285, 285, 285, 285, 285, 285, 285, - 285, 287, 287, 287, 287, 287, 287, 287, 287, 287, - 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, - 287, 287, 287, 287, 287, 473, 287, 287, 287, 287, - 287, 485, 287, 287, 287, 202, 268, 287, 287, 287, - 287, 287, 287, 287, 287, 154, 155, 30, 31, 32, - 33, 34, 35, 36, 37, 488, 487, 235, 192, 268, - 489, 235, 490, 13, 161, 10, 203, 268, 379, 380, - 381, 382, 383, 384, 404, 235, 235, 162, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 325, 284, 284, 284, 284, 284, 327, 284, - 284, 284, 193, 268, 284, 284, 284, 284, 284, 284, - 284, 284, 304, 308, 80, 318, 305, 292, 292, 292, - 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, - 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, - 292, 1, 292, 292, 292, 292, 292, 269, 292, 292, - 292, 19, 311, 292, 292, 292, 292, 292, 292, 292, - 292, 136, 29, 407, 439, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 45, 46, 63, 63, 352, 49, 202, 202, 202, 229, - 50, 415, 230, 229, 410, 120, 96, 202, 202, 202, - 202, 202, 202, 202, 202, 63, 63, 229, 229, 192, - 192, 192, 483, 63, 63, 51, 470, 203, 203, 203, - 192, 192, 192, 192, 192, 192, 192, 192, 203, 203, - 203, 203, 203, 203, 203, 203, 294, 475, 230, 130, - 185, 254, 230, 252, 336, 240, 335, 38, 39, 40, - 41, 42, 43, 44, 45, 46, 230, 230, 446, 63, - 63, 394, 341, 193, 193, 193, 447, 448, 449, 450, - 451, 452, 0, 0, 193, 193, 193, 193, 193, 193, - 193, 193, 45, 45, 45, 45, 45, 45, 45, 45, - 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, - 45, 45, 45, 45, 45, 45, 396, 0, 0, 0, - 0, 45, 0, 45, 153, 154, 155, 30, 31, 32, - 33, 34, 156, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 157, 0, 0, 158, 0, 0, - 0, 0, 159, 67, 0, 18, 160, 161, 66, 154, - 155, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 234, 66, - 0, 158, 0, 0, 0, 0, 0, 67, 0, 18, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 234, - 36, 0, 158, 232, 0, 233, 0, 232, 67, 233, - 18, 36, 36, 36, 36, 36, 36, 36, 36, 36, - 0, 232, 232, 233, 233, 234, 0, 236, 0, 234, - 237, 236, 238, 0, 237, 106, 238, 255, 0, 106, - 0, 255, 0, 234, 234, 236, 236, 0, 237, 237, - 238, 238, 0, 106, 106, 255, 255, 256, 0, 265, - 0, 256, 116, 265, 0, 0, 116, 0, 0, 0, - 0, 82, 83, 84, 0, 256, 256, 265, 265, 0, - 116, 116, 98, 99, 100, 101, 102, 103, 104, 105, - 154, 155, 30, 31, 32, 33, 34, 35, 36, 37, - 0, 38, 39, 40, 41, 42, 43, 44, 45, 46, +# endif + +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const yytype_uint8 yyr1[] = +{ + 0, 79, 80, 80, 81, 81, 81, 81, 81, 82, + 82, 84, 85, 83, 87, 88, 86, 89, 90, 91, + 92, 92, 94, 93, 95, 95, 96, 97, 98, 99, + 100, 101, 101, 101, 101, 101, 102, 103, 103, 104, + 104, 105, 105, 105, 105, 106, 106, 107, 107, 108, + 108, 108, 109, 109, 110, 110, 110, 110, 110, 110, + 110, 110, 110, 111, 112, 112, 113, 113, 114, 114, + 115, 115, 116, 116, 116, 117, 117, 118, 118, 119, + 119, 120, 120, 121, 121, 122, 123, 122, 122, 124, + 122, 125, 125, 126, 127, 126, 128, 126, 126, 126, + 129, 129, 130, 129, 129, 131, 132, 133, 133, 134, + 133, 135, 133, 137, 136, 138, 136, 139, 139, 140, + 140, 141, 141, 142, 142, 143, 143, 144, 144, 145, + 145, 145, 147, 146, 149, 148, 148, 148, 148, 148, + 148, 150, 150, 150, 150, 150, 151, 151, 152, 153, + 154, 154, 155, 156, 156, 157, 158, 158, 160, 159, + 161, 161, 162, 162, 163, 163, 164, 164, 166, 165, + 167, 165, 165, 168, 169, 165, 170, 171, 165, 172, + 173, 165, 174, 175, 165, 176, 177, 165, 178, 178, + 179, 178, 178, 180, 180, 181, 181, 182, 183, 183, + 184, 184, 185, 186, 186, 187, 187, 188, 189, 189, + 190, 191, 191, 192, 192, 193, 193, 193, 193, 193, + 193, 193, 193, 193, 193, 194, 194, 194, 195, 195, + 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, + 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, + 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, + 195, 195, 195, 195, 195, 195, 195, 195, 195, 196, + 196, 197, 197, 197, 197, 197, 197, 197, 197, 197, + 197, 197, 197, 198, 198, 198, 198, 198, 198, 198, + 198, 199, 200, 198, 201, 201, 202, 203, 202, 204, + 202, 205, 206, 205, 207, 208, 208, 209, 209, 210, + 210, 211, 211, 211, 212, 213, 212, 215, 214, 216, + 216, 216, 216, 216, 216, 216, 217, 217, 218, 218 }; -short yycheck[] = { 25, - 12, 38, 159, 41, 58, 42, 41, 164, 38, 44, - 40, 41, 42, 41, 44, 58, 44, 41, 40, 38, - 44, 40, 41, 42, 41, 44, 61, 44, 58, 59, - 61, 61, 59, 61, 125, 171, 58, 63, 61, 58, - 59, 38, 61, 40, 41, 42, 38, 44, 40, 41, - 42, 123, 44, 224, 261, 81, 59, 140, 61, 261, - 91, 91, 88, 59, 61, 360, 226, 224, 40, 61, - 60, 292, 91, 61, 44, 19, 44, 38, 235, 40, - 41, 42, 61, 44, 59, 242, 61, 289, 114, 59, - 116, 117, 44, 123, 91, 178, 123, 58, 59, 91, - 61, 61, 38, 91, 41, 41, 42, 44, 38, 192, - 40, 41, 42, 38, 44, 40, 59, 42, 61, 38, - 123, 40, 41, 42, 61, 44, 60, 123, 58, 59, - 91, 61, 123, 58, 59, 161, 59, 308, 59, 58, - 59, 20, 61, 330, 331, 124, 333, 334, 123, 261, - 38, 308, 40, 123, 42, 91, 44, 125, 40, 171, - 171, 91, 123, 38, 261, 40, 41, 42, 112, 44, - 58, 59, 91, 125, 469, 258, 58, 261, 290, 261, - 123, 293, 353, 58, 59, 269, 61, 323, 67, 261, - 235, 282, 283, 123, 261, 221, 353, 242, 123, 359, - 123, 292, 123, 360, 123, 38, 290, 218, 290, 42, - 59, 368, 261, 123, 38, 38, 91, 228, 261, 42, - 123, 165, 261, 290, 261, 58, 59, 41, 38, 400, - 40, 261, 42, 261, 44, 290, 290, 61, 261, 261, - 427, 290, 261, 400, 293, 40, 261, 44, 58, 59, - 289, 41, 289, 291, 297, 298, 291, 261, 261, 289, - 60, 291, 59, 291, 261, 60, 296, 291, 91, 261, - 289, 261, 291, 217, 291, 272, 273, 274, 275, 276, - 277, 278, 279, 280, 281, 282, 283, 284, 167, 261, - 123, 59, 289, 290, 291, 292, 59, 261, 61, 291, - 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, - 271, 323, 469, 38, 38, 360, 40, 42, 42, 261, - 290, 261, 38, 368, 261, 289, 42, 62, 289, 290, - 291, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 271, 261, 262, 263, 264, 265, 266, 267, 268, - 269, 270, 271, 38, 291, 58, 59, 42, 61, 289, - 123, 291, 293, 294, 38, 290, 40, 91, 42, 41, - 289, 44, 291, 261, 262, 263, 264, 265, 266, 267, - 268, 269, 270, 271, 58, 59, 261, 262, 263, 264, - 265, 266, 267, 268, 269, 270, 271, 43, 52, 40, - 38, 289, 290, 44, 42, 282, 283, 433, 59, 62, - 61, 125, 60, 61, 289, 61, 291, 58, 59, 125, - 123, 75, 38, 45, 469, 41, 42, 125, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 61, - 62, 58, 468, 91, 38, 40, 164, 261, 42, 123, - 40, 261, 60, 61, 61, 62, 289, 290, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, - 284, 261, 123, 230, 41, 91, 290, 291, 292, 289, - 282, 283, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 282, 283, 284, 265, 40, 91, 261, 33, - 290, 44, 292, 37, 38, 261, 40, 40, 42, 43, - 44, 45, 230, 47, 38, 81, 59, 244, 42, 40, - 44, 41, 88, 241, 76, 261, 60, 61, 62, 81, - 286, 287, 288, 296, 290, 59, 261, 262, 263, 264, - 265, 266, 267, 268, 269, 270, 271, 44, 114, 306, - 260, 117, 261, 44, 324, 40, 108, 91, 261, 44, - 94, 126, 59, 58, 289, 322, 261, 91, 59, 339, - 340, 298, 58, 58, 59, 261, 261, 262, 263, 264, - 265, 266, 267, 268, 269, 270, 271, 40, 44, 307, - 124, 44, 126, 296, 294, 295, 38, 261, 40, 326, - 42, 328, 125, 126, 289, 58, 59, 364, 41, 366, - 261, 282, 283, 313, 261, 41, 58, 374, 270, 271, - 261, 292, 269, 350, 262, 263, 264, 265, 266, 267, - 268, 269, 270, 271, 261, 261, 406, 261, 356, 286, - 287, 288, 123, 290, 41, 296, 416, 41, 289, 261, - 407, 125, 126, 410, 282, 283, 61, 40, 415, 40, - 61, 44, 93, 44, 41, 61, 61, 42, 261, 61, - 440, 441, 61, 61, 444, 58, 59, 58, 59, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, - 283, 284, 419, 59, 123, 125, 126, 290, 261, 292, - 261, 261, 40, 261, 474, 432, 44, 59, 44, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 125, 126, - 58, 59, 260, 125, 61, 59, 125, 126, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, - 283, 284, 61, 286, 287, 288, 289, 290, 61, 292, - 293, 294, 125, 126, 297, 298, 299, 300, 301, 302, - 303, 304, 59, 41, 291, 44, 41, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, - 284, 93, 286, 287, 288, 289, 290, 125, 292, 293, - 294, 125, 126, 297, 298, 299, 300, 301, 302, 303, - 304, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 282, 283, 284, 58, 286, 287, 288, 289, - 290, 261, 292, 293, 294, 125, 126, 297, 298, 299, - 300, 301, 302, 303, 304, 282, 283, 261, 93, 286, - 287, 288, 261, 282, 283, 261, 125, 286, 287, 288, - 297, 298, 299, 300, 301, 302, 303, 304, 297, 298, - 299, 300, 301, 302, 303, 304, 261, 261, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, - 283, 284, 59, 286, 287, 288, 289, 290, 58, 292, - 293, 294, 125, 126, 297, 298, 299, 300, 301, 302, - 303, 304, 296, 93, 61, 40, 44, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, - 284, 93, 286, 287, 288, 289, 290, 40, 292, 293, - 294, 125, 126, 297, 298, 299, 300, 301, 302, 303, - 304, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, - 280, 281, 282, 283, 284, 93, 286, 287, 288, 289, - 290, 41, 292, 293, 294, 125, 126, 297, 298, 299, - 300, 301, 302, 303, 304, 262, 263, 264, 265, 266, - 267, 268, 269, 270, 271, 41, 258, 40, 125, 126, - 125, 44, 59, 123, 125, 123, 125, 126, 305, 306, - 307, 308, 309, 310, 291, 58, 59, 125, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, - 283, 284, 41, 286, 287, 288, 289, 290, 41, 292, - 293, 294, 125, 126, 297, 298, 299, 300, 301, 302, - 303, 304, 125, 59, 41, 41, 125, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, - 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, - 284, 0, 286, 287, 288, 289, 290, 126, 292, 293, - 294, 12, 233, 297, 298, 299, 300, 301, 302, 303, - 304, 116, 261, 364, 410, 264, 265, 266, 267, 268, - 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, - 279, 280, 282, 283, 303, 19, 286, 287, 288, 40, - 19, 372, 164, 44, 365, 92, 73, 297, 298, 299, - 300, 301, 302, 303, 304, 282, 283, 58, 59, 286, - 287, 288, 471, 282, 283, 19, 459, 286, 287, 288, - 297, 298, 299, 300, 301, 302, 303, 304, 297, 298, - 299, 300, 301, 302, 303, 304, 261, 468, 40, 108, - 142, 189, 44, 187, 261, 178, 258, 272, 273, 274, - 275, 276, 277, 278, 279, 280, 58, 59, 420, 282, - 283, 341, 268, 286, 287, 288, 421, 422, 423, 424, - 425, 426, -1, -1, 297, 298, 299, 300, 301, 302, - 303, 304, 261, 262, 263, 264, 265, 266, 267, 268, - 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, - 279, 280, 281, 282, 283, 284, 343, -1, -1, -1, - -1, 290, -1, 292, 261, 262, 263, 264, 265, 266, - 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, - 277, 278, 279, 280, 281, -1, -1, 284, -1, -1, - -1, -1, 289, 290, -1, 292, 293, 294, 261, 262, - 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, - 273, 274, 275, 276, 277, 278, 279, 280, 281, 261, - -1, 284, -1, -1, -1, -1, -1, 290, -1, 292, - 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, - 261, -1, 284, 40, -1, 40, -1, 44, 290, 44, - 292, 272, 273, 274, 275, 276, 277, 278, 279, 280, - -1, 58, 59, 58, 59, 40, -1, 40, -1, 44, - 40, 44, 40, -1, 44, 40, 44, 40, -1, 44, - -1, 44, -1, 58, 59, 58, 59, -1, 58, 59, - 58, 59, -1, 58, 59, 58, 59, 40, -1, 40, - -1, 44, 40, 44, -1, -1, 44, -1, -1, -1, - -1, 286, 287, 288, -1, 58, 59, 58, 59, -1, - 58, 59, 297, 298, 299, 300, 301, 302, 303, 304, - 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, - -1, 272, 273, 274, 275, 276, 277, 278, 279, 280, + +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const yytype_uint8 yyr2[] = +{ + 0, 2, 0, 2, 1, 1, 1, 1, 1, 1, + 1, 0, 0, 7, 0, 0, 6, 1, 5, 2, + 2, 2, 0, 3, 1, 1, 4, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 3, 0, 1, 1, + 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 4, 0, 1, 2, 2, 1, 2, + 3, 1, 2, 2, 2, 2, 3, 0, 1, 0, + 1, 0, 1, 3, 1, 2, 0, 5, 4, 0, + 7, 0, 1, 2, 0, 4, 0, 5, 1, 3, + 1, 2, 0, 5, 3, 1, 8, 1, 2, 0, + 4, 0, 5, 0, 4, 0, 5, 0, 1, 1, + 2, 2, 2, 0, 1, 1, 2, 1, 1, 1, + 1, 3, 0, 3, 0, 5, 1, 3, 3, 4, + 2, 1, 1, 1, 1, 1, 2, 3, 2, 3, + 0, 1, 4, 0, 1, 2, 1, 3, 0, 5, + 0, 1, 0, 1, 2, 1, 1, 1, 0, 3, + 0, 4, 1, 0, 0, 7, 0, 0, 7, 0, + 0, 9, 0, 0, 7, 0, 0, 7, 2, 3, + 0, 3, 1, 0, 1, 2, 1, 1, 0, 1, + 2, 1, 1, 0, 1, 2, 1, 1, 0, 2, + 2, 3, 1, 4, 4, 1, 3, 2, 3, 2, + 1, 3, 2, 3, 2, 1, 1, 1, 3, 3, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, + 2, 2, 2, 2, 1, 3, 2, 2, 2, 0, + 1, 2, 1, 3, 5, 2, 3, 4, 3, 2, + 6, 4, 5, 3, 4, 6, 4, 4, 5, 3, + 3, 0, 0, 7, 1, 3, 1, 0, 4, 0, + 3, 0, 0, 3, 2, 0, 1, 5, 4, 0, + 1, 0, 1, 3, 1, 0, 4, 0, 4, 0, + 3, 3, 3, 3, 3, 3, 0, 2, 0, 2 }; -#define YYFINAL 1 -#ifndef YYDEBUG -#define YYDEBUG 0 -#endif -#define YYMAXTOKEN 310 -#if YYDEBUG -char *yyname[] = { -"end-of-file",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -"'!'",0,0,0,"'%'","'&'",0,"'('","')'","'*'","'+'","','","'-'",0,"'/'",0,0,0,0,0, -0,0,0,0,0,"':'","';'","'<'","'='","'>'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,"'['",0,"']'","'^'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,"'{'","'|'","'}'","'~'",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"CHAR_VAL","INT_VAL", -"DOUBLE_VAL","STRING","IDENTIFIER","FRIEND","TYPEDEF","AUTO","REGISTER", -"STATIC","EXTERN","INLINE","VIRTUAL","CONST","VOLATILE","CHAR","SHORT","INT", -"LONG","SIGNED","UNSIGNED","FLOAT","DOUBLE","VOID","ENUM","CLASS","STRUCT", -"UNION","ASM","PRIVATE","PROTECTED","PUBLIC","OPERATOR","DBL_COLON", -"TRIPLE_DOT","TEMPLATE","NAMESPACE","USING","MUTABLE","THROW","SIGNALS","SLOTS", -"Q_OBJECT","Q_PROPERTY","Q_OVERRIDE","Q_CLASSINFO","Q_ENUMS","Q_SETS","READ", -"WRITE","STORED","DESIGNABLE","SCRIPTABLE","RESET", + +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ +static const yytype_uint16 yydefact[] = +{ + 2, 22, 1, 14, 0, 3, 5, 9, 10, 6, + 8, 7, 4, 64, 11, 0, 20, 21, 19, 0, + 65, 0, 0, 0, 136, 0, 0, 0, 15, 27, + 141, 41, 42, 43, 44, 45, 46, 47, 48, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 144, 145, + 143, 142, 140, 66, 67, 24, 71, 25, 146, 23, + 0, 0, 0, 0, 148, 161, 134, 24, 0, 0, + 68, 12, 2, 0, 27, 147, 0, 0, 137, 138, + 24, 0, 225, 226, 227, 215, 210, 220, 212, 0, + 162, 69, 18, 2, 22, 0, 63, 0, 70, 139, + 0, 217, 222, 0, 0, 0, 219, 224, 170, 167, + 172, 173, 176, 179, 182, 185, 0, 163, 168, 165, + 166, 0, 16, 26, 0, 0, 216, 221, 211, 218, + 223, 0, 0, 0, 0, 0, 0, 135, 164, 0, + 13, 213, 214, 198, 0, 0, 0, 326, 328, 192, + 0, 0, 190, 169, 24, 34, 35, 46, 0, 0, + 37, 0, 0, 39, 64, 31, 33, 32, 0, 51, + 53, 65, 0, 50, 49, 272, 0, 171, 199, 201, + 0, 301, 202, 309, 0, 0, 0, 0, 326, 0, + 328, 0, 188, 203, 193, 109, 113, 108, 73, 311, + 304, 74, 240, 241, 242, 264, 0, 0, 232, 236, + 230, 231, 233, 234, 235, 237, 238, 239, 0, 38, + 279, 0, 0, 0, 0, 40, 37, 0, 107, 37, + 123, 123, 117, 271, 0, 119, 52, 72, 160, 291, + 208, 200, 0, 37, 302, 208, 0, 310, 0, 317, + 174, 177, 0, 327, 183, 329, 186, 189, 204, 206, + 207, 191, 194, 196, 197, 28, 28, 111, 115, 311, + 314, 305, 312, 253, 254, 256, 255, 257, 268, 267, + 245, 249, 260, 243, 262, 244, 266, 263, 246, 247, + 248, 250, 261, 251, 252, 117, 117, 289, 0, 208, + 73, 117, 72, 278, 127, 128, 121, 124, 125, 122, + 0, 118, 37, 276, 120, 149, 0, 290, 273, 91, + 64, 0, 81, 78, 84, 28, 283, 208, 0, 208, + 319, 193, 193, 0, 193, 193, 205, 195, 110, 0, + 28, 28, 305, 315, 306, 0, 258, 259, 265, 228, + 229, 208, 287, 0, 126, 37, 277, 281, 292, 209, + 94, 0, 85, 92, 98, 37, 123, 82, 75, 37, + 303, 284, 105, 0, 299, 296, 100, 0, 294, 286, + 0, 0, 0, 0, 0, 0, 318, 175, 178, 180, + 184, 187, 114, 112, 0, 0, 30, 313, 308, 288, + 37, 274, 282, 0, 28, 0, 105, 86, 91, 96, + 93, 36, 153, 76, 83, 297, 0, 28, 102, 101, + 208, 0, 319, 319, 319, 319, 319, 319, 193, 116, + 307, 316, 280, 208, 0, 99, 29, 88, 28, 0, + 150, 154, 28, 104, 300, 28, 285, 295, 320, 321, + 323, 324, 325, 322, 181, 293, 95, 87, 89, 0, + 0, 155, 156, 0, 309, 151, 298, 0, 29, 97, + 158, 0, 37, 0, 103, 90, 28, 157, 0, 80, + 132, 0, 129, 106, 130, 0, 152, 0, 0, 159, + 133, 131 }; -char *yyrule[] = { -"$accept : declaration_seq", -"declaration_seq :", -"declaration_seq : declaration_seq declaration", -"declaration : class_def", -"declaration : namespace_def", -"declaration : namespace_alias_def", -"declaration : using_declaration", -"declaration : using_directive", -"namespace_def : named_namespace_def", -"namespace_def : unnamed_namespace_def", -"$$1 :", -"$$2 :", -"named_namespace_def : NAMESPACE IDENTIFIER $$1 '{' $$2 namespace_body '}'", -"$$3 :", -"$$4 :", -"unnamed_namespace_def : NAMESPACE $$3 '{' $$4 namespace_body '}'", -"namespace_body : declaration_seq", -"namespace_alias_def : NAMESPACE IDENTIFIER '=' complete_class_name ';'", -"using_directive : USING NAMESPACE", -"using_declaration : USING IDENTIFIER", -"using_declaration : USING DBL_COLON", -"$$5 :", -"class_def : $$5 class_specifier ';'", -"class_name : IDENTIFIER", -"class_name : template_class_name", -"template_class_name : IDENTIFIER '<' template_args '>'", -"template_args :", -"const_expression :", -"def_argument :", -"enumerator_expression :", -"decl_specifier : storage_class_specifier", -"decl_specifier : type_specifier", -"decl_specifier : fct_specifier", -"decl_specifier : FRIEND", -"decl_specifier : TYPEDEF", -"decl_specifiers : decl_specs_opt type_name decl_specs_opt", -"decl_specs_opt :", -"decl_specs_opt : decl_specs", -"decl_specs : decl_specifier", -"decl_specs : decl_specs decl_specifier", -"storage_class_specifier : AUTO", -"storage_class_specifier : REGISTER", -"storage_class_specifier : STATIC", -"storage_class_specifier : EXTERN", -"fct_specifier : INLINE", -"fct_specifier : VIRTUAL", -"type_specifier : CONST", -"type_specifier : VOLATILE", -"type_name : elaborated_type_specifier", -"type_name : complete_class_name", -"type_name : simple_type_names", -"simple_type_names : simple_type_names simple_type_name", -"simple_type_names : simple_type_name", -"simple_type_name : CHAR", -"simple_type_name : SHORT", -"simple_type_name : INT", -"simple_type_name : LONG", -"simple_type_name : SIGNED", -"simple_type_name : UNSIGNED", -"simple_type_name : FLOAT", -"simple_type_name : DOUBLE", -"simple_type_name : VOID", -"template_spec : TEMPLATE '<' template_args '>'", -"opt_template_spec :", -"opt_template_spec : template_spec", -"class_key : opt_template_spec CLASS", -"class_key : opt_template_spec STRUCT", -"complete_class_name : qualified_class_name", -"complete_class_name : DBL_COLON qualified_class_name", -"qualified_class_name : qualified_class_name DBL_COLON class_name", -"qualified_class_name : class_name", -"elaborated_type_specifier : class_key IDENTIFIER", -"elaborated_type_specifier : ENUM IDENTIFIER", -"elaborated_type_specifier : UNION IDENTIFIER", -"argument_declaration_list : arg_declaration_list_opt triple_dot_opt", -"argument_declaration_list : arg_declaration_list ',' TRIPLE_DOT", -"arg_declaration_list_opt :", -"arg_declaration_list_opt : arg_declaration_list", -"opt_exception_argument :", -"opt_exception_argument : argument_declaration", -"triple_dot_opt :", -"triple_dot_opt : TRIPLE_DOT", -"arg_declaration_list : arg_declaration_list ',' argument_declaration", -"arg_declaration_list : argument_declaration", -"argument_declaration : decl_specifiers abstract_decl_opt", -"$$6 :", -"argument_declaration : decl_specifiers abstract_decl_opt '=' $$6 def_argument", -"argument_declaration : decl_specifiers abstract_decl_opt dname abstract_decl_opt", -"$$7 :", -"argument_declaration : decl_specifiers abstract_decl_opt dname abstract_decl_opt '=' $$7 def_argument", -"abstract_decl_opt :", -"abstract_decl_opt : abstract_decl", -"abstract_decl : abstract_decl ptr_operator", -"$$8 :", -"abstract_decl : '[' $$8 const_expression ']'", -"$$9 :", -"abstract_decl : abstract_decl '[' $$9 const_expression ']'", -"abstract_decl : ptr_operator", -"abstract_decl : '(' abstract_decl ')'", -"declarator : dname", -"declarator : declarator ptr_operator", -"$$10 :", -"declarator : declarator '[' $$10 const_expression ']'", -"declarator : '(' declarator ')'", -"dname : IDENTIFIER", -"fct_decl : '(' argument_declaration_list ')' cv_qualifier_list_opt ctor_initializer_opt exception_spec_opt opt_identifier fct_body_or_semicolon", -"fct_name : IDENTIFIER", -"fct_name : IDENTIFIER array_decls", -"$$11 :", -"fct_name : IDENTIFIER '=' $$11 const_expression", -"$$12 :", -"fct_name : IDENTIFIER array_decls '=' $$12 const_expression", -"$$13 :", -"array_decls : '[' $$13 const_expression ']'", -"$$14 :", -"array_decls : array_decls '[' $$14 const_expression ']'", -"ptr_operators_opt :", -"ptr_operators_opt : ptr_operators", -"ptr_operators : ptr_operator", -"ptr_operators : ptr_operators ptr_operator", -"ptr_operator : '*' cv_qualifier_list_opt", -"ptr_operator : '&' cv_qualifier_list_opt", -"cv_qualifier_list_opt :", -"cv_qualifier_list_opt : cv_qualifier_list", -"cv_qualifier_list : cv_qualifier", -"cv_qualifier_list : cv_qualifier_list cv_qualifier", -"cv_qualifier : CONST", -"cv_qualifier : VOLATILE", -"fct_body_or_semicolon : ';'", -"fct_body_or_semicolon : fct_body", -"fct_body_or_semicolon : '=' INT_VAL ';'", -"$$15 :", -"fct_body : '{' $$15 '}'", -"$$16 :", -"class_specifier : full_class_head '{' $$16 opt_obj_member_list '}'", -"class_specifier : class_head", -"class_specifier : class_head '*' IDENTIFIER", -"class_specifier : class_head '&' IDENTIFIER", -"class_specifier : class_head '(' IDENTIFIER ')'", -"class_specifier : template_spec whatever", -"whatever : IDENTIFIER", -"whatever : simple_type_name", -"whatever : type_specifier", -"whatever : storage_class_specifier", -"whatever : fct_specifier", -"class_head : class_key qualified_class_name", -"class_head : class_key IDENTIFIER class_name", -"full_class_head : class_head opt_base_spec", -"nested_class_head : class_key qualified_class_name opt_base_spec", -"exception_spec_opt :", -"exception_spec_opt : exception_spec", -"exception_spec : THROW '(' opt_exception_argument ')'", -"ctor_initializer_opt :", -"ctor_initializer_opt : ctor_initializer", -"ctor_initializer : ':' mem_initializer_list", -"mem_initializer_list : mem_initializer", -"mem_initializer_list : mem_initializer ',' mem_initializer_list", -"$$17 :", -"mem_initializer : complete_class_name '(' $$17 const_expression ')'", -"opt_base_spec :", -"opt_base_spec : base_spec", -"opt_obj_member_list :", -"opt_obj_member_list : obj_member_list", -"obj_member_list : obj_member_list obj_member_area", -"obj_member_list : obj_member_area", -"qt_access_specifier : access_specifier", -"qt_access_specifier : SLOTS", -"$$18 :", -"obj_member_area : qt_access_specifier $$18 slot_area", -"$$19 :", -"obj_member_area : SIGNALS $$19 ':' opt_signal_declarations", -"obj_member_area : Q_OBJECT", -"$$20 :", -"$$21 :", -"obj_member_area : Q_PROPERTY $$20 '(' property ')' $$21 opt_property_candidates", -"$$22 :", -"$$23 :", -"obj_member_area : Q_OVERRIDE $$22 '(' property ')' $$23 opt_property_candidates", -"$$24 :", -"$$25 :", -"obj_member_area : Q_CLASSINFO $$24 '(' STRING ',' STRING ')' $$25 opt_property_candidates", -"$$26 :", -"$$27 :", -"obj_member_area : Q_ENUMS $$26 '(' qt_enums ')' $$27 opt_property_candidates", -"$$28 :", -"$$29 :", -"obj_member_area : Q_SETS $$28 '(' qt_sets ')' $$29 opt_property_candidates", -"slot_area : SIGNALS ':'", -"slot_area : SLOTS ':' opt_slot_declarations", -"$$30 :", -"slot_area : ':' $$30 opt_property_candidates", -"slot_area : IDENTIFIER", -"opt_property_candidates :", -"opt_property_candidates : property_candidate_declarations", -"property_candidate_declarations : property_candidate_declarations property_candidate_declaration", -"property_candidate_declarations : property_candidate_declaration", -"property_candidate_declaration : signal_or_slot", -"opt_signal_declarations :", -"opt_signal_declarations : signal_declarations", -"signal_declarations : signal_declarations signal_declaration", -"signal_declarations : signal_declaration", -"signal_declaration : signal_or_slot", -"opt_slot_declarations :", -"opt_slot_declarations : slot_declarations", -"slot_declarations : slot_declarations slot_declaration", -"slot_declarations : slot_declaration", -"slot_declaration : signal_or_slot", -"opt_semicolons :", -"opt_semicolons : opt_semicolons ';'", -"base_spec : ':' base_list", -"base_list : base_list ',' base_specifier", -"base_list : base_specifier", -"qt_macro_name : IDENTIFIER '(' IDENTIFIER ')'", -"qt_macro_name : IDENTIFIER '(' simple_type_name ')'", -"base_specifier : complete_class_name", -"base_specifier : VIRTUAL access_specifier complete_class_name", -"base_specifier : VIRTUAL complete_class_name", -"base_specifier : access_specifier VIRTUAL complete_class_name", -"base_specifier : access_specifier complete_class_name", -"base_specifier : qt_macro_name", -"base_specifier : VIRTUAL access_specifier qt_macro_name", -"base_specifier : VIRTUAL qt_macro_name", -"base_specifier : access_specifier VIRTUAL qt_macro_name", -"base_specifier : access_specifier qt_macro_name", -"access_specifier : PRIVATE", -"access_specifier : PROTECTED", -"access_specifier : PUBLIC", -"operator_name : decl_specs_opt IDENTIFIER ptr_operators_opt", -"operator_name : decl_specs_opt simple_type_name ptr_operators_opt", -"operator_name : '+'", -"operator_name : '-'", -"operator_name : '*'", -"operator_name : '/'", -"operator_name : '%'", -"operator_name : '^'", -"operator_name : '&'", -"operator_name : '|'", -"operator_name : '~'", -"operator_name : '!'", -"operator_name : '='", -"operator_name : '<'", -"operator_name : '>'", -"operator_name : '+' '='", -"operator_name : '-' '='", -"operator_name : '*' '='", -"operator_name : '/' '='", -"operator_name : '%' '='", -"operator_name : '^' '='", -"operator_name : '&' '='", -"operator_name : '|' '='", -"operator_name : '~' '='", -"operator_name : '!' '='", -"operator_name : '=' '='", -"operator_name : '<' '='", -"operator_name : '>' '='", -"operator_name : '<' '<'", -"operator_name : '>' '>'", -"operator_name : '<' '<' '='", -"operator_name : '>' '>' '='", -"operator_name : '&' '&'", -"operator_name : '|' '|'", -"operator_name : '+' '+'", -"operator_name : '-' '-'", -"operator_name : ','", -"operator_name : '-' '>' '*'", -"operator_name : '-' '>'", -"operator_name : '(' ')'", -"operator_name : '[' ']'", -"opt_virtual :", -"opt_virtual : VIRTUAL", -"type_and_name : type_name fct_name", -"type_and_name : fct_name", -"type_and_name : opt_virtual '~' fct_name", -"type_and_name : decl_specs type_name decl_specs_opt ptr_operators_opt fct_name", -"type_and_name : decl_specs type_name", -"type_and_name : type_name ptr_operators fct_name", -"type_and_name : type_name decl_specs ptr_operators_opt fct_name", -"type_and_name : type_name OPERATOR operator_name", -"type_and_name : OPERATOR operator_name", -"type_and_name : decl_specs type_name decl_specs_opt ptr_operators_opt OPERATOR operator_name", -"type_and_name : type_name ptr_operators OPERATOR operator_name", -"type_and_name : type_name decl_specs ptr_operators_opt OPERATOR operator_name", -"signal_or_slot : type_and_name fct_decl opt_semicolons", -"signal_or_slot : type_and_name opt_bitfield ';' opt_semicolons", -"signal_or_slot : type_and_name opt_bitfield ',' member_declarator_list ';' opt_semicolons", -"signal_or_slot : enum_specifier opt_identifier ';' opt_semicolons", -"signal_or_slot : USING complete_class_name ';' opt_semicolons", -"signal_or_slot : USING NAMESPACE complete_class_name ';' opt_semicolons", -"signal_or_slot : NAMESPACE IDENTIFIER '{'", -"signal_or_slot : nested_class_head ';' opt_semicolons", -"$$31 :", -"$$32 :", -"signal_or_slot : nested_class_head '{' $$31 '}' $$32 ';' opt_semicolons", -"member_declarator_list : member_declarator", -"member_declarator_list : member_declarator_list ',' member_declarator", -"member_declarator : declarator", -"$$33 :", -"member_declarator : IDENTIFIER ':' $$33 const_expression", -"$$34 :", -"member_declarator : ':' $$34 const_expression", -"opt_bitfield :", -"$$35 :", -"opt_bitfield : ':' $$35 const_expression", -"enum_specifier : ENUM enum_tail", -"opt_komma :", -"opt_komma : ','", -"enum_tail : IDENTIFIER '{' enum_list opt_komma '}'", -"enum_tail : '{' enum_list opt_komma '}'", -"opt_identifier :", -"opt_identifier : IDENTIFIER", -"enum_list :", -"enum_list : enumerator", -"enum_list : enum_list ',' enumerator", -"enumerator : IDENTIFIER", -"$$36 :", -"enumerator : IDENTIFIER '=' $$36 enumerator_expression", -"$$37 :", -"property : IDENTIFIER IDENTIFIER $$37 prop_statements", -"prop_statements :", -"prop_statements : READ IDENTIFIER prop_statements", -"prop_statements : WRITE IDENTIFIER prop_statements", -"prop_statements : RESET IDENTIFIER prop_statements", -"prop_statements : STORED IDENTIFIER prop_statements", -"prop_statements : DESIGNABLE IDENTIFIER prop_statements", -"prop_statements : SCRIPTABLE IDENTIFIER prop_statements", -"qt_enums :", -"qt_enums : IDENTIFIER qt_enums", -"qt_sets :", -"qt_sets : IDENTIFIER qt_sets", + +/* YYDEFGOTO[NTERM-NUM]. */ +static const yytype_int16 yydefgoto[] = +{ + -1, 94, 5, 6, 7, 27, 93, 8, 15, 72, + 95, 9, 10, 11, 12, 13, 56, 57, 73, 338, + 457, 431, 163, 319, 218, 164, 165, 166, 167, 168, + 169, 170, 171, 21, 172, 173, 70, 174, 321, 322, + 478, 368, 323, 324, 436, 468, 362, 363, 404, 438, + 375, 445, 376, 245, 175, 265, 340, 197, 266, 341, + 310, 311, 235, 306, 307, 308, 483, 484, 487, 23, + 90, 52, 24, 25, 176, 464, 465, 440, 441, 461, + 462, 476, 64, 116, 117, 118, 119, 139, 131, 132, + 331, 133, 332, 134, 428, 135, 334, 136, 335, 153, + 194, 261, 262, 263, 177, 178, 179, 257, 258, 259, + 317, 65, 86, 87, 88, 89, 220, 180, 181, 264, + 316, 403, 377, 378, 442, 417, 246, 325, 183, 345, + 200, 248, 271, 272, 396, 185, 330, 386, 189, 191 }; + +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -356 +static const yytype_int16 yypact[] = +{ + -356, 61, -356, 35, 83, -356, -356, -356, -356, -356, + -356, -356, -356, 12, 37, -9, -356, -356, -356, 21, + 469, 112, 100, 53, 118, 63, 36, 67, -356, -356, + -356, -356, -356, -356, -356, -356, -356, -356, -356, -356, + -356, -356, -356, -356, -356, -356, -356, -356, -356, -356, + -356, -356, -356, -356, -356, 9, -356, -356, 113, -356, + 153, 155, 207, 99, -356, -356, -356, 120, 231, 215, + 113, -356, -356, 218, -356, -356, 231, 209, -356, -356, + -22, 176, -356, -356, -356, -356, 244, -356, -356, 20, + 493, 113, -356, -356, -6, 247, -356, 253, -356, -356, + 489, -356, -356, 101, 99, 101, -356, -356, -356, -356, + -356, -356, -356, -356, -356, -356, 283, 493, -356, -356, + -356, 284, -356, -356, 276, 285, -356, -356, -356, -356, + -356, 281, 288, 289, 290, 292, 293, -356, -356, 23, + -356, -356, -356, 243, 364, 364, 366, 369, 372, -356, + 315, 316, -356, -356, 314, -356, -356, 306, 16, 380, + 156, 381, 87, -356, 385, -356, -356, -356, 277, 526, + -356, -356, 382, -356, -356, -356, 138, -356, 243, -356, + 337, 73, -356, 384, 409, 351, 352, 359, 369, 357, + 372, 358, -356, 243, 243, -356, -356, 46, 370, 419, + -356, -356, 379, 97, 164, -356, 374, 375, 388, 43, + -13, -21, 416, 418, 438, -31, 439, 440, 498, 451, + -356, 386, 36, 442, 434, -356, 287, 437, 91, 156, + 174, 174, 313, -356, 29, -356, -356, 68, -17, -356, + -356, -356, 494, 323, -356, -356, 214, -356, 443, -356, + -356, -356, 500, -356, -356, -356, -356, -356, 243, -356, + -356, -356, 243, -356, -356, -356, -356, -356, -356, 419, + 445, 465, -356, -356, -356, 470, -356, 471, -356, -356, + -356, -356, -356, -356, -356, -356, 432, -356, -356, -356, + -356, -356, -356, -356, -356, 137, 137, -356, 472, -356, + -356, 137, -356, -356, -356, -356, -356, 174, -356, -356, + 19, 137, 156, -356, -356, -356, 473, 474, -356, 135, + 410, 466, 516, 491, -356, -356, 474, -356, 22, -356, + 192, 243, 243, 468, 243, 243, -356, -356, -356, 490, + -356, -356, 465, -356, 419, 499, -356, -356, -356, -356, + -356, -356, 474, 25, -356, 156, -356, -356, -356, -356, + -356, 135, 10, 249, -356, 451, 174, -356, -356, 441, + -356, 474, 486, 8, -356, 280, -356, 256, -356, 474, + 551, 552, 553, 554, 555, 556, -356, -356, -356, -356, + -356, -356, -356, -356, 501, 506, -356, -356, -356, 474, + 156, -356, -356, 505, -356, 172, -356, -356, 135, -356, + -356, -356, 497, -356, -356, -356, 242, -356, -356, -356, + -356, 22, 192, 192, 192, 192, 192, 192, 243, -356, + -356, -356, -356, -356, 503, -356, -356, 510, -356, 36, + 528, -356, -356, -356, -356, -356, 474, -356, -356, -356, + -356, -356, -356, -356, -356, 474, -356, -356, -356, 507, + 508, -356, 512, 511, 384, -356, -356, 513, -356, -356, + -356, 36, 353, 117, -356, -356, -356, -356, 504, -356, + -356, 569, -356, -356, -356, 509, -356, 521, 520, -356, + -356, -356 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const yytype_int16 yypgoto[] = +{ + -356, 581, -356, -356, -356, -356, -356, -356, -356, -356, + 492, -356, -356, -356, -356, -356, 54, -356, 514, -260, + 114, -356, -133, -356, -223, -158, 563, 564, 566, -157, + -356, -16, 574, -356, -12, -26, -11, -356, -356, -356, + -356, -356, -356, -355, -356, -356, 181, 229, -356, -356, + 219, -356, 232, -356, -159, -356, -356, -356, -356, -356, + -180, 423, -216, -218, -356, 286, -356, -356, -356, -356, + -356, -356, -356, -356, -356, -356, -356, -356, -356, 124, + -356, -356, 360, -356, -356, -356, 479, -356, -356, -356, + -356, -356, -356, -356, -356, -356, -356, -356, -356, -356, + -356, -310, -356, 335, -356, -356, 421, -356, -356, 342, + -240, -356, -356, 132, 502, -41, -221, -356, -356, -131, + -356, -356, -356, 180, -356, -356, -356, -356, -356, 260, + -356, 139, 336, 263, -356, 459, -356, 47, 420, 422 +}; + +/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If + positive, shift that token. If negative, reduce the rule which + number is the opposite. If zero, do what YYDEFACT says. + If YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -276 +static const yytype_int16 yytable[] = +{ + 69, 22, 219, 301, 51, 326, 339, 226, 303, 233, + 232, 58, 182, 309, 414, 406, 67, 406, 314, 76, + 320, 387, 388, 198, 390, 391, 228, 80, 291, 372, + 149, 225, 228, 3, 4, 105, 228, 85, 285, 74, + 103, 286, 14, 67, 100, 292, 283, 182, 28, 120, + 19, 287, -17, 63, 355, 101, 68, 91, 284, 352, + 400, 2, 260, 106, 312, 370, 150, 151, 219, 407, + 74, 219, 68, 199, 373, 313, 120, 126, 85, 129, + 393, 394, 29, 318, 125, 219, 225, 371, 373, 379, + 16, 357, 374, 152, 67, 314, 26, 230, 231, 225, + 3, 4, 281, 364, -24, 267, 80, 55, 80, 75, + 268, 399, 282, 59, 81, 349, 350, 479, 454, 17, + 66, 353, 18, 68, 71, -24, 222, 260, -24, 74, + 98, 82, 83, 84, 402, 68, 223, 68, -24, 243, + 53, 54, 411, 244, 434, 364, 320, 410, 412, 76, + 195, 356, 227, 236, 219, 196, 274, 444, 275, 419, + 77, 238, 78, 365, 155, 156, 31, 32, 33, 34, + 35, 36, 37, 38, 480, -160, 481, 482, 459, 432, + 446, 74, 466, 80, 60, 467, 61, 62, 63, 410, + 304, 305, 364, 455, 401, 239, 298, 219, 240, 360, + 419, 361, 296, 230, 231, 230, 231, 219, 82, 83, + 84, 219, 68, 102, 79, 202, 485, 203, 204, 205, + 206, 107, 207, 276, 208, 209, 277, 210, 211, 212, + 213, 214, 215, 216, 217, 127, 409, 130, 67, 435, + 230, 231, 219, 380, 381, 382, 383, 384, 385, 320, + 154, 155, 156, 31, 32, 33, 34, 35, 157, 37, + 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 158, -64, -64, 159, 327, 92, 99, 328, 160, 68, + 96, 19, 161, 162, 228, 155, 156, 31, 32, 33, + 34, 35, 36, 37, 38, 155, 156, 31, 32, 33, + 34, 35, 36, 37, 38, 122, 418, 104, 227, 443, + 230, 231, 229, 409, 219, 123, 420, 230, 231, 421, + -269, 155, 156, 31, 32, 33, 34, 35, 36, 37, + 38, 155, 156, 31, 32, 33, 34, 35, 36, 37, + 38, 137, 140, 141, 418, 230, 231, -275, 230, 231, + -275, 143, 142, -275, 144, 145, 146, -275, 147, 148, + -77, 155, 156, 31, 32, 33, 34, 35, 36, 37, + 38, 184, 187, 195, -107, 74, 188, -107, 196, 190, + -107, 230, 231, -270, -107, 192, 193, 201, 221, 237, + -77, 247, 67, 155, 156, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 224, 460, 242, 159, 249, 67, 250, 251, + -79, 68, 252, 19, 254, 256, 270, 269, 39, 40, + 41, 42, 43, 44, 45, 46, 47, 224, 273, 278, + 159, 300, 279, 297, 302, 460, 68, 280, 19, 155, + 156, 31, 32, 33, 34, 35, 36, 37, 38, 155, + 156, 31, 32, 33, 34, 35, 36, 37, 38, 448, + 449, 450, 451, 452, 453, 288, 30, 289, 413, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 124, 290, 293, 294, + 348, 228, 299, 329, 343, 295, 333, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 82, 83, 84, 344, 346, + 347, 358, 351, 366, 359, 389, 108, 109, 110, 111, + 112, 113, 114, 115, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 367, 369, 392, 415, 398, 422, 423, + 424, 425, 426, 427, 430, 433, 429, 439, 456, 458, + 463, 486, 469, 488, 470, 471, 489, 472, 474, 490, + 491, 1, 475, 48, 49, 121, 50, 20, 97, 437, + 405, 234, 416, 354, 408, 477, 138, 337, 315, 241, + 336, 447, 395, 473, 186, 342, 128, 397, 253, 0, + 0, 0, 255 +}; + +static const yytype_int16 yycheck[] = +{ + 26, 13, 160, 226, 20, 245, 266, 164, 229, 168, + 168, 22, 143, 231, 369, 7, 7, 7, 234, 36, + 243, 331, 332, 7, 334, 335, 7, 7, 59, 7, + 7, 164, 7, 39, 40, 15, 7, 63, 59, 61, + 81, 62, 7, 7, 66, 76, 59, 178, 57, 90, + 38, 72, 58, 70, 35, 81, 36, 68, 71, 299, + 35, 0, 193, 89, 35, 325, 43, 44, 226, 59, + 61, 229, 36, 57, 66, 234, 117, 103, 104, 105, + 340, 341, 61, 242, 100, 243, 219, 327, 66, 329, + 7, 312, 70, 70, 7, 311, 59, 68, 69, 232, + 39, 40, 59, 319, 36, 59, 7, 7, 7, 55, + 64, 351, 69, 60, 15, 295, 296, 472, 428, 36, + 57, 301, 39, 36, 57, 57, 39, 258, 60, 61, + 76, 32, 33, 34, 355, 36, 162, 36, 70, 66, + 28, 29, 365, 70, 404, 361, 369, 363, 366, 36, + 59, 310, 164, 169, 312, 64, 59, 417, 61, 375, + 7, 172, 7, 320, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, 57, 57, 59, 60, 438, 400, + 420, 61, 442, 7, 66, 445, 68, 69, 70, 405, + 16, 17, 408, 433, 353, 57, 222, 355, 60, 64, + 416, 66, 218, 68, 69, 68, 69, 365, 32, 33, + 34, 369, 36, 81, 7, 59, 476, 61, 62, 63, + 64, 89, 66, 59, 68, 69, 62, 71, 72, 73, + 74, 75, 76, 77, 78, 103, 64, 105, 7, 67, + 68, 69, 400, 51, 52, 53, 54, 55, 56, 472, + 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 60, 60, 67, 63, 35, 36, + 62, 38, 39, 40, 7, 8, 9, 10, 11, 12, + 13, 14, 15, 16, 17, 8, 9, 10, 11, 12, + 13, 14, 15, 16, 17, 58, 64, 63, 320, 67, + 68, 69, 35, 64, 472, 62, 60, 68, 69, 63, + 77, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 58, 58, 67, 64, 68, 69, 60, 68, 69, + 63, 70, 67, 66, 66, 66, 66, 70, 66, 66, + 37, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 7, 6, 59, 60, 61, 7, 63, 64, 7, + 66, 68, 69, 77, 70, 70, 70, 7, 7, 7, + 67, 7, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 439, 77, 30, 7, 7, 67, 67, + 67, 36, 63, 38, 67, 67, 7, 57, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 59, 65, + 30, 7, 67, 57, 7, 471, 36, 59, 38, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 17, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 17, 422, + 423, 424, 425, 426, 427, 59, 7, 59, 37, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 7, 59, 59, 59, + 68, 7, 60, 60, 59, 7, 6, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 32, 33, 34, 63, 59, + 59, 58, 60, 67, 60, 67, 43, 44, 45, 46, + 47, 48, 49, 50, 18, 19, 20, 21, 22, 23, + 24, 25, 26, 37, 63, 65, 70, 58, 7, 7, + 7, 7, 7, 7, 58, 60, 65, 70, 65, 59, + 42, 67, 65, 4, 66, 63, 67, 66, 65, 58, + 60, 0, 468, 20, 20, 93, 20, 13, 74, 408, + 361, 168, 373, 307, 362, 471, 117, 262, 238, 178, + 258, 421, 342, 464, 145, 269, 104, 344, 188, -1, + -1, -1, 190 +}; + +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const yytype_uint8 yystos[] = +{ + 0, 80, 0, 39, 40, 81, 82, 83, 86, 90, + 91, 92, 93, 94, 7, 87, 7, 36, 39, 38, + 111, 112, 113, 148, 151, 152, 59, 84, 57, 61, + 7, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 105, 106, + 107, 110, 150, 28, 29, 7, 95, 96, 115, 60, + 66, 68, 69, 70, 161, 190, 57, 7, 36, 114, + 115, 57, 88, 97, 61, 95, 36, 7, 7, 7, + 7, 15, 32, 33, 34, 114, 191, 192, 193, 194, + 149, 115, 60, 85, 80, 89, 62, 97, 95, 67, + 66, 114, 192, 194, 63, 15, 114, 192, 43, 44, + 45, 46, 47, 48, 49, 50, 162, 163, 164, 165, + 194, 89, 58, 62, 7, 110, 114, 192, 193, 114, + 192, 167, 168, 170, 172, 174, 176, 58, 165, 166, + 58, 67, 67, 70, 66, 66, 66, 66, 66, 7, + 43, 44, 70, 178, 7, 8, 9, 15, 27, 30, + 35, 39, 40, 101, 104, 105, 106, 107, 108, 109, + 110, 111, 113, 114, 116, 133, 153, 183, 184, 185, + 196, 197, 198, 207, 7, 214, 214, 6, 7, 217, + 7, 218, 70, 70, 179, 59, 64, 136, 7, 57, + 209, 7, 59, 61, 62, 63, 64, 66, 68, 69, + 71, 72, 73, 74, 75, 76, 77, 78, 103, 104, + 195, 7, 39, 114, 27, 101, 108, 113, 7, 35, + 68, 69, 104, 133, 140, 141, 110, 7, 115, 57, + 60, 185, 77, 66, 70, 132, 205, 7, 210, 7, + 67, 67, 63, 217, 67, 218, 67, 186, 187, 188, + 198, 180, 181, 182, 198, 134, 137, 59, 64, 57, + 7, 211, 212, 59, 59, 61, 59, 62, 65, 67, + 59, 59, 69, 59, 71, 59, 62, 72, 59, 59, + 59, 59, 76, 59, 59, 7, 110, 57, 114, 60, + 7, 103, 7, 195, 16, 17, 142, 143, 144, 142, + 139, 140, 35, 133, 141, 161, 199, 189, 133, 102, + 103, 117, 118, 121, 122, 206, 189, 60, 63, 60, + 215, 169, 171, 6, 175, 177, 188, 182, 98, 98, + 135, 138, 211, 59, 63, 208, 59, 59, 68, 139, + 139, 60, 189, 139, 144, 35, 133, 195, 58, 60, + 64, 66, 125, 126, 141, 108, 67, 37, 120, 63, + 98, 189, 7, 66, 70, 129, 131, 201, 202, 189, + 51, 52, 53, 54, 55, 56, 216, 180, 180, 67, + 180, 180, 65, 98, 98, 208, 213, 212, 58, 189, + 35, 133, 195, 200, 127, 126, 7, 59, 131, 64, + 141, 103, 142, 37, 122, 70, 129, 204, 64, 141, + 60, 63, 7, 7, 7, 7, 7, 7, 173, 65, + 58, 100, 195, 60, 98, 67, 123, 125, 128, 70, + 156, 157, 203, 67, 98, 130, 189, 202, 216, 216, + 216, 216, 216, 216, 180, 189, 65, 99, 59, 98, + 114, 158, 159, 42, 154, 155, 98, 98, 124, 65, + 66, 63, 66, 210, 65, 99, 160, 158, 119, 122, + 57, 59, 60, 145, 146, 98, 67, 147, 4, 67, + 58, 60 +}; + +#define yyerrok (yyerrstatus = 0) +#define yyclearin (yychar = YYEMPTY) +#define YYEMPTY (-2) +#define YYEOF 0 + +#define YYACCEPT goto yyacceptlab +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab + + +/* Like YYERROR except do call yyerror. This remains here temporarily + to ease the transition to the new meaning of YYERROR, for GCC. + Once GCC version 2 has supplanted version 1, this can go. */ + +#define YYFAIL goto yyerrlab + +#define YYRECOVERING() (!!yyerrstatus) + +#define YYBACKUP(Token, Value) \ +do \ + if (yychar == YYEMPTY && yylen == 1) \ + { \ + yychar = (Token); \ + yylval = (Value); \ + yytoken = YYTRANSLATE (yychar); \ + YYPOPSTACK (1); \ + goto yybackup; \ + } \ + else \ + { \ + yyerror (YY_("syntax error: cannot back up")); \ + YYERROR; \ + } \ +while (YYID (0)) + + +#define YYTERROR 1 +#define YYERRCODE 256 + + +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) +#ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) +#endif + + +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ + +#ifndef YY_LOCATION_PRINT +# if YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif +#endif + + +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (YYLEX_PARAM) +#else +# define YYLEX yylex () +#endif + +/* Enable debugging if requested. */ +#if YYDEBUG + +# ifndef YYFPRINTF +# include <stdio.h> /* INFRINGES ON USER NAME SPACE */ +# define YYFPRINTF fprintf +# endif + +# define YYDPRINTF(Args) \ +do { \ + if (yydebug) \ + YYFPRINTF Args; \ +} while (YYID (0)) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yy_symbol_print (stderr, \ + Type, Value); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_value_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; #endif -#ifdef YYSTACKSIZE -#undef YYMAXDEPTH -#define YYMAXDEPTH YYSTACKSIZE +{ + if (!yyvaluep) + return; +# ifdef YYPRINT + if (yytype < YYNTOKENS) + YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# else + YYUSE (yyoutput); +# endif + switch (yytype) + { + default: + break; + } +} + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else -#ifdef YYMAXDEPTH -#define YYSTACKSIZE YYMAXDEPTH +static void +yy_symbol_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif +{ + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); + + yy_symbol_value_print (yyoutput, yytype, yyvaluep); + YYFPRINTF (yyoutput, ")"); +} + +/*------------------------------------------------------------------. +| yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else -#define YYSTACKSIZE 500 -#define YYMAXDEPTH 500 +static void +yy_stack_print (yybottom, yytop) + yytype_int16 *yybottom; + yytype_int16 *yytop; #endif +{ + YYFPRINTF (stderr, "Stack now"); + for (; yybottom <= yytop; yybottom++) + { + int yybot = *yybottom; + YYFPRINTF (stderr, " %d", yybot); + } + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_reduce_print (YYSTYPE *yyvsp, int yyrule) +#else +static void +yy_reduce_print (yyvsp, yyrule) + YYSTYPE *yyvsp; + int yyrule; #endif +{ + int yynrhs = yyr2[yyrule]; + int yyi; + unsigned long int yylno = yyrline[yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", + yyrule - 1, yylno); + /* The symbols being reduced. */ + for (yyi = 0; yyi < yynrhs; yyi++) + { + YYFPRINTF (stderr, " $%d = ", yyi + 1); + yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], + &(yyvsp[(yyi + 1) - (yynrhs)]) + ); + YYFPRINTF (stderr, "\n"); + } +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (yyvsp, Rule); \ +} while (YYID (0)) + +/* Nonzero means print parse trace. It is left uninitialized so that + multiple parsers can coexist. */ int yydebug; -int yynerrs; -int yyerrflag; +#else /* !YYDEBUG */ +# define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) +#endif /* !YYDEBUG */ + + +/* YYINITDEPTH -- initial size of the parser's stacks. */ +#ifndef YYINITDEPTH +# define YYINITDEPTH 200 +#endif + +/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only + if the built-in stack extension method is used). + + Do not make this value too large; the results are undefined if + YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) + evaluated with infinite-precision integer arithmetic. */ + +#ifndef YYMAXDEPTH +# define YYMAXDEPTH 10000 +#endif + + + +#if YYERROR_VERBOSE + +# ifndef yystrlen +# if defined __GLIBC__ && defined _STRING_H +# define yystrlen strlen +# else +/* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static YYSIZE_T +yystrlen (const char *yystr) +#else +static YYSIZE_T +yystrlen (yystr) + const char *yystr; +#endif +{ + YYSIZE_T yylen; + for (yylen = 0; yystr[yylen]; yylen++) + continue; + return yylen; +} +# endif +# endif + +# ifndef yystpcpy +# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE +# define yystpcpy stpcpy +# else +/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in + YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static char * +yystpcpy (char *yydest, const char *yysrc) +#else +static char * +yystpcpy (yydest, yysrc) + char *yydest; + const char *yysrc; +#endif +{ + char *yyd = yydest; + const char *yys = yysrc; + + while ((*yyd++ = *yys++) != '\0') + continue; + + return yyd - 1; +} +# endif +# endif + +# ifndef yytnamerr +/* Copy to YYRES the contents of YYSTR after stripping away unnecessary + quotes and backslashes, so that it's suitable for yyerror. The + heuristic is that double-quoting is unnecessary unless the string + contains an apostrophe, a comma, or backslash (other than + backslash-backslash). YYSTR is taken from yytname. If YYRES is + null, do not copy; instead, return the length of what the result + would have been. */ +static YYSIZE_T +yytnamerr (char *yyres, const char *yystr) +{ + if (*yystr == '"') + { + YYSIZE_T yyn = 0; + char const *yyp = yystr; + + for (;;) + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (yyres) + yyres[yyn] = *yyp; + yyn++; + break; + + case '"': + if (yyres) + yyres[yyn] = '\0'; + return yyn; + } + do_not_strip_quotes: ; + } + + if (! yyres) + return yystrlen (yystr); + + return yystpcpy (yyres, yystr) - yyres; +} +# endif + +/* Copy into YYRESULT an error message about the unexpected token + YYCHAR while in state YYSTATE. Return the number of bytes copied, + including the terminating null byte. If YYRESULT is null, do not + copy anything; just return the number of bytes that would be + copied. As a special case, return 0 if an ordinary "syntax error" + message will do. Return YYSIZE_MAXIMUM if overflow occurs during + size calculation. */ +static YYSIZE_T +yysyntax_error (char *yyresult, int yystate, int yychar) +{ + int yyn = yypact[yystate]; + + if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) + return 0; + else + { + int yytype = YYTRANSLATE (yychar); + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + int yysize_overflow = 0; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + int yyx; + +# if 0 + /* This is so xgettext sees the translatable formats that are + constructed on the fly. */ + YY_("syntax error, unexpected %s"); + YY_("syntax error, unexpected %s, expecting %s"); + YY_("syntax error, unexpected %s, expecting %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); +# endif + char *yyfmt; + char const *yyf; + static char const yyunexpected[] = "syntax error, unexpected %s"; + static char const yyexpecting[] = ", expecting %s"; + static char const yyor[] = " or %s"; + char yyformat[sizeof yyunexpected + + sizeof yyexpecting - 1 + + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) + * (sizeof yyor - 1))]; + char const *yyprefix = yyexpecting; + + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yycount = 1; + + yyarg[0] = yytname[yytype]; + yyfmt = yystpcpy (yyformat, yyunexpected); + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + yyformat[sizeof yyunexpected - 1] = '\0'; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + yyfmt = yystpcpy (yyfmt, yyprefix); + yyprefix = yyor; + } + + yyf = YY_(yyformat); + yysize1 = yysize + yystrlen (yyf); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + + if (yysize_overflow) + return YYSIZE_MAXIMUM; + + if (yyresult) + { + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + char *yyp = yyresult; + int yyi = 0; + while ((*yyp = *yyf) != '\0') + { + if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyf += 2; + } + else + { + yyp++; + yyf++; + } + } + } + return yysize; + } +} +#endif /* YYERROR_VERBOSE */ + + +/*-----------------------------------------------. +| Release the memory associated to this symbol. | +`-----------------------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) +#else +static void +yydestruct (yymsg, yytype, yyvaluep) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; +#endif +{ + YYUSE (yyvaluep); + + if (!yymsg) + yymsg = "Deleting"; + YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); + + switch (yytype) + { + + default: + break; + } +} + +/* Prevent warnings from -Wmissing-prototypes. */ +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int yyparse (void *YYPARSE_PARAM); +#else +int yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int yyparse (void); +#else +int yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ + + +/* The lookahead symbol. */ int yychar; -short *yyssp; -YYSTYPE *yyvsp; -YYSTYPE yyval; + +/* The semantic value of the lookahead symbol. */ YYSTYPE yylval; -short yyss[YYSTACKSIZE]; -YYSTYPE yyvs[YYSTACKSIZE]; -#define yystacksize YYSTACKSIZE -#line 1606 "moc.y" + +/* Number of syntax errors so far. */ +int yynerrs; + + + +/*-------------------------. +| yyparse or yypush_parse. | +`-------------------------*/ + +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void *YYPARSE_PARAM) +#else +int +yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void) +#else +int +yyparse () + +#endif +#endif +{ + + + int yystate; + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + + /* The stacks and their tools: + `yyss': related to states. + `yyvs': related to semantic values. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs; + YYSTYPE *yyvsp; + + YYSIZE_T yystacksize; + + int yyn; + int yyresult; + /* Lookahead token as an internal (translated) token number. */ + int yytoken; + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char yymsgbuf[128]; + char *yymsg = yymsgbuf; + YYSIZE_T yymsg_alloc = sizeof yymsgbuf; +#endif + +#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + + /* The number of symbols on the RHS of the reduced rule. + Keep to zero when no symbol should be popped. */ + int yylen = 0; + + yytoken = 0; + yyss = yyssa; + yyvs = yyvsa; + yystacksize = YYINITDEPTH; + + YYDPRINTF ((stderr, "Starting parse\n")); + + yystate = 0; + yyerrstatus = 0; + yynerrs = 0; + yychar = YYEMPTY; /* Cause a token to be read. */ + + /* Initialize stack pointers. + Waste one element of value and location stack + so that they stay on the same level as the state stack. + The wasted elements are never initialized. */ + yyssp = yyss; + yyvsp = yyvs; + + goto yysetstate; + +/*------------------------------------------------------------. +| yynewstate -- Push a new state, which is found in yystate. | +`------------------------------------------------------------*/ + yynewstate: + /* In all cases, when you get here, the value and location stacks + have just been pushed. So pushing a state here evens the stacks. */ + yyssp++; + + yysetstate: + *yyssp = yystate; + + if (yyss + yystacksize - 1 <= yyssp) + { + /* Get the current used size of the three stacks, in elements. */ + YYSIZE_T yysize = yyssp - yyss + 1; + +#ifdef yyoverflow + { + /* Give user a chance to reallocate the stack. Use copies of + these so that the &'s don't force the real ones into + memory. */ + YYSTYPE *yyvs1 = yyvs; + yytype_int16 *yyss1 = yyss; + + /* Each stack pointer address is followed by the size of the + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ + yyoverflow (YY_("memory exhausted"), + &yyss1, yysize * sizeof (*yyssp), + &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); + + yyss = yyss1; + yyvs = yyvs1; + } +#else /* no yyoverflow */ +# ifndef YYSTACK_RELOCATE + goto yyexhaustedlab; +# else + /* Extend the stack our own way. */ + if (YYMAXDEPTH <= yystacksize) + goto yyexhaustedlab; + yystacksize *= 2; + if (YYMAXDEPTH < yystacksize) + yystacksize = YYMAXDEPTH; + + { + yytype_int16 *yyss1 = yyss; + union yyalloc *yyptr = + (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); + if (! yyptr) + goto yyexhaustedlab; + YYSTACK_RELOCATE (yyss_alloc, yyss); + YYSTACK_RELOCATE (yyvs_alloc, yyvs); +# undef YYSTACK_RELOCATE + if (yyss1 != yyssa) + YYSTACK_FREE (yyss1); + } +# endif +#endif /* no yyoverflow */ + + yyssp = yyss + yysize - 1; + yyvsp = yyvs + yysize - 1; + + YYDPRINTF ((stderr, "Stack size increased to %lu\n", + (unsigned long int) yystacksize)); + + if (yyss + yystacksize - 1 <= yyssp) + YYABORT; + } + + YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + + if (yystate == YYFINAL) + YYACCEPT; + + goto yybackup; + +/*-----------. +| yybackup. | +`-----------*/ +yybackup: + + /* Do appropriate processing given the current state. Read a + lookahead token if we need one and don't already have one. */ + + /* First try to decide what to do without reference to lookahead token. */ + yyn = yypact[yystate]; + if (yyn == YYPACT_NINF) + goto yydefault; + + /* Not known => get a lookahead token if don't already have one. */ + + /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + if (yychar == YYEMPTY) + { + YYDPRINTF ((stderr, "Reading a token: ")); + yychar = YYLEX; + } + + if (yychar <= YYEOF) + { + yychar = yytoken = YYEOF; + YYDPRINTF ((stderr, "Now at end of input.\n")); + } + else + { + yytoken = YYTRANSLATE (yychar); + YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); + } + + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + yyn += yytoken; + if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) + goto yydefault; + yyn = yytable[yyn]; + if (yyn <= 0) + { + if (yyn == 0 || yyn == YYTABLE_NINF) + goto yyerrlab; + yyn = -yyn; + goto yyreduce; + } + + /* Count tokens shifted since error; after three, turn off error + status. */ + if (yyerrstatus) + yyerrstatus--; + + /* Shift the lookahead token. */ + YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); + + /* Discard the shifted token. */ + yychar = YYEMPTY; + + yystate = yyn; + *++yyvsp = yylval; + + goto yynewstate; + + +/*-----------------------------------------------------------. +| yydefault -- do the default action for the current state. | +`-----------------------------------------------------------*/ +yydefault: + yyn = yydefact[yystate]; + if (yyn == 0) + goto yyerrlab; + goto yyreduce; + + +/*-----------------------------. +| yyreduce -- Do a reduction. | +`-----------------------------*/ +yyreduce: + /* yyn is the number of a rule to reduce with. */ + yylen = yyr2[yyn]; + + /* If YYLEN is nonzero, implement the default value of the action: + `$$ = $1'. + + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison + users should not rely upon it. Assigning to YYVAL + unconditionally makes the parser a bit smaller, and it avoids a + GCC warning that YYVAL may be used uninitialized. */ + yyval = yyvsp[1-yylen]; + + + YY_REDUCE_PRINT (yyn); + switch (yyn) + { + case 11: + +/* Line 1455 of yacc.c */ +#line 824 "moc.y" + { enterNameSpace((yyvsp[(2) - (2)].string)); } + break; + + case 12: + +/* Line 1455 of yacc.c */ +#line 825 "moc.y" + { BEGIN IN_NAMESPACE; } + break; + + case 13: + +/* Line 1455 of yacc.c */ +#line 827 "moc.y" + { leaveNameSpace(); + selectOutsideClassState(); + } + break; + + case 14: + +/* Line 1455 of yacc.c */ +#line 832 "moc.y" + { enterNameSpace(); } + break; + + case 15: + +/* Line 1455 of yacc.c */ +#line 833 "moc.y" + { BEGIN IN_NAMESPACE; } + break; + + case 16: + +/* Line 1455 of yacc.c */ +#line 835 "moc.y" + { leaveNameSpace(); + selectOutsideClassState(); + } + break; + + case 18: + +/* Line 1455 of yacc.c */ +#line 844 "moc.y" + { selectOutsideClassState(); } + break; + + case 19: + +/* Line 1455 of yacc.c */ +#line 848 "moc.y" + { selectOutsideClassState(); } + break; + + case 20: + +/* Line 1455 of yacc.c */ +#line 851 "moc.y" + { selectOutsideClassState(); } + break; + + case 21: + +/* Line 1455 of yacc.c */ +#line 852 "moc.y" + { selectOutsideClassState(); } + break; + + case 22: + +/* Line 1455 of yacc.c */ +#line 855 "moc.y" + { initClass(); } + break; + + case 23: + +/* Line 1455 of yacc.c */ +#line 856 "moc.y" + { generateClass(); + registerClassInNamespace(); + selectOutsideClassState(); } + break; + + case 24: + +/* Line 1455 of yacc.c */ +#line 864 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 25: + +/* Line 1455 of yacc.c */ +#line 865 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 26: + +/* Line 1455 of yacc.c */ +#line 869 "moc.y" + { g->tmpExpression = rmWS( g->tmpExpression ); + (yyval.string) = stradd( (yyvsp[(1) - (4)].string), "<", + g->tmpExpression, ">" ); } + break; + + case 27: + +/* Line 1455 of yacc.c */ +#line 880 "moc.y" + { initExpression(); + templLevel = 1; + BEGIN IN_TEMPL_ARGS; } + break; + + case 28: + +/* Line 1455 of yacc.c */ +#line 893 "moc.y" + { initExpression(); + BEGIN IN_EXPR; } + break; + + case 29: + +/* Line 1455 of yacc.c */ +#line 902 "moc.y" + { BEGIN IN_DEF_ARG; } + break; + + case 30: + +/* Line 1455 of yacc.c */ +#line 905 "moc.y" + { initExpression(); + BEGIN IN_ENUM; } + break; + + case 31: + +/* Line 1455 of yacc.c */ +#line 911 "moc.y" + { (yyval.string) = ""; } + break; + + case 32: + +/* Line 1455 of yacc.c */ +#line 912 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 33: + +/* Line 1455 of yacc.c */ +#line 913 "moc.y" + { (yyval.string) = ""; } + break; + + case 34: + +/* Line 1455 of yacc.c */ +#line 914 "moc.y" + { skipFunc = TRUE; (yyval.string) = ""; } + break; + + case 35: + +/* Line 1455 of yacc.c */ +#line 915 "moc.y" + { skipFunc = TRUE; (yyval.string) = ""; } + break; + + case 36: + +/* Line 1455 of yacc.c */ +#line 919 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (3)].string),(yyvsp[(2) - (3)].string),(yyvsp[(3) - (3)].string)); } + break; + + case 37: + +/* Line 1455 of yacc.c */ +#line 921 "moc.y" + { (yyval.string) = ""; } + break; + + case 38: + +/* Line 1455 of yacc.c */ +#line 922 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 39: + +/* Line 1455 of yacc.c */ +#line 925 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 40: + +/* Line 1455 of yacc.c */ +#line 926 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)); } + break; + + case 43: + +/* Line 1455 of yacc.c */ +#line 931 "moc.y" + { skipFunc = TRUE; } + break; + + case 45: + +/* Line 1455 of yacc.c */ +#line 935 "moc.y" + { } + break; + + case 46: + +/* Line 1455 of yacc.c */ +#line 936 "moc.y" + { } + break; + + case 47: + +/* Line 1455 of yacc.c */ +#line 939 "moc.y" + { (yyval.string) = "const"; } + break; + + case 48: + +/* Line 1455 of yacc.c */ +#line 940 "moc.y" + { (yyval.string) = "volatile"; } + break; + + case 49: + +/* Line 1455 of yacc.c */ +#line 943 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 50: + +/* Line 1455 of yacc.c */ +#line 944 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 51: + +/* Line 1455 of yacc.c */ +#line 945 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 52: + +/* Line 1455 of yacc.c */ +#line 949 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)); } + break; + + case 53: + +/* Line 1455 of yacc.c */ +#line 950 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 54: + +/* Line 1455 of yacc.c */ +#line 953 "moc.y" + { (yyval.string) = "char"; } + break; + + case 55: + +/* Line 1455 of yacc.c */ +#line 954 "moc.y" + { (yyval.string) = "short"; } + break; + + case 56: + +/* Line 1455 of yacc.c */ +#line 955 "moc.y" + { (yyval.string) = "int"; } + break; + + case 57: + +/* Line 1455 of yacc.c */ +#line 956 "moc.y" + { (yyval.string) = "long"; } + break; + + case 58: + +/* Line 1455 of yacc.c */ +#line 957 "moc.y" + { (yyval.string) = "signed"; } + break; + + case 59: + +/* Line 1455 of yacc.c */ +#line 958 "moc.y" + { (yyval.string) = "unsigned"; } + break; + + case 60: + +/* Line 1455 of yacc.c */ +#line 959 "moc.y" + { (yyval.string) = "float"; } + break; + + case 61: + +/* Line 1455 of yacc.c */ +#line 960 "moc.y" + { (yyval.string) = "double"; } + break; + + case 62: + +/* Line 1455 of yacc.c */ +#line 961 "moc.y" + { (yyval.string) = "void"; } + break; + + case 63: + +/* Line 1455 of yacc.c */ +#line 965 "moc.y" + { g->tmpExpression = rmWS( g->tmpExpression ); + (yyval.string) = stradd( "template<", + g->tmpExpression, ">" ); } + break; + + case 65: + +/* Line 1455 of yacc.c */ +#line 971 "moc.y" + { templateClassOld = templateClass; + templateClass = TRUE; + } + break; + + case 66: + +/* Line 1455 of yacc.c */ +#line 977 "moc.y" + { (yyval.string) = "class"; } + break; + + case 67: + +/* Line 1455 of yacc.c */ +#line 978 "moc.y" + { (yyval.string) = "struct"; } + break; + + case 68: + +/* Line 1455 of yacc.c */ +#line 981 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 69: + +/* Line 1455 of yacc.c */ +#line 983 "moc.y" + { (yyval.string) = stradd( "::", (yyvsp[(2) - (2)].string) ); } + break; + + case 70: + +/* Line 1455 of yacc.c */ +#line 987 "moc.y" + { (yyval.string) = stradd( (yyvsp[(1) - (3)].string), "::", (yyvsp[(3) - (3)].string) );} + break; + + case 71: + +/* Line 1455 of yacc.c */ +#line 988 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 72: + +/* Line 1455 of yacc.c */ +#line 992 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)); } + break; + + case 73: + +/* Line 1455 of yacc.c */ +#line 993 "moc.y" + { (yyval.string) = stradd("enum ",(yyvsp[(2) - (2)].string)); } + break; + + case 74: + +/* Line 1455 of yacc.c */ +#line 994 "moc.y" + { (yyval.string) = stradd("union ",(yyvsp[(2) - (2)].string)); } + break; + + case 75: + +/* Line 1455 of yacc.c */ +#line 999 "moc.y" + { (yyval.arg_list) = (yyvsp[(1) - (2)].arg_list);} + break; + + case 76: + +/* Line 1455 of yacc.c */ +#line 1000 "moc.y" + { (yyval.arg_list) = (yyvsp[(1) - (3)].arg_list); + func_warn("Ellipsis not supported" + " in signals and slots.\n" + "Ellipsis argument ignored."); } + break; + + case 77: + +/* Line 1455 of yacc.c */ +#line 1006 "moc.y" + { (yyval.arg_list) = tmpArgList; } + break; + + case 78: + +/* Line 1455 of yacc.c */ +#line 1007 "moc.y" + { (yyval.arg_list) = (yyvsp[(1) - (1)].arg_list); } + break; + + case 79: + +/* Line 1455 of yacc.c */ +#line 1010 "moc.y" + { (yyval.arg) = 0; } + break; + + case 82: + +/* Line 1455 of yacc.c */ +#line 1015 "moc.y" + { func_warn("Ellipsis not supported" + " in signals and slots.\n" + "Ellipsis argument ignored."); } + break; + + case 83: + +/* Line 1455 of yacc.c */ +#line 1023 "moc.y" + { (yyval.arg_list) = addArg((yyvsp[(3) - (3)].arg)); } + break; + + case 84: + +/* Line 1455 of yacc.c */ +#line 1024 "moc.y" + { (yyval.arg_list) = addArg((yyvsp[(1) - (1)].arg)); } + break; + + case 85: + +/* Line 1455 of yacc.c */ +#line 1028 "moc.y" + { (yyval.arg) = new Argument(straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)),""); } + break; + + case 86: + +/* Line 1455 of yacc.c */ +#line 1030 "moc.y" + { expLevel = 1; } + break; + + case 87: + +/* Line 1455 of yacc.c */ +#line 1032 "moc.y" + { (yyval.arg) = new Argument(straddSpc((yyvsp[(1) - (5)].string),(yyvsp[(2) - (5)].string)),"", 0, TRUE ); } + break; + + case 88: + +/* Line 1455 of yacc.c */ +#line 1035 "moc.y" + { (yyval.arg) = new Argument(straddSpc((yyvsp[(1) - (4)].string),(yyvsp[(2) - (4)].string)),(yyvsp[(4) - (4)].string), (yyvsp[(3) - (4)].string)); } + break; + + case 89: + +/* Line 1455 of yacc.c */ +#line 1038 "moc.y" + { expLevel = 1; } + break; + + case 90: + +/* Line 1455 of yacc.c */ +#line 1040 "moc.y" + { (yyval.arg) = new Argument(straddSpc((yyvsp[(1) - (7)].string),(yyvsp[(2) - (7)].string)),(yyvsp[(4) - (7)].string), (yyvsp[(3) - (7)].string), TRUE); } + break; + + case 91: + +/* Line 1455 of yacc.c */ +#line 1044 "moc.y" + { (yyval.string) = ""; } + break; + + case 92: + +/* Line 1455 of yacc.c */ +#line 1045 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 93: + +/* Line 1455 of yacc.c */ +#line 1049 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)); } + break; + + case 94: + +/* Line 1455 of yacc.c */ +#line 1050 "moc.y" + { expLevel = 1; } + break; + + case 95: + +/* Line 1455 of yacc.c */ +#line 1052 "moc.y" + { (yyval.string) = stradd( "[", + g->tmpExpression = + g->tmpExpression.stripWhiteSpace(), "]" ); } + break; + + case 96: + +/* Line 1455 of yacc.c */ +#line 1055 "moc.y" + { expLevel = 1; } + break; + + case 97: + +/* Line 1455 of yacc.c */ +#line 1057 "moc.y" + { (yyval.string) = stradd( (yyvsp[(1) - (5)].string),"[", + g->tmpExpression = + g->tmpExpression.stripWhiteSpace(),"]" ); } + break; + + case 98: + +/* Line 1455 of yacc.c */ +#line 1060 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 99: + +/* Line 1455 of yacc.c */ +#line 1061 "moc.y" + { (yyval.string) = (yyvsp[(2) - (3)].string); } + break; + + case 100: + +/* Line 1455 of yacc.c */ +#line 1064 "moc.y" + { (yyval.string) = ""; } + break; + + case 101: + +/* Line 1455 of yacc.c */ +#line 1066 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string));} + break; + + case 102: + +/* Line 1455 of yacc.c */ +#line 1067 "moc.y" + { expLevel = 1; } + break; + + case 103: + +/* Line 1455 of yacc.c */ +#line 1069 "moc.y" + { (yyval.string) = stradd( (yyvsp[(1) - (5)].string),"[", + g->tmpExpression = + g->tmpExpression.stripWhiteSpace(),"]" ); } + break; + + case 104: + +/* Line 1455 of yacc.c */ +#line 1072 "moc.y" + { (yyval.string) = (yyvsp[(2) - (3)].string); } + break; + + case 106: + +/* Line 1455 of yacc.c */ +#line 1086 "moc.y" + { tmpFunc->args = (yyvsp[(2) - (8)].arg_list); + tmpFunc->qualifier = (yyvsp[(4) - (8)].string); } + break; + + case 108: + +/* Line 1455 of yacc.c */ +#line 1092 "moc.y" + { func_warn("Variable as signal or slot."); } + break; + + case 109: + +/* Line 1455 of yacc.c */ +#line 1093 "moc.y" + { expLevel=0; } + break; + + case 110: + +/* Line 1455 of yacc.c */ +#line 1095 "moc.y" + { skipFunc = TRUE; } + break; + + case 111: + +/* Line 1455 of yacc.c */ +#line 1096 "moc.y" + { expLevel=0; } + break; + + case 112: + +/* Line 1455 of yacc.c */ +#line 1098 "moc.y" + { skipFunc = TRUE; } + break; + + case 113: + +/* Line 1455 of yacc.c */ +#line 1102 "moc.y" + { expLevel = 1; } + break; + + case 115: + +/* Line 1455 of yacc.c */ +#line 1104 "moc.y" + { expLevel = 1; } + break; + + case 117: + +/* Line 1455 of yacc.c */ +#line 1109 "moc.y" + { (yyval.string) = ""; } + break; + + case 118: + +/* Line 1455 of yacc.c */ +#line 1110 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 119: + +/* Line 1455 of yacc.c */ +#line 1113 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 120: + +/* Line 1455 of yacc.c */ +#line 1114 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string));} + break; + + case 121: + +/* Line 1455 of yacc.c */ +#line 1117 "moc.y" + { (yyval.string) = straddSpc("*",(yyvsp[(2) - (2)].string));} + break; + + case 122: + +/* Line 1455 of yacc.c */ +#line 1118 "moc.y" + { (yyval.string) = stradd("&",(yyvsp[(2) - (2)].string));} + break; + + case 123: + +/* Line 1455 of yacc.c */ +#line 1125 "moc.y" + { (yyval.string) = ""; } + break; + + case 124: + +/* Line 1455 of yacc.c */ +#line 1126 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 125: + +/* Line 1455 of yacc.c */ +#line 1129 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 126: + +/* Line 1455 of yacc.c */ +#line 1131 "moc.y" + { (yyval.string) = straddSpc((yyvsp[(1) - (2)].string),(yyvsp[(2) - (2)].string)); } + break; + + case 127: + +/* Line 1455 of yacc.c */ +#line 1134 "moc.y" + { (yyval.string) = "const"; } + break; + + case 128: + +/* Line 1455 of yacc.c */ +#line 1135 "moc.y" + { (yyval.string) = "volatile"; } + break; + + case 132: + +/* Line 1455 of yacc.c */ +#line 1143 "moc.y" + { BEGIN IN_FCT; fctLevel = 1;} + break; + + case 133: + +/* Line 1455 of yacc.c */ +#line 1144 "moc.y" + { BEGIN QT_DEF; } + break; + + case 134: + +/* Line 1455 of yacc.c */ +#line 1151 "moc.y" + { BEGIN IN_CLASS; + classPLevel = 1; + } + break; + + case 135: + +/* Line 1455 of yacc.c */ +#line 1155 "moc.y" + { BEGIN QT_DEF; } + break; + + case 136: + +/* Line 1455 of yacc.c */ +#line 1156 "moc.y" + { BEGIN QT_DEF; /* -- " -- */ + skipClass = TRUE; } + break; + + case 137: + +/* Line 1455 of yacc.c */ +#line 1158 "moc.y" + { BEGIN QT_DEF; /* -- " -- */ + skipClass = TRUE; } + break; + + case 138: + +/* Line 1455 of yacc.c */ +#line 1160 "moc.y" + { BEGIN QT_DEF; /* -- " -- */ + skipClass = TRUE; } + break; + + case 139: + +/* Line 1455 of yacc.c */ +#line 1164 "moc.y" + { BEGIN QT_DEF; /* catch ';' */ + skipClass = TRUE; } + break; + + case 140: + +/* Line 1455 of yacc.c */ +#line 1166 "moc.y" + { skipClass = TRUE; + BEGIN GIMME_SEMICOLON; } + break; + + case 144: + +/* Line 1455 of yacc.c */ +#line 1173 "moc.y" + { (yyval.string) = ""; } + break; + + case 146: + +/* Line 1455 of yacc.c */ +#line 1179 "moc.y" + { g->className = (yyvsp[(2) - (2)].string); + if ( g->className == "QObject" ) + Q_OBJECTdetected = TRUE; + } + break; + + case 147: + +/* Line 1455 of yacc.c */ +#line 1185 "moc.y" + { g->className = (yyvsp[(3) - (3)].string); + if ( g->className == "QObject" ) + Q_OBJECTdetected = TRUE; + } + break; + + case 148: + +/* Line 1455 of yacc.c */ +#line 1192 "moc.y" + { g->superClassName = (yyvsp[(2) - (2)].string); } + break; + + case 149: + +/* Line 1455 of yacc.c */ +#line 1197 "moc.y" + { templateClass = templateClassOld; } + break; + + case 158: + +/* Line 1455 of yacc.c */ +#line 1220 "moc.y" + { expLevel = 1; } + break; + + case 160: + +/* Line 1455 of yacc.c */ +#line 1225 "moc.y" + { (yyval.string) = 0; } + break; + + case 161: + +/* Line 1455 of yacc.c */ +#line 1226 "moc.y" + { (yyval.string) = (yyvsp[(1) - (1)].string); } + break; + + case 166: + +/* Line 1455 of yacc.c */ +#line 1238 "moc.y" + { tmpAccess = (yyvsp[(1) - (1)].access); } + break; + + case 167: + +/* Line 1455 of yacc.c */ +#line 1239 "moc.y" + { moc_err( "Missing access specifier" + " before \"slots:\"." ); } + break; + + case 168: + +/* Line 1455 of yacc.c */ +#line 1243 "moc.y" + { BEGIN QT_DEF; } + break; + + case 170: + +/* Line 1455 of yacc.c */ +#line 1245 "moc.y" + { BEGIN QT_DEF; } + break; + + case 172: + +/* Line 1455 of yacc.c */ +#line 1247 "moc.y" + { + if ( tmpAccess ) + moc_warn("Q_OBJECT is not in the private" + " section of the class.\n" + "Q_OBJECT is a macro that resets" + " access permission to \"private\"."); + Q_OBJECTdetected = TRUE; + } + break; + + case 173: + +/* Line 1455 of yacc.c */ +#line 1255 "moc.y" + { tmpYYStart = YY_START; + tmpPropOverride = FALSE; + BEGIN IN_PROPERTY; } + break; + + case 174: + +/* Line 1455 of yacc.c */ +#line 1258 "moc.y" + { + BEGIN tmpYYStart; + } + break; + + case 176: + +/* Line 1455 of yacc.c */ +#line 1262 "moc.y" + { tmpYYStart = YY_START; + tmpPropOverride = TRUE; + BEGIN IN_PROPERTY; } + break; + + case 177: + +/* Line 1455 of yacc.c */ +#line 1265 "moc.y" + { + BEGIN tmpYYStart; + } + break; + + case 179: + +/* Line 1455 of yacc.c */ +#line 1269 "moc.y" + { tmpYYStart = YY_START; BEGIN IN_CLASSINFO; } + break; + + case 180: + +/* Line 1455 of yacc.c */ +#line 1271 "moc.y" + { + g->infos.append( new ClassInfo( (yyvsp[(4) - (7)].string), (yyvsp[(6) - (7)].string) ) ); + BEGIN tmpYYStart; + } + break; + + case 182: + +/* Line 1455 of yacc.c */ +#line 1276 "moc.y" + { tmpYYStart = YY_START; BEGIN IN_PROPERTY; } + break; + + case 183: + +/* Line 1455 of yacc.c */ +#line 1277 "moc.y" + { + Q_PROPERTYdetected = TRUE; + BEGIN tmpYYStart; + } + break; + + case 185: + +/* Line 1455 of yacc.c */ +#line 1282 "moc.y" + { tmpYYStart = YY_START; BEGIN IN_PROPERTY; } + break; + + case 186: + +/* Line 1455 of yacc.c */ +#line 1283 "moc.y" + { + Q_PROPERTYdetected = TRUE; + BEGIN tmpYYStart; + } + break; + + case 188: + +/* Line 1455 of yacc.c */ +#line 1290 "moc.y" + { moc_err( "Signals cannot " + "have access specifiers" ); } + break; + + case 190: + +/* Line 1455 of yacc.c */ +#line 1293 "moc.y" + { if ( tmpAccess == Public && Q_PROPERTYdetected ) + BEGIN QT_DEF; + else + BEGIN IN_CLASS; + suppress_func_warn = TRUE; + } + break; + + case 191: + +/* Line 1455 of yacc.c */ +#line 1300 "moc.y" + { + suppress_func_warn = FALSE; + } + break; + + case 192: + +/* Line 1455 of yacc.c */ +#line 1303 "moc.y" + { BEGIN IN_CLASS; + if ( classPLevel != 1 ) + moc_warn( "unexpected access" + "specifier" ); + } + break; + + case 197: + +/* Line 1455 of yacc.c */ +#line 1318 "moc.y" + { addMember( PropertyCandidateMember ); } + break; + + case 202: + +/* Line 1455 of yacc.c */ +#line 1330 "moc.y" + { addMember( SignalMember ); } + break; + + case 207: + +/* Line 1455 of yacc.c */ +#line 1341 "moc.y" + { addMember( SlotMember ); } + break; + + case 210: + +/* Line 1455 of yacc.c */ +#line 1348 "moc.y" + { (yyval.string)=(yyvsp[(2) - (2)].string); } + break; + + case 211: + +/* Line 1455 of yacc.c */ +#line 1351 "moc.y" + { g->multipleSuperClasses.append( (yyvsp[(3) - (3)].string) ); } + break; + + case 213: + +/* Line 1455 of yacc.c */ +#line 1356 "moc.y" + { (yyval.string) = stradd( (yyvsp[(1) - (4)].string), "(", (yyvsp[(3) - (4)].string), ")" ); } + break; + + case 214: + +/* Line 1455 of yacc.c */ +#line 1358 "moc.y" + { (yyval.string) = stradd( (yyvsp[(1) - (4)].string), "(", (yyvsp[(3) - (4)].string), ")" ); } + break; + + case 215: + +/* Line 1455 of yacc.c */ +#line 1361 "moc.y" + {(yyval.string)=(yyvsp[(1) - (1)].string);} + break; + + case 216: + +/* Line 1455 of yacc.c */ +#line 1362 "moc.y" + {(yyval.string)=(yyvsp[(3) - (3)].string);} + break; + + case 217: + +/* Line 1455 of yacc.c */ +#line 1363 "moc.y" + {(yyval.string)=(yyvsp[(2) - (2)].string);} + break; + + case 218: + +/* Line 1455 of yacc.c */ +#line 1364 "moc.y" + {(yyval.string)=(yyvsp[(3) - (3)].string);} + break; + + case 219: + +/* Line 1455 of yacc.c */ +#line 1365 "moc.y" + {(yyval.string)=(yyvsp[(2) - (2)].string);} + break; + + case 220: + +/* Line 1455 of yacc.c */ +#line 1366 "moc.y" + {(yyval.string)=(yyvsp[(1) - (1)].string);} + break; + + case 221: + +/* Line 1455 of yacc.c */ +#line 1367 "moc.y" + {(yyval.string)=(yyvsp[(3) - (3)].string);} + break; + + case 222: + +/* Line 1455 of yacc.c */ +#line 1368 "moc.y" + {(yyval.string)=(yyvsp[(2) - (2)].string);} + break; + + case 223: + +/* Line 1455 of yacc.c */ +#line 1369 "moc.y" + {(yyval.string)=(yyvsp[(3) - (3)].string);} + break; + + case 224: + +/* Line 1455 of yacc.c */ +#line 1370 "moc.y" + {(yyval.string)=(yyvsp[(2) - (2)].string);} + break; + + case 225: + +/* Line 1455 of yacc.c */ +#line 1373 "moc.y" + { (yyval.access)=Private; } + break; + + case 226: + +/* Line 1455 of yacc.c */ +#line 1374 "moc.y" + { (yyval.access)=Protected; } + break; + + case 227: + +/* Line 1455 of yacc.c */ +#line 1375 "moc.y" + { (yyval.access)=Public; } + break; + + case 228: + +/* Line 1455 of yacc.c */ +#line 1378 "moc.y" + { } + break; + + case 229: + +/* Line 1455 of yacc.c */ +#line 1379 "moc.y" + { } + break; + + case 271: + +/* Line 1455 of yacc.c */ +#line 1427 "moc.y" + { tmpFunc->type = (yyvsp[(1) - (2)].string); + tmpFunc->name = (yyvsp[(2) - (2)].string); } + break; + + case 272: + +/* Line 1455 of yacc.c */ +#line 1430 "moc.y" + { tmpFunc->type = "int"; + tmpFunc->name = (yyvsp[(1) - (1)].string); + if ( tmpFunc->name == g->className ) + func_warn( "Constructors cannot be" + " signals or slots."); + } + break; + + case 273: + +/* Line 1455 of yacc.c */ +#line 1437 "moc.y" + { tmpFunc->type = "void"; + tmpFunc->name = "~"; + tmpFunc->name += (yyvsp[(3) - (3)].string); + func_warn( "Destructors cannot be" + " signals or slots."); + } + break; + + case 274: + +/* Line 1455 of yacc.c */ +#line 1445 "moc.y" + { + char *tmp = + straddSpc((yyvsp[(1) - (5)].string),(yyvsp[(2) - (5)].string),(yyvsp[(3) - (5)].string),(yyvsp[(4) - (5)].string)); + tmpFunc->type = rmWS(tmp); + delete [] tmp; + tmpFunc->name = (yyvsp[(5) - (5)].string); } + break; + + case 275: + +/* Line 1455 of yacc.c */ +#line 1452 "moc.y" + { skipFunc = TRUE; } + break; + + case 276: + +/* Line 1455 of yacc.c */ +#line 1454 "moc.y" + { tmpFunc->type = + straddSpc((yyvsp[(1) - (3)].string),(yyvsp[(2) - (3)].string)); + tmpFunc->name = (yyvsp[(3) - (3)].string); } + break; + + case 277: + +/* Line 1455 of yacc.c */ +#line 1459 "moc.y" + { tmpFunc->type = + straddSpc((yyvsp[(1) - (4)].string),(yyvsp[(2) - (4)].string),(yyvsp[(3) - (4)].string)); + tmpFunc->name = (yyvsp[(4) - (4)].string); } + break; + + case 278: + +/* Line 1455 of yacc.c */ +#line 1463 "moc.y" + { operatorError(); } + break; + + case 279: + +/* Line 1455 of yacc.c */ +#line 1465 "moc.y" + { operatorError(); } + break; + + case 280: + +/* Line 1455 of yacc.c */ +#line 1468 "moc.y" + { operatorError(); } + break; + + case 281: + +/* Line 1455 of yacc.c */ +#line 1470 "moc.y" + { operatorError(); } + break; + + case 282: + +/* Line 1455 of yacc.c */ +#line 1473 "moc.y" + { operatorError(); } + break; + + case 284: + +/* Line 1455 of yacc.c */ +#line 1479 "moc.y" + { func_warn("Unexpected variable declaration."); } + break; + + case 285: + +/* Line 1455 of yacc.c */ +#line 1482 "moc.y" + { func_warn("Unexpected variable declaration."); } + break; + + case 286: + +/* Line 1455 of yacc.c */ +#line 1484 "moc.y" + { func_warn("Unexpected enum declaration."); } + break; + + case 287: + +/* Line 1455 of yacc.c */ +#line 1486 "moc.y" + { func_warn("Unexpected using declaration."); } + break; + + case 288: + +/* Line 1455 of yacc.c */ +#line 1488 "moc.y" + { func_warn("Unexpected using declaration."); } + break; + + case 289: + +/* Line 1455 of yacc.c */ +#line 1490 "moc.y" + { classPLevel++; + moc_err("Unexpected namespace declaration."); } + break; + + case 290: + +/* Line 1455 of yacc.c */ +#line 1493 "moc.y" + { func_warn("Unexpected class declaration.");} + break; + + case 291: + +/* Line 1455 of yacc.c */ +#line 1495 "moc.y" + { func_warn("Unexpected class declaration."); + BEGIN IN_FCT; fctLevel=1; + } + break; + + case 292: + +/* Line 1455 of yacc.c */ +#line 1498 "moc.y" + { BEGIN QT_DEF; } + break; + + case 296: + +/* Line 1455 of yacc.c */ +#line 1507 "moc.y" + { } + break; + + case 297: + +/* Line 1455 of yacc.c */ +#line 1508 "moc.y" + { expLevel = 0; } + break; + + case 299: + +/* Line 1455 of yacc.c */ +#line 1510 "moc.y" + { expLevel = 0; } + break; + + case 302: + +/* Line 1455 of yacc.c */ +#line 1515 "moc.y" + { expLevel = 0; } + break; + + case 307: + +/* Line 1455 of yacc.c */ +#line 1530 "moc.y" + { BEGIN QT_DEF; + if ( tmpAccess == Public) { + tmpEnum->name = (yyvsp[(1) - (5)].string); + addEnum(); + } + } + break; + + case 308: + +/* Line 1455 of yacc.c */ +#line 1537 "moc.y" + { tmpEnum->clear();} + break; + + case 310: + +/* Line 1455 of yacc.c */ +#line 1541 "moc.y" + { } + break; + + case 314: + +/* Line 1455 of yacc.c */ +#line 1549 "moc.y" + { if ( tmpAccess == Public) tmpEnum->append( (yyvsp[(1) - (1)].string) ); } + break; + + case 315: + +/* Line 1455 of yacc.c */ +#line 1550 "moc.y" + { enumLevel=0; } + break; + + case 316: + +/* Line 1455 of yacc.c */ +#line 1551 "moc.y" + { if ( tmpAccess == Public) tmpEnum->append( (yyvsp[(1) - (4)].string) ); } + break; + + case 317: + +/* Line 1455 of yacc.c */ +#line 1555 "moc.y" + { + g->propWrite = ""; + g->propRead = ""; + g->propOverride = tmpPropOverride; + g->propReset = ""; + if ( g->propOverride ) { + g->propStored = ""; + g->propDesignable = ""; + g->propScriptable = ""; + } else { + g->propStored = "true"; + g->propDesignable = "true"; + g->propScriptable = "true"; + } + } + break; + + case 318: + +/* Line 1455 of yacc.c */ +#line 1571 "moc.y" + { + if ( g->propRead.isEmpty() && !g->propOverride ) + moc_err( "A property must at least feature a read method." ); + checkPropertyName( (yyvsp[(2) - (4)].string) ); + Q_PROPERTYdetected = TRUE; + // Avoid duplicates + for( QPtrListIterator<Property> lit( g->props ); lit.current(); ++lit ) { + if ( lit.current()->name == (yyvsp[(2) - (4)].string) ) { + if ( displayWarnings ) + moc_err( "Property '%s' defined twice.", + (const char*)lit.current()->name ); + } + } + g->props.append( new Property( lineNo, (yyvsp[(1) - (4)].string), (yyvsp[(2) - (4)].string), + g->propWrite, g->propRead, g->propReset, + g->propStored, g->propDesignable, + g->propScriptable, g->propOverride ) ); + } + break; + + case 320: + +/* Line 1455 of yacc.c */ +#line 1592 "moc.y" + { g->propRead = (yyvsp[(2) - (3)].string); } + break; + + case 321: + +/* Line 1455 of yacc.c */ +#line 1593 "moc.y" + { g->propWrite = (yyvsp[(2) - (3)].string); } + break; + + case 322: + +/* Line 1455 of yacc.c */ +#line 1594 "moc.y" + { g->propReset = (yyvsp[(2) - (3)].string); } + break; + + case 323: + +/* Line 1455 of yacc.c */ +#line 1595 "moc.y" + { g->propStored = (yyvsp[(2) - (3)].string); } + break; + + case 324: + +/* Line 1455 of yacc.c */ +#line 1596 "moc.y" + { g->propDesignable = (yyvsp[(2) - (3)].string); } + break; + + case 325: + +/* Line 1455 of yacc.c */ +#line 1597 "moc.y" + { g->propScriptable = (yyvsp[(2) - (3)].string); } + break; + + case 326: + +/* Line 1455 of yacc.c */ +#line 1600 "moc.y" + { } + break; + + case 327: + +/* Line 1455 of yacc.c */ +#line 1601 "moc.y" + { g->qtEnums.append( (yyvsp[(1) - (2)].string) ); } + break; + + case 328: + +/* Line 1455 of yacc.c */ +#line 1604 "moc.y" + { } + break; + + case 329: + +/* Line 1455 of yacc.c */ +#line 1605 "moc.y" + { g->qtSets.append( (yyvsp[(1) - (2)].string) ); } + break; + + + +/* Line 1455 of yacc.c */ +#line 4222 "moc_yacc" + default: break; + } + YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); + + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + + *++yyvsp = yyval; + + /* Now `shift' the result of the reduction. Determine what state + that goes to, based on the state we popped back to and the rule + number reduced by. */ + + yyn = yyr1[yyn]; + + yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; + if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) + yystate = yytable[yystate]; + else + yystate = yydefgoto[yyn - YYNTOKENS]; + + goto yynewstate; + + +/*------------------------------------. +| yyerrlab -- here on detecting error | +`------------------------------------*/ +yyerrlab: + /* If not already recovering from an error, report this error. */ + if (!yyerrstatus) + { + ++yynerrs; +#if ! YYERROR_VERBOSE + yyerror (YY_("syntax error")); +#else + { + YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); + if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) + { + YYSIZE_T yyalloc = 2 * yysize; + if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) + yyalloc = YYSTACK_ALLOC_MAXIMUM; + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yyalloc); + if (yymsg) + yymsg_alloc = yyalloc; + else + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + } + } + + if (0 < yysize && yysize <= yymsg_alloc) + { + (void) yysyntax_error (yymsg, yystate, yychar); + yyerror (yymsg); + } + else + { + yyerror (YY_("syntax error")); + if (yysize != 0) + goto yyexhaustedlab; + } + } +#endif + } + + + + if (yyerrstatus == 3) + { + /* If just tried and failed to reuse lookahead token after an + error, discard it. */ + + if (yychar <= YYEOF) + { + /* Return failure if at end of input. */ + if (yychar == YYEOF) + YYABORT; + } + else + { + yydestruct ("Error: discarding", + yytoken, &yylval); + yychar = YYEMPTY; + } + } + + /* Else will try to reuse lookahead token after shifting the error + token. */ + goto yyerrlab1; + + +/*---------------------------------------------------. +| yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +yyerrorlab: + + /* Pacify compilers like GCC when the user code never invokes + YYERROR and the label yyerrorlab therefore never appears in user + code. */ + if (/*CONSTCOND*/ 0) + goto yyerrorlab; + + /* Do not reclaim the symbols of the rule which action triggered + this YYERROR. */ + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + yystate = *yyssp; + goto yyerrlab1; + + +/*-------------------------------------------------------------. +| yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +yyerrlab1: + yyerrstatus = 3; /* Each real token shifted decrements this. */ + + for (;;) + { + yyn = yypact[yystate]; + if (yyn != YYPACT_NINF) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } + + /* Pop the current state because it cannot handle the error token. */ + if (yyssp == yyss) + YYABORT; + + + yydestruct ("Error: popping", + yystos[yystate], yyvsp); + YYPOPSTACK (1); + yystate = *yyssp; + YY_STACK_PRINT (yyss, yyssp); + } + + *++yyvsp = yylval; + + + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); + + yystate = yyn; + goto yynewstate; + + +/*-------------------------------------. +| yyacceptlab -- YYACCEPT comes here. | +`-------------------------------------*/ +yyacceptlab: + yyresult = 0; + goto yyreturn; + +/*-----------------------------------. +| yyabortlab -- YYABORT comes here. | +`-----------------------------------*/ +yyabortlab: + yyresult = 1; + goto yyreturn; + +#if !defined(yyoverflow) || YYERROR_VERBOSE +/*-------------------------------------------------. +| yyexhaustedlab -- memory exhaustion comes here. | +`-------------------------------------------------*/ +yyexhaustedlab: + yyerror (YY_("memory exhausted")); + yyresult = 2; + /* Fall through. */ +#endif + +yyreturn: + if (yychar != YYEMPTY) + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); + /* Do not reclaim the symbols of the rule which action triggered + this YYABORT or YYACCEPT. */ + YYPOPSTACK (yylen); + YY_STACK_PRINT (yyss, yyssp); + while (yyssp != yyss) + { + yydestruct ("Cleanup: popping", + yystos[*yyssp], yyvsp); + YYPOPSTACK (1); + } +#ifndef yyoverflow + if (yyss != yyssa) + YYSTACK_FREE (yyss); +#endif +#if YYERROR_VERBOSE + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); +#endif + /* Make sure YYID is used. */ + return YYID (yyresult); +} + + + +/* Line 1675 of yacc.c */ +#line 1608 "moc.y" + #ifndef YYBISON # if defined(Q_OS_WIN32) @@ -2872,8 +5659,7 @@ void generateClass() // generate C++ source code for a class { const char *hdr1 = "/****************************************************************************\n" "** %s meta object code from reading C++ file '%s'\n**\n"; - const char *hdr2 = "** Created: %s\n" - "** by: The Qt MOC ($Id: qt/moc_yacc.cpp 3.3.8 edited Feb 2 14:59 $)\n**\n"; + const char *hdr2 = "** Created: %s\n"; const char *hdr3 = "** WARNING! All changes made in this file will be lost!\n"; const char *hdr4 = "*****************************************************************************/\n\n"; int i; @@ -3233,6 +6019,7 @@ void generateClass() // generate C++ source code for a class offset++; } } + fprintf( out, " o[%d].isLastObject = true;\n", f->args->count() + 0 ); fprintf( out, " activate_signal( clist, o );\n" ); // get return values from inOut parameters @@ -3645,1170 +6432,4 @@ void checkPropertyName( const char* ident ) return; } } -#line 3649 "y.tab.c" -#define YYABORT goto yyabort -#define YYREJECT goto yyabort -#define YYACCEPT goto yyaccept -#define YYERROR goto yyerrlab -int -yyparse() -{ - register int yym, yyn, yystate; -#if YYDEBUG - register char *yys; - extern char *getenv(); - if (yys = getenv("YYDEBUG")) - { - yyn = *yys; - if (yyn >= '0' && yyn <= '9') - yydebug = yyn - '0'; - } -#endif - - yynerrs = 0; - yyerrflag = 0; - yychar = (-1); - - yyssp = yyss; - yyvsp = yyvs; - *yyssp = yystate = 0; - -yyloop: - if (yyn = yydefred[yystate]) goto yyreduce; - if (yychar < 0) - { - if ((yychar = yylex()) < 0) yychar = 0; -#if YYDEBUG - if (yydebug) - { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; - printf("%sdebug: state %d, reading %d (%s)\n", - YYPREFIX, yystate, yychar, yys); - } -#endif - } - if ((yyn = yysindex[yystate]) && (yyn += yychar) >= 0 && - yyn <= YYTABLESIZE && yycheck[yyn] == yychar) - { -#if YYDEBUG - if (yydebug) - printf("%sdebug: state %d, shifting to state %d\n", - YYPREFIX, yystate, yytable[yyn]); -#endif - if (yyssp >= yyss + yystacksize - 1) - { - goto yyoverflow; - } - *++yyssp = yystate = yytable[yyn]; - *++yyvsp = yylval; - yychar = (-1); - if (yyerrflag > 0) --yyerrflag; - goto yyloop; - } - if ((yyn = yyrindex[yystate]) && (yyn += yychar) >= 0 && - yyn <= YYTABLESIZE && yycheck[yyn] == yychar) - { - yyn = yytable[yyn]; - goto yyreduce; - } - if (yyerrflag) goto yyinrecovery; -#ifdef lint - goto yynewerror; -#endif -yynewerror: - yyerror("syntax error"); -#ifdef lint - goto yyerrlab; -#endif -yyerrlab: - ++yynerrs; -yyinrecovery: - if (yyerrflag < 3) - { - yyerrflag = 3; - for (;;) - { - if ((yyn = yysindex[*yyssp]) && (yyn += YYERRCODE) >= 0 && - yyn <= YYTABLESIZE && yycheck[yyn] == YYERRCODE) - { -#if YYDEBUG - if (yydebug) - printf("%sdebug: state %d, error recovery shifting\ - to state %d\n", YYPREFIX, *yyssp, yytable[yyn]); -#endif - if (yyssp >= yyss + yystacksize - 1) - { - goto yyoverflow; - } - *++yyssp = yystate = yytable[yyn]; - *++yyvsp = yylval; - goto yyloop; - } - else - { -#if YYDEBUG - if (yydebug) - printf("%sdebug: error recovery discarding state %d\n", - YYPREFIX, *yyssp); -#endif - if (yyssp <= yyss) goto yyabort; - --yyssp; - --yyvsp; - } - } - } - else - { - if (yychar == 0) goto yyabort; -#if YYDEBUG - if (yydebug) - { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; - printf("%sdebug: state %d, error recovery discards token %d (%s)\n", - YYPREFIX, yystate, yychar, yys); - } -#endif - yychar = (-1); - goto yyloop; - } -yyreduce: -#if YYDEBUG - if (yydebug) - printf("%sdebug: state %d, reducing by rule %d (%s)\n", - YYPREFIX, yystate, yyn, yyrule[yyn]); -#endif - yym = yylen[yyn]; - yyval = yyvsp[1-yym]; - switch (yyn) - { -case 10: -#line 821 "moc.y" -{ enterNameSpace(yyvsp[0].string); } -break; -case 11: -#line 822 "moc.y" -{ BEGIN IN_NAMESPACE; } -break; -case 12: -#line 824 "moc.y" -{ leaveNameSpace(); - selectOutsideClassState(); - } -break; -case 13: -#line 829 "moc.y" -{ enterNameSpace(); } -break; -case 14: -#line 830 "moc.y" -{ BEGIN IN_NAMESPACE; } -break; -case 15: -#line 832 "moc.y" -{ leaveNameSpace(); - selectOutsideClassState(); - } -break; -case 17: -#line 841 "moc.y" -{ selectOutsideClassState(); } -break; -case 18: -#line 845 "moc.y" -{ selectOutsideClassState(); } -break; -case 19: -#line 848 "moc.y" -{ selectOutsideClassState(); } -break; -case 20: -#line 849 "moc.y" -{ selectOutsideClassState(); } -break; -case 21: -#line 852 "moc.y" -{ initClass(); } -break; -case 22: -#line 853 "moc.y" -{ generateClass(); - registerClassInNamespace(); - selectOutsideClassState(); } -break; -case 23: -#line 861 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 24: -#line 862 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 25: -#line 866 "moc.y" -{ g->tmpExpression = rmWS( g->tmpExpression ); - yyval.string = stradd( yyvsp[-3].string, "<", - g->tmpExpression, ">" ); } -break; -case 26: -#line 877 "moc.y" -{ initExpression(); - templLevel = 1; - BEGIN IN_TEMPL_ARGS; } -break; -case 27: -#line 890 "moc.y" -{ initExpression(); - BEGIN IN_EXPR; } -break; -case 28: -#line 899 "moc.y" -{ BEGIN IN_DEF_ARG; } -break; -case 29: -#line 902 "moc.y" -{ initExpression(); - BEGIN IN_ENUM; } -break; -case 30: -#line 908 "moc.y" -{ yyval.string = ""; } -break; -case 31: -#line 909 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 32: -#line 910 "moc.y" -{ yyval.string = ""; } -break; -case 33: -#line 911 "moc.y" -{ skipFunc = TRUE; yyval.string = ""; } -break; -case 34: -#line 912 "moc.y" -{ skipFunc = TRUE; yyval.string = ""; } -break; -case 35: -#line 916 "moc.y" -{ yyval.string = straddSpc(yyvsp[-2].string,yyvsp[-1].string,yyvsp[0].string); } -break; -case 36: -#line 918 "moc.y" -{ yyval.string = ""; } -break; -case 37: -#line 919 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 38: -#line 922 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 39: -#line 923 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string); } -break; -case 42: -#line 928 "moc.y" -{ skipFunc = TRUE; } -break; -case 44: -#line 932 "moc.y" -{ } -break; -case 45: -#line 933 "moc.y" -{ } -break; -case 46: -#line 936 "moc.y" -{ yyval.string = "const"; } -break; -case 47: -#line 937 "moc.y" -{ yyval.string = "volatile"; } -break; -case 48: -#line 940 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 49: -#line 941 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 50: -#line 942 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 51: -#line 946 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string); } -break; -case 52: -#line 947 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 53: -#line 950 "moc.y" -{ yyval.string = "char"; } -break; -case 54: -#line 951 "moc.y" -{ yyval.string = "short"; } -break; -case 55: -#line 952 "moc.y" -{ yyval.string = "int"; } -break; -case 56: -#line 953 "moc.y" -{ yyval.string = "long"; } -break; -case 57: -#line 954 "moc.y" -{ yyval.string = "signed"; } -break; -case 58: -#line 955 "moc.y" -{ yyval.string = "unsigned"; } -break; -case 59: -#line 956 "moc.y" -{ yyval.string = "float"; } -break; -case 60: -#line 957 "moc.y" -{ yyval.string = "double"; } -break; -case 61: -#line 958 "moc.y" -{ yyval.string = "void"; } -break; -case 62: -#line 962 "moc.y" -{ g->tmpExpression = rmWS( g->tmpExpression ); - yyval.string = stradd( "template<", - g->tmpExpression, ">" ); } -break; -case 64: -#line 968 "moc.y" -{ templateClassOld = templateClass; - templateClass = TRUE; - } -break; -case 65: -#line 974 "moc.y" -{ yyval.string = "class"; } -break; -case 66: -#line 975 "moc.y" -{ yyval.string = "struct"; } -break; -case 67: -#line 978 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 68: -#line 980 "moc.y" -{ yyval.string = stradd( "::", yyvsp[0].string ); } -break; -case 69: -#line 984 "moc.y" -{ yyval.string = stradd( yyvsp[-2].string, "::", yyvsp[0].string );} -break; -case 70: -#line 985 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 71: -#line 989 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string); } -break; -case 72: -#line 990 "moc.y" -{ yyval.string = stradd("enum ",yyvsp[0].string); } -break; -case 73: -#line 991 "moc.y" -{ yyval.string = stradd("union ",yyvsp[0].string); } -break; -case 74: -#line 996 "moc.y" -{ yyval.arg_list = yyvsp[-1].arg_list;} -break; -case 75: -#line 997 "moc.y" -{ yyval.arg_list = yyvsp[-2].arg_list; - func_warn("Ellipsis not supported" - " in signals and slots.\n" - "Ellipsis argument ignored."); } -break; -case 76: -#line 1003 "moc.y" -{ yyval.arg_list = tmpArgList; } -break; -case 77: -#line 1004 "moc.y" -{ yyval.arg_list = yyvsp[0].arg_list; } -break; -case 78: -#line 1007 "moc.y" -{ yyval.arg = 0; } -break; -case 81: -#line 1012 "moc.y" -{ func_warn("Ellipsis not supported" - " in signals and slots.\n" - "Ellipsis argument ignored."); } -break; -case 82: -#line 1020 "moc.y" -{ yyval.arg_list = addArg(yyvsp[0].arg); } -break; -case 83: -#line 1021 "moc.y" -{ yyval.arg_list = addArg(yyvsp[0].arg); } -break; -case 84: -#line 1025 "moc.y" -{ yyval.arg = new Argument(straddSpc(yyvsp[-1].string,yyvsp[0].string),""); } -break; -case 85: -#line 1027 "moc.y" -{ expLevel = 1; } -break; -case 86: -#line 1029 "moc.y" -{ yyval.arg = new Argument(straddSpc(yyvsp[-4].string,yyvsp[-3].string),"", 0, TRUE ); } -break; -case 87: -#line 1032 "moc.y" -{ yyval.arg = new Argument(straddSpc(yyvsp[-3].string,yyvsp[-2].string),yyvsp[0].string, yyvsp[-1].string); } -break; -case 88: -#line 1035 "moc.y" -{ expLevel = 1; } -break; -case 89: -#line 1037 "moc.y" -{ yyval.arg = new Argument(straddSpc(yyvsp[-6].string,yyvsp[-5].string),yyvsp[-3].string, yyvsp[-4].string, TRUE); } -break; -case 90: -#line 1041 "moc.y" -{ yyval.string = ""; } -break; -case 91: -#line 1042 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 92: -#line 1046 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string); } -break; -case 93: -#line 1047 "moc.y" -{ expLevel = 1; } -break; -case 94: -#line 1049 "moc.y" -{ yyval.string = stradd( "[", - g->tmpExpression = - g->tmpExpression.stripWhiteSpace(), "]" ); } -break; -case 95: -#line 1052 "moc.y" -{ expLevel = 1; } -break; -case 96: -#line 1054 "moc.y" -{ yyval.string = stradd( yyvsp[-4].string,"[", - g->tmpExpression = - g->tmpExpression.stripWhiteSpace(),"]" ); } -break; -case 97: -#line 1057 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 98: -#line 1058 "moc.y" -{ yyval.string = yyvsp[-1].string; } -break; -case 99: -#line 1061 "moc.y" -{ yyval.string = ""; } -break; -case 100: -#line 1063 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string);} -break; -case 101: -#line 1064 "moc.y" -{ expLevel = 1; } -break; -case 102: -#line 1066 "moc.y" -{ yyval.string = stradd( yyvsp[-4].string,"[", - g->tmpExpression = - g->tmpExpression.stripWhiteSpace(),"]" ); } -break; -case 103: -#line 1069 "moc.y" -{ yyval.string = yyvsp[-1].string; } -break; -case 105: -#line 1083 "moc.y" -{ tmpFunc->args = yyvsp[-6].arg_list; - tmpFunc->qualifier = yyvsp[-4].string; } -break; -case 107: -#line 1089 "moc.y" -{ func_warn("Variable as signal or slot."); } -break; -case 108: -#line 1090 "moc.y" -{ expLevel=0; } -break; -case 109: -#line 1092 "moc.y" -{ skipFunc = TRUE; } -break; -case 110: -#line 1093 "moc.y" -{ expLevel=0; } -break; -case 111: -#line 1095 "moc.y" -{ skipFunc = TRUE; } -break; -case 112: -#line 1099 "moc.y" -{ expLevel = 1; } -break; -case 114: -#line 1101 "moc.y" -{ expLevel = 1; } -break; -case 116: -#line 1106 "moc.y" -{ yyval.string = ""; } -break; -case 117: -#line 1107 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 118: -#line 1110 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 119: -#line 1111 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string);} -break; -case 120: -#line 1114 "moc.y" -{ yyval.string = straddSpc("*",yyvsp[0].string);} -break; -case 121: -#line 1115 "moc.y" -{ yyval.string = stradd("&",yyvsp[0].string);} -break; -case 122: -#line 1122 "moc.y" -{ yyval.string = ""; } -break; -case 123: -#line 1123 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 124: -#line 1126 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 125: -#line 1128 "moc.y" -{ yyval.string = straddSpc(yyvsp[-1].string,yyvsp[0].string); } -break; -case 126: -#line 1131 "moc.y" -{ yyval.string = "const"; } -break; -case 127: -#line 1132 "moc.y" -{ yyval.string = "volatile"; } -break; -case 131: -#line 1140 "moc.y" -{ BEGIN IN_FCT; fctLevel = 1;} -break; -case 132: -#line 1141 "moc.y" -{ BEGIN QT_DEF; } -break; -case 133: -#line 1148 "moc.y" -{ BEGIN IN_CLASS; - classPLevel = 1; - } -break; -case 134: -#line 1152 "moc.y" -{ BEGIN QT_DEF; } -break; -case 135: -#line 1153 "moc.y" -{ BEGIN QT_DEF; /* -- " -- */ - skipClass = TRUE; } -break; -case 136: -#line 1155 "moc.y" -{ BEGIN QT_DEF; /* -- " -- */ - skipClass = TRUE; } -break; -case 137: -#line 1157 "moc.y" -{ BEGIN QT_DEF; /* -- " -- */ - skipClass = TRUE; } -break; -case 138: -#line 1161 "moc.y" -{ BEGIN QT_DEF; /* catch ';' */ - skipClass = TRUE; } -break; -case 139: -#line 1163 "moc.y" -{ skipClass = TRUE; - BEGIN GIMME_SEMICOLON; } -break; -case 143: -#line 1170 "moc.y" -{ yyval.string = ""; } -break; -case 145: -#line 1176 "moc.y" -{ g->className = yyvsp[0].string; - if ( g->className == "QObject" ) - Q_OBJECTdetected = TRUE; - } -break; -case 146: -#line 1182 "moc.y" -{ g->className = yyvsp[0].string; - if ( g->className == "QObject" ) - Q_OBJECTdetected = TRUE; - } -break; -case 147: -#line 1189 "moc.y" -{ g->superClassName = yyvsp[0].string; } -break; -case 148: -#line 1194 "moc.y" -{ templateClass = templateClassOld; } -break; -case 157: -#line 1217 "moc.y" -{ expLevel = 1; } -break; -case 159: -#line 1222 "moc.y" -{ yyval.string = 0; } -break; -case 160: -#line 1223 "moc.y" -{ yyval.string = yyvsp[0].string; } -break; -case 165: -#line 1235 "moc.y" -{ tmpAccess = yyvsp[0].access; } -break; -case 166: -#line 1236 "moc.y" -{ moc_err( "Missing access specifier" - " before \"slots:\"." ); } -break; -case 167: -#line 1240 "moc.y" -{ BEGIN QT_DEF; } -break; -case 169: -#line 1242 "moc.y" -{ BEGIN QT_DEF; } -break; -case 171: -#line 1244 "moc.y" -{ - if ( tmpAccess ) - moc_warn("Q_OBJECT is not in the private" - " section of the class.\n" - "Q_OBJECT is a macro that resets" - " access permission to \"private\"."); - Q_OBJECTdetected = TRUE; - } -break; -case 172: -#line 1252 "moc.y" -{ tmpYYStart = YY_START; - tmpPropOverride = FALSE; - BEGIN IN_PROPERTY; } -break; -case 173: -#line 1255 "moc.y" -{ - BEGIN tmpYYStart; - } -break; -case 175: -#line 1259 "moc.y" -{ tmpYYStart = YY_START; - tmpPropOverride = TRUE; - BEGIN IN_PROPERTY; } -break; -case 176: -#line 1262 "moc.y" -{ - BEGIN tmpYYStart; - } -break; -case 178: -#line 1266 "moc.y" -{ tmpYYStart = YY_START; BEGIN IN_CLASSINFO; } -break; -case 179: -#line 1268 "moc.y" -{ - g->infos.append( new ClassInfo( yyvsp[-3].string, yyvsp[-1].string ) ); - BEGIN tmpYYStart; - } -break; -case 181: -#line 1273 "moc.y" -{ tmpYYStart = YY_START; BEGIN IN_PROPERTY; } -break; -case 182: -#line 1274 "moc.y" -{ - Q_PROPERTYdetected = TRUE; - BEGIN tmpYYStart; - } -break; -case 184: -#line 1279 "moc.y" -{ tmpYYStart = YY_START; BEGIN IN_PROPERTY; } -break; -case 185: -#line 1280 "moc.y" -{ - Q_PROPERTYdetected = TRUE; - BEGIN tmpYYStart; - } -break; -case 187: -#line 1287 "moc.y" -{ moc_err( "Signals cannot " - "have access specifiers" ); } -break; -case 189: -#line 1290 "moc.y" -{ if ( tmpAccess == Public && Q_PROPERTYdetected ) - BEGIN QT_DEF; - else - BEGIN IN_CLASS; - suppress_func_warn = TRUE; - } -break; -case 190: -#line 1297 "moc.y" -{ - suppress_func_warn = FALSE; - } -break; -case 191: -#line 1300 "moc.y" -{ BEGIN IN_CLASS; - if ( classPLevel != 1 ) - moc_warn( "unexpected access" - "specifier" ); - } -break; -case 196: -#line 1315 "moc.y" -{ addMember( PropertyCandidateMember ); } -break; -case 201: -#line 1327 "moc.y" -{ addMember( SignalMember ); } -break; -case 206: -#line 1338 "moc.y" -{ addMember( SlotMember ); } -break; -case 209: -#line 1345 "moc.y" -{ yyval.string=yyvsp[0].string; } -break; -case 210: -#line 1348 "moc.y" -{ g->multipleSuperClasses.append( yyvsp[0].string ); } -break; -case 212: -#line 1353 "moc.y" -{ yyval.string = stradd( yyvsp[-3].string, "(", yyvsp[-1].string, ")" ); } -break; -case 213: -#line 1355 "moc.y" -{ yyval.string = stradd( yyvsp[-3].string, "(", yyvsp[-1].string, ")" ); } -break; -case 214: -#line 1358 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 215: -#line 1359 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 216: -#line 1360 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 217: -#line 1361 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 218: -#line 1362 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 219: -#line 1363 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 220: -#line 1364 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 221: -#line 1365 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 222: -#line 1366 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 223: -#line 1367 "moc.y" -{yyval.string=yyvsp[0].string;} -break; -case 224: -#line 1370 "moc.y" -{ yyval.access=Private; } -break; -case 225: -#line 1371 "moc.y" -{ yyval.access=Protected; } -break; -case 226: -#line 1372 "moc.y" -{ yyval.access=Public; } -break; -case 227: -#line 1375 "moc.y" -{ } -break; -case 228: -#line 1376 "moc.y" -{ } -break; -case 270: -#line 1424 "moc.y" -{ tmpFunc->type = yyvsp[-1].string; - tmpFunc->name = yyvsp[0].string; } -break; -case 271: -#line 1427 "moc.y" -{ tmpFunc->type = "int"; - tmpFunc->name = yyvsp[0].string; - if ( tmpFunc->name == g->className ) - func_warn( "Constructors cannot be" - " signals or slots."); - } -break; -case 272: -#line 1434 "moc.y" -{ tmpFunc->type = "void"; - tmpFunc->name = "~"; - tmpFunc->name += yyvsp[0].string; - func_warn( "Destructors cannot be" - " signals or slots."); - } -break; -case 273: -#line 1442 "moc.y" -{ - char *tmp = - straddSpc(yyvsp[-4].string,yyvsp[-3].string,yyvsp[-2].string,yyvsp[-1].string); - tmpFunc->type = rmWS(tmp); - delete [] tmp; - tmpFunc->name = yyvsp[0].string; } -break; -case 274: -#line 1449 "moc.y" -{ skipFunc = TRUE; } -break; -case 275: -#line 1451 "moc.y" -{ tmpFunc->type = - straddSpc(yyvsp[-2].string,yyvsp[-1].string); - tmpFunc->name = yyvsp[0].string; } -break; -case 276: -#line 1456 "moc.y" -{ tmpFunc->type = - straddSpc(yyvsp[-3].string,yyvsp[-2].string,yyvsp[-1].string); - tmpFunc->name = yyvsp[0].string; } -break; -case 277: -#line 1460 "moc.y" -{ operatorError(); } -break; -case 278: -#line 1462 "moc.y" -{ operatorError(); } -break; -case 279: -#line 1465 "moc.y" -{ operatorError(); } -break; -case 280: -#line 1467 "moc.y" -{ operatorError(); } -break; -case 281: -#line 1470 "moc.y" -{ operatorError(); } -break; -case 283: -#line 1476 "moc.y" -{ func_warn("Unexpected variable declaration."); } -break; -case 284: -#line 1479 "moc.y" -{ func_warn("Unexpected variable declaration."); } -break; -case 285: -#line 1481 "moc.y" -{ func_warn("Unexpected enum declaration."); } -break; -case 286: -#line 1483 "moc.y" -{ func_warn("Unexpected using declaration."); } -break; -case 287: -#line 1485 "moc.y" -{ func_warn("Unexpected using declaration."); } -break; -case 288: -#line 1487 "moc.y" -{ classPLevel++; - moc_err("Unexpected namespace declaration."); } -break; -case 289: -#line 1490 "moc.y" -{ func_warn("Unexpected class declaration.");} -break; -case 290: -#line 1492 "moc.y" -{ func_warn("Unexpected class declaration."); - BEGIN IN_FCT; fctLevel=1; - } -break; -case 291: -#line 1495 "moc.y" -{ BEGIN QT_DEF; } -break; -case 295: -#line 1504 "moc.y" -{ } -break; -case 296: -#line 1505 "moc.y" -{ expLevel = 0; } -break; -case 298: -#line 1507 "moc.y" -{ expLevel = 0; } -break; -case 301: -#line 1512 "moc.y" -{ expLevel = 0; } -break; -case 306: -#line 1527 "moc.y" -{ BEGIN QT_DEF; - if ( tmpAccess == Public) { - tmpEnum->name = yyvsp[-4].string; - addEnum(); - } - } -break; -case 307: -#line 1534 "moc.y" -{ tmpEnum->clear();} -break; -case 309: -#line 1538 "moc.y" -{ } -break; -case 313: -#line 1546 "moc.y" -{ if ( tmpAccess == Public) tmpEnum->append( yyvsp[0].string ); } -break; -case 314: -#line 1547 "moc.y" -{ enumLevel=0; } -break; -case 315: -#line 1548 "moc.y" -{ if ( tmpAccess == Public) tmpEnum->append( yyvsp[-3].string ); } -break; -case 316: -#line 1552 "moc.y" -{ - g->propWrite = ""; - g->propRead = ""; - g->propOverride = tmpPropOverride; - g->propReset = ""; - if ( g->propOverride ) { - g->propStored = ""; - g->propDesignable = ""; - g->propScriptable = ""; - } else { - g->propStored = "true"; - g->propDesignable = "true"; - g->propScriptable = "true"; - } - } -break; -case 317: -#line 1568 "moc.y" -{ - if ( g->propRead.isEmpty() && !g->propOverride ) - moc_err( "A property must at least feature a read method." ); - checkPropertyName( yyvsp[-2].string ); - Q_PROPERTYdetected = TRUE; - /* Avoid duplicates*/ - for( QPtrListIterator<Property> lit( g->props ); lit.current(); ++lit ) { - if ( lit.current()->name == yyvsp[-2].string ) { - if ( displayWarnings ) - moc_err( "Property '%s' defined twice.", - (const char*)lit.current()->name ); - } - } - g->props.append( new Property( lineNo, yyvsp[-3].string, yyvsp[-2].string, - g->propWrite, g->propRead, g->propReset, - g->propStored, g->propDesignable, - g->propScriptable, g->propOverride ) ); - } -break; -case 319: -#line 1589 "moc.y" -{ g->propRead = yyvsp[-1].string; } -break; -case 320: -#line 1590 "moc.y" -{ g->propWrite = yyvsp[-1].string; } -break; -case 321: -#line 1591 "moc.y" -{ g->propReset = yyvsp[-1].string; } -break; -case 322: -#line 1592 "moc.y" -{ g->propStored = yyvsp[-1].string; } -break; -case 323: -#line 1593 "moc.y" -{ g->propDesignable = yyvsp[-1].string; } -break; -case 324: -#line 1594 "moc.y" -{ g->propScriptable = yyvsp[-1].string; } -break; -case 325: -#line 1597 "moc.y" -{ } -break; -case 326: -#line 1598 "moc.y" -{ g->qtEnums.append( yyvsp[-1].string ); } -break; -case 327: -#line 1601 "moc.y" -{ } -break; -case 328: -#line 1602 "moc.y" -{ g->qtSets.append( yyvsp[-1].string ); } -break; -#line 4759 "y.tab.c" - } - yyssp -= yym; - yystate = *yyssp; - yyvsp -= yym; - yym = yylhs[yyn]; - if (yystate == 0 && yym == 0) - { -#if YYDEBUG - if (yydebug) - printf("%sdebug: after reduction, shifting from state 0 to\ - state %d\n", YYPREFIX, YYFINAL); -#endif - yystate = YYFINAL; - *++yyssp = YYFINAL; - *++yyvsp = yyval; - if (yychar < 0) - { - if ((yychar = yylex()) < 0) yychar = 0; -#if YYDEBUG - if (yydebug) - { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; - printf("%sdebug: state %d, reading %d (%s)\n", - YYPREFIX, YYFINAL, yychar, yys); - } -#endif - } - if (yychar == 0) goto yyaccept; - goto yyloop; - } - if ((yyn = yygindex[yym]) && (yyn += yystate) >= 0 && - yyn <= YYTABLESIZE && yycheck[yyn] == yystate) - yystate = yytable[yyn]; - else - yystate = yydgoto[yym]; -#if YYDEBUG - if (yydebug) - printf("%sdebug: after reduction, shifting from state %d \ -to state %d\n", YYPREFIX, *yyssp, yystate); -#endif - if (yyssp >= yyss + yystacksize - 1) - { - goto yyoverflow; - } - *++yyssp = yystate; - *++yyvsp = yyval; - goto yyloop; -yyoverflow: - yyerror("yacc stack overflow"); -yyabort: - return (1); -yyaccept: - return (0); -} |