* source/vm/runner.c
* source/vm/fm.c
* source/common/hbver.c
* source/rtl/hbgtcore.c
* source/rtl/gtwvt/gtwvt.c
* source/rdd/dbfntx/dbfntx1.c
* source/rdd/workarea.c
* source/rdd/wacore.c
* source/rdd/sdf1.c
* source/rdd/dbfcdx/dbfcdx1.c
* source/rdd/delim1.c
* source/rdd/dbf1.c
* source/rdd/wafunc.c
* source/rdd/dbffpt/dbffpt1.c
* source/compiler/hbmain.c
* source/compiler/fixflex.c
* source/compiler/gencobj.c
* source/compiler/genc.c
* source/compiler/harbour.yyc
* source/compiler/harbour.y
* contrib/hbct/disk.c
* contrib/hbwhat32/whtcdlg.c
* contrib/gtwvg/gtwvg.c
* contrib/rddads/adsfunc.c
* contrib/rddads/ads1.c
* contrib/hbbmcdx/bmdbfcdx.c
* contrib/examples/pp/hbppcomp.c
* hb_strncpy()/hb_strncat() size parameter changed from
CONSTANT to 'sizeof( dest ) - 1', where applicable.
! hbct/VOLUME() buffer overrun fixed.
; NOTE: dbfntx1.c has a couple of places where I wasn't
sure of the intention, so I left them unchanged.
8168 lines
351 KiB
Plaintext
8168 lines
351 KiB
Plaintext
/* A Bison parser, made by GNU Bison 2.3. */
|
||
|
||
/* 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 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
Boston, MA 02110-1301, USA. */
|
||
|
||
/* 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.3"
|
||
|
||
/* Skeleton name. */
|
||
#define YYSKELETON_NAME "yacc.c"
|
||
|
||
/* Pure parsers. */
|
||
#define YYPURE 1
|
||
|
||
/* Using locations. */
|
||
#define YYLSP_NEEDED 0
|
||
|
||
/* Substitute the variable and function names. */
|
||
#define yyparse hb_compparse
|
||
#define yylex hb_complex
|
||
#define yyerror hb_comperror
|
||
#define yylval hb_complval
|
||
#define yychar hb_compchar
|
||
#define yydebug hb_compdebug
|
||
#define yynerrs hb_compnerrs
|
||
|
||
|
||
/* Tokens. */
|
||
#ifndef YYTOKENTYPE
|
||
# define YYTOKENTYPE
|
||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||
know about them. */
|
||
enum yytokentype {
|
||
FUNCTION = 258,
|
||
PROCEDURE = 259,
|
||
IDENTIFIER = 260,
|
||
RETURN = 261,
|
||
NIL = 262,
|
||
NUM_DOUBLE = 263,
|
||
INASSIGN = 264,
|
||
NUM_LONG = 265,
|
||
LOCAL = 266,
|
||
STATIC = 267,
|
||
IIF = 268,
|
||
IF = 269,
|
||
ELSE = 270,
|
||
ELSEIF = 271,
|
||
END = 272,
|
||
ENDIF = 273,
|
||
LITERAL = 274,
|
||
TRUEVALUE = 275,
|
||
FALSEVALUE = 276,
|
||
ANNOUNCE = 277,
|
||
EXTERN = 278,
|
||
DYNAMIC = 279,
|
||
INIT = 280,
|
||
EXIT = 281,
|
||
AND = 282,
|
||
OR = 283,
|
||
NOT = 284,
|
||
PUBLIC = 285,
|
||
EQ = 286,
|
||
NE1 = 287,
|
||
NE2 = 288,
|
||
INC = 289,
|
||
DEC = 290,
|
||
ALIASOP = 291,
|
||
DOCASE = 292,
|
||
CASE = 293,
|
||
OTHERWISE = 294,
|
||
ENDCASE = 295,
|
||
ENDDO = 296,
|
||
MEMVAR = 297,
|
||
WHILE = 298,
|
||
LOOP = 299,
|
||
FOR = 300,
|
||
NEXT = 301,
|
||
TO = 302,
|
||
STEP = 303,
|
||
LE = 304,
|
||
GE = 305,
|
||
FIELD = 306,
|
||
IN = 307,
|
||
PARAMETERS = 308,
|
||
PLUSEQ = 309,
|
||
MINUSEQ = 310,
|
||
MULTEQ = 311,
|
||
DIVEQ = 312,
|
||
POWER = 313,
|
||
EXPEQ = 314,
|
||
MODEQ = 315,
|
||
PRIVATE = 316,
|
||
BEGINSEQ = 317,
|
||
BREAK = 318,
|
||
RECOVER = 319,
|
||
RECOVERUSING = 320,
|
||
ALWAYS = 321,
|
||
ENDSEQ = 322,
|
||
DO = 323,
|
||
WITH = 324,
|
||
SELF = 325,
|
||
LINE = 326,
|
||
MACROVAR = 327,
|
||
MACROTEXT = 328,
|
||
AS_ARRAY = 329,
|
||
AS_BLOCK = 330,
|
||
AS_CHARACTER = 331,
|
||
AS_CLASS = 332,
|
||
AS_DATE = 333,
|
||
AS_LOGICAL = 334,
|
||
AS_NUMERIC = 335,
|
||
AS_OBJECT = 336,
|
||
AS_VARIANT = 337,
|
||
DECLARE = 338,
|
||
OPTIONAL = 339,
|
||
DECLARE_CLASS = 340,
|
||
DECLARE_MEMBER = 341,
|
||
AS_ARRAY_ARRAY = 342,
|
||
AS_BLOCK_ARRAY = 343,
|
||
AS_CHARACTER_ARRAY = 344,
|
||
AS_CLASS_ARRAY = 345,
|
||
AS_DATE_ARRAY = 346,
|
||
AS_LOGICAL_ARRAY = 347,
|
||
AS_NUMERIC_ARRAY = 348,
|
||
AS_OBJECT_ARRAY = 349,
|
||
PROCREQ = 350,
|
||
CBSTART = 351,
|
||
DOIDENT = 352,
|
||
FOREACH = 353,
|
||
DESCEND = 354,
|
||
DOSWITCH = 355,
|
||
ENDSWITCH = 356,
|
||
WITHOBJECT = 357,
|
||
ENDWITH = 358,
|
||
NUM_DATE = 359,
|
||
EPSILON = 360,
|
||
HASHOP = 361,
|
||
POST = 362,
|
||
UNARY = 363,
|
||
PRE = 364
|
||
};
|
||
#endif
|
||
/* Tokens. */
|
||
#define FUNCTION 258
|
||
#define PROCEDURE 259
|
||
#define IDENTIFIER 260
|
||
#define RETURN 261
|
||
#define NIL 262
|
||
#define NUM_DOUBLE 263
|
||
#define INASSIGN 264
|
||
#define NUM_LONG 265
|
||
#define LOCAL 266
|
||
#define STATIC 267
|
||
#define IIF 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define ELSEIF 271
|
||
#define END 272
|
||
#define ENDIF 273
|
||
#define LITERAL 274
|
||
#define TRUEVALUE 275
|
||
#define FALSEVALUE 276
|
||
#define ANNOUNCE 277
|
||
#define EXTERN 278
|
||
#define DYNAMIC 279
|
||
#define INIT 280
|
||
#define EXIT 281
|
||
#define AND 282
|
||
#define OR 283
|
||
#define NOT 284
|
||
#define PUBLIC 285
|
||
#define EQ 286
|
||
#define NE1 287
|
||
#define NE2 288
|
||
#define INC 289
|
||
#define DEC 290
|
||
#define ALIASOP 291
|
||
#define DOCASE 292
|
||
#define CASE 293
|
||
#define OTHERWISE 294
|
||
#define ENDCASE 295
|
||
#define ENDDO 296
|
||
#define MEMVAR 297
|
||
#define WHILE 298
|
||
#define LOOP 299
|
||
#define FOR 300
|
||
#define NEXT 301
|
||
#define TO 302
|
||
#define STEP 303
|
||
#define LE 304
|
||
#define GE 305
|
||
#define FIELD 306
|
||
#define IN 307
|
||
#define PARAMETERS 308
|
||
#define PLUSEQ 309
|
||
#define MINUSEQ 310
|
||
#define MULTEQ 311
|
||
#define DIVEQ 312
|
||
#define POWER 313
|
||
#define EXPEQ 314
|
||
#define MODEQ 315
|
||
#define PRIVATE 316
|
||
#define BEGINSEQ 317
|
||
#define BREAK 318
|
||
#define RECOVER 319
|
||
#define RECOVERUSING 320
|
||
#define ALWAYS 321
|
||
#define ENDSEQ 322
|
||
#define DO 323
|
||
#define WITH 324
|
||
#define SELF 325
|
||
#define LINE 326
|
||
#define MACROVAR 327
|
||
#define MACROTEXT 328
|
||
#define AS_ARRAY 329
|
||
#define AS_BLOCK 330
|
||
#define AS_CHARACTER 331
|
||
#define AS_CLASS 332
|
||
#define AS_DATE 333
|
||
#define AS_LOGICAL 334
|
||
#define AS_NUMERIC 335
|
||
#define AS_OBJECT 336
|
||
#define AS_VARIANT 337
|
||
#define DECLARE 338
|
||
#define OPTIONAL 339
|
||
#define DECLARE_CLASS 340
|
||
#define DECLARE_MEMBER 341
|
||
#define AS_ARRAY_ARRAY 342
|
||
#define AS_BLOCK_ARRAY 343
|
||
#define AS_CHARACTER_ARRAY 344
|
||
#define AS_CLASS_ARRAY 345
|
||
#define AS_DATE_ARRAY 346
|
||
#define AS_LOGICAL_ARRAY 347
|
||
#define AS_NUMERIC_ARRAY 348
|
||
#define AS_OBJECT_ARRAY 349
|
||
#define PROCREQ 350
|
||
#define CBSTART 351
|
||
#define DOIDENT 352
|
||
#define FOREACH 353
|
||
#define DESCEND 354
|
||
#define DOSWITCH 355
|
||
#define ENDSWITCH 356
|
||
#define WITHOBJECT 357
|
||
#define ENDWITH 358
|
||
#define NUM_DATE 359
|
||
#define EPSILON 360
|
||
#define HASHOP 361
|
||
#define POST 362
|
||
#define UNARY 363
|
||
#define PRE 364
|
||
|
||
|
||
|
||
|
||
/* Copy the first part of user declarations. */
|
||
#line 5 "harbour.y"
|
||
|
||
/*
|
||
* $Id$
|
||
*/
|
||
|
||
/*
|
||
* Harbour Project source code:
|
||
* Compiler YACC rules and actions
|
||
*
|
||
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
||
* www - http://www.harbour-project.org
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 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, write to the Free Software
|
||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
|
||
* their web site at http://www.gnu.org/).
|
||
*
|
||
*/
|
||
|
||
/* TODO list
|
||
* 1) Change the pcode generated by ::cVar from Self:cVar to QSELF():cVar
|
||
* The major problem to solve is how to support QSELF() inside a codeblock.
|
||
*/
|
||
|
||
|
||
#include "hbcomp.h"
|
||
|
||
/* Compile using: bison -d -v harbour.y */
|
||
|
||
/* to pacify some warnings in BCC */
|
||
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
|
||
# define __STDC__
|
||
#endif
|
||
|
||
#undef alloca
|
||
#define alloca hb_xgrab
|
||
#undef malloc
|
||
#define malloc hb_xgrab
|
||
#undef realloc
|
||
#define realloc hb_xrealloc
|
||
#undef free
|
||
#define free hb_xfree
|
||
|
||
/* NOTE: these symbols are used internally in bison.simple
|
||
*/
|
||
#undef YYFREE
|
||
#define YYFREE hb_xfree
|
||
#undef YYMALLOC
|
||
#define YYMALLOC hb_xgrab
|
||
|
||
#define NO_YYERROR
|
||
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL );
|
||
static void hb_compLoopEnd( HB_COMP_DECL );
|
||
static void hb_compLoopLoop( HB_COMP_DECL );
|
||
static void hb_compLoopExit( HB_COMP_DECL );
|
||
static void hb_compLoopHere( HB_COMP_DECL );
|
||
static long hb_compLoopCount( HB_COMP_DECL );
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirstElseIf, ULONG ulOffset ); /* generates a support structure for elseifs pcode fixups */
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pIfElseIfs ); /* implements the ElseIfs pcode fixups */
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR, BOOL );
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * );
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL );
|
||
static void hb_compVariableDim( char *, HB_EXPR_PTR, HB_COMP_DECL );
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach );
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVarName );
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend );
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend );
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL );
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR );
|
||
static void hb_compSwitchEnd( HB_COMP_DECL );
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
#ifdef HB_YYDEBUG
|
||
#define YYDEBUG 1 /* Parser debug information support */
|
||
#endif
|
||
|
||
/* Controls if passing by reference '@' is allowed */
|
||
#define HB_PASSBYREF_OFF 0
|
||
#define HB_PASSBYREF_FUNCALL 1
|
||
#define HB_PASSBYREF_ARRAY 2
|
||
|
||
static void hb_compDebugStart( void ) { };
|
||
|
||
|
||
|
||
/* 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
|
||
|
||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||
typedef union YYSTYPE
|
||
#line 109 "harbour.y"
|
||
{
|
||
char * string; /* to hold a string returned by lex */
|
||
int iNumber; /* to hold a temporary integer number */
|
||
HB_LONG lNumber; /* to hold a temporary long number */
|
||
BOOL bTrue;
|
||
HB_EXPR_PTR asExpr;
|
||
void * pVoid; /* to hold any memory structure we may need */
|
||
struct
|
||
{
|
||
HB_LONG lNumber; /* to hold a long number returned by lex */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
} valLong;
|
||
struct
|
||
{
|
||
double dNumber; /* to hold a double number returned by lex */
|
||
/* NOTE: Intentionally using "unsigned char" instead of "BYTE" */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
UCHAR bDec; /* to hold the number of decimal points in the value */
|
||
} valDouble;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
BOOL dealloc;
|
||
} valChar;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */
|
||
} asCodeblock;
|
||
struct
|
||
{
|
||
BOOL bMacro;
|
||
union
|
||
{
|
||
char * string;
|
||
HB_EXPR_PTR macro;
|
||
} value;
|
||
} asMessage;
|
||
}
|
||
/* Line 193 of yacc.c. */
|
||
#line 467 "harboury.c"
|
||
YYSTYPE;
|
||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||
# define YYSTYPE_IS_DECLARED 1
|
||
# define YYSTYPE_IS_TRIVIAL 1
|
||
#endif
|
||
|
||
|
||
|
||
/* Copy the second part of user declarations. */
|
||
#line 151 "harbour.y"
|
||
|
||
/* This must be placed after the above union - the union is
|
||
* typedef-ined to YYSTYPE
|
||
*/
|
||
extern int yylex( YYSTYPE *, HB_COMP_DECL ); /* main lex token function, called by yyparse() */
|
||
extern void yyerror( HB_COMP_DECL, char * ); /* parsing error management function */
|
||
|
||
|
||
/* Line 216 of yacc.c. */
|
||
#line 487 "harboury.c"
|
||
|
||
#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 i)
|
||
#else
|
||
static int
|
||
YYID (i)
|
||
int i;
|
||
#endif
|
||
{
|
||
return i;
|
||
}
|
||
#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;
|
||
YYSTYPE yyvs;
|
||
};
|
||
|
||
/* 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) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yynewbytes; \
|
||
YYCOPY (&yyptr->Stack, Stack, yysize); \
|
||
Stack = &yyptr->Stack; \
|
||
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
|
||
yyptr += yynewbytes / sizeof (*yyptr); \
|
||
} \
|
||
while (YYID (0))
|
||
|
||
#endif
|
||
|
||
/* YYFINAL -- State number of the termination state. */
|
||
#define YYFINAL 287
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 8838
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 132
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 251
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 636
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 1011
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 364
|
||
|
||
#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,
|
||
121, 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, 111, 116, 119, 2,
|
||
124, 125, 114, 112, 123, 113, 2, 115, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 128, 122,
|
||
109, 108, 110, 2, 120, 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, 130, 2, 129, 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, 126, 131, 127, 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, 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, 57, 58, 59, 60, 61, 62, 63, 64,
|
||
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
||
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
||
105, 106, 107, 117, 118
|
||
};
|
||
|
||
#if YYDEBUG
|
||
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
||
YYRHS. */
|
||
static const yytype_uint16 yyprhs[] =
|
||
{
|
||
0, 0, 3, 5, 6, 8, 10, 12, 14, 16,
|
||
19, 22, 25, 28, 31, 34, 38, 43, 50, 51,
|
||
57, 58, 64, 65, 74, 75, 84, 85, 87, 89,
|
||
91, 92, 94, 96, 100, 101, 103, 104, 106, 108,
|
||
110, 112, 114, 116, 118, 121, 123, 125, 127, 129,
|
||
131, 133, 135, 137, 139, 141, 144, 147, 152, 155,
|
||
158, 161, 164, 167, 170, 173, 176, 179, 182, 185,
|
||
188, 191, 194, 197, 198, 203, 206, 209, 212, 213,
|
||
218, 219, 220, 226, 227, 228, 234, 236, 238, 240,
|
||
244, 248, 249, 254, 259, 261, 265, 266, 269, 271,
|
||
273, 275, 277, 279, 281, 286, 294, 299, 307, 308,
|
||
310, 312, 314, 316, 319, 320, 322, 324, 328, 330,
|
||
334, 336, 338, 340, 342, 344, 346, 348, 350, 352,
|
||
354, 356, 358, 360, 362, 364, 366, 368, 370, 372,
|
||
374, 376, 379, 382, 384, 387, 389, 392, 395, 397,
|
||
399, 402, 404, 407, 411, 414, 417, 420, 424, 428,
|
||
431, 435, 441, 443, 446, 448, 450, 453, 456, 459,
|
||
462, 466, 469, 472, 475, 478, 481, 484, 487, 490,
|
||
493, 496, 499, 502, 505, 508, 510, 512, 514, 517,
|
||
520, 523, 526, 529, 532, 535, 538, 541, 544, 547,
|
||
550, 553, 556, 559, 562, 565, 568, 571, 574, 577,
|
||
580, 583, 586, 589, 592, 595, 598, 601, 604, 607,
|
||
610, 613, 616, 619, 622, 625, 628, 631, 634, 637,
|
||
640, 643, 646, 649, 650, 656, 658, 659, 665, 666,
|
||
672, 675, 678, 680, 684, 686, 688, 691, 694, 697,
|
||
700, 703, 705, 707, 711, 715, 718, 720, 722, 724,
|
||
729, 732, 733, 739, 742, 744, 746, 748, 750, 752,
|
||
754, 756, 757, 761, 763, 765, 767, 769, 771, 773,
|
||
775, 777, 779, 780, 784, 786, 788, 789, 793, 795,
|
||
796, 800, 802, 804, 806, 808, 810, 812, 814, 816,
|
||
818, 820, 822, 823, 827, 828, 832, 834, 836, 838,
|
||
839, 841, 843, 845, 847, 849, 851, 853, 855, 857,
|
||
859, 861, 863, 865, 867, 869, 871, 873, 875, 877,
|
||
879, 881, 883, 885, 887, 889, 891, 893, 895, 897,
|
||
899, 901, 904, 907, 910, 913, 916, 919, 923, 927,
|
||
931, 935, 939, 943, 947, 951, 955, 959, 963, 967,
|
||
971, 975, 979, 983, 987, 991, 995, 999, 1003, 1007,
|
||
1011, 1015, 1019, 1023, 1027, 1031, 1033, 1035, 1037, 1039,
|
||
1041, 1043, 1047, 1051, 1055, 1059, 1063, 1067, 1071, 1075,
|
||
1079, 1083, 1087, 1091, 1095, 1099, 1103, 1107, 1111, 1114,
|
||
1117, 1121, 1126, 1128, 1132, 1133, 1138, 1139, 1141, 1143,
|
||
1147, 1150, 1155, 1157, 1161, 1165, 1166, 1172, 1174, 1178,
|
||
1182, 1185, 1194, 1197, 1198, 1203, 1204, 1209, 1210, 1215,
|
||
1217, 1221, 1223, 1227, 1229, 1232, 1237, 1241, 1242, 1246,
|
||
1247, 1248, 1255, 1259, 1262, 1265, 1269, 1274, 1275, 1281,
|
||
1284, 1289, 1290, 1293, 1294, 1299, 1302, 1307, 1308, 1317,
|
||
1318, 1324, 1328, 1333, 1337, 1338, 1346, 1348, 1352, 1354,
|
||
1357, 1359, 1362, 1363, 1370, 1371, 1375, 1376, 1378, 1380,
|
||
1384, 1386, 1390, 1392, 1395, 1399, 1405, 1410, 1416, 1424,
|
||
1428, 1433, 1440, 1446, 1453, 1462, 1464, 1466, 1468, 1470,
|
||
1472, 1474, 1476, 1478, 1481, 1485, 1489, 1494, 1495, 1496,
|
||
1503, 1504, 1509, 1510, 1511, 1518, 1519, 1520, 1528, 1530,
|
||
1532, 1534, 1538, 1542, 1545, 1550, 1552, 1554, 1556, 1557,
|
||
1561, 1563, 1566, 1567, 1568, 1575, 1576, 1577, 1585, 1586,
|
||
1587, 1593, 1594, 1600, 1601, 1602, 1610, 1612, 1614, 1616,
|
||
1618, 1619, 1620, 1621, 1634, 1636, 1638, 1639, 1642, 1645,
|
||
1647, 1650, 1652, 1655, 1657, 1659, 1661, 1665, 1668, 1670,
|
||
1672, 1676, 1677, 1678, 1679, 1690, 1691, 1693, 1694, 1699,
|
||
1702, 1704, 1706, 1708, 1709, 1714, 1716, 1719, 1720, 1726,
|
||
1727, 1734, 1736, 1739, 1740, 1741, 1747, 1748, 1749, 1750,
|
||
1751, 1763, 1765, 1767, 1768, 1771, 1772, 1776, 1778, 1779,
|
||
1783, 1787, 1789, 1792, 1794, 1796, 1797, 1802, 1803, 1807,
|
||
1808, 1811, 1813, 1816, 1818, 1821, 1825, 1827, 1829, 1831,
|
||
1833, 1835, 1836, 1843, 1845, 1847, 1849
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yytype_int16 yyrhs[] =
|
||
{
|
||
133, 0, -1, 134, -1, -1, 382, -1, 280, -1,
|
||
136, -1, 148, -1, 135, -1, 1, 382, -1, 134,
|
||
382, -1, 134, 280, -1, 134, 136, -1, 134, 148,
|
||
-1, 134, 135, -1, 134, 1, 382, -1, 71, 10,
|
||
19, 382, -1, 71, 10, 19, 120, 19, 382, -1,
|
||
-1, 141, 3, 166, 137, 382, -1, -1, 141, 4,
|
||
166, 138, 382, -1, -1, 141, 3, 166, 139, 124,
|
||
142, 125, 382, -1, -1, 141, 4, 166, 140, 124,
|
||
142, 125, 382, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, -1, 105, -1, 147, -1, 147, 123, 105, -1,
|
||
-1, 145, -1, -1, 146, -1, 80, -1, 76, -1,
|
||
78, -1, 79, -1, 75, -1, 81, -1, 77, 166,
|
||
-1, 82, -1, 146, -1, 74, -1, 93, -1, 89,
|
||
-1, 91, -1, 92, -1, 87, -1, 88, -1, 94,
|
||
-1, 90, 166, -1, 166, 143, -1, 147, 123, 166,
|
||
143, -1, 295, 157, -1, 258, 157, -1, 201, 157,
|
||
-1, 196, 157, -1, 214, 157, -1, 188, 157, -1,
|
||
190, 157, -1, 256, 157, -1, 231, 157, -1, 230,
|
||
157, -1, 241, 157, -1, 234, 157, -1, 233, 157,
|
||
-1, 373, 157, -1, 63, 157, -1, -1, 63, 149,
|
||
222, 382, -1, 26, 157, -1, 44, 157, -1, 6,
|
||
157, -1, -1, 6, 150, 222, 382, -1, -1, -1,
|
||
30, 151, 265, 152, 382, -1, -1, -1, 61, 153,
|
||
265, 154, 382, -1, 260, -1, 273, -1, 277, -1,
|
||
23, 164, 382, -1, 24, 165, 382, -1, -1, 22,
|
||
166, 155, 382, -1, 95, 156, 125, 382, -1, 19,
|
||
-1, 19, 112, 19, -1, -1, 158, 382, -1, 382,
|
||
-1, 148, -1, 280, -1, 135, -1, 160, -1, 1,
|
||
-1, 161, 3, 166, 382, -1, 161, 3, 166, 124,
|
||
142, 125, 382, -1, 161, 4, 166, 382, -1, 161,
|
||
4, 166, 124, 142, 125, 382, -1, -1, 12, -1,
|
||
25, -1, 26, -1, 159, -1, 162, 159, -1, -1,
|
||
162, -1, 166, -1, 164, 123, 166, -1, 166, -1,
|
||
165, 123, 166, -1, 5, -1, 48, -1, 47, -1,
|
||
44, -1, 26, -1, 52, -1, 84, -1, 23, -1,
|
||
24, -1, 22, -1, 11, -1, 42, -1, 12, -1,
|
||
61, -1, 30, -1, 53, -1, 95, -1, 99, -1,
|
||
8, -1, 10, -1, 104, -1, 10, 36, -1, 8,
|
||
36, -1, 7, -1, 170, 36, -1, 19, -1, 172,
|
||
36, -1, 253, 36, -1, 20, -1, 21, -1, 175,
|
||
36, -1, 70, -1, 177, 36, -1, 126, 247, 127,
|
||
-1, 179, 36, -1, 179, 245, -1, 181, 36, -1,
|
||
126, 106, 127, -1, 126, 185, 127, -1, 183, 36,
|
||
-1, 222, 106, 226, -1, 185, 123, 222, 106, 226,
|
||
-1, 166, -1, 166, 36, -1, 72, -1, 73, -1,
|
||
188, 36, -1, 119, 256, -1, 190, 36, -1, 51,
|
||
36, -1, 51, 36, 192, -1, 192, 187, -1, 192,
|
||
169, -1, 192, 257, -1, 192, 189, -1, 192, 191,
|
||
-1, 192, 171, -1, 192, 173, -1, 192, 176, -1,
|
||
192, 174, -1, 192, 178, -1, 192, 180, -1, 192,
|
||
182, -1, 192, 184, -1, 192, 259, -1, 166, -1,
|
||
188, -1, 190, -1, 169, 194, -1, 189, 194, -1,
|
||
191, 194, -1, 257, 194, -1, 171, 194, -1, 173,
|
||
194, -1, 176, 194, -1, 174, 194, -1, 184, 194,
|
||
-1, 178, 194, -1, 180, 194, -1, 182, 194, -1,
|
||
198, 194, -1, 259, 194, -1, 205, 194, -1, 213,
|
||
194, -1, 216, 194, -1, 187, 194, -1, 192, 194,
|
||
-1, 193, 194, -1, 169, 256, -1, 187, 256, -1,
|
||
189, 256, -1, 191, 256, -1, 257, 256, -1, 192,
|
||
256, -1, 167, 245, -1, 170, 245, -1, 168, 245,
|
||
-1, 172, 245, -1, 253, 245, -1, 175, 245, -1,
|
||
183, 245, -1, 177, 245, -1, 186, 245, -1, 195,
|
||
245, -1, 196, 245, -1, 188, 245, -1, 190, 245,
|
||
-1, 210, 245, -1, 214, 245, -1, 201, 245, -1,
|
||
258, 245, -1, 256, 245, -1, 197, 36, -1, -1,
|
||
166, 124, 200, 206, 125, -1, 199, -1, -1, 188,
|
||
124, 202, 206, 125, -1, -1, 190, 124, 203, 206,
|
||
125, -1, 120, 199, -1, 201, 36, -1, 209, -1,
|
||
206, 123, 209, -1, 226, -1, 208, -1, 120, 166,
|
||
-1, 120, 188, -1, 120, 195, -1, 120, 210, -1,
|
||
120, 197, -1, 105, -1, 207, -1, 228, 128, 211,
|
||
-1, 212, 128, 211, -1, 128, 211, -1, 166, -1,
|
||
188, -1, 190, -1, 124, 120, 166, 125, -1, 210,
|
||
36, -1, -1, 210, 124, 215, 206, 125, -1, 214,
|
||
36, -1, 167, -1, 170, -1, 168, -1, 172, -1,
|
||
253, -1, 175, -1, 177, -1, -1, 177, 218, 145,
|
||
-1, 179, -1, 181, -1, 183, -1, 195, -1, 196,
|
||
-1, 188, -1, 190, -1, 197, -1, 201, -1, -1,
|
||
201, 219, 145, -1, 258, -1, 210, -1, -1, 210,
|
||
220, 145, -1, 214, -1, -1, 214, 221, 145, -1,
|
||
233, -1, 241, -1, 230, -1, 231, -1, 232, -1,
|
||
242, -1, 243, -1, 244, -1, 217, -1, 186, -1,
|
||
256, -1, -1, 186, 223, 145, -1, -1, 256, 224,
|
||
145, -1, 204, -1, 105, -1, 222, -1, -1, 222,
|
||
-1, 166, -1, 195, -1, 188, -1, 190, -1, 210,
|
||
-1, 197, -1, 256, -1, 167, -1, 170, -1, 168,
|
||
-1, 172, -1, 253, -1, 175, -1, 177, -1, 179,
|
||
-1, 181, -1, 183, -1, 195, -1, 196, -1, 188,
|
||
-1, 190, -1, 186, -1, 197, -1, 256, -1, 201,
|
||
-1, 258, -1, 210, -1, 214, -1, 34, -1, 35,
|
||
-1, 228, 229, -1, 34, 222, -1, 35, 222, -1,
|
||
29, 222, -1, 113, 222, -1, 112, 222, -1, 167,
|
||
9, 222, -1, 170, 9, 222, -1, 168, 9, 222,
|
||
-1, 172, 9, 222, -1, 253, 9, 222, -1, 175,
|
||
9, 222, -1, 177, 9, 222, -1, 179, 9, 222,
|
||
-1, 181, 9, 222, -1, 183, 9, 222, -1, 195,
|
||
9, 222, -1, 196, 9, 222, -1, 188, 9, 222,
|
||
-1, 190, 9, 222, -1, 186, 9, 222, -1, 197,
|
||
9, 222, -1, 256, 9, 222, -1, 258, 9, 222,
|
||
-1, 201, 9, 222, -1, 210, 9, 222, -1, 214,
|
||
9, 222, -1, 228, 108, 222, -1, 228, 54, 222,
|
||
-1, 228, 55, 222, -1, 228, 56, 222, -1, 228,
|
||
57, 222, -1, 228, 60, 222, -1, 228, 59, 222,
|
||
-1, 235, -1, 236, -1, 237, -1, 238, -1, 239,
|
||
-1, 240, -1, 222, 112, 222, -1, 222, 113, 222,
|
||
-1, 222, 114, 222, -1, 222, 115, 222, -1, 222,
|
||
116, 222, -1, 222, 58, 222, -1, 222, 27, 222,
|
||
-1, 222, 28, 222, -1, 222, 31, 222, -1, 222,
|
||
109, 222, -1, 222, 110, 222, -1, 222, 49, 222,
|
||
-1, 222, 50, 222, -1, 222, 32, 222, -1, 222,
|
||
33, 222, -1, 222, 111, 222, -1, 222, 108, 222,
|
||
-1, 246, 129, -1, 130, 225, -1, 246, 123, 225,
|
||
-1, 246, 129, 130, 225, -1, 209, -1, 247, 123,
|
||
209, -1, -1, 96, 249, 250, 131, -1, -1, 105,
|
||
-1, 251, -1, 251, 123, 105, -1, 166, 143, -1,
|
||
251, 123, 166, 143, -1, 222, -1, 252, 123, 222,
|
||
-1, 248, 252, 127, -1, -1, 248, 382, 254, 163,
|
||
127, -1, 222, -1, 255, 123, 222, -1, 124, 255,
|
||
125, -1, 256, 36, -1, 13, 124, 222, 123, 207,
|
||
123, 207, 125, -1, 258, 36, -1, -1, 11, 261,
|
||
264, 382, -1, -1, 12, 262, 264, 382, -1, -1,
|
||
53, 263, 279, 382, -1, 267, -1, 264, 123, 267,
|
||
-1, 266, -1, 265, 123, 266, -1, 267, -1, 188,
|
||
143, -1, 188, 143, 9, 222, -1, 188, 271, 144,
|
||
-1, -1, 166, 143, 268, -1, -1, -1, 166, 143,
|
||
269, 9, 270, 222, -1, 166, 271, 144, -1, 272,
|
||
129, -1, 130, 222, -1, 272, 123, 222, -1, 272,
|
||
129, 130, 222, -1, -1, 51, 274, 275, 276, 382,
|
||
-1, 166, 143, -1, 275, 123, 166, 143, -1, -1,
|
||
52, 166, -1, -1, 42, 278, 279, 382, -1, 166,
|
||
143, -1, 279, 123, 166, 143, -1, -1, 83, 166,
|
||
124, 281, 290, 125, 143, 382, -1, -1, 83, 166,
|
||
282, 285, 382, -1, 85, 166, 382, -1, 85, 166,
|
||
166, 382, -1, 86, 286, 382, -1, -1, 86, 126,
|
||
143, 283, 284, 127, 382, -1, 288, -1, 284, 123,
|
||
288, -1, 286, -1, 285, 286, -1, 288, -1, 285,
|
||
288, -1, -1, 166, 124, 287, 290, 125, 143, -1,
|
||
-1, 166, 289, 143, -1, -1, 293, -1, 294, -1,
|
||
293, 123, 294, -1, 292, -1, 291, 123, 292, -1,
|
||
226, -1, 166, 143, -1, 120, 166, 143, -1, 120,
|
||
166, 124, 291, 125, -1, 293, 123, 166, 143, -1,
|
||
293, 123, 120, 166, 143, -1, 293, 123, 120, 166,
|
||
124, 291, 125, -1, 84, 166, 143, -1, 84, 120,
|
||
166, 143, -1, 84, 120, 166, 124, 291, 125, -1,
|
||
294, 123, 84, 166, 143, -1, 294, 123, 84, 120,
|
||
166, 143, -1, 294, 123, 84, 120, 166, 124, 291,
|
||
125, -1, 296, -1, 309, -1, 324, -1, 330, -1,
|
||
360, -1, 342, -1, 347, -1, 379, -1, 297, 307,
|
||
-1, 297, 300, 307, -1, 297, 302, 307, -1, 297,
|
||
302, 300, 307, -1, -1, -1, 14, 255, 298, 382,
|
||
299, 163, -1, -1, 15, 382, 301, 163, -1, -1,
|
||
-1, 16, 303, 255, 382, 304, 163, -1, -1, -1,
|
||
302, 16, 305, 255, 382, 306, 163, -1, 308, -1,
|
||
18, -1, 17, -1, 314, 315, 310, -1, 314, 320,
|
||
310, -1, 314, 310, -1, 314, 315, 320, 310, -1,
|
||
311, -1, 40, -1, 17, -1, -1, 37, 313, 382,
|
||
-1, 312, -1, 312, 162, -1, -1, -1, 38, 316,
|
||
255, 382, 317, 163, -1, -1, -1, 315, 38, 318,
|
||
255, 382, 319, 163, -1, -1, -1, 39, 321, 382,
|
||
322, 163, -1, -1, 320, 39, 323, 382, 163, -1,
|
||
-1, -1, 327, 255, 382, 325, 163, 326, 328, -1,
|
||
43, -1, 329, -1, 41, -1, 17, -1, -1, -1,
|
||
-1, 45, 227, 334, 222, 331, 47, 255, 335, 332,
|
||
382, 333, 336, -1, 108, -1, 9, -1, -1, 48,
|
||
255, -1, 163, 337, -1, 46, -1, 46, 166, -1,
|
||
17, -1, 17, 166, -1, 166, -1, 195, -1, 338,
|
||
-1, 339, 123, 338, -1, 120, 166, -1, 222, -1,
|
||
340, -1, 341, 123, 340, -1, -1, -1, -1, 98,
|
||
339, 52, 341, 343, 346, 344, 382, 345, 336, -1,
|
||
-1, 99, -1, -1, 353, 348, 354, 349, -1, 353,
|
||
349, -1, 350, -1, 101, -1, 17, -1, -1, 100,
|
||
352, 222, 382, -1, 351, -1, 351, 162, -1, -1,
|
||
38, 222, 355, 382, 163, -1, -1, 354, 38, 222,
|
||
356, 382, 163, -1, 357, -1, 354, 357, -1, -1,
|
||
-1, 39, 358, 382, 359, 163, -1, -1, -1, -1,
|
||
-1, 62, 361, 366, 382, 163, 362, 369, 363, 367,
|
||
364, 365, -1, 67, -1, 17, -1, -1, 69, 222,
|
||
-1, -1, 368, 382, 163, -1, 66, -1, -1, 370,
|
||
382, 163, -1, 371, 382, 163, -1, 64, -1, 65,
|
||
166, -1, 188, -1, 190, -1, -1, 68, 372, 374,
|
||
376, -1, -1, 97, 375, 376, -1, -1, 69, 377,
|
||
-1, 123, -1, 123, 378, -1, 378, -1, 377, 123,
|
||
-1, 377, 123, 378, -1, 166, -1, 208, -1, 204,
|
||
-1, 217, -1, 256, -1, -1, 102, 222, 382, 380,
|
||
163, 381, -1, 103, -1, 17, -1, 121, -1, 122,
|
||
-1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const yytype_uint16 yyrline[] =
|
||
{
|
||
0, 271, 271, 272, 275, 276, 277, 278, 279, 280,
|
||
281, 282, 283, 284, 285, 286, 289, 294, 302, 302,
|
||
303, 303, 304, 304, 305, 305, 308, 309, 310, 311,
|
||
314, 315, 316, 317, 320, 321, 324, 325, 328, 329,
|
||
330, 331, 332, 333, 334, 335, 336, 339, 340, 341,
|
||
342, 343, 344, 345, 346, 347, 350, 351, 359, 360,
|
||
361, 362, 363, 364, 370, 376, 377, 378, 379, 380,
|
||
381, 382, 383, 385, 385, 391, 392, 393, 405, 405,
|
||
427, 429, 427, 433, 435, 433, 439, 440, 441, 442,
|
||
443, 444, 444, 458, 461, 469, 488, 488, 491, 492,
|
||
493, 494, 495, 496, 509, 510, 511, 512, 515, 516,
|
||
517, 518, 521, 522, 525, 526, 529, 530, 533, 534,
|
||
537, 538, 539, 540, 541, 542, 543, 544, 545, 546,
|
||
547, 548, 549, 550, 551, 552, 553, 554, 559, 560,
|
||
563, 566, 567, 572, 575, 580, 586, 591, 596, 597,
|
||
600, 605, 608, 619, 622, 627, 630, 633, 634, 637,
|
||
640, 641, 646, 649, 654, 655, 658, 663, 666, 673,
|
||
674, 679, 680, 681, 682, 683, 684, 685, 686, 687,
|
||
688, 689, 690, 691, 692, 695, 696, 697, 700, 701,
|
||
702, 703, 704, 705, 706, 707, 708, 709, 710, 711,
|
||
712, 713, 714, 715, 716, 717, 718, 719, 728, 729,
|
||
730, 731, 732, 733, 738, 739, 740, 741, 742, 743,
|
||
744, 745, 746, 747, 748, 749, 750, 751, 752, 753,
|
||
754, 755, 758, 761, 761, 764, 765, 765, 766, 766,
|
||
770, 773, 776, 777, 780, 781, 784, 785, 786, 787,
|
||
788, 791, 792, 797, 798, 799, 805, 806, 807, 810,
|
||
813, 818, 818, 821, 830, 831, 832, 833, 834, 835,
|
||
836, 837, 837, 838, 839, 840, 841, 842, 843, 844,
|
||
845, 846, 847, 847, 848, 849, 850, 850, 851, 852,
|
||
852, 853, 854, 855, 856, 857, 858, 859, 860, 863,
|
||
864, 865, 866, 866, 867, 867, 868, 871, 872, 875,
|
||
876, 879, 880, 881, 882, 883, 884, 885, 892, 893,
|
||
894, 895, 896, 897, 898, 899, 900, 901, 902, 903,
|
||
904, 905, 906, 907, 908, 909, 910, 911, 912, 918,
|
||
919, 922, 925, 926, 929, 930, 931, 934, 935, 936,
|
||
937, 938, 939, 940, 941, 942, 943, 944, 945, 946,
|
||
947, 948, 949, 950, 951, 952, 953, 954, 957, 960,
|
||
963, 966, 969, 972, 975, 978, 979, 980, 981, 982,
|
||
983, 986, 987, 988, 989, 990, 991, 994, 995, 998,
|
||
999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1009, 1015,
|
||
1016, 1017, 1020, 1021, 1024, 1024, 1030, 1031, 1032, 1033,
|
||
1036, 1037, 1040, 1041, 1044, 1046, 1045, 1081, 1082, 1084,
|
||
1087, 1096, 1100, 1103, 1103, 1105, 1105, 1107, 1107, 1117,
|
||
1118, 1121, 1122, 1130, 1131, 1133, 1137, 1144, 1144, 1161,
|
||
1164, 1161, 1192, 1198, 1201, 1202, 1203, 1206, 1206, 1214,
|
||
1215, 1218, 1219, 1222, 1222, 1225, 1226, 1229, 1229, 1252,
|
||
1252, 1253, 1254, 1255, 1256, 1256, 1259, 1260, 1263, 1264,
|
||
1265, 1266, 1269, 1269, 1291, 1291, 1347, 1348, 1349, 1350,
|
||
1353, 1354, 1357, 1360, 1361, 1362, 1363, 1364, 1365, 1368,
|
||
1369, 1370, 1371, 1372, 1373, 1376, 1377, 1378, 1379, 1380,
|
||
1381, 1382, 1383, 1386, 1387, 1388, 1389, 1393, 1395, 1392,
|
||
1400, 1400, 1404, 1406, 1404, 1414, 1416, 1414, 1425, 1433,
|
||
1434, 1437, 1441, 1445, 1448, 1454, 1461, 1462, 1465, 1465,
|
||
1468, 1469, 1477, 1478, 1477, 1489, 1490, 1489, 1502, 1502,
|
||
1502, 1504, 1504, 1509, 1514, 1508, 1528, 1537, 1541, 1542,
|
||
1546, 1559, 1564, 1545, 1612, 1613, 1616, 1617, 1620, 1628,
|
||
1629, 1630, 1631, 1634, 1635, 1638, 1639, 1642, 1643, 1646,
|
||
1647, 1652, 1658, 1669, 1651, 1689, 1690, 1694, 1693, 1706,
|
||
1713, 1721, 1722, 1726, 1725, 1735, 1736, 1745, 1745, 1748,
|
||
1748, 1751, 1753, 1756, 1756, 1756, 1761, 1769, 1780, 1790,
|
||
1760, 1821, 1822, 1825, 1826, 1834, 1835, 1838, 1847, 1848,
|
||
1849, 1852, 1863, 1881, 1882, 1886, 1885, 1893, 1892, 1903,
|
||
1904, 1907, 1908, 1909, 1910, 1911, 1914, 1915, 1916, 1917,
|
||
1918, 1922, 1921, 1944, 1945, 1948, 1949
|
||
};
|
||
#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", "FUNCTION", "PROCEDURE", "IDENTIFIER",
|
||
"RETURN", "NIL", "NUM_DOUBLE", "INASSIGN", "NUM_LONG", "LOCAL", "STATIC",
|
||
"IIF", "IF", "ELSE", "ELSEIF", "END", "ENDIF", "LITERAL", "TRUEVALUE",
|
||
"FALSEVALUE", "ANNOUNCE", "EXTERN", "DYNAMIC", "INIT", "EXIT", "AND",
|
||
"OR", "NOT", "PUBLIC", "EQ", "NE1", "NE2", "INC", "DEC", "ALIASOP",
|
||
"DOCASE", "CASE", "OTHERWISE", "ENDCASE", "ENDDO", "MEMVAR", "WHILE",
|
||
"LOOP", "FOR", "NEXT", "TO", "STEP", "LE", "GE", "FIELD", "IN",
|
||
"PARAMETERS", "PLUSEQ", "MINUSEQ", "MULTEQ", "DIVEQ", "POWER", "EXPEQ",
|
||
"MODEQ", "PRIVATE", "BEGINSEQ", "BREAK", "RECOVER", "RECOVERUSING",
|
||
"ALWAYS", "ENDSEQ", "DO", "WITH", "SELF", "LINE", "MACROVAR",
|
||
"MACROTEXT", "AS_ARRAY", "AS_BLOCK", "AS_CHARACTER", "AS_CLASS",
|
||
"AS_DATE", "AS_LOGICAL", "AS_NUMERIC", "AS_OBJECT", "AS_VARIANT",
|
||
"DECLARE", "OPTIONAL", "DECLARE_CLASS", "DECLARE_MEMBER",
|
||
"AS_ARRAY_ARRAY", "AS_BLOCK_ARRAY", "AS_CHARACTER_ARRAY",
|
||
"AS_CLASS_ARRAY", "AS_DATE_ARRAY", "AS_LOGICAL_ARRAY",
|
||
"AS_NUMERIC_ARRAY", "AS_OBJECT_ARRAY", "PROCREQ", "CBSTART", "DOIDENT",
|
||
"FOREACH", "DESCEND", "DOSWITCH", "ENDSWITCH", "WITHOBJECT", "ENDWITH",
|
||
"NUM_DATE", "EPSILON", "HASHOP", "POST", "'='", "'<'", "'>'", "'$'",
|
||
"'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE", "'&'", "'@'", "'\\n'",
|
||
"';'", "','", "'('", "')'", "'{'", "'}'", "':'", "']'", "'['", "'|'",
|
||
"$accept", "Main", "Source", "Line", "Function", "@1", "@2", "@3", "@4",
|
||
"FunScope", "Params", "AsType", "AsArrayType", "StrongType", "AsArray",
|
||
"ParamList", "Statement", "@5", "@6", "@7", "@8", "@9", "@10", "@11",
|
||
"CompTimeStr", "CrlfStmnt", "@12", "LineStat", "ControlError",
|
||
"FunScopeId", "Statements", "EmptyStats", "ExtList", "DynList",
|
||
"IdentName", "NumValue", "DateValue", "NumAlias", "NilValue", "NilAlias",
|
||
"LiteralValue", "LiteralAlias", "CodeBlockAlias", "Logical",
|
||
"LogicalAlias", "SelfValue", "SelfAlias", "Array", "ArrayAlias",
|
||
"ArrayAt", "ArrayAtAlias", "Hash", "HashAlias", "HashList", "Variable",
|
||
"VarAlias", "MacroVar", "MacroVarAlias", "MacroExpr", "MacroExprAlias",
|
||
"FieldAlias", "FieldVarAlias", "AliasId", "AliasVar", "AliasExpr",
|
||
"VariableAt", "VariableAtAlias", "FunIdentCall", "@13", "FunCall", "@14",
|
||
"@15", "FunRef", "FunCallAlias", "ArgList", "Argument", "RefArgument",
|
||
"ExtArgument", "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias",
|
||
"ObjectMethod", "@16", "ObjectMethodAlias", "SimpleExpression", "@17",
|
||
"@18", "@19", "@20", "Expression", "@21", "@22", "ExtExpression",
|
||
"EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp",
|
||
"ExprPreOp", "ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq",
|
||
"ExprMinusEq", "ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq",
|
||
"ExprOperEq", "ExprMath", "ExprBool", "ExprRelation", "ArrayIndex",
|
||
"IndexList", "ElemList", "BlockHead", "@23", "BlockVars", "BlockVarList",
|
||
"BlockExpList", "CodeBlock", "@24", "ExpList", "PareExpList",
|
||
"PareExpListAlias", "IfInline", "IfInlineAlias", "VarDefs", "@25", "@26",
|
||
"@27", "VarList", "ExtVarList", "ExtVarDef", "VarDef", "@28", "@29",
|
||
"@30", "DimList", "DimIndex", "FieldsDef", "@31", "FieldList", "InAlias",
|
||
"MemvarDef", "@32", "MemvarList", "Declaration", "@33", "@34", "@35",
|
||
"DecDataList", "ClassInfo", "DecMethod", "@36", "DecData", "@37",
|
||
"DecList", "DummyArgList", "DummyArgument", "FormalList", "OptList",
|
||
"ExecFlow", "IfEndif", "IfBegin", "@38", "@39", "IfElse", "@40",
|
||
"IfElseIf", "@41", "@42", "@43", "@44", "EndIf", "EndIfID", "DoCase",
|
||
"EndCase", "EndCaseID", "DoCaseStart", "@45", "DoCaseBegin", "Cases",
|
||
"@46", "@47", "@48", "@49", "Otherwise", "@50", "@51", "@52", "DoWhile",
|
||
"@53", "@54", "WhileBegin", "EndWhile", "EndWhileID", "ForNext", "@55",
|
||
"@56", "@57", "ForAssign", "StepExpr", "ForStatements", "EndForID",
|
||
"ForVar", "ForList", "ForExpr", "ForArgs", "ForEach", "@58", "@59",
|
||
"@60", "Descend", "DoSwitch", "@61", "EndSwitch", "EndSwitchID",
|
||
"SwitchStart", "@62", "SwitchBegin", "SwitchCases", "@63", "@64",
|
||
"SwitchDefault", "@65", "@66", "BeginSeq", "@67", "@68", "@69", "@70",
|
||
"EndSeqID", "BlockSeq", "AlwaysSeq", "Always", "RecoverSeq",
|
||
"RecoverEmpty", "RecoverUsing", "DoName", "DoProc", "@71", "@72",
|
||
"DoArgs", "DoArgList", "DoArgument", "WithObject", "@73", "EndWithID",
|
||
"Crlf", 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, 312, 313, 314,
|
||
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
||
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
||
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
||
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
||
355, 356, 357, 358, 359, 360, 361, 362, 61, 60,
|
||
62, 36, 43, 45, 42, 47, 37, 363, 364, 38,
|
||
64, 10, 59, 44, 40, 41, 123, 125, 58, 93,
|
||
91, 124
|
||
};
|
||
# endif
|
||
|
||
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
||
static const yytype_uint16 yyr1[] =
|
||
{
|
||
0, 132, 133, 133, 134, 134, 134, 134, 134, 134,
|
||
134, 134, 134, 134, 134, 134, 135, 135, 137, 136,
|
||
138, 136, 139, 136, 140, 136, 141, 141, 141, 141,
|
||
142, 142, 142, 142, 143, 143, 144, 144, 145, 145,
|
||
145, 145, 145, 145, 145, 145, 145, 146, 146, 146,
|
||
146, 146, 146, 146, 146, 146, 147, 147, 148, 148,
|
||
148, 148, 148, 148, 148, 148, 148, 148, 148, 148,
|
||
148, 148, 148, 149, 148, 148, 148, 148, 150, 148,
|
||
151, 152, 148, 153, 154, 148, 148, 148, 148, 148,
|
||
148, 155, 148, 148, 156, 156, 158, 157, 159, 159,
|
||
159, 159, 159, 159, 160, 160, 160, 160, 161, 161,
|
||
161, 161, 162, 162, 163, 163, 164, 164, 165, 165,
|
||
166, 166, 166, 166, 166, 166, 166, 166, 166, 166,
|
||
166, 166, 166, 166, 166, 166, 166, 166, 167, 167,
|
||
168, 169, 169, 170, 171, 172, 173, 174, 175, 175,
|
||
176, 177, 178, 179, 180, 181, 182, 183, 183, 184,
|
||
185, 185, 186, 187, 188, 188, 189, 190, 191, 192,
|
||
192, 193, 193, 193, 193, 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, 196, 196,
|
||
196, 196, 196, 196, 197, 197, 197, 197, 197, 197,
|
||
197, 197, 197, 197, 197, 197, 197, 197, 197, 197,
|
||
197, 197, 198, 200, 199, 201, 202, 201, 203, 201,
|
||
204, 205, 206, 206, 207, 207, 208, 208, 208, 208,
|
||
208, 209, 209, 210, 210, 210, 211, 211, 211, 212,
|
||
213, 215, 214, 216, 217, 217, 217, 217, 217, 217,
|
||
217, 218, 217, 217, 217, 217, 217, 217, 217, 217,
|
||
217, 217, 219, 217, 217, 217, 220, 217, 217, 221,
|
||
217, 217, 217, 217, 217, 217, 217, 217, 217, 222,
|
||
222, 222, 223, 222, 224, 222, 222, 225, 225, 226,
|
||
226, 227, 227, 227, 227, 227, 227, 227, 228, 228,
|
||
228, 228, 228, 228, 228, 228, 228, 228, 228, 228,
|
||
228, 228, 228, 228, 228, 228, 228, 228, 228, 229,
|
||
229, 230, 231, 231, 232, 232, 232, 233, 233, 233,
|
||
233, 233, 233, 233, 233, 233, 233, 233, 233, 233,
|
||
233, 233, 233, 233, 233, 233, 233, 233, 234, 235,
|
||
236, 237, 238, 239, 240, 241, 241, 241, 241, 241,
|
||
241, 242, 242, 242, 242, 242, 242, 243, 243, 244,
|
||
244, 244, 244, 244, 244, 244, 244, 244, 245, 246,
|
||
246, 246, 247, 247, 249, 248, 250, 250, 250, 250,
|
||
251, 251, 252, 252, 253, 254, 253, 255, 255, 256,
|
||
257, 258, 259, 261, 260, 262, 260, 263, 260, 264,
|
||
264, 265, 265, 266, 266, 266, 266, 268, 267, 269,
|
||
270, 267, 267, 271, 272, 272, 272, 274, 273, 275,
|
||
275, 276, 276, 278, 277, 279, 279, 281, 280, 282,
|
||
280, 280, 280, 280, 283, 280, 284, 284, 285, 285,
|
||
285, 285, 287, 286, 289, 288, 290, 290, 290, 290,
|
||
291, 291, 292, 293, 293, 293, 293, 293, 293, 294,
|
||
294, 294, 294, 294, 294, 295, 295, 295, 295, 295,
|
||
295, 295, 295, 296, 296, 296, 296, 298, 299, 297,
|
||
301, 300, 303, 304, 302, 305, 306, 302, 307, 308,
|
||
308, 309, 309, 309, 309, 310, 311, 311, 313, 312,
|
||
314, 314, 316, 317, 315, 318, 319, 315, 321, 322,
|
||
320, 323, 320, 325, 326, 324, 327, 328, 329, 329,
|
||
331, 332, 333, 330, 334, 334, 335, 335, 336, 337,
|
||
337, 337, 337, 338, 338, 339, 339, 340, 340, 341,
|
||
341, 343, 344, 345, 342, 346, 346, 348, 347, 347,
|
||
349, 350, 350, 352, 351, 353, 353, 355, 354, 356,
|
||
354, 354, 354, 358, 359, 357, 361, 362, 363, 364,
|
||
360, 365, 365, 366, 366, 367, 367, 368, 369, 369,
|
||
369, 370, 371, 372, 372, 374, 373, 375, 373, 376,
|
||
376, 377, 377, 377, 377, 377, 378, 378, 378, 378,
|
||
378, 380, 379, 381, 381, 382, 382
|
||
};
|
||
|
||
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
||
static const yytype_uint8 yyr2[] =
|
||
{
|
||
0, 2, 1, 0, 1, 1, 1, 1, 1, 2,
|
||
2, 2, 2, 2, 2, 3, 4, 6, 0, 5,
|
||
0, 5, 0, 8, 0, 8, 0, 1, 1, 1,
|
||
0, 1, 1, 3, 0, 1, 0, 1, 1, 1,
|
||
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 2, 2, 4, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 0, 4, 2, 2, 2, 0, 4,
|
||
0, 0, 5, 0, 0, 5, 1, 1, 1, 3,
|
||
3, 0, 4, 4, 1, 3, 0, 2, 1, 1,
|
||
1, 1, 1, 1, 4, 7, 4, 7, 0, 1,
|
||
1, 1, 1, 2, 0, 1, 1, 3, 1, 3,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 2, 1, 2, 1, 2, 2, 1, 1,
|
||
2, 1, 2, 3, 2, 2, 2, 3, 3, 2,
|
||
3, 5, 1, 2, 1, 1, 2, 2, 2, 2,
|
||
3, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 1, 1, 1, 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, 0, 5, 1, 0, 5, 0, 5,
|
||
2, 2, 1, 3, 1, 1, 2, 2, 2, 2,
|
||
2, 1, 1, 3, 3, 2, 1, 1, 1, 4,
|
||
2, 0, 5, 2, 1, 1, 1, 1, 1, 1,
|
||
1, 0, 3, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 0, 3, 1, 1, 0, 3, 1, 0,
|
||
3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 0, 3, 0, 3, 1, 1, 1, 0,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 2, 2, 2, 2, 2, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 1, 1, 1, 1, 1,
|
||
1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
|
||
3, 4, 1, 3, 0, 4, 0, 1, 1, 3,
|
||
2, 4, 1, 3, 3, 0, 5, 1, 3, 3,
|
||
2, 8, 2, 0, 4, 0, 4, 0, 4, 1,
|
||
3, 1, 3, 1, 2, 4, 3, 0, 3, 0,
|
||
0, 6, 3, 2, 2, 3, 4, 0, 5, 2,
|
||
4, 0, 2, 0, 4, 2, 4, 0, 8, 0,
|
||
5, 3, 4, 3, 0, 7, 1, 3, 1, 2,
|
||
1, 2, 0, 6, 0, 3, 0, 1, 1, 3,
|
||
1, 3, 1, 2, 3, 5, 4, 5, 7, 3,
|
||
4, 6, 5, 6, 8, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 2, 3, 3, 4, 0, 0, 6,
|
||
0, 4, 0, 0, 6, 0, 0, 7, 1, 1,
|
||
1, 3, 3, 2, 4, 1, 1, 1, 0, 3,
|
||
1, 2, 0, 0, 6, 0, 0, 7, 0, 0,
|
||
5, 0, 5, 0, 0, 7, 1, 1, 1, 1,
|
||
0, 0, 0, 12, 1, 1, 0, 2, 2, 1,
|
||
2, 1, 2, 1, 1, 1, 3, 2, 1, 1,
|
||
3, 0, 0, 0, 10, 0, 1, 0, 4, 2,
|
||
1, 1, 1, 0, 4, 1, 2, 0, 5, 0,
|
||
6, 1, 2, 0, 0, 5, 0, 0, 0, 0,
|
||
11, 1, 1, 0, 2, 0, 3, 1, 0, 3,
|
||
3, 1, 2, 1, 1, 0, 4, 0, 3, 0,
|
||
2, 1, 2, 1, 2, 3, 1, 1, 1, 1,
|
||
1, 0, 6, 1, 1, 1, 1
|
||
};
|
||
|
||
/* 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[] =
|
||
{
|
||
0, 0, 120, 78, 143, 138, 139, 423, 425, 0,
|
||
0, 145, 148, 149, 129, 127, 128, 28, 124, 80,
|
||
0, 0, 528, 453, 546, 123, 0, 122, 121, 447,
|
||
125, 427, 83, 596, 73, 0, 151, 0, 164, 165,
|
||
0, 126, 0, 0, 136, 404, 617, 0, 137, 583,
|
||
0, 140, 0, 635, 636, 0, 309, 0, 0, 0,
|
||
8, 6, 0, 7, 162, 318, 320, 0, 319, 0,
|
||
321, 0, 0, 323, 0, 324, 0, 325, 0, 326,
|
||
0, 327, 0, 332, 0, 330, 0, 331, 0, 0,
|
||
0, 328, 329, 333, 0, 235, 335, 0, 337, 0,
|
||
0, 338, 0, 0, 96, 96, 96, 96, 375, 376,
|
||
377, 378, 379, 380, 96, 0, 322, 334, 0, 336,
|
||
0, 86, 87, 88, 5, 96, 495, 0, 496, 0,
|
||
0, 497, 0, 498, 500, 501, 0, 577, 499, 96,
|
||
502, 4, 9, 0, 77, 0, 142, 141, 0, 0,
|
||
0, 130, 132, 129, 127, 128, 124, 0, 134, 131,
|
||
123, 0, 135, 133, 136, 0, 0, 0, 264, 266,
|
||
265, 267, 269, 270, 273, 274, 275, 300, 278, 279,
|
||
276, 277, 280, 281, 306, 285, 288, 299, 417, 0,
|
||
293, 294, 295, 291, 292, 296, 297, 298, 268, 507,
|
||
301, 284, 91, 0, 116, 0, 118, 75, 0, 342,
|
||
343, 0, 0, 76, 162, 318, 320, 319, 321, 323,
|
||
324, 325, 326, 327, 332, 313, 314, 312, 329, 316,
|
||
335, 315, 338, 0, 0, 322, 317, 336, 169, 0,
|
||
0, 0, 603, 0, 72, 613, 614, 615, 0, 459,
|
||
0, 34, 0, 0, 94, 0, 406, 619, 162, 330,
|
||
331, 564, 333, 337, 334, 565, 0, 0, 0, 0,
|
||
167, 0, 0, 251, 0, 0, 0, 252, 245, 402,
|
||
310, 244, 0, 256, 257, 258, 255, 1, 0, 14,
|
||
12, 13, 11, 10, 0, 0, 163, 233, 0, 0,
|
||
214, 0, 0, 216, 185, 186, 187, 188, 208, 0,
|
||
144, 215, 192, 0, 146, 217, 193, 195, 0, 150,
|
||
219, 194, 0, 152, 221, 197, 0, 154, 155, 198,
|
||
0, 156, 199, 0, 159, 220, 196, 0, 222, 205,
|
||
209, 0, 166, 236, 63, 225, 189, 210, 0, 168,
|
||
238, 64, 226, 190, 211, 0, 0, 185, 172, 0,
|
||
176, 0, 177, 179, 0, 178, 0, 180, 0, 181,
|
||
0, 182, 0, 183, 171, 186, 174, 187, 175, 206,
|
||
0, 213, 173, 0, 184, 207, 0, 223, 0, 61,
|
||
224, 0, 232, 200, 0, 241, 60, 229, 202, 0,
|
||
260, 261, 227, 0, 203, 0, 263, 62, 228, 204,
|
||
339, 340, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
341, 67, 66, 70, 69, 68, 412, 0, 415, 0,
|
||
147, 218, 0, 420, 65, 231, 191, 212, 0, 422,
|
||
59, 230, 201, 58, 0, 512, 520, 519, 0, 0,
|
||
503, 518, 103, 425, 110, 124, 101, 99, 112, 102,
|
||
0, 0, 100, 98, 527, 532, 538, 526, 523, 525,
|
||
0, 0, 0, 0, 582, 581, 0, 579, 580, 71,
|
||
0, 97, 34, 0, 429, 0, 0, 344, 346, 345,
|
||
0, 240, 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, 89,
|
||
0, 90, 34, 81, 431, 433, 529, 34, 0, 555,
|
||
554, 0, 170, 34, 451, 0, 84, 0, 0, 0,
|
||
619, 0, 457, 0, 0, 461, 47, 42, 39, 0,
|
||
40, 41, 38, 43, 45, 52, 53, 49, 0, 50,
|
||
51, 48, 54, 464, 35, 46, 472, 463, 0, 0,
|
||
407, 34, 0, 408, 0, 618, 0, 0, 0, 631,
|
||
0, 419, 157, 246, 247, 248, 250, 240, 249, 0,
|
||
158, 309, 309, 153, 15, 18, 20, 309, 347, 307,
|
||
308, 399, 0, 398, 349, 348, 350, 352, 353, 354,
|
||
355, 356, 361, 359, 309, 360, 309, 357, 358, 362,
|
||
365, 366, 309, 254, 367, 369, 370, 371, 372, 374,
|
||
373, 368, 253, 0, 414, 0, 351, 363, 364, 510,
|
||
0, 504, 515, 0, 505, 0, 0, 113, 0, 0,
|
||
535, 521, 0, 541, 522, 543, 0, 593, 0, 591,
|
||
79, 0, 437, 36, 0, 0, 424, 426, 309, 272,
|
||
303, 283, 287, 290, 387, 388, 389, 394, 395, 392,
|
||
393, 386, 397, 390, 391, 396, 381, 382, 383, 384,
|
||
385, 418, 508, 305, 92, 117, 119, 434, 36, 0,
|
||
0, 455, 0, 454, 550, 449, 0, 0, 0, 428,
|
||
0, 604, 0, 74, 616, 0, 16, 476, 474, 0,
|
||
468, 470, 462, 44, 55, 0, 476, 95, 93, 410,
|
||
405, 0, 621, 162, 306, 627, 299, 0, 301, 620,
|
||
623, 0, 568, 569, 571, 566, 584, 0, 259, 0,
|
||
310, 160, 403, 0, 0, 0, 0, 0, 242, 400,
|
||
0, 0, 0, 0, 413, 0, 0, 0, 0, 0,
|
||
506, 0, 0, 0, 539, 0, 524, 0, 0, 587,
|
||
0, 0, 578, 592, 444, 438, 0, 442, 37, 0,
|
||
443, 430, 0, 0, 0, 436, 432, 82, 34, 0,
|
||
452, 34, 448, 85, 597, 0, 126, 0, 34, 0,
|
||
477, 478, 34, 469, 471, 460, 474, 0, 466, 0,
|
||
409, 34, 622, 624, 567, 0, 575, 0, 309, 19,
|
||
30, 21, 30, 309, 234, 401, 237, 239, 262, 416,
|
||
511, 513, 0, 30, 104, 30, 106, 533, 0, 0,
|
||
0, 544, 0, 594, 589, 440, 445, 0, 309, 509,
|
||
435, 456, 0, 450, 608, 17, 0, 34, 34, 483,
|
||
34, 0, 0, 475, 0, 0, 34, 411, 625, 570,
|
||
576, 572, 634, 633, 632, 161, 31, 0, 32, 34,
|
||
0, 243, 0, 516, 0, 0, 0, 540, 536, 542,
|
||
0, 0, 0, 0, 0, 446, 0, 556, 611, 0,
|
||
598, 0, 0, 34, 489, 309, 484, 0, 0, 34,
|
||
479, 0, 467, 465, 473, 0, 0, 0, 56, 0,
|
||
514, 0, 0, 0, 534, 0, 549, 548, 545, 547,
|
||
588, 595, 0, 441, 421, 0, 551, 612, 605, 0,
|
||
0, 309, 490, 482, 0, 480, 458, 34, 486, 0,
|
||
34, 573, 23, 33, 34, 25, 517, 105, 107, 537,
|
||
590, 557, 0, 607, 599, 0, 609, 610, 0, 309,
|
||
485, 309, 487, 34, 492, 0, 57, 552, 0, 0,
|
||
491, 481, 0, 309, 493, 0, 574, 0, 602, 601,
|
||
600, 606, 488, 0, 561, 559, 558, 553, 494, 562,
|
||
560
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yydefgoto[] =
|
||
{
|
||
-1, 58, 59, 456, 61, 753, 755, 754, 756, 62,
|
||
887, 563, 787, 564, 565, 888, 457, 243, 143, 208,
|
||
700, 241, 710, 517, 255, 207, 145, 458, 459, 460,
|
||
765, 995, 203, 205, 64, 168, 169, 67, 170, 69,
|
||
171, 71, 72, 172, 74, 173, 76, 174, 78, 175,
|
||
80, 176, 82, 276, 177, 84, 178, 86, 179, 88,
|
||
89, 90, 307, 180, 181, 182, 94, 95, 597, 183,
|
||
614, 616, 184, 97, 757, 277, 278, 758, 185, 286,
|
||
99, 100, 186, 622, 102, 187, 492, 494, 495, 496,
|
||
750, 493, 516, 601, 281, 233, 189, 420, 190, 191,
|
||
192, 193, 107, 108, 109, 110, 111, 112, 113, 194,
|
||
195, 196, 197, 345, 301, 282, 115, 256, 572, 573,
|
||
427, 198, 635, 272, 200, 118, 201, 120, 121, 148,
|
||
149, 240, 483, 523, 524, 525, 785, 786, 904, 663,
|
||
664, 122, 239, 534, 708, 123, 212, 528, 462, 717,
|
||
543, 725, 817, 719, 253, 726, 721, 812, 809, 954,
|
||
955, 810, 811, 125, 126, 127, 515, 793, 448, 767,
|
||
449, 640, 892, 769, 931, 450, 451, 128, 468, 469,
|
||
129, 211, 130, 470, 648, 896, 775, 935, 471, 649,
|
||
848, 777, 131, 778, 900, 132, 938, 939, 133, 799,
|
||
972, 997, 531, 946, 996, 1006, 265, 266, 743, 744,
|
||
134, 826, 925, 985, 881, 135, 476, 477, 478, 136,
|
||
267, 137, 658, 852, 903, 659, 780, 902, 138, 242,
|
||
864, 948, 988, 1000, 538, 974, 975, 910, 911, 912,
|
||
247, 139, 540, 257, 575, 739, 740, 140, 747, 884,
|
||
463
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -703
|
||
static const yytype_int16 yypact[] =
|
||
{
|
||
4279, 127, -703, 302, -703, 16, 29, 162, 684, -69,
|
||
7172, -703, -703, -703, 8591, 8591, 8591, -703, 88, 570,
|
||
7172, 7172, -703, 717, -703, 302, 7660, -703, -703, 34,
|
||
-703, 1044, 1086, -703, 302, 303, -703, 63, -703, -703,
|
||
8591, -703, 8591, 1556, 77, -703, -703, 7660, -703, -703,
|
||
7172, -703, -18, -703, -703, 7294, 6684, 8339, 116, 4408,
|
||
-703, -703, 430, -703, 191, 11, 32, 3200, 8, 8339,
|
||
15, 8339, 8339, 18, 8339, 22, 8339, 24, 8339, 27,
|
||
8339, 28, 8339, 37, 3200, 59, 3200, 114, 3200, 7770,
|
||
8339, 52, 175, 47, 8339, -703, 177, 8339, 13, 7,
|
||
8339, 231, 8339, 495, -703, -703, -703, -703, -703, -703,
|
||
-703, -703, -703, -703, -703, 3416, 30, 237, 3200, 272,
|
||
8339, -703, -703, -703, -703, -703, -703, 528, -703, 4796,
|
||
457, -703, 7172, -703, -703, -703, 4922, 188, -703, -703,
|
||
-703, -703, -703, 7172, -703, 127, -703, -703, 8591, 8591,
|
||
7172, -703, -703, -703, -703, -703, -703, 7172, -703, -703,
|
||
-703, 34, -703, -703, -703, 7172, 7172, 8591, 1313, 1430,
|
||
197, 1784, 1926, 7961, 1965, 1258, 2065, 8205, 282, 1772,
|
||
1579, 1815, 1590, 8022, -703, 7900, 8083, -703, 3448, 1448,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, 2081, 111,
|
||
8144, 2298, -703, 474, -703, 510, -703, -703, 8547, -703,
|
||
-703, 127, 8591, -703, 179, 107, 107, -15, -2, 26,
|
||
49, 184, 232, 194, 107, -11, 155, 84, 107, 2,
|
||
227, 241, 230, 19, 192, 242, 72, 244, 261, 8591,
|
||
8591, 8547, 253, 7172, -703, -703, -703, -703, 337, 240,
|
||
2520, 8744, 273, 127, 277, 275, 4112, 336, 293, 9,
|
||
224, 84, 407, 225, 265, -703, -12, 7172, 2349, 7172,
|
||
-703, 8591, 207, -703, 319, 7660, 291, -703, -703, -703,
|
||
2967, -703, 298, -703, -703, -703, -703, -703, 127, -703,
|
||
-703, -703, -703, -703, 8591, 8591, -703, -703, 7172, 6806,
|
||
-703, -36, 7172, -703, -703, -703, -703, -703, -703, 7172,
|
||
-703, -703, -703, 7172, -703, -703, -703, -703, 7172, -703,
|
||
-703, -703, 7172, -703, -703, -703, 7172, -703, -703, -703,
|
||
7172, -703, -703, 7172, -703, -703, -703, 7172, -703, -703,
|
||
-703, 7172, -703, -703, -703, -703, -703, -703, 7172, -703,
|
||
-703, -703, -703, -703, -703, 16, 29, 423, -703, 436,
|
||
-703, 439, -703, -703, 456, -703, 462, -703, 184, -703,
|
||
232, -703, 465, -703, -703, 471, -703, 505, -703, -703,
|
||
517, 522, -703, 533, -703, -703, 7172, -703, 7172, -703,
|
||
-703, 7172, -703, -703, 7172, -703, -703, -703, -703, 7172,
|
||
-703, -703, -703, 8339, -703, 7172, -703, -703, -703, -703,
|
||
-703, -703, 7172, 7172, 7172, 7172, 7172, 7172, 7172, 8339,
|
||
-703, -703, -703, -703, -703, -703, 3448, 344, -703, 7172,
|
||
-703, -703, 7172, -703, -703, -703, -703, -703, 7172, -703,
|
||
-703, -703, -703, -703, 127, -703, -703, -703, 434, 638,
|
||
-703, -703, -703, 824, -703, 121, -703, -703, -703, -703,
|
||
604, 5048, -703, -703, -703, -703, -703, -703, -703, -703,
|
||
494, 64, 525, 5174, -703, -703, 426, -703, -703, -703,
|
||
2349, -703, 3977, 536, -703, 536, 560, 3302, -703, -703,
|
||
389, -703, 8744, 8744, 8744, 8744, 8744, 7172, 7172, 7172,
|
||
7172, 7172, 7172, 7172, 7172, 7172, 7172, 7172, 7172, 7172,
|
||
7172, 7172, 7172, 7172, 7172, 127, 8744, 127, 8591, -703,
|
||
8591, -703, 3977, 402, -703, -703, -703, 8744, 542, -703,
|
||
-703, 7172, -703, 8744, -9, 542, 402, 7172, 127, 2349,
|
||
336, 559, -703, 8591, 127, -703, -703, -703, -703, 8591,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, 8591, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, 554, 127,
|
||
-703, 8744, 397, 460, 6928, -703, 7416, 7660, 2349, -703,
|
||
492, -703, -703, 258, -11, 84, 2, 95, 241, 7172,
|
||
-703, 7172, 7050, -703, -703, 452, 475, 7050, 3448, -703,
|
||
3448, -703, 6806, 450, 3448, 3448, 3448, 3448, 3448, 3448,
|
||
3448, 3448, 3448, 3448, 7050, 3448, 7050, 3448, 3448, 3448,
|
||
3448, 3448, 7050, -703, 3448, 3448, 3448, 3448, 3448, 3448,
|
||
3448, 3448, -703, 7172, -703, 6560, 3448, 3448, 3448, -703,
|
||
7172, -703, -703, 434, -703, 8591, 8591, -703, 7172, 127,
|
||
-703, -703, 64, -703, -703, -703, 7172, -703, 233, -703,
|
||
-703, 7172, 602, 473, 278, 8591, -703, -703, 7538, -703,
|
||
-703, -703, -703, -703, 2658, 3448, 3302, 3302, 3302, 405,
|
||
405, 564, 3302, 405, 405, 405, 374, 374, 326, 326,
|
||
326, 3448, -703, -703, -703, -703, -703, 619, 473, 8547,
|
||
127, -703, 8591, -703, 3448, -703, 8591, 8591, 127, -703,
|
||
127, 3448, 4670, -703, -703, 617, -703, 3575, 273, 2520,
|
||
-703, -703, -703, -703, -703, 8591, 3575, -703, -703, -703,
|
||
-703, 8384, 7538, 257, 568, -703, 574, 3448, 7823, 521,
|
||
-703, 8591, 3448, -703, 538, -703, -703, 5930, -703, 3281,
|
||
3448, -703, -703, 127, 553, 127, 558, 385, -703, -703,
|
||
6806, 415, 447, 461, 3448, 4542, 539, 6056, 525, 7172,
|
||
-703, 287, 359, 525, -703, 7172, -703, 127, 6182, 3448,
|
||
127, 7172, -703, -703, 3448, -703, 675, -703, -703, 7172,
|
||
555, -703, 578, 5300, 7172, -703, -703, -703, 8744, 655,
|
||
-703, 8744, -703, -703, -703, 127, 3656, 8591, 8744, 579,
|
||
580, 582, 8744, -703, -703, -703, -703, 400, -703, 581,
|
||
-703, 8744, -703, 7538, 389, 7416, 608, 82, 7172, -703,
|
||
8443, -703, 8443, 7050, -703, -703, -703, -703, -703, -703,
|
||
-703, -703, 525, 8443, -703, 8443, -703, -703, 5678, 525,
|
||
5678, -703, 127, -703, 3448, -703, 3448, 7172, 7538, -703,
|
||
3448, -703, 7172, -703, 586, -703, 8591, 8744, 8626, -703,
|
||
8744, 3978, 624, -703, 8591, 127, 8744, -703, -703, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, 584, 588, 8744,
|
||
590, -703, 5300, -703, 591, 596, 5426, -703, -703, -703,
|
||
306, 5552, 5552, 127, 7172, 3448, 597, -16, -703, 8591,
|
||
-703, 127, 127, 8647, -703, 7172, -703, 127, 8591, 8744,
|
||
582, 8295, -703, -703, -703, 127, 127, 8488, -703, 127,
|
||
-703, 5300, 127, 127, -703, 5426, -703, -703, -703, -703,
|
||
-703, -703, 5552, 3448, -703, 7172, -703, -703, 647, 5804,
|
||
5804, 7172, -703, -703, 477, -703, -703, 8685, -703, 8591,
|
||
8744, -703, -703, -703, 8744, -703, -703, -703, -703, -703,
|
||
-703, 111, 127, -703, -703, 127, -703, -703, 489, 7172,
|
||
-703, 7172, -703, 8706, -703, 6308, -703, -703, 31, 6434,
|
||
-703, -703, 496, 7172, -703, 33, -703, 6308, -703, -703,
|
||
-703, -703, -703, 514, 8591, 8591, -703, -703, -703, -703,
|
||
-703
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yypgoto[] =
|
||
{
|
||
-703, -703, -703, 53, 665, -703, -703, -703, -703, -703,
|
||
-387, -227, 36, 10, -621, -703, 245, -703, -703, -703,
|
||
-703, -703, -703, -703, -703, 343, -703, -454, -703, -703,
|
||
234, -465, -703, -703, 3088, 779, 1284, 636, 262, 640,
|
||
284, 642, 643, 340, 653, 453, 657, 509, 659, 531,
|
||
660, 762, 661, -703, 1316, 666, 0, 669, 75, 670,
|
||
498, -703, 8579, 1340, 1492, 1537, -703, -166, -703, 1737,
|
||
-703, -703, -564, -703, -123, -657, -559, -53, 1762, -84,
|
||
-703, -703, 1931, -703, -703, -558, -703, -703, -703, -703,
|
||
3351, -703, -703, -584, -589, -703, 2017, -703, 1910, 2038,
|
||
-703, 2157, -703, -703, -703, -703, -703, -703, -703, 2279,
|
||
-703, -703, -703, 4014, -703, -703, -703, -703, -703, -703,
|
||
-703, 955, -703, -6, 140, 671, 987, 672, -703, -703,
|
||
-703, -703, 605, 486, 65, -143, -703, -703, -703, 246,
|
||
-703, -703, -703, -703, -703, -703, -703, 526, 274, -703,
|
||
-703, -703, -703, -703, -529, -703, -696, -703, 44, -555,
|
||
-198, -703, -89, -703, -703, -703, -703, -703, 334, -703,
|
||
-703, -703, -703, -703, -703, -440, -703, -703, -458, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, 315, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, -703, -703,
|
||
-703, -703, -703, -703, -211, -703, 212, -703, -35, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, 133, -703, -703,
|
||
-703, -703, -703, -703, -703, 136, -703, -703, -703, -703,
|
||
-703, -703, -703, -703, -703, -703, -703, -703, -703, -703,
|
||
-703, -703, -703, -703, 255, -703, -702, -703, -703, -703,
|
||
3038
|
||
};
|
||
|
||
/* 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 -631
|
||
static const yytype_int16 yytable[] =
|
||
{
|
||
85, 491, 751, 279, 199, 484, 484, 647, 641, 644,
|
||
734, 792, 651, 654, 720, 735, 736, 309, 759, 647,
|
||
298, 310, 399, 814, 313, 342, 225, 318, 529, 818,
|
||
822, 322, 945, 326, 314, 245, 330, 333, 392, 429,
|
||
576, 302, 788, 706, 310, 342, 337, 259, 998, 400,
|
||
1004, 314, 146, 60, 319, 150, 391, 284, 323, 85,
|
||
327, 386, 319, 331, 334, 147, 430, 305, 341, 305,
|
||
238, 305, 305, 248, 305, 87, 305, 788, 305, 1005,
|
||
305, 464, 305, 392, 305, 323, 305, 602, 305, 375,
|
||
305, -29, -29, 603, 305, 342, 254, 305, 999, 882,
|
||
305, 226, 305, 653, 467, 491, 269, 514, 433, 587,
|
||
246, 577, 289, 343, 707, 299, 287, -330, 305, 299,
|
||
305, 878, 260, 348, -111, -111, 472, 530, 299, 85,
|
||
-333, -235, 285, 343, 87, 403, 85, 401, 299, 299,
|
||
117, 299, 306, 299, 306, 299, 306, 306, 299, 306,
|
||
349, 306, 299, 306, 299, 306, 299, 306, 299, 306,
|
||
299, 306, 299, 306, 377, 306, 236, 299, 734, 306,
|
||
766, -130, 306, 735, 736, 306, 835, 306, 922, 299,
|
||
-96, -96, 299, 343, 388, 883, 394, 264, -311, 299,
|
||
813, 349, 270, 306, 776, 306, -130, -130, -130, 117,
|
||
-334, 906, 299, 770, 87, 474, 309, 308, 522, -96,
|
||
-96, 87, -328, 395, 299, 296, -130, -130, -130, -130,
|
||
327, -130, -130, -235, 340, -235, 347, 296, 354, 381,
|
||
334, -319, -319, 310, 514, -96, -96, 299, 350, 885,
|
||
405, 522, -96, -96, 299, 63, 432, 804, 53, 54,
|
||
474, -319, -319, -319, -319, 662, -319, -319, 437, 734,
|
||
349, 400, 68, 395, 735, 736, 406, 406, 331, 117,
|
||
-130, 781, 657, 433, 124, 584, 117, 400, 430, 350,
|
||
439, 438, 827, -331, 70, 299, -130, -311, 217, 475,
|
||
-130, 341, -130, 296, 296, 697, -96, -96, -96, -96,
|
||
701, 433, 840, 297, 291, 299, 705, 299, 439, 217,
|
||
218, 647, 161, 851, 299, 297, -330, -330, 342, 623,
|
||
419, 68, 537, 936, 299, -319, 953, 299, 859, 296,
|
||
514, 218, 581, 292, 475, 632, -330, -330, -330, -330,
|
||
73, -330, -330, 70, 729, -563, 144, 937, 350, 401,
|
||
260, 359, -96, -96, 299, 299, 541, 299, -96, -96,
|
||
299, 299, 953, 461, 542, 401, 219, 299, 213, -337,
|
||
473, 299, 299, 361, 299, 38, 39, 244, -626, -626,
|
||
-626, 297, 297, 897, 504, 899, -162, 219, -162, 568,
|
||
953, 68, 953, -96, -96, 299, 978, 566, 68, 73,
|
||
569, 789, 299, 284, 953, 574, 343, 790, 53, 54,
|
||
-330, 843, 299, 70, 589, 264, -563, 297, 590, 284,
|
||
70, 592, 52, -96, -96, 593, 992, 930, 344, 364,
|
||
351, 934, 504, 294, 295, 389, 940, 941, 1003, 396,
|
||
511, 512, 513, 392, 407, 890, 582, 421, 422, 423,
|
||
424, 446, 447, 75, 502, 503, 894, 425, 895, 296,
|
||
434, 85, 440, 504, 656, 657, 966, 633, 443, 73,
|
||
969, 634, 310, 85, 464, 314, 73, 970, 285, 220,
|
||
53, 54, 479, 845, 976, 977, 509, 510, 511, 512,
|
||
513, 761, 319, 762, 285, 465, 466, 467, 323, 763,
|
||
220, 334, 669, 670, 671, 672, 673, 342, 833, 77,
|
||
834, 464, 75, 297, 506, 507, 508, 509, 510, 511,
|
||
512, 513, 791, 874, 1001, 699, 693, 875, 730, 410,
|
||
411, 79, 650, 466, 467, 221, 87, 217, 833, 752,
|
||
836, 349, 366, 444, 445, 446, 447, 546, 87, 412,
|
||
413, 414, 415, 430, 416, 417, 221, 222, 433, 218,
|
||
555, 556, 557, 558, 559, 560, 561, 562, 77, 439,
|
||
833, 861, 837, 727, 863, 491, -22, 259, 222, -134,
|
||
760, 869, 75, 731, 833, 873, 838, 497, 498, 75,
|
||
79, 499, 500, 501, 877, 53, 54, 518, 368, -24,
|
||
979, 117, 980, 418, -134, -134, -134, 645, 646, 502,
|
||
503, -439, 979, 117, 990, 219, 297, 748, 504, 979,
|
||
370, 1002, 504, 419, -134, -134, -134, -134, 794, -134,
|
||
-134, 53, 54, 520, 768, 85, 805, 979, 77, 1008,
|
||
914, 916, 773, 917, 823, 77, 53, 54, 514, 924,
|
||
908, 909, 260, 444, 642, 446, 447, 53, 54, 665,
|
||
79, 825, 928, 53, 54, 702, 839, 79, 505, 506,
|
||
507, 508, 509, 510, 511, 512, 513, 830, -134, 715,
|
||
53, 54, 832, 668, 855, 857, 952, -27, -27, -628,
|
||
-628, -628, 958, -132, -134, -629, -629, -629, -134, 522,
|
||
-134, 858, 862, 871, 870, 872, 876, 880, 921, 926,
|
||
87, 927, 85, 973, 738, 929, 932, 264, -132, -132,
|
||
-132, 933, 944, 68, 290, 358, -131, 536, 220, 360,
|
||
982, 362, 363, 984, 795, 68, 532, 986, -132, -132,
|
||
-132, -132, 365, -132, -132, 70, 367, 85, 369, 371,
|
||
373, -131, -131, -131, 485, 374, 994, 70, 376, 378,
|
||
382, 384, 81, 842, 796, 85, 535, 85, 698, 849,
|
||
819, -131, -131, -131, -131, 117, -131, -131, 85, 65,
|
||
891, 991, 920, 643, 221, 652, 1007, 87, 223, 745,
|
||
879, 782, -132, 85, 783, 714, 0, 0, 0, 0,
|
||
0, 73, 0, 0, 0, 215, 222, 0, -132, 223,
|
||
0, 0, -132, 73, -132, 0, 0, 0, 0, 0,
|
||
0, 81, 87, 0, 0, -131, 215, -109, -109, 0,
|
||
0, 0, 0, -132, 0, 0, 0, 0, 65, 217,
|
||
87, -131, 87, 0, 0, -131, 0, -131, 85, 0,
|
||
85, 372, 117, 87, 0, 0, 907, 0, -132, -132,
|
||
-132, 218, 0, 0, 0, 0, 0, 0, 87, 0,
|
||
0, 0, 738, 0, 0, 0, 0, 0, -132, -132,
|
||
-132, -132, 0, -132, -132, 0, 0, 117, 0, 0,
|
||
0, 81, 85, 0, 0, 0, 85, 68, 81, 0,
|
||
0, 85, 85, 0, 0, 117, 0, 117, 65, 0,
|
||
0, 0, 0, 0, 75, 65, 0, 219, 117, 70,
|
||
0, 0, 0, 87, 0, 87, 75, 0, 0, 0,
|
||
0, 85, -132, 117, 0, 85, 0, 0, 0, 971,
|
||
0, 0, 85, 0, 0, 0, 0, 0, -132, 85,
|
||
85, 0, -132, 0, -132, 116, 0, 0, 0, 0,
|
||
0, 0, 0, 738, 0, 0, 0, 87, 0, 0,
|
||
77, 87, 0, 0, 68, 73, 87, 87, 0, 0,
|
||
0, 235, 77, 0, 0, 85, 0, 119, 117, 85,
|
||
117, 0, 79, 0, 0, 0, 70, 85, 0, 0,
|
||
0, 0, 235, 0, 79, 0, 87, 0, 0, 68,
|
||
87, 0, 0, 237, 116, 0, 0, 87, 0, 0,
|
||
0, 0, 0, 0, 87, 87, 0, 68, 0, 68,
|
||
220, 70, 117, 0, 237, 0, 117, 223, 0, 0,
|
||
68, 117, 117, 0, 380, 0, 119, 0, 0, 70,
|
||
0, 70, 73, -135, 215, 68, 0, 0, 0, 0,
|
||
87, 0, 70, 0, 87, 0, 0, 0, 0, 0,
|
||
0, 117, 87, 0, 0, 117, 383, 70, -135, -135,
|
||
-135, 0, 117, 0, 116, 0, 221, 73, 75, 117,
|
||
117, 116, 0, 0, 0, -133, 0, 0, -135, -135,
|
||
-135, -135, 0, -135, -135, 73, 0, 73, 222, 0,
|
||
68, 0, 68, 0, 0, 0, 119, 0, 73, 0,
|
||
-133, -133, -133, 119, 0, 117, 0, 0, 0, 117,
|
||
0, 0, 70, 73, 70, 0, 0, 117, 0, 0,
|
||
-133, -133, -133, -133, 77, -133, -133, 0, 0, 0,
|
||
0, 0, -135, 0, 68, 0, 0, 0, 68, 0,
|
||
0, 0, 0, 68, 68, 75, 79, 0, -135, 0,
|
||
0, 0, -135, 0, -135, 0, 70, 0, 0, 0,
|
||
70, 0, 0, 0, 0, 70, 70, 0, 73, 0,
|
||
73, 0, 0, 68, -133, 0, 0, 68, 0, 0,
|
||
75, 0, 0, 0, 68, 0, 0, 0, 0, 0,
|
||
-133, 68, 68, 0, -133, 70, -133, 0, 75, 70,
|
||
75, 77, 0, 81, 0, 0, 70, 0, 0, 0,
|
||
235, 75, 73, 70, 70, 81, 73, 0, 0, 0,
|
||
65, 73, 73, 79, 0, 0, 75, 68, 0, 0,
|
||
0, 68, 65, 0, 0, 0, 77, 0, 0, 68,
|
||
0, 0, 237, 0, 0, 0, 0, 330, 0, 70,
|
||
0, 73, 0, 70, 77, 73, 77, 0, 79, 0,
|
||
0, 70, 73, 0, 66, 0, 0, 77, 0, 73,
|
||
73, 0, -326, -326, 331, 0, 79, 0, 79, 0,
|
||
0, 75, 77, 75, 0, 0, 0, 0, 0, 79,
|
||
216, 0, -326, -326, -326, -326, 83, -326, -326, 0,
|
||
0, 0, 298, 0, 79, 73, 0, 0, 0, 73,
|
||
0, 216, 0, 0, 0, 0, 0, 73, 0, 223,
|
||
91, 0, 224, 66, 0, 75, 0, -318, -318, 75,
|
||
0, 0, 0, 0, 75, 75, 215, 77, 0, 77,
|
||
0, 0, 0, 224, 0, 0, 227, -318, -318, -318,
|
||
-318, 0, -318, -318, 0, 83, 0, 0, 0, 79,
|
||
0, 79, 0, 0, 75, 0, -326, 261, 75, 0,
|
||
0, 0, 0, 0, 0, 75, 0, 81, 0, 91,
|
||
0, 77, 75, 75, 0, 77, 0, 0, 0, 0,
|
||
77, 77, 0, 66, 65, 0, 116, 0, 0, 0,
|
||
66, 0, 0, 79, 0, 0, 0, 79, 116, 0,
|
||
0, 0, 79, 79, 0, 0, 0, 0, 75, 302,
|
||
77, -318, 75, 299, 77, 83, 0, 0, 119, 0,
|
||
75, 77, 83, 0, 0, 0, 0, 0, 77, 77,
|
||
119, 0, 79, 0, -320, -320, 79, 0, 0, 91,
|
||
0, 0, 0, 79, 81, 0, 91, 0, 0, 0,
|
||
79, 79, 410, 411, -320, -320, -320, -320, 0, -320,
|
||
-320, 65, 92, 0, 77, 0, 0, 0, 77, 0,
|
||
0, 0, 412, 413, 414, 415, 77, 416, 417, 81,
|
||
0, 0, 0, 0, 0, 0, 79, 0, 228, 0,
|
||
79, 0, 0, 0, 0, 0, 65, 81, 79, 81,
|
||
0, 0, 235, 0, 0, 0, 0, 93, 0, 228,
|
||
81, 0, 0, 0, 65, 0, 65, 0, 0, 0,
|
||
0, 92, 0, 0, 0, 81, 0, 65, -320, 216,
|
||
299, 2, 0, 229, 237, 0, 0, 151, 152, 0,
|
||
0, 0, 65, 0, 0, 0, 419, 0, 153, 154,
|
||
155, 0, 156, 0, 262, 0, 158, 0, 386, 0,
|
||
116, 224, 0, 0, 0, 0, 93, 0, 159, 391,
|
||
160, 0, 0, 27, 28, 0, 0, 0, 30, 162,
|
||
81, 0, 81, -328, -328, 585, 0, 163, 0, 0,
|
||
0, 92, 119, 0, -333, -333, 392, 65, 92, 65,
|
||
0, 0, 0, -328, -328, -328, -328, 0, -328, -328,
|
||
41, 0, 0, 0, -333, -333, -333, -333, 0, -333,
|
||
-333, 164, 0, 0, 81, 48, 0, 0, 81, 0,
|
||
0, 0, 0, 81, 81, 0, 93, 116, 0, 0,
|
||
0, 65, 0, 93, 0, 65, 0, 0, 0, 0,
|
||
65, 65, 251, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 81, 0, 0, 0, 81, 0, 119,
|
||
0, 0, 116, 0, 81, 0, 0, -328, 0, 299,
|
||
65, 81, 81, 0, 65, 0, 0, 0, -333, 0,
|
||
116, 65, 116, 0, 0, 0, 0, 0, 65, 65,
|
||
0, 0, 0, 116, 119, 0, 0, 96, 0, 0,
|
||
0, 0, 0, 0, 0, 66, 0, 81, 116, 0,
|
||
0, 81, 119, 0, 119, 0, 0, 66, 0, 81,
|
||
0, 0, 98, 230, 65, 119, 0, 228, 65, 0,
|
||
0, 0, 0, 0, 0, 0, 65, 83, 0, 0,
|
||
119, 348, 0, 0, 230, 0, 0, 0, 231, 83,
|
||
0, 0, 0, 313, 0, 0, 96, 0, 0, 0,
|
||
0, 91, 0, 116, 0, 116, -331, -331, 349, 263,
|
||
0, 0, 586, 91, 0, 0, 0, 0, -321, -321,
|
||
314, 98, 0, 0, 388, 0, -331, -331, -331, -331,
|
||
0, -331, -331, 0, 0, 119, 0, 119, -321, -321,
|
||
-321, -321, 0, -321, -321, 0, 0, 116, 0, -329,
|
||
-329, 116, 0, 0, 0, 0, 116, 116, 0, 0,
|
||
0, 216, 0, 0, 0, 0, 96, 0, 0, -329,
|
||
-329, -329, -329, 96, -329, -329, 0, 0, 0, 119,
|
||
0, 0, 0, 119, 0, 0, 116, 0, 119, 119,
|
||
116, 98, 0, 224, 0, 0, 350, 116, 98, 0,
|
||
-331, 0, 299, 0, 116, 116, 0, 0, 0, 0,
|
||
104, 0, -321, 0, 299, 0, 0, 261, 119, 66,
|
||
0, 0, 119, 0, 0, 0, 0, 0, 0, 119,
|
||
0, 101, 0, 0, 0, 318, 119, 119, 0, 0,
|
||
116, 0, 0, -329, 116, 299, 0, 0, 0, 0,
|
||
0, 83, 116, 92, 0, 0, 0, 232, 0, 0,
|
||
-323, -323, 319, 0, 0, 92, 0, 0, 0, 104,
|
||
0, 0, 119, 0, 326, 91, 119, 0, 232, 0,
|
||
-323, -323, -323, -323, 119, -323, -323, 0, 0, 0,
|
||
101, 0, 0, 0, 0, 0, 66, 0, 93, -325,
|
||
-325, 327, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
93, 0, 230, 0, 0, 0, 0, 103, 0, -325,
|
||
-325, -325, -325, 0, -325, -325, 0, 0, 83, 0,
|
||
0, 66, 0, 0, 0, 0, 0, 588, 105, 104,
|
||
0, 0, 0, 234, 0, 0, 104, 0, 0, 66,
|
||
0, 66, 91, 0, -323, 0, 299, 0, 0, 0,
|
||
101, 0, 66, 83, 234, 0, 0, 101, 0, 228,
|
||
0, 0, 0, 0, 333, 0, 103, 66, 0, 0,
|
||
0, 83, 0, 83, 0, 0, 0, 91, 0, 0,
|
||
429, 0, 0, -325, 83, 299, 0, 105, 0, -327,
|
||
-327, 334, 0, 0, 0, 91, 0, 91, 0, 83,
|
||
0, 0, 0, 0, 262, -322, -322, 430, 91, -327,
|
||
-327, -327, -327, 0, -327, -327, 0, 92, 0, 0,
|
||
0, 0, 66, 91, 66, -322, -322, -322, -322, 0,
|
||
-322, -322, 0, 0, 0, 0, 103, 0, 0, 0,
|
||
0, 0, 0, 103, 0, 0, 0, 106, 0, 0,
|
||
0, 0, 0, 0, 83, 0, 83, 105, 0, 0,
|
||
0, 0, 93, 0, 105, 0, 66, 0, 0, 0,
|
||
66, 0, 0, 0, 0, 66, 66, 0, 91, 0,
|
||
91, 0, 0, -327, 0, 299, 0, 0, 96, 0,
|
||
0, 0, 0, 0, 92, 0, 232, 0, 83, -322,
|
||
96, 299, 83, 0, 0, 66, 106, 83, 83, 66,
|
||
0, 0, 0, 98, 0, 0, 66, 0, 0, 0,
|
||
0, 0, 91, 66, 66, 98, 91, 0, 0, 92,
|
||
0, 91, 91, 0, 0, 0, 0, 83, 0, 93,
|
||
0, 83, 0, 0, 0, 0, 0, 92, 83, 92,
|
||
0, 0, 0, 0, 0, 83, 83, 0, 0, 66,
|
||
92, 91, 0, 66, 0, 91, 0, 0, 0, 114,
|
||
0, 66, 91, 0, 93, 92, 106, 0, 0, 91,
|
||
91, 0, 234, 106, 0, 0, 0, 0, 0, 0,
|
||
0, 83, 93, 0, 93, 83, 0, 438, 0, 0,
|
||
0, 0, 0, 83, 230, 93, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 91, 0, 0, 0, 91,
|
||
93, 0, -336, -336, 439, 0, 0, 91, 114, 263,
|
||
92, 0, 92, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, -336, -336, -336, -336, 0, -336, -336, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 104, 96, 0, 0, 0, 497, 498, 0, 0,
|
||
499, 500, 501, 104, 92, 93, 0, 93, 92, 0,
|
||
0, 0, 101, 92, 92, 0, 0, 98, 502, 503,
|
||
0, 0, 0, 0, 101, 0, 0, 504, 114, 0,
|
||
0, 0, 0, 0, 0, 114, 0, 0, 0, 0,
|
||
0, 0, 0, 92, 0, 0, -336, 92, 299, 93,
|
||
0, 0, 0, 93, 92, 0, 0, 0, 93, 93,
|
||
0, 92, 92, 0, 0, 0, 0, 0, 0, 96,
|
||
0, 0, 0, 0, 0, 0, 0, 505, 506, 507,
|
||
508, 509, 510, 511, 512, 513, 0, 0, 93, 0,
|
||
53, 54, 93, 0, 98, 0, 0, 92, 103, 93,
|
||
0, 92, 0, 0, 96, 0, 93, 93, 0, 92,
|
||
103, 0, 0, 0, 0, 0, 0, 0, 0, 105,
|
||
0, 0, 96, 0, 96, 0, 0, 0, 232, 98,
|
||
0, 105, 0, 0, 0, 96, 0, 0, 0, 0,
|
||
0, 0, 93, 0, 0, 2, 93, 98, 0, 98,
|
||
96, 151, 152, 0, 93, 0, 0, 0, 0, 0,
|
||
98, 0, 153, 154, 155, 104, 156, 0, 0, 0,
|
||
158, 0, 0, 0, 0, 98, 0, 0, 0, 0,
|
||
0, 0, 159, 0, 160, 0, 101, 27, 28, 0,
|
||
0, 0, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 96, 0, 96, 0, 0,
|
||
0, 0, 0, 0, 234, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
|
||
98, 0, 98, 0, 0, 164, 0, 0, 106, 48,
|
||
0, 0, 104, 0, 0, 0, 0, 0, 0, 96,
|
||
106, 0, 0, 96, 0, 0, 0, 0, 96, 96,
|
||
0, 53, 54, 101, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 103, 0, 98, 0, 0, 104, 98, 0,
|
||
0, 0, 0, 98, 98, 0, 0, 0, 96, 0,
|
||
0, 0, 96, 105, 0, 104, 0, 104, 101, 96,
|
||
0, 0, 0, 0, 0, 497, 96, 96, 104, 499,
|
||
500, 501, 0, 98, 0, 0, 101, 98, 101, 0,
|
||
0, 0, 0, 104, 98, 0, 0, 502, 503, 101,
|
||
0, 98, 98, 0, 0, 0, 504, 0, 0, 0,
|
||
0, 0, 96, 0, 101, 0, 96, 0, 0, 103,
|
||
0, 0, 0, 0, 96, 0, 0, 0, 0, 0,
|
||
114, 0, 0, 0, 0, 0, 0, 98, 0, 0,
|
||
105, 98, 114, 0, 0, 0, 0, 0, 104, 98,
|
||
104, 0, 0, 0, 103, 0, 505, 506, 507, 508,
|
||
509, 510, 511, 512, 513, 0, 0, 0, 0, 101,
|
||
0, 101, 103, 0, 103, 105, 0, 0, 0, 0,
|
||
0, 0, 106, 0, 0, 103, 0, 0, 0, 0,
|
||
0, 0, 104, 105, 0, 105, 104, 0, 0, 0,
|
||
103, 104, 104, 0, 0, 0, 105, 0, 0, 0,
|
||
0, 0, 0, 101, 0, 0, 0, 101, 0, 0,
|
||
0, 105, 101, 101, 0, 0, 0, 0, 0, 0,
|
||
0, 104, 0, 0, 0, 104, 0, 0, 0, 0,
|
||
0, 0, 104, 0, 0, 0, 0, 0, 0, 104,
|
||
104, 0, 101, 0, 0, 103, 101, 103, 0, 106,
|
||
0, 0, 0, 101, 0, 0, 0, 0, 0, 0,
|
||
101, 101, 0, 0, 0, 0, 105, 0, 105, 0,
|
||
0, 0, 0, 0, 0, 104, 0, 0, 0, 104,
|
||
0, 0, 0, 0, 106, 0, 0, 104, 0, 103,
|
||
0, 0, 0, 103, 114, 0, 101, 0, 103, 103,
|
||
101, 0, 106, 0, 106, 0, 0, 0, 101, 0,
|
||
105, 0, 0, 0, 105, 106, 0, 0, 0, 105,
|
||
105, 0, 0, 0, 0, 0, 0, 0, 103, 0,
|
||
106, 0, 103, 0, 0, 0, 0, 0, 0, 103,
|
||
0, 0, 0, 0, 0, 0, 103, 103, 0, 105,
|
||
0, 0, 0, 105, 0, 0, 0, 0, 0, 0,
|
||
105, 0, 0, 0, 0, 0, 0, 105, 105, 0,
|
||
0, 114, 0, 0, 497, 498, 0, 0, 499, 500,
|
||
501, 0, 103, 0, 0, 106, 103, 106, 0, 0,
|
||
0, 0, 0, 0, 103, 0, 502, 503, 0, 0,
|
||
0, 0, 0, 105, 0, 504, 114, 105, 0, 0,
|
||
0, 0, 0, 0, 0, 105, 0, 0, 141, 142,
|
||
0, 0, 0, 0, 114, 0, 114, 0, 0, 106,
|
||
0, 0, 0, 106, 0, 0, 0, 114, 106, 106,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 114, 591, 0, 505, 506, 507, 508, 509,
|
||
510, 511, 512, 513, 0, 0, 0, 0, 106, 0,
|
||
0, 0, 106, 0, 0, 0, 0, 293, 0, 106,
|
||
0, 0, 202, 204, 206, 0, 106, 106, 0, 0,
|
||
0, 0, 0, 0, 214, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 114, 249, 114,
|
||
250, 252, 0, 0, 0, 258, 0, 0, 0, 0,
|
||
0, 0, 106, 0, 0, 283, 106, 0, 0, 0,
|
||
0, 0, 0, 428, 106, 304, 0, 304, 0, 304,
|
||
304, 0, 304, 0, 304, 0, 304, 0, 304, 0,
|
||
304, 114, 304, 0, 304, 114, 304, 357, 304, 0,
|
||
114, 114, 304, 481, 0, 304, 0, 0, 304, 0,
|
||
304, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 2, 304, 0, 304, 0,
|
||
114, 151, 152, 0, 114, 0, 0, 0, 0, 0,
|
||
0, 114, 153, 154, 155, 0, 156, 0, 114, 114,
|
||
158, 0, 0, 0, 0, 0, 482, 482, 0, 0,
|
||
0, 519, 159, 521, 160, 0, 0, 27, 28, 526,
|
||
0, 0, 30, 162, 0, 490, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 114, 0, 0, 0, 114, 0,
|
||
0, 0, 38, 39, 0, 0, 114, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 545, 0,
|
||
0, 567, 0, 0, 0, 164, 482, 0, 0, 48,
|
||
527, 0, 0, 0, 0, 0, 579, 0, 497, 498,
|
||
0, 0, 499, 500, 501, 0, 0, 0, 0, 52,
|
||
0, 0, 0, 0, 269, 0, 594, 533, 527, 482,
|
||
502, 503, 0, 499, 500, 501, 0, 0, 544, 504,
|
||
0, 0, 0, 0, 571, 0, 0, 0, 0, 0,
|
||
0, 502, 503, 0, 0, 0, 0, 0, 0, 580,
|
||
504, 188, 0, 583, 0, 0, 0, 0, 0, 0,
|
||
0, 209, 210, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 595, 596, 0, 0, 0, 828, 0, 505,
|
||
506, 507, 508, 509, 510, 511, 512, 513, 0, 0,
|
||
0, 268, 0, 0, 0, 0, 188, 280, 0, 0,
|
||
505, 506, 507, 508, 509, 510, 511, 512, 513, 0,
|
||
0, 2, 0, 4, 5, 0, 6, 151, 152, 9,
|
||
0, 0, 0, 0, 0, 11, 12, 13, 153, 154,
|
||
155, 0, 156, 0, 0, 157, 158, 0, 0, 0,
|
||
20, 21, 0, 0, 0, 0, 0, 0, 159, 0,
|
||
160, 0, 0, 27, 28, 0, 426, 161, 30, 162,
|
||
0, 0, 0, 0, 0, 497, 498, 163, 0, 499,
|
||
500, 501, 639, 188, 0, 0, 36, 0, 38, 39,
|
||
0, 283, 0, 0, 480, 0, 0, 502, 503, 0,
|
||
41, 486, 0, 0, 0, 0, 504, 283, 487, 0,
|
||
655, 164, 45, 0, 0, 48, 488, 489, 660, 0,
|
||
51, 666, 0, 667, 0, 0, 0, 0, 165, 166,
|
||
0, 0, 0, 0, 0, 52, 167, 53, 54, 0,
|
||
55, 0, 56, 0, 57, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 692, 0, 694, 505, 506, 507, 508,
|
||
509, 510, 511, 512, 513, 0, 703, 0, 0, 0,
|
||
0, 0, 0, 709, 0, 0, 712, 713, 0, 716,
|
||
2, 0, 722, 0, 0, 0, 151, 152, 0, 0,
|
||
0, 0, 0, 0, 539, 0, 0, 153, 154, 155,
|
||
0, 156, 0, 0, 0, 158, 695, 728, 696, 0,
|
||
0, 0, 0, 0, 0, 0, 746, 159, 578, 160,
|
||
188, 0, 27, 28, 0, 0, 0, 30, 162, 0,
|
||
0, 718, 0, 0, 0, 0, 163, 723, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 724, 0, 0, 598,
|
||
600, 0, 0, 604, 0, 0, 0, 0, 0, 806,
|
||
605, 2, 733, 0, 606, 258, 0, 151, 152, 607,
|
||
164, 0, 0, 608, 48, 0, 0, 609, 153, 154,
|
||
155, 610, 156, 0, 611, 0, 158, 774, 612, 0,
|
||
0, 0, 613, 0, 0, 807, 0, 0, 159, 615,
|
||
160, 0, 0, 27, 28, 0, 0, 0, 30, 162,
|
||
0, 0, 0, 0, 0, 0, 0, 163, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 771, 772, 0, 0, 617, 797, 618,
|
||
41, 0, 619, 0, 0, 620, 802, 0, 803, 0,
|
||
621, 164, 0, 482, 0, 48, 624, 815, 0, 0,
|
||
0, 0, 0, 625, 626, 627, 628, 629, 630, 631,
|
||
0, 0, 0, 0, 0, 0, 866, 0, 0, 0,
|
||
636, 0, 0, 637, 0, 0, 0, 482, 0, 638,
|
||
798, 829, 0, 831, 800, 801, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 808, 841, 718, 0, 844,
|
||
846, 847, 0, 816, 808, 850, 0, 0, 853, 821,
|
||
733, 0, 0, 0, 0, 0, 0, 0, 0, 824,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 865, 0, 0, 0, 0, 674, 675,
|
||
676, 677, 678, 679, 680, 681, 682, 683, 684, 685,
|
||
686, 687, 688, 689, 690, 691, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
893, 0, 704, 0, 0, 0, 0, 898, 711, 0,
|
||
901, 0, 0, 0, 867, 868, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 733, 0, 923, 0, 0, 0, 0, 889, 0,
|
||
889, 0, 0, 0, 0, 737, 0, 742, 0, 0,
|
||
0, 889, 0, 889, 0, 0, 0, 0, 0, 0,
|
||
749, 942, 0, 0, 0, 0, 0, 0, 0, 949,
|
||
950, 0, 0, 600, 913, 956, 0, 0, 0, 919,
|
||
0, 0, 816, 961, 962, 0, 0, 965, 0, 0,
|
||
967, 968, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 2, 764, 0, 0, 0, 0, 151,
|
||
152, 188, 0, 0, 0, 0, 0, 947, 0, 188,
|
||
153, 154, 155, 0, 156, 0, 957, 779, 158, 960,
|
||
987, 0, 784, 989, 0, 964, 0, 0, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 0, 0,
|
||
30, 162, 0, 0, 0, 0, 0, 0, 0, 163,
|
||
0, 0, 0, 0, 0, 0, 0, 983, 0, 0,
|
||
0, 546, 547, 548, 549, 550, 551, 552, 553, 554,
|
||
0, 0, 806, 0, 555, 556, 557, 558, 559, 560,
|
||
561, 562, 0, 164, 0, 0, 0, 48, 0, 300,
|
||
303, 0, 311, 737, 315, 0, 0, 320, 0, 324,
|
||
0, 328, 1009, 1010, 0, 335, 0, 338, 918, 0,
|
||
0, 352, 0, 0, 0, 387, 390, 661, 0, 0,
|
||
397, 600, 402, 0, 0, 408, 0, 2, 0, 0,
|
||
188, 0, 0, 151, 152, 0, 188, 0, 0, 0,
|
||
431, 435, 854, 441, 153, 154, 155, 0, 156, 0,
|
||
856, 0, 158, 0, 0, 860, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 159, 0, 160, 0, 0, 27,
|
||
28, 0, 0, 0, 30, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 163, 737, 0, 742, 0, 0, 0,
|
||
0, 0, 300, 303, 311, 315, 320, 324, 328, 0,
|
||
335, 338, 0, 352, 387, 390, 41, 397, 0, 402,
|
||
408, 0, 0, 0, 0, 0, 0, 164, 905, 0,
|
||
0, 48, 431, 188, 435, 441, 0, 570, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 300,
|
||
303, 311, 315, 320, 324, 328, 0, 335, 338, 0,
|
||
352, 387, 390, 0, 397, 402, 408, 0, 0, 431,
|
||
435, 441, 0, 0, 0, 943, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 352, 387, 0, 402, 435, -3,
|
||
1, 0, -26, -26, 2, 3, 4, 5, 0, 6,
|
||
7, 8, 9, 10, 0, 0, 188, 0, 11, 12,
|
||
13, 14, 15, 16, 17, 18, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 328, 51, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 52, 0,
|
||
53, 54, 0, 55, 0, 56, 0, 57, -2, 288,
|
||
0, -26, -26, 2, 3, 4, 5, 0, 6, 7,
|
||
8, 9, 10, 0, 0, 0, 0, 11, 12, 13,
|
||
14, 15, 16, 17, 18, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, 0, 0, 0, 0,
|
||
23, 24, 25, 26, 0, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 0,
|
||
50, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 0, 57, 0, 0, 0,
|
||
0, 0, 0, 452, 0, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 453, 9, 10, -115, -115, -115,
|
||
-115, 11, 12, 13, 14, 15, 16, 454, 455, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
-115, -115, -115, -115, 23, 24, 25, 26, -115, 27,
|
||
28, 0, 0, 29, 30, 31, 0, 0, 0, 387,
|
||
0, 0, 402, 32, 33, 34, -115, -115, -115, -115,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, -115, 50, -115, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, -115,
|
||
57, 452, 0, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 453, 9, 10, 0, 0, -114, 0, 11,
|
||
12, 13, 14, 15, 16, 454, 455, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, -114, -114, -114, -114, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 435, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 0, 50, 0, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 452, 57, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 453, 9,
|
||
10, 0, 0, -530, 0, 11, 12, 13, 14, 15,
|
||
16, 454, 455, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, -530, -530, -530, 0, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 0, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 0, 50, 0,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 52, 0, 53, 54, 0,
|
||
55, 0, 56, 452, 57, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 453, 9, 10, 0, 0, -585,
|
||
0, 11, 12, 13, 14, 15, 16, 454, 455, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
-585, -585, 0, 0, 23, 24, 25, 26, 0, 27,
|
||
28, 0, 0, 29, 30, 31, 0, 0, 0, 0,
|
||
0, 0, 0, 32, 33, 34, 0, 0, 0, 0,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, -585, 50, 0, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 452,
|
||
57, -108, -108, 2, 3, 4, 5, 0, 6, 7,
|
||
453, 9, 10, 0, 0, -531, 0, 11, 12, 13,
|
||
14, 15, 16, 454, 455, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, -531, -531, -531, 0,
|
||
23, 24, 25, 26, 0, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 0,
|
||
50, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 452, 57, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 453, 9, 10, 0,
|
||
0, -586, 0, 11, 12, 13, 14, 15, 16, 454,
|
||
455, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, -586, -586, 0, 0, 23, 24, 25, 26,
|
||
0, 27, 28, 0, 0, 29, 30, 31, 0, 0,
|
||
0, 0, 0, 0, 0, 32, 33, 34, 0, 0,
|
||
0, 0, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, -586, 50, 0, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 452, 57, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 453, 9, 10, -114, -114, -114, -114, 11,
|
||
12, 13, 14, 15, 16, 454, 455, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 0, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 0, 50, 0, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 452, 57, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 453, 9,
|
||
10, 0, 0, -114, 0, 11, 12, 13, 14, 15,
|
||
16, 454, 455, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, -114, -114, -114, 0, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 0, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 0, 50, 0,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 52, 0, 53, 54, 0,
|
||
55, 0, 56, 452, 57, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 453, 9, 10, 0, 0, -114,
|
||
0, 11, 12, 13, 14, 15, 16, 454, 455, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
-114, -114, 0, 0, 23, 24, 25, 26, 0, 27,
|
||
28, 0, 0, 29, 30, 31, 0, 0, 0, 0,
|
||
0, 0, 0, 32, 33, 34, 0, 0, 0, 0,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, -114, 50, 0, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 452,
|
||
57, -108, -108, 2, 3, 4, 5, 0, 6, 7,
|
||
453, 9, 10, 0, 0, -114, 0, 11, 12, 13,
|
||
14, 15, 16, 454, 455, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, 0, -114, -114, 0,
|
||
23, 24, 25, 26, 0, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 0,
|
||
50, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 452, 57, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 453, 9, 10, 0,
|
||
0, -114, 0, 11, 12, 13, 14, 15, 16, 454,
|
||
455, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, 0, 0, 0, 0, 23, 24, 25, 26,
|
||
0, 27, 28, 0, 0, 29, 30, 31, 0, 0,
|
||
0, 0, 0, 0, 0, 32, 33, 34, 0, 0,
|
||
-114, -114, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, 0, 50, 0, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 452, 57, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 453, 9, 10, 0, 0, -114, 0, 11,
|
||
12, 13, 14, 15, 16, 454, 455, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 0, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 0, 50, -114, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 452, 57, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 453, 9,
|
||
10, 0, 0, -114, -114, 11, 12, 13, 14, 15,
|
||
16, 454, 455, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, 0, 0, 0, 0, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 0, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 0, 50, 0,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 52, 0, 53, 54, 0,
|
||
55, 0, 56, 452, 57, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 453, 9, 10, 0, 0, -114,
|
||
0, 11, 12, 13, 14, 15, 16, 454, 455, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
0, 0, 0, -114, 23, 24, 25, 26, 0, 27,
|
||
28, 0, 0, 29, 30, 31, 0, 0, 0, 0,
|
||
0, 0, 0, 32, 33, 34, 0, 0, 0, 0,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, 0, 50, 0, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 452,
|
||
57, -108, -108, 2, 3, 4, 5, 0, 6, 7,
|
||
453, 9, 10, 0, 0, -114, 0, 11, 12, 13,
|
||
14, 15, 16, 454, 455, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, 0, 0, 0, 0,
|
||
23, 24, 25, 26, -114, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 0,
|
||
50, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 452, 57, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 453, 9, 10, 0,
|
||
0, -114, 0, 11, 12, 13, 14, 15, 16, 454,
|
||
455, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, 0, 0, 0, 0, 23, 24, 25, 26,
|
||
0, 27, 28, 0, 0, 29, 30, 31, 0, 0,
|
||
0, 0, 0, 0, 0, 32, 33, 34, 0, 0,
|
||
0, -114, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, 0, 50, 0, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 452, 57, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 453, 9, 10, 0, 0, 0, 0, 11,
|
||
12, 13, 14, 15, 16, 454, 455, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 0, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 0, 50, 0, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, -114, 57, 2,
|
||
0, 4, 5, 0, 6, 151, 152, 9, 0, 0,
|
||
0, 0, 0, 11, 12, 13, 153, 154, 155, 0,
|
||
156, 0, 0, 157, 158, 0, 0, 0, 20, 21,
|
||
0, 0, 0, 0, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 0, 0, 161, 30, 162, 0, 0,
|
||
0, 0, 0, 0, 0, 163, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 36, 0, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 41, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 164,
|
||
45, 0, 0, 48, 0, 0, 0, 0, 51, 273,
|
||
274, 0, 0, 0, 0, 0, 165, 166, 0, 0,
|
||
0, 0, 0, 52, 275, 0, 0, 0, 55, 0,
|
||
56, 2, 57, 4, 5, 0, 6, 151, 152, 9,
|
||
0, 0, 0, 0, 0, 11, 12, 13, 153, 154,
|
||
155, 0, 156, 0, 0, 157, 158, 0, 0, 0,
|
||
20, 21, 0, 0, 0, 0, 0, 0, 159, 0,
|
||
160, 0, 0, 27, 28, 0, 0, 161, 30, 162,
|
||
0, 0, 0, 0, 0, 0, 0, 163, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 36, 0, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
41, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 164, 45, 0, 0, 48, 0, 0, 0, 0,
|
||
51, 599, 0, 0, 0, 0, 0, 0, 165, 166,
|
||
0, 0, 0, 0, 0, 52, 167, 0, 0, 0,
|
||
55, 0, 56, 2, 57, 4, 5, 0, 6, 151,
|
||
152, 9, 0, 0, 0, 0, 0, 11, 12, 13,
|
||
153, 154, 155, 0, 156, 0, 0, 157, 158, 0,
|
||
0, 0, 20, 21, 0, 0, 0, 0, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 0, 161,
|
||
30, 162, 0, 0, 0, 0, 0, 0, 0, 163,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 36, 0,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 164, 45, 0, 0, 48, 0, 0,
|
||
0, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
165, 166, 0, 0, 0, 0, 0, 52, 275, 0,
|
||
0, 732, 55, 0, 56, 2, 57, 4, 5, 0,
|
||
6, 151, 152, 9, 0, 0, 0, 0, 0, 11,
|
||
12, 13, 153, 154, 155, 0, 156, 0, 0, 157,
|
||
158, 0, 0, 0, 20, 21, 0, 0, 0, 0,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
0, 161, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
36, 0, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 164, 45, 0, 0, 48,
|
||
0, 0, 0, 0, 51, 273, 0, 0, 0, 0,
|
||
0, 0, 165, 166, 0, 0, 0, 0, 0, 52,
|
||
275, 0, 0, 0, 55, 0, 56, 2, 57, 4,
|
||
5, 0, 6, 151, 152, 9, 0, 0, 0, 0,
|
||
0, 11, 12, 13, 153, 154, 155, 0, 156, 0,
|
||
0, 157, 158, 0, 0, 0, 20, 21, 0, 0,
|
||
0, 0, 0, 0, 159, 0, 160, 0, 0, 27,
|
||
28, 0, 0, 161, 30, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 163, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 36, 0, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 164, 45, 0,
|
||
0, 48, 0, 0, 0, 0, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 165, 166, 0, 0, 0, 0,
|
||
0, 52, 167, 0, 0, 0, 55, 0, 56, 2,
|
||
57, 4, 5, 0, 6, 151, 152, 9, 0, 0,
|
||
0, 0, 0, 11, 12, 13, 153, 154, 155, 0,
|
||
156, 0, 0, 157, 158, 0, 0, 0, 20, 21,
|
||
0, 0, 0, 0, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 0, 0, 161, 30, 162, 0, 0,
|
||
0, 0, 0, 0, 0, 163, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 36, 0, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 41, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 164,
|
||
45, 0, 0, 48, 0, 0, 0, 0, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 165, 166, 0, 0,
|
||
0, 0, 0, 52, 271, 0, 0, 0, 55, 0,
|
||
56, 2, 57, 4, 5, 0, 6, 151, 152, 9,
|
||
0, 0, 0, 0, 0, 11, 12, 13, 153, 154,
|
||
155, 0, 156, 0, 0, 157, 158, 0, 0, 0,
|
||
20, 21, 0, 0, 0, 0, 0, 0, 159, 0,
|
||
160, 0, 0, 27, 28, 0, 0, 161, 30, 162,
|
||
0, 0, 0, 0, 0, 0, 0, 163, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 36, 0, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
41, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 164, 45, 0, 0, 48, 0, 0, 0, 0,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 165, 166,
|
||
0, 0, 0, 0, 0, 52, 741, 0, 0, 0,
|
||
55, 0, 56, 2, 57, 4, 5, 0, 6, 151,
|
||
152, 9, 0, 0, 0, 0, 0, 11, 12, 13,
|
||
153, 154, 155, 0, 156, 0, 0, 157, 158, 0,
|
||
0, 0, 20, 21, 0, 0, 0, 0, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 0, 161,
|
||
30, 162, 0, 0, 0, 0, 0, 0, 0, 163,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 36, 0,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 164, 45, 0, 0, 48, 0, 0,
|
||
0, 0, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
165, 166, 0, 0, 0, 0, 0, 52, 275, 0,
|
||
0, 0, 55, 0, 56, 2, 57, 4, 5, 0,
|
||
6, 151, 152, 9, 0, 0, 0, 0, 0, 11,
|
||
12, 13, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
0, 161, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
36, 0, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 164, 45, 0, 0, 48,
|
||
0, 0, 0, 0, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 2, 0, 4, 355, 52,
|
||
356, 151, 152, 9, 55, 0, 56, 0, 57, 11,
|
||
12, 13, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
0, 0, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 432, 0, 0, 0, 0, 0, 0, 0,
|
||
36, 0, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, -334, -334, 433,
|
||
0, 0, 0, 0, 0, 164, 45, 0, 0, 48,
|
||
0, 0, 0, 0, 0, 0, 0, -334, -334, -334,
|
||
-334, 0, -334, -334, 0, 0, 0, 0, 0, 52,
|
||
0, 0, 0, 0, 269, 0, 56, -304, -304, -304,
|
||
-304, -304, -304, -304, -304, -304, 0, 0, 0, 399,
|
||
-304, -304, -304, -304, -304, -304, -304, -304, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, -337, -337, 400, 0, 0, 0,
|
||
0, 0, 0, 0, -630, -630, -630, 0, 0, 0,
|
||
0, -334, 0, 299, -337, -337, -337, -337, 0, -337,
|
||
-337, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
322, 0, 0, 0, -286, -286, -286, -286, -286, -286,
|
||
-286, -286, -286, 0, 0, 0, 0, -286, -286, -286,
|
||
-286, -286, -286, -286, -286, -324, -324, 323, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, -324, -324, -324, -324, 0,
|
||
-324, -324, 0, 0, 401, 0, 0, 0, -337, 0,
|
||
299, 394, 0, 0, 0, -271, -271, -271, -271, -271,
|
||
-271, -271, -271, -271, 0, 0, 0, 0, -271, -271,
|
||
-271, -271, -271, -271, -271, -271, -335, -335, 395, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, -335, -335, -335, -335,
|
||
0, -335, -335, 0, 0, 0, 0, 0, 0, -324,
|
||
0, 299, 405, 0, 0, 0, -282, -282, -282, -282,
|
||
-282, -282, -282, -282, -282, 0, 0, 0, 0, -282,
|
||
-282, -282, -282, -282, -282, -282, -282, -338, -338, 406,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, -338, -338, -338,
|
||
-338, 0, -338, -338, 0, 0, 0, 0, 0, 0,
|
||
-335, 0, 299, 432, 0, 0, 0, -289, -289, -289,
|
||
-289, -289, -289, -289, -289, -289, 0, 0, 0, 0,
|
||
-289, -289, -289, -289, -289, -289, -289, -289, -334, -334,
|
||
433, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, -334, -334,
|
||
-334, -334, 0, -334, -334, 0, 0, 0, 0, 0,
|
||
0, -338, 0, 299, 337, 0, 0, 0, -304, -304,
|
||
-304, -304, -304, -304, -304, -304, -304, 0, 0, 0,
|
||
0, -304, -304, -304, -304, -304, -304, -304, -304, -332,
|
||
-332, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, -332,
|
||
-332, -332, -332, 0, -332, -332, 0, 0, 0, 0,
|
||
0, 0, -334, 0, 299, 0, 0, 0, 0, -302,
|
||
-302, -302, -302, -302, -302, -302, -302, -302, 0, 0,
|
||
0, 0, -302, -302, -302, -302, -302, -302, -302, -302,
|
||
2, 0, 0, 0, 0, 0, 151, 152, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 153, 154, 155,
|
||
0, 156, 0, 0, 0, 158, 0, 0, 0, 0,
|
||
0, 0, 0, -332, 0, 299, 0, 159, 0, 160,
|
||
0, 0, 27, 28, 2, 0, 0, 30, 162, 0,
|
||
151, 152, 0, 0, 0, 0, 163, 0, 0, 0,
|
||
0, 153, 154, 155, 0, 156, 0, 0, 0, 158,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 159, 0, 160, 0, 0, 27, 28, 0, 2,
|
||
164, 30, 162, 0, 48, 151, 152, 0, 0, 0,
|
||
163, 0, 0, 0, 0, 0, 153, 154, 155, 0,
|
||
156, 38, 39, 0, 158, 959, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 0, 164, 0, 30, 162, 48, 0,
|
||
0, 0, 0, 0, 0, 163, 0, 0, 2, 0,
|
||
0, 0, 0, 0, 151, 152, 0, 0, 52, 0,
|
||
0, 0, 0, 0, 0, 153, 154, 155, 41, 156,
|
||
0, 0, 0, 158, 0, 0, 0, 0, 0, 164,
|
||
0, 0, 0, 48, 0, 159, 0, 160, 0, 820,
|
||
27, 28, 0, 2, 0, 30, 162, 0, 0, 151,
|
||
152, 0, 0, 0, 163, 0, 0, 0, 0, 0,
|
||
153, 154, 155, 0, 156, 0, 0, 0, 158, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 164, 0,
|
||
30, 162, 48, 0, 0, 0, 0, 0, 886, 163,
|
||
0, 0, 2, 0, 0, 0, 0, 0, 151, 152,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 153,
|
||
154, 155, 41, 156, 0, 0, 0, 158, 0, 0,
|
||
0, 0, 0, 164, 0, 0, 0, 48, 0, 159,
|
||
0, 160, 0, 963, 27, 28, 2, 0, 0, 30,
|
||
162, 0, 151, 152, 0, 0, 0, 0, 163, 0,
|
||
0, 0, 0, 153, 154, 155, 0, 156, 0, 38,
|
||
39, 158, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 159, 0, 160, 0, 0, 27, 28,
|
||
0, 0, 164, 30, 162, 0, 48, 0, 312, 0,
|
||
316, 317, 163, 321, 0, 325, 0, 329, 0, 332,
|
||
0, 336, 0, 339, 0, 346, 0, 353, 379, 385,
|
||
0, 0, 0, 393, 0, 41, 398, 0, 0, 404,
|
||
0, 409, 0, 0, 0, 0, 164, 0, 0, 0,
|
||
48, 0, 0, 0, 0, 0, 0, 436, 0, 442,
|
||
546, 547, 548, 549, 550, 551, 552, 553, 554, 0,
|
||
0, 0, 0, 555, 556, 557, 558, 559, 560, 561,
|
||
562, 546, 547, 548, 549, 550, 551, 552, 553, 554,
|
||
0, 0, 0, 0, 555, 556, 557, 558, 559, 560,
|
||
561, 562, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
915, 0, 0, 0, 0, 0, 0, 0, 0, 546,
|
||
547, 548, 549, 550, 551, 552, 553, 554, 0, 0,
|
||
0, 951, 555, 556, 557, 558, 559, 560, 561, 562,
|
||
546, 547, 548, 549, 550, 551, 552, 553, 554, 0,
|
||
0, 0, 0, 555, 556, 557, 558, 559, 560, 561,
|
||
562, 0, 0, 0, 0, 0, 0, 0, 0, 981,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 546, 547,
|
||
548, 549, 550, 551, 552, 553, 554, 0, 0, 0,
|
||
993, 555, 556, 557, 558, 559, 560, 561, 562
|
||
};
|
||
|
||
static const yytype_int16 yycheck[] =
|
||
{
|
||
0, 167, 591, 56, 10, 148, 149, 461, 448, 449,
|
||
574, 668, 470, 471, 543, 574, 574, 9, 602, 473,
|
||
9, 36, 9, 719, 9, 36, 26, 9, 9, 725,
|
||
732, 9, 48, 9, 36, 35, 9, 9, 36, 9,
|
||
52, 9, 663, 52, 36, 36, 9, 47, 17, 36,
|
||
17, 36, 36, 0, 36, 124, 9, 57, 36, 59,
|
||
36, 9, 36, 36, 36, 36, 36, 67, 9, 69,
|
||
36, 71, 72, 10, 74, 0, 76, 698, 78, 46,
|
||
80, 17, 82, 36, 84, 36, 86, 123, 88, 89,
|
||
90, 3, 4, 129, 94, 36, 19, 97, 67, 17,
|
||
100, 26, 102, 39, 40, 271, 124, 123, 36, 275,
|
||
35, 123, 59, 124, 123, 130, 0, 128, 118, 130,
|
||
120, 823, 47, 9, 3, 4, 132, 108, 130, 129,
|
||
128, 36, 57, 124, 59, 128, 136, 124, 130, 130,
|
||
0, 130, 67, 130, 69, 130, 71, 72, 130, 74,
|
||
36, 76, 130, 78, 130, 80, 130, 82, 130, 84,
|
||
130, 86, 130, 88, 89, 90, 26, 130, 732, 94,
|
||
635, 9, 97, 732, 732, 100, 760, 102, 874, 130,
|
||
121, 122, 130, 124, 9, 103, 9, 47, 9, 130,
|
||
719, 36, 52, 118, 652, 120, 34, 35, 36, 59,
|
||
128, 858, 130, 643, 129, 17, 9, 67, 208, 121,
|
||
122, 136, 128, 36, 130, 36, 54, 55, 56, 57,
|
||
36, 59, 60, 128, 84, 130, 86, 36, 88, 89,
|
||
36, 34, 35, 36, 123, 121, 122, 130, 124, 828,
|
||
9, 241, 121, 122, 130, 0, 9, 712, 121, 122,
|
||
17, 54, 55, 56, 57, 482, 59, 60, 118, 823,
|
||
36, 36, 0, 36, 823, 823, 36, 36, 36, 129,
|
||
108, 38, 39, 36, 0, 275, 136, 36, 36, 124,
|
||
36, 9, 747, 128, 0, 130, 124, 108, 26, 101,
|
||
128, 9, 130, 36, 36, 522, 121, 122, 121, 122,
|
||
527, 36, 767, 124, 59, 130, 533, 130, 36, 47,
|
||
26, 765, 51, 778, 130, 124, 34, 35, 36, 403,
|
||
128, 59, 69, 17, 130, 128, 915, 130, 793, 36,
|
||
123, 47, 125, 59, 101, 419, 54, 55, 56, 57,
|
||
0, 59, 60, 59, 571, 52, 3, 41, 124, 124,
|
||
275, 89, 121, 122, 130, 130, 19, 130, 121, 122,
|
||
130, 130, 951, 129, 124, 124, 26, 130, 25, 128,
|
||
136, 130, 130, 89, 130, 72, 73, 34, 121, 122,
|
||
123, 124, 124, 848, 58, 850, 128, 47, 130, 112,
|
||
979, 129, 981, 121, 122, 130, 951, 124, 136, 59,
|
||
125, 123, 130, 403, 993, 69, 124, 129, 121, 122,
|
||
128, 124, 130, 129, 123, 275, 123, 124, 127, 419,
|
||
136, 123, 119, 121, 122, 127, 981, 892, 85, 89,
|
||
87, 896, 58, 3, 4, 92, 901, 902, 993, 96,
|
||
114, 115, 116, 36, 101, 832, 127, 104, 105, 106,
|
||
107, 17, 18, 0, 49, 50, 843, 114, 845, 36,
|
||
117, 461, 119, 58, 38, 39, 931, 123, 125, 129,
|
||
935, 127, 36, 473, 17, 36, 136, 942, 403, 26,
|
||
121, 122, 139, 124, 949, 950, 112, 113, 114, 115,
|
||
116, 614, 36, 616, 419, 38, 39, 40, 36, 622,
|
||
47, 36, 492, 493, 494, 495, 496, 36, 123, 0,
|
||
125, 17, 59, 124, 109, 110, 111, 112, 113, 114,
|
||
115, 116, 665, 123, 989, 123, 516, 127, 131, 34,
|
||
35, 0, 38, 39, 40, 26, 461, 275, 123, 592,
|
||
125, 36, 89, 15, 16, 17, 18, 74, 473, 54,
|
||
55, 56, 57, 36, 59, 60, 47, 26, 36, 275,
|
||
87, 88, 89, 90, 91, 92, 93, 94, 59, 36,
|
||
123, 798, 125, 19, 801, 741, 124, 577, 47, 9,
|
||
130, 808, 129, 123, 123, 812, 125, 27, 28, 136,
|
||
59, 31, 32, 33, 821, 121, 122, 123, 89, 124,
|
||
123, 461, 125, 108, 34, 35, 36, 3, 4, 49,
|
||
50, 9, 123, 473, 125, 275, 124, 125, 58, 123,
|
||
89, 125, 58, 128, 54, 55, 56, 57, 9, 59,
|
||
60, 121, 122, 123, 640, 635, 19, 123, 129, 125,
|
||
867, 868, 648, 870, 123, 136, 121, 122, 123, 876,
|
||
64, 65, 577, 15, 16, 17, 18, 121, 122, 123,
|
||
129, 123, 889, 121, 122, 123, 127, 136, 108, 109,
|
||
110, 111, 112, 113, 114, 115, 116, 124, 108, 120,
|
||
121, 122, 124, 123, 9, 130, 913, 3, 4, 121,
|
||
122, 123, 919, 9, 124, 121, 122, 123, 128, 699,
|
||
130, 123, 47, 123, 125, 123, 125, 99, 84, 125,
|
||
635, 123, 712, 66, 574, 125, 125, 577, 34, 35,
|
||
36, 125, 125, 461, 59, 89, 9, 241, 275, 89,
|
||
957, 89, 89, 960, 698, 473, 238, 964, 54, 55,
|
||
56, 57, 89, 59, 60, 461, 89, 747, 89, 89,
|
||
89, 34, 35, 36, 149, 89, 983, 473, 89, 89,
|
||
89, 89, 0, 769, 699, 765, 240, 767, 522, 775,
|
||
726, 54, 55, 56, 57, 635, 59, 60, 778, 0,
|
||
833, 979, 871, 449, 275, 470, 997, 712, 26, 577,
|
||
825, 658, 108, 793, 658, 540, -1, -1, -1, -1,
|
||
-1, 461, -1, -1, -1, 26, 275, -1, 124, 47,
|
||
-1, -1, 128, 473, 130, -1, -1, -1, -1, -1,
|
||
-1, 59, 747, -1, -1, 108, 47, 3, 4, -1,
|
||
-1, -1, -1, 9, -1, -1, -1, -1, 59, 577,
|
||
765, 124, 767, -1, -1, 128, -1, 130, 848, -1,
|
||
850, 89, 712, 778, -1, -1, 862, -1, 34, 35,
|
||
36, 577, -1, -1, -1, -1, -1, -1, 793, -1,
|
||
-1, -1, 732, -1, -1, -1, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, -1, -1, 747, -1, -1,
|
||
-1, 129, 892, -1, -1, -1, 896, 635, 136, -1,
|
||
-1, 901, 902, -1, -1, 765, -1, 767, 129, -1,
|
||
-1, -1, -1, -1, 461, 136, -1, 577, 778, 635,
|
||
-1, -1, -1, 848, -1, 850, 473, -1, -1, -1,
|
||
-1, 931, 108, 793, -1, 935, -1, -1, -1, 945,
|
||
-1, -1, 942, -1, -1, -1, -1, -1, 124, 949,
|
||
950, -1, 128, -1, 130, 0, -1, -1, -1, -1,
|
||
-1, -1, -1, 823, -1, -1, -1, 892, -1, -1,
|
||
461, 896, -1, -1, 712, 635, 901, 902, -1, -1,
|
||
-1, 26, 473, -1, -1, 985, -1, 0, 848, 989,
|
||
850, -1, 461, -1, -1, -1, 712, 997, -1, -1,
|
||
-1, -1, 47, -1, 473, -1, 931, -1, -1, 747,
|
||
935, -1, -1, 26, 59, -1, -1, 942, -1, -1,
|
||
-1, -1, -1, -1, 949, 950, -1, 765, -1, 767,
|
||
577, 747, 892, -1, 47, -1, 896, 275, -1, -1,
|
||
778, 901, 902, -1, 89, -1, 59, -1, -1, 765,
|
||
-1, 767, 712, 9, 275, 793, -1, -1, -1, -1,
|
||
985, -1, 778, -1, 989, -1, -1, -1, -1, -1,
|
||
-1, 931, 997, -1, -1, 935, 89, 793, 34, 35,
|
||
36, -1, 942, -1, 129, -1, 577, 747, 635, 949,
|
||
950, 136, -1, -1, -1, 9, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, 765, -1, 767, 577, -1,
|
||
848, -1, 850, -1, -1, -1, 129, -1, 778, -1,
|
||
34, 35, 36, 136, -1, 985, -1, -1, -1, 989,
|
||
-1, -1, 848, 793, 850, -1, -1, 997, -1, -1,
|
||
54, 55, 56, 57, 635, 59, 60, -1, -1, -1,
|
||
-1, -1, 108, -1, 892, -1, -1, -1, 896, -1,
|
||
-1, -1, -1, 901, 902, 712, 635, -1, 124, -1,
|
||
-1, -1, 128, -1, 130, -1, 892, -1, -1, -1,
|
||
896, -1, -1, -1, -1, 901, 902, -1, 848, -1,
|
||
850, -1, -1, 931, 108, -1, -1, 935, -1, -1,
|
||
747, -1, -1, -1, 942, -1, -1, -1, -1, -1,
|
||
124, 949, 950, -1, 128, 931, 130, -1, 765, 935,
|
||
767, 712, -1, 461, -1, -1, 942, -1, -1, -1,
|
||
275, 778, 892, 949, 950, 473, 896, -1, -1, -1,
|
||
461, 901, 902, 712, -1, -1, 793, 985, -1, -1,
|
||
-1, 989, 473, -1, -1, -1, 747, -1, -1, 997,
|
||
-1, -1, 275, -1, -1, -1, -1, 9, -1, 985,
|
||
-1, 931, -1, 989, 765, 935, 767, -1, 747, -1,
|
||
-1, 997, 942, -1, 0, -1, -1, 778, -1, 949,
|
||
950, -1, 34, 35, 36, -1, 765, -1, 767, -1,
|
||
-1, 848, 793, 850, -1, -1, -1, -1, -1, 778,
|
||
26, -1, 54, 55, 56, 57, 0, 59, 60, -1,
|
||
-1, -1, 9, -1, 793, 985, -1, -1, -1, 989,
|
||
-1, 47, -1, -1, -1, -1, -1, 997, -1, 577,
|
||
0, -1, 26, 59, -1, 892, -1, 34, 35, 896,
|
||
-1, -1, -1, -1, 901, 902, 577, 848, -1, 850,
|
||
-1, -1, -1, 47, -1, -1, 26, 54, 55, 56,
|
||
57, -1, 59, 60, -1, 59, -1, -1, -1, 848,
|
||
-1, 850, -1, -1, 931, -1, 128, 47, 935, -1,
|
||
-1, -1, -1, -1, -1, 942, -1, 635, -1, 59,
|
||
-1, 892, 949, 950, -1, 896, -1, -1, -1, -1,
|
||
901, 902, -1, 129, 635, -1, 461, -1, -1, -1,
|
||
136, -1, -1, 892, -1, -1, -1, 896, 473, -1,
|
||
-1, -1, 901, 902, -1, -1, -1, -1, 985, 9,
|
||
931, 128, 989, 130, 935, 129, -1, -1, 461, -1,
|
||
997, 942, 136, -1, -1, -1, -1, -1, 949, 950,
|
||
473, -1, 931, -1, 34, 35, 935, -1, -1, 129,
|
||
-1, -1, -1, 942, 712, -1, 136, -1, -1, -1,
|
||
949, 950, 34, 35, 54, 55, 56, 57, -1, 59,
|
||
60, 712, 0, -1, 985, -1, -1, -1, 989, -1,
|
||
-1, -1, 54, 55, 56, 57, 997, 59, 60, 747,
|
||
-1, -1, -1, -1, -1, -1, 985, -1, 26, -1,
|
||
989, -1, -1, -1, -1, -1, 747, 765, 997, 767,
|
||
-1, -1, 577, -1, -1, -1, -1, 0, -1, 47,
|
||
778, -1, -1, -1, 765, -1, 767, -1, -1, -1,
|
||
-1, 59, -1, -1, -1, 793, -1, 778, 128, 275,
|
||
130, 5, -1, 26, 577, -1, -1, 11, 12, -1,
|
||
-1, -1, 793, -1, -1, -1, 128, -1, 22, 23,
|
||
24, -1, 26, -1, 47, -1, 30, -1, 9, -1,
|
||
635, 275, -1, -1, -1, -1, 59, -1, 42, 9,
|
||
44, -1, -1, 47, 48, -1, -1, -1, 52, 53,
|
||
848, -1, 850, 34, 35, 275, -1, 61, -1, -1,
|
||
-1, 129, 635, -1, 34, 35, 36, 848, 136, 850,
|
||
-1, -1, -1, 54, 55, 56, 57, -1, 59, 60,
|
||
84, -1, -1, -1, 54, 55, 56, 57, -1, 59,
|
||
60, 95, -1, -1, 892, 99, -1, -1, 896, -1,
|
||
-1, -1, -1, 901, 902, -1, 129, 712, -1, -1,
|
||
-1, 892, -1, 136, -1, 896, -1, -1, -1, -1,
|
||
901, 902, 126, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 931, -1, -1, -1, 935, -1, 712,
|
||
-1, -1, 747, -1, 942, -1, -1, 128, -1, 130,
|
||
931, 949, 950, -1, 935, -1, -1, -1, 128, -1,
|
||
765, 942, 767, -1, -1, -1, -1, -1, 949, 950,
|
||
-1, -1, -1, 778, 747, -1, -1, 0, -1, -1,
|
||
-1, -1, -1, -1, -1, 461, -1, 985, 793, -1,
|
||
-1, 989, 765, -1, 767, -1, -1, 473, -1, 997,
|
||
-1, -1, 0, 26, 985, 778, -1, 275, 989, -1,
|
||
-1, -1, -1, -1, -1, -1, 997, 461, -1, -1,
|
||
793, 9, -1, -1, 47, -1, -1, -1, 26, 473,
|
||
-1, -1, -1, 9, -1, -1, 59, -1, -1, -1,
|
||
-1, 461, -1, 848, -1, 850, 34, 35, 36, 47,
|
||
-1, -1, 275, 473, -1, -1, -1, -1, 34, 35,
|
||
36, 59, -1, -1, 9, -1, 54, 55, 56, 57,
|
||
-1, 59, 60, -1, -1, 848, -1, 850, 54, 55,
|
||
56, 57, -1, 59, 60, -1, -1, 892, -1, 34,
|
||
35, 896, -1, -1, -1, -1, 901, 902, -1, -1,
|
||
-1, 577, -1, -1, -1, -1, 129, -1, -1, 54,
|
||
55, 56, 57, 136, 59, 60, -1, -1, -1, 892,
|
||
-1, -1, -1, 896, -1, -1, 931, -1, 901, 902,
|
||
935, 129, -1, 577, -1, -1, 124, 942, 136, -1,
|
||
128, -1, 130, -1, 949, 950, -1, -1, -1, -1,
|
||
0, -1, 128, -1, 130, -1, -1, 577, 931, 635,
|
||
-1, -1, 935, -1, -1, -1, -1, -1, -1, 942,
|
||
-1, 0, -1, -1, -1, 9, 949, 950, -1, -1,
|
||
985, -1, -1, 128, 989, 130, -1, -1, -1, -1,
|
||
-1, 635, 997, 461, -1, -1, -1, 26, -1, -1,
|
||
34, 35, 36, -1, -1, 473, -1, -1, -1, 59,
|
||
-1, -1, 985, -1, 9, 635, 989, -1, 47, -1,
|
||
54, 55, 56, 57, 997, 59, 60, -1, -1, -1,
|
||
59, -1, -1, -1, -1, -1, 712, -1, 461, 34,
|
||
35, 36, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
473, -1, 275, -1, -1, -1, -1, 0, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, 712, -1,
|
||
-1, 747, -1, -1, -1, -1, -1, 275, 0, 129,
|
||
-1, -1, -1, 26, -1, -1, 136, -1, -1, 765,
|
||
-1, 767, 712, -1, 128, -1, 130, -1, -1, -1,
|
||
129, -1, 778, 747, 47, -1, -1, 136, -1, 577,
|
||
-1, -1, -1, -1, 9, -1, 59, 793, -1, -1,
|
||
-1, 765, -1, 767, -1, -1, -1, 747, -1, -1,
|
||
9, -1, -1, 128, 778, 130, -1, 59, -1, 34,
|
||
35, 36, -1, -1, -1, 765, -1, 767, -1, 793,
|
||
-1, -1, -1, -1, 577, 34, 35, 36, 778, 54,
|
||
55, 56, 57, -1, 59, 60, -1, 635, -1, -1,
|
||
-1, -1, 848, 793, 850, 54, 55, 56, 57, -1,
|
||
59, 60, -1, -1, -1, -1, 129, -1, -1, -1,
|
||
-1, -1, -1, 136, -1, -1, -1, 0, -1, -1,
|
||
-1, -1, -1, -1, 848, -1, 850, 129, -1, -1,
|
||
-1, -1, 635, -1, 136, -1, 892, -1, -1, -1,
|
||
896, -1, -1, -1, -1, 901, 902, -1, 848, -1,
|
||
850, -1, -1, 128, -1, 130, -1, -1, 461, -1,
|
||
-1, -1, -1, -1, 712, -1, 275, -1, 892, 128,
|
||
473, 130, 896, -1, -1, 931, 59, 901, 902, 935,
|
||
-1, -1, -1, 461, -1, -1, 942, -1, -1, -1,
|
||
-1, -1, 892, 949, 950, 473, 896, -1, -1, 747,
|
||
-1, 901, 902, -1, -1, -1, -1, 931, -1, 712,
|
||
-1, 935, -1, -1, -1, -1, -1, 765, 942, 767,
|
||
-1, -1, -1, -1, -1, 949, 950, -1, -1, 985,
|
||
778, 931, -1, 989, -1, 935, -1, -1, -1, 0,
|
||
-1, 997, 942, -1, 747, 793, 129, -1, -1, 949,
|
||
950, -1, 275, 136, -1, -1, -1, -1, -1, -1,
|
||
-1, 985, 765, -1, 767, 989, -1, 9, -1, -1,
|
||
-1, -1, -1, 997, 577, 778, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 985, -1, -1, -1, 989,
|
||
793, -1, 34, 35, 36, -1, -1, 997, 59, 577,
|
||
848, -1, 850, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 461, 635, -1, -1, -1, 27, 28, -1, -1,
|
||
31, 32, 33, 473, 892, 848, -1, 850, 896, -1,
|
||
-1, -1, 461, 901, 902, -1, -1, 635, 49, 50,
|
||
-1, -1, -1, -1, 473, -1, -1, 58, 129, -1,
|
||
-1, -1, -1, -1, -1, 136, -1, -1, -1, -1,
|
||
-1, -1, -1, 931, -1, -1, 128, 935, 130, 892,
|
||
-1, -1, -1, 896, 942, -1, -1, -1, 901, 902,
|
||
-1, 949, 950, -1, -1, -1, -1, -1, -1, 712,
|
||
-1, -1, -1, -1, -1, -1, -1, 108, 109, 110,
|
||
111, 112, 113, 114, 115, 116, -1, -1, 931, -1,
|
||
121, 122, 935, -1, 712, -1, -1, 985, 461, 942,
|
||
-1, 989, -1, -1, 747, -1, 949, 950, -1, 997,
|
||
473, -1, -1, -1, -1, -1, -1, -1, -1, 461,
|
||
-1, -1, 765, -1, 767, -1, -1, -1, 577, 747,
|
||
-1, 473, -1, -1, -1, 778, -1, -1, -1, -1,
|
||
-1, -1, 985, -1, -1, 5, 989, 765, -1, 767,
|
||
793, 11, 12, -1, 997, -1, -1, -1, -1, -1,
|
||
778, -1, 22, 23, 24, 635, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, 793, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, 635, 47, 48, -1,
|
||
-1, -1, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, 848, -1, 850, -1, -1,
|
||
-1, -1, -1, -1, 577, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, -1, -1, -1,
|
||
848, -1, 850, -1, -1, 95, -1, -1, 461, 99,
|
||
-1, -1, 712, -1, -1, -1, -1, -1, -1, 892,
|
||
473, -1, -1, 896, -1, -1, -1, -1, 901, 902,
|
||
-1, 121, 122, 712, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 635, -1, 892, -1, -1, 747, 896, -1,
|
||
-1, -1, -1, 901, 902, -1, -1, -1, 931, -1,
|
||
-1, -1, 935, 635, -1, 765, -1, 767, 747, 942,
|
||
-1, -1, -1, -1, -1, 27, 949, 950, 778, 31,
|
||
32, 33, -1, 931, -1, -1, 765, 935, 767, -1,
|
||
-1, -1, -1, 793, 942, -1, -1, 49, 50, 778,
|
||
-1, 949, 950, -1, -1, -1, 58, -1, -1, -1,
|
||
-1, -1, 985, -1, 793, -1, 989, -1, -1, 712,
|
||
-1, -1, -1, -1, 997, -1, -1, -1, -1, -1,
|
||
461, -1, -1, -1, -1, -1, -1, 985, -1, -1,
|
||
712, 989, 473, -1, -1, -1, -1, -1, 848, 997,
|
||
850, -1, -1, -1, 747, -1, 108, 109, 110, 111,
|
||
112, 113, 114, 115, 116, -1, -1, -1, -1, 848,
|
||
-1, 850, 765, -1, 767, 747, -1, -1, -1, -1,
|
||
-1, -1, 635, -1, -1, 778, -1, -1, -1, -1,
|
||
-1, -1, 892, 765, -1, 767, 896, -1, -1, -1,
|
||
793, 901, 902, -1, -1, -1, 778, -1, -1, -1,
|
||
-1, -1, -1, 892, -1, -1, -1, 896, -1, -1,
|
||
-1, 793, 901, 902, -1, -1, -1, -1, -1, -1,
|
||
-1, 931, -1, -1, -1, 935, -1, -1, -1, -1,
|
||
-1, -1, 942, -1, -1, -1, -1, -1, -1, 949,
|
||
950, -1, 931, -1, -1, 848, 935, 850, -1, 712,
|
||
-1, -1, -1, 942, -1, -1, -1, -1, -1, -1,
|
||
949, 950, -1, -1, -1, -1, 848, -1, 850, -1,
|
||
-1, -1, -1, -1, -1, 985, -1, -1, -1, 989,
|
||
-1, -1, -1, -1, 747, -1, -1, 997, -1, 892,
|
||
-1, -1, -1, 896, 635, -1, 985, -1, 901, 902,
|
||
989, -1, 765, -1, 767, -1, -1, -1, 997, -1,
|
||
892, -1, -1, -1, 896, 778, -1, -1, -1, 901,
|
||
902, -1, -1, -1, -1, -1, -1, -1, 931, -1,
|
||
793, -1, 935, -1, -1, -1, -1, -1, -1, 942,
|
||
-1, -1, -1, -1, -1, -1, 949, 950, -1, 931,
|
||
-1, -1, -1, 935, -1, -1, -1, -1, -1, -1,
|
||
942, -1, -1, -1, -1, -1, -1, 949, 950, -1,
|
||
-1, 712, -1, -1, 27, 28, -1, -1, 31, 32,
|
||
33, -1, 985, -1, -1, 848, 989, 850, -1, -1,
|
||
-1, -1, -1, -1, 997, -1, 49, 50, -1, -1,
|
||
-1, -1, -1, 985, -1, 58, 747, 989, -1, -1,
|
||
-1, -1, -1, -1, -1, 997, -1, -1, 0, 1,
|
||
-1, -1, -1, -1, 765, -1, 767, -1, -1, 892,
|
||
-1, -1, -1, 896, -1, -1, -1, 778, 901, 902,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 793, 106, -1, 108, 109, 110, 111, 112,
|
||
113, 114, 115, 116, -1, -1, -1, -1, 931, -1,
|
||
-1, -1, 935, -1, -1, -1, -1, 59, -1, 942,
|
||
-1, -1, 14, 15, 16, -1, 949, 950, -1, -1,
|
||
-1, -1, -1, -1, 26, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 848, 40, 850,
|
||
42, 43, -1, -1, -1, 47, -1, -1, -1, -1,
|
||
-1, -1, 985, -1, -1, 57, 989, -1, -1, -1,
|
||
-1, -1, -1, 115, 997, 67, -1, 69, -1, 71,
|
||
72, -1, 74, -1, 76, -1, 78, -1, 80, -1,
|
||
82, 892, 84, -1, 86, 896, 88, 89, 90, -1,
|
||
901, 902, 94, 145, -1, 97, -1, -1, 100, -1,
|
||
102, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 5, 118, -1, 120, -1,
|
||
931, 11, 12, -1, 935, -1, -1, -1, -1, -1,
|
||
-1, 942, 22, 23, 24, -1, 26, -1, 949, 950,
|
||
30, -1, -1, -1, -1, -1, 148, 149, -1, -1,
|
||
-1, 203, 42, 205, 44, -1, -1, 47, 48, 211,
|
||
-1, -1, 52, 53, -1, 167, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, 985, -1, -1, -1, 989, -1,
|
||
-1, -1, 72, 73, -1, -1, 997, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, -1, 250, -1,
|
||
-1, 253, -1, -1, -1, 95, 208, -1, -1, 99,
|
||
212, -1, -1, -1, -1, -1, 268, -1, 27, 28,
|
||
-1, -1, 31, 32, 33, -1, -1, -1, -1, 119,
|
||
-1, -1, -1, -1, 124, -1, 288, 239, 240, 241,
|
||
49, 50, -1, 31, 32, 33, -1, -1, 250, 58,
|
||
-1, -1, -1, -1, 256, -1, -1, -1, -1, -1,
|
||
-1, 49, 50, -1, -1, -1, -1, -1, -1, 271,
|
||
58, 10, -1, 275, -1, -1, -1, -1, -1, -1,
|
||
-1, 20, 21, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 294, 295, -1, -1, -1, 106, -1, 108,
|
||
109, 110, 111, 112, 113, 114, 115, 116, -1, -1,
|
||
-1, 50, -1, -1, -1, -1, 55, 56, -1, -1,
|
||
108, 109, 110, 111, 112, 113, 114, 115, 116, -1,
|
||
-1, 5, -1, 7, 8, -1, 10, 11, 12, 13,
|
||
-1, -1, -1, -1, -1, 19, 20, 21, 22, 23,
|
||
24, -1, 26, -1, -1, 29, 30, -1, -1, -1,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, 115, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, 27, 28, 61, -1, 31,
|
||
32, 33, 444, 132, -1, -1, 70, -1, 72, 73,
|
||
-1, 403, -1, -1, 143, -1, -1, 49, 50, -1,
|
||
84, 150, -1, -1, -1, -1, 58, 419, 157, -1,
|
||
472, 95, 96, -1, -1, 99, 165, 166, 480, -1,
|
||
104, 483, -1, 485, -1, -1, -1, -1, 112, 113,
|
||
-1, -1, -1, -1, -1, 119, 120, 121, 122, -1,
|
||
124, -1, 126, -1, 128, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 515, -1, 517, 108, 109, 110, 111,
|
||
112, 113, 114, 115, 116, -1, 528, -1, -1, -1,
|
||
-1, -1, -1, 535, -1, -1, 538, 539, -1, 541,
|
||
5, -1, 544, -1, -1, -1, 11, 12, -1, -1,
|
||
-1, -1, -1, -1, 243, -1, -1, 22, 23, 24,
|
||
-1, 26, -1, -1, -1, 30, 518, 569, 520, -1,
|
||
-1, -1, -1, -1, -1, -1, 578, 42, 267, 44,
|
||
269, -1, 47, 48, -1, -1, -1, 52, 53, -1,
|
||
-1, 543, -1, -1, -1, -1, 61, 549, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 558, -1, -1, 298,
|
||
299, -1, -1, 302, -1, -1, -1, -1, -1, 84,
|
||
309, 5, 574, -1, 313, 577, -1, 11, 12, 318,
|
||
95, -1, -1, 322, 99, -1, -1, 326, 22, 23,
|
||
24, 330, 26, -1, 333, -1, 30, 649, 337, -1,
|
||
-1, -1, 341, -1, -1, 120, -1, -1, 42, 348,
|
||
44, -1, -1, 47, 48, -1, -1, -1, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 645, 646, -1, -1, 386, 700, 388,
|
||
84, -1, 391, -1, -1, 394, 708, -1, 710, -1,
|
||
399, 95, -1, 665, -1, 99, 405, 719, -1, -1,
|
||
-1, -1, -1, 412, 413, 414, 415, 416, 417, 418,
|
||
-1, -1, -1, -1, -1, -1, 120, -1, -1, -1,
|
||
429, -1, -1, 432, -1, -1, -1, 699, -1, 438,
|
||
702, 753, -1, 755, 706, 707, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 717, 768, 719, -1, 771,
|
||
772, 773, -1, 725, 726, 777, -1, -1, 780, 731,
|
||
732, -1, -1, -1, -1, -1, -1, -1, -1, 741,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 805, -1, -1, -1, -1, 497, 498,
|
||
499, 500, 501, 502, 503, 504, 505, 506, 507, 508,
|
||
509, 510, 511, 512, 513, 514, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
842, -1, 531, -1, -1, -1, -1, 849, 537, -1,
|
||
852, -1, -1, -1, 806, 807, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 823, -1, 875, -1, -1, -1, -1, 830, -1,
|
||
832, -1, -1, -1, -1, 574, -1, 576, -1, -1,
|
||
-1, 843, -1, 845, -1, -1, -1, -1, -1, -1,
|
||
589, 903, -1, -1, -1, -1, -1, -1, -1, 911,
|
||
912, -1, -1, 602, 866, 917, -1, -1, -1, 871,
|
||
-1, -1, 874, 925, 926, -1, -1, 929, -1, -1,
|
||
932, 933, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 5, 633, -1, -1, -1, -1, 11,
|
||
12, 640, -1, -1, -1, -1, -1, 909, -1, 648,
|
||
22, 23, 24, -1, 26, -1, 918, 656, 30, 921,
|
||
972, -1, 661, 975, -1, 927, -1, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, -1, -1,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, -1, -1, -1, 959, -1, -1,
|
||
-1, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
||
-1, -1, 84, -1, 87, 88, 89, 90, 91, 92,
|
||
93, 94, -1, 95, -1, -1, -1, 99, -1, 65,
|
||
66, -1, 68, 732, 70, -1, -1, 73, -1, 75,
|
||
-1, 77, 1004, 1005, -1, 81, -1, 83, 120, -1,
|
||
-1, 87, -1, -1, -1, 91, 92, 130, -1, -1,
|
||
96, 760, 98, -1, -1, 101, -1, 5, -1, -1,
|
||
769, -1, -1, 11, 12, -1, 775, -1, -1, -1,
|
||
116, 117, 781, 119, 22, 23, 24, -1, 26, -1,
|
||
789, -1, 30, -1, -1, 794, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, -1, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 823, -1, 825, -1, -1, -1,
|
||
-1, -1, 168, 169, 170, 171, 172, 173, 174, -1,
|
||
176, 177, -1, 179, 180, 181, 84, 183, -1, 185,
|
||
186, -1, -1, -1, -1, -1, -1, 95, 857, -1,
|
||
-1, 99, 198, 862, 200, 201, -1, 105, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 215,
|
||
216, 217, 218, 219, 220, 221, -1, 223, 224, -1,
|
||
226, 227, 228, -1, 230, 231, 232, -1, -1, 235,
|
||
236, 237, -1, -1, -1, 904, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 260, 261, -1, 263, 264, 0,
|
||
1, -1, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 945, -1, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, 368, 104, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 119, -1,
|
||
121, 122, -1, 124, -1, 126, -1, 128, 0, 1,
|
||
-1, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, -1, -1, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, -1, -1, -1, -1,
|
||
42, 43, 44, 45, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, -1, 68, -1, 70, 71,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, 84, 85, 86, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, 97, 98, 99, 100, -1,
|
||
102, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 119, -1, 121,
|
||
122, -1, 124, -1, 126, -1, 128, -1, -1, -1,
|
||
-1, -1, -1, 1, -1, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, 15, 16, 17,
|
||
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, 585,
|
||
-1, -1, 588, 61, 62, 63, 64, 65, 66, 67,
|
||
68, -1, 70, 71, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, 84, 85, 86, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, 97,
|
||
98, 99, 100, 101, 102, 103, 104, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 119, -1, 121, 122, -1, 124, -1, 126, 127,
|
||
128, 1, -1, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, 17, -1, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, 64, 65, 66, 67, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 738, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, -1, 102, -1, 104, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 119,
|
||
-1, 121, 122, -1, 124, -1, 126, 1, 128, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, -1, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, 38, 39, 40, -1, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, -1, 68, -1, 70, 71, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, 97, 98, 99, 100, -1, 102, -1,
|
||
104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 119, -1, 121, 122, -1,
|
||
124, -1, 126, 1, 128, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, -1, -1, 17,
|
||
-1, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
38, 39, -1, -1, 42, 43, 44, 45, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 62, 63, -1, -1, -1, -1,
|
||
68, -1, 70, 71, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, 84, 85, 86, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, 97,
|
||
98, 99, 100, 101, 102, -1, 104, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 119, -1, 121, 122, -1, 124, -1, 126, 1,
|
||
128, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, 17, -1, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, 38, 39, 40, -1,
|
||
42, 43, 44, 45, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, -1, 68, -1, 70, 71,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, 84, 85, 86, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, 97, 98, 99, 100, -1,
|
||
102, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 119, -1, 121,
|
||
122, -1, 124, -1, 126, 1, 128, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, 38, 39, -1, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
-1, -1, 68, -1, 70, 71, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, 84, 85,
|
||
86, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, 97, 98, 99, 100, 101, 102, -1, 104, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 119, -1, 121, 122, -1, 124, -1,
|
||
126, 1, 128, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, -1, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, -1, 102, -1, 104, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 119,
|
||
-1, 121, 122, -1, 124, -1, 126, 1, 128, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, -1, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, 38, 39, 40, -1, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, -1, 68, -1, 70, 71, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, 97, 98, 99, 100, -1, 102, -1,
|
||
104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 119, -1, 121, 122, -1,
|
||
124, -1, 126, 1, 128, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, -1, -1, 17,
|
||
-1, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
38, 39, -1, -1, 42, 43, 44, 45, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 62, 63, -1, -1, -1, -1,
|
||
68, -1, 70, 71, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, 84, 85, 86, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, 97,
|
||
98, 99, 100, 101, 102, -1, 104, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 119, -1, 121, 122, -1, 124, -1, 126, 1,
|
||
128, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, 17, -1, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, -1, 39, 40, -1,
|
||
42, 43, 44, 45, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, -1, 68, -1, 70, 71,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, 84, 85, 86, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, 97, 98, 99, 100, -1,
|
||
102, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 119, -1, 121,
|
||
122, -1, 124, -1, 126, 1, 128, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, -1, -1, -1, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
66, 67, 68, -1, 70, 71, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, 84, 85,
|
||
86, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, 97, 98, 99, 100, -1, 102, -1, 104, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 119, -1, 121, 122, -1, 124, -1,
|
||
126, 1, 128, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, 17, -1, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, -1, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, -1, 102, 103, 104, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 119,
|
||
-1, 121, 122, -1, 124, -1, 126, 1, 128, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, -1, -1, -1, -1, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, -1, 68, -1, 70, 71, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, 97, 98, 99, 100, -1, 102, -1,
|
||
104, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 119, -1, 121, 122, -1,
|
||
124, -1, 126, 1, 128, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, -1, -1, 17,
|
||
-1, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
-1, -1, -1, 41, 42, 43, 44, 45, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 62, 63, -1, -1, -1, -1,
|
||
68, -1, 70, 71, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, 84, 85, 86, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, 97,
|
||
98, 99, 100, -1, 102, -1, 104, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 119, -1, 121, 122, -1, 124, -1, 126, 1,
|
||
128, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, 17, -1, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, -1, -1, -1, -1,
|
||
42, 43, 44, 45, 46, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, -1, 68, -1, 70, 71,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, 84, 85, 86, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, 97, 98, 99, 100, -1,
|
||
102, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 119, -1, 121,
|
||
122, -1, 124, -1, 126, 1, 128, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, -1, -1, -1, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
-1, 67, 68, -1, 70, 71, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, 84, 85,
|
||
86, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, 97, 98, 99, 100, -1, 102, -1, 104, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 119, -1, 121, 122, -1, 124, -1,
|
||
126, 1, 128, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, -1, -1, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, -1, 68, -1,
|
||
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, 84, 85, 86, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
|
||
100, -1, 102, -1, 104, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 119,
|
||
-1, 121, 122, -1, 124, -1, 126, 127, 128, 5,
|
||
-1, 7, 8, -1, 10, 11, 12, 13, -1, -1,
|
||
-1, -1, -1, 19, 20, 21, 22, 23, 24, -1,
|
||
26, -1, -1, 29, 30, -1, -1, -1, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 70, -1, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 84, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, -1, -1, 99, -1, -1, -1, -1, 104, 105,
|
||
106, -1, -1, -1, -1, -1, 112, 113, -1, -1,
|
||
-1, -1, -1, 119, 120, -1, -1, -1, 124, -1,
|
||
126, 5, 128, 7, 8, -1, 10, 11, 12, 13,
|
||
-1, -1, -1, -1, -1, 19, 20, 21, 22, 23,
|
||
24, -1, 26, -1, -1, 29, 30, -1, -1, -1,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 70, -1, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
84, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, -1, -1, 99, -1, -1, -1, -1,
|
||
104, 105, -1, -1, -1, -1, -1, -1, 112, 113,
|
||
-1, -1, -1, -1, -1, 119, 120, -1, -1, -1,
|
||
124, -1, 126, 5, 128, 7, 8, -1, 10, 11,
|
||
12, 13, -1, -1, -1, -1, -1, 19, 20, 21,
|
||
22, 23, 24, -1, 26, -1, -1, 29, 30, -1,
|
||
-1, -1, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 70, -1,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 84, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, -1, -1, 99, -1, -1,
|
||
-1, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
112, 113, -1, -1, -1, -1, -1, 119, 120, -1,
|
||
-1, 123, 124, -1, 126, 5, 128, 7, 8, -1,
|
||
10, 11, 12, 13, -1, -1, -1, -1, -1, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, 29,
|
||
30, -1, -1, -1, 34, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
70, -1, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, -1, -1, 99,
|
||
-1, -1, -1, -1, 104, 105, -1, -1, -1, -1,
|
||
-1, -1, 112, 113, -1, -1, -1, -1, -1, 119,
|
||
120, -1, -1, -1, 124, -1, 126, 5, 128, 7,
|
||
8, -1, 10, 11, 12, 13, -1, -1, -1, -1,
|
||
-1, 19, 20, 21, 22, 23, 24, -1, 26, -1,
|
||
-1, 29, 30, -1, -1, -1, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 70, -1, 72, 73, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, 96, -1,
|
||
-1, 99, -1, -1, -1, -1, 104, -1, -1, -1,
|
||
-1, -1, -1, -1, 112, 113, -1, -1, -1, -1,
|
||
-1, 119, 120, -1, -1, -1, 124, -1, 126, 5,
|
||
128, 7, 8, -1, 10, 11, 12, 13, -1, -1,
|
||
-1, -1, -1, 19, 20, 21, 22, 23, 24, -1,
|
||
26, -1, -1, 29, 30, -1, -1, -1, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 70, -1, 72, 73, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 84, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 95,
|
||
96, -1, -1, 99, -1, -1, -1, -1, 104, -1,
|
||
-1, -1, -1, -1, -1, -1, 112, 113, -1, -1,
|
||
-1, -1, -1, 119, 120, -1, -1, -1, 124, -1,
|
||
126, 5, 128, 7, 8, -1, 10, 11, 12, 13,
|
||
-1, -1, -1, -1, -1, 19, 20, 21, 22, 23,
|
||
24, -1, 26, -1, -1, 29, 30, -1, -1, -1,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 70, -1, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
84, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 95, 96, -1, -1, 99, -1, -1, -1, -1,
|
||
104, -1, -1, -1, -1, -1, -1, -1, 112, 113,
|
||
-1, -1, -1, -1, -1, 119, 120, -1, -1, -1,
|
||
124, -1, 126, 5, 128, 7, 8, -1, 10, 11,
|
||
12, 13, -1, -1, -1, -1, -1, 19, 20, 21,
|
||
22, 23, 24, -1, 26, -1, -1, 29, 30, -1,
|
||
-1, -1, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 70, -1,
|
||
72, 73, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 84, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 95, 96, -1, -1, 99, -1, -1,
|
||
-1, -1, 104, -1, -1, -1, -1, -1, -1, -1,
|
||
112, 113, -1, -1, -1, -1, -1, 119, 120, -1,
|
||
-1, -1, 124, -1, 126, 5, 128, 7, 8, -1,
|
||
10, 11, 12, 13, -1, -1, -1, -1, -1, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
70, -1, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 95, 96, -1, -1, 99,
|
||
-1, -1, -1, -1, 104, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 5, -1, 7, 8, 119,
|
||
10, 11, 12, 13, 124, -1, 126, -1, 128, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, -1, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 9, -1, -1, -1, -1, -1, -1, -1,
|
||
70, -1, 72, 73, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, -1, 34, 35, 36,
|
||
-1, -1, -1, -1, -1, 95, 96, -1, -1, 99,
|
||
-1, -1, -1, -1, -1, -1, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, -1, -1, -1, 119,
|
||
-1, -1, -1, -1, 124, -1, 126, 74, 75, 76,
|
||
77, 78, 79, 80, 81, 82, -1, -1, -1, 9,
|
||
87, 88, 89, 90, 91, 92, 93, 94, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 34, 35, 36, -1, -1, -1,
|
||
-1, -1, -1, -1, 121, 122, 123, -1, -1, -1,
|
||
-1, 128, -1, 130, 54, 55, 56, 57, -1, 59,
|
||
60, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
9, -1, -1, -1, 74, 75, 76, 77, 78, 79,
|
||
80, 81, 82, -1, -1, -1, -1, 87, 88, 89,
|
||
90, 91, 92, 93, 94, 34, 35, 36, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 54, 55, 56, 57, -1,
|
||
59, 60, -1, -1, 124, -1, -1, -1, 128, -1,
|
||
130, 9, -1, -1, -1, 74, 75, 76, 77, 78,
|
||
79, 80, 81, 82, -1, -1, -1, -1, 87, 88,
|
||
89, 90, 91, 92, 93, 94, 34, 35, 36, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 54, 55, 56, 57,
|
||
-1, 59, 60, -1, -1, -1, -1, -1, -1, 128,
|
||
-1, 130, 9, -1, -1, -1, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 82, -1, -1, -1, -1, 87,
|
||
88, 89, 90, 91, 92, 93, 94, 34, 35, 36,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, -1, -1, -1, -1,
|
||
128, -1, 130, 9, -1, -1, -1, 74, 75, 76,
|
||
77, 78, 79, 80, 81, 82, -1, -1, -1, -1,
|
||
87, 88, 89, 90, 91, 92, 93, 94, 34, 35,
|
||
36, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, -1, -1, -1, -1, -1,
|
||
-1, 128, -1, 130, 9, -1, -1, -1, 74, 75,
|
||
76, 77, 78, 79, 80, 81, 82, -1, -1, -1,
|
||
-1, 87, 88, 89, 90, 91, 92, 93, 94, 34,
|
||
35, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, -1, -1,
|
||
-1, -1, 128, -1, 130, -1, -1, -1, -1, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
|
||
-1, -1, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
5, -1, -1, -1, -1, -1, 11, 12, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 22, 23, 24,
|
||
-1, 26, -1, -1, -1, 30, -1, -1, -1, -1,
|
||
-1, -1, -1, 128, -1, 130, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, 5, -1, -1, 52, 53, -1,
|
||
11, 12, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, 22, 23, 24, -1, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, -1, 5,
|
||
95, 52, 53, -1, 99, 11, 12, -1, -1, -1,
|
||
61, -1, -1, -1, -1, -1, 22, 23, 24, -1,
|
||
26, 72, 73, -1, 30, 120, -1, -1, -1, -1,
|
||
-1, -1, -1, 84, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, 95, -1, 52, 53, 99, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, 5, -1,
|
||
-1, -1, -1, -1, 11, 12, -1, -1, 119, -1,
|
||
-1, -1, -1, -1, -1, 22, 23, 24, 84, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, -1, -1, 95,
|
||
-1, -1, -1, 99, -1, 42, -1, 44, -1, 105,
|
||
47, 48, -1, 5, -1, 52, 53, -1, -1, 11,
|
||
12, -1, -1, -1, 61, -1, -1, -1, -1, -1,
|
||
22, 23, 24, -1, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 84, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, 95, -1,
|
||
52, 53, 99, -1, -1, -1, -1, -1, 105, 61,
|
||
-1, -1, 5, -1, -1, -1, -1, -1, 11, 12,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 22,
|
||
23, 24, 84, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, -1, -1, 95, -1, -1, -1, 99, -1, 42,
|
||
-1, 44, -1, 105, 47, 48, 5, -1, -1, 52,
|
||
53, -1, 11, 12, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, -1, 22, 23, 24, -1, 26, -1, 72,
|
||
73, 30, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 84, -1, 42, -1, 44, -1, -1, 47, 48,
|
||
-1, -1, 95, 52, 53, -1, 99, -1, 69, -1,
|
||
71, 72, 61, 74, -1, 76, -1, 78, -1, 80,
|
||
-1, 82, -1, 84, -1, 86, -1, 88, 89, 90,
|
||
-1, -1, -1, 94, -1, 84, 97, -1, -1, 100,
|
||
-1, 102, -1, -1, -1, -1, 95, -1, -1, -1,
|
||
99, -1, -1, -1, -1, -1, -1, 118, -1, 120,
|
||
74, 75, 76, 77, 78, 79, 80, 81, 82, -1,
|
||
-1, -1, -1, 87, 88, 89, 90, 91, 92, 93,
|
||
94, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
||
-1, -1, -1, -1, 87, 88, 89, 90, 91, 92,
|
||
93, 94, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
124, -1, -1, -1, -1, -1, -1, -1, -1, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
|
||
-1, 124, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
74, 75, 76, 77, 78, 79, 80, 81, 82, -1,
|
||
-1, -1, -1, 87, 88, 89, 90, 91, 92, 93,
|
||
94, -1, -1, -1, -1, -1, -1, -1, -1, 124,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 74, 75,
|
||
76, 77, 78, 79, 80, 81, 82, -1, -1, -1,
|
||
124, 87, 88, 89, 90, 91, 92, 93, 94
|
||
};
|
||
|
||
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
||
symbol of state STATE-NUM. */
|
||
static const yytype_uint16 yystos[] =
|
||
{
|
||
0, 1, 5, 6, 7, 8, 10, 11, 12, 13,
|
||
14, 19, 20, 21, 22, 23, 24, 25, 26, 30,
|
||
34, 35, 37, 42, 43, 44, 45, 47, 48, 51,
|
||
52, 53, 61, 62, 63, 68, 70, 71, 72, 73,
|
||
83, 84, 85, 86, 95, 96, 97, 98, 99, 100,
|
||
102, 104, 119, 121, 122, 124, 126, 128, 133, 134,
|
||
135, 136, 141, 148, 166, 167, 168, 169, 170, 171,
|
||
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
||
182, 183, 184, 186, 187, 188, 189, 190, 191, 192,
|
||
193, 195, 196, 197, 198, 199, 201, 205, 210, 212,
|
||
213, 214, 216, 228, 230, 231, 233, 234, 235, 236,
|
||
237, 238, 239, 240, 241, 248, 253, 256, 257, 258,
|
||
259, 260, 273, 277, 280, 295, 296, 297, 309, 312,
|
||
314, 324, 327, 330, 342, 347, 351, 353, 360, 373,
|
||
379, 382, 382, 150, 157, 158, 36, 36, 261, 262,
|
||
124, 11, 12, 22, 23, 24, 26, 29, 30, 42,
|
||
44, 51, 53, 61, 95, 112, 113, 120, 167, 168,
|
||
170, 172, 175, 177, 179, 181, 183, 186, 188, 190,
|
||
195, 196, 197, 201, 204, 210, 214, 217, 222, 228,
|
||
230, 231, 232, 233, 241, 242, 243, 244, 253, 255,
|
||
256, 258, 166, 164, 166, 165, 166, 157, 151, 222,
|
||
222, 313, 278, 157, 166, 167, 168, 170, 172, 175,
|
||
177, 179, 181, 183, 186, 188, 190, 195, 196, 197,
|
||
201, 210, 214, 227, 228, 253, 256, 258, 36, 274,
|
||
263, 153, 361, 149, 157, 188, 190, 372, 10, 166,
|
||
166, 126, 166, 286, 19, 156, 249, 375, 166, 188,
|
||
190, 195, 197, 210, 256, 338, 339, 352, 222, 124,
|
||
256, 120, 255, 105, 106, 120, 185, 207, 208, 209,
|
||
222, 226, 247, 166, 188, 190, 211, 0, 1, 135,
|
||
136, 148, 280, 382, 3, 4, 36, 124, 9, 130,
|
||
245, 246, 9, 245, 166, 188, 190, 194, 256, 9,
|
||
36, 245, 194, 9, 36, 245, 194, 194, 9, 36,
|
||
245, 194, 9, 36, 245, 194, 9, 36, 245, 194,
|
||
9, 36, 194, 9, 36, 245, 194, 9, 245, 194,
|
||
256, 9, 36, 124, 157, 245, 194, 256, 9, 36,
|
||
124, 157, 245, 194, 256, 8, 10, 166, 169, 170,
|
||
171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
|
||
181, 182, 183, 184, 187, 188, 189, 190, 191, 194,
|
||
253, 256, 257, 258, 259, 194, 9, 245, 9, 157,
|
||
245, 9, 36, 194, 9, 36, 157, 245, 194, 9,
|
||
36, 124, 245, 128, 194, 9, 36, 157, 245, 194,
|
||
34, 35, 54, 55, 56, 57, 59, 60, 108, 128,
|
||
229, 157, 157, 157, 157, 157, 222, 252, 382, 9,
|
||
36, 245, 9, 36, 157, 245, 194, 256, 9, 36,
|
||
157, 245, 194, 157, 15, 16, 17, 18, 300, 302,
|
||
307, 308, 1, 12, 25, 26, 135, 148, 159, 160,
|
||
161, 162, 280, 382, 17, 38, 39, 40, 310, 311,
|
||
315, 320, 255, 162, 17, 101, 348, 349, 350, 157,
|
||
222, 382, 166, 264, 267, 264, 222, 222, 222, 222,
|
||
166, 199, 218, 223, 219, 220, 221, 27, 28, 31,
|
||
32, 33, 49, 50, 58, 108, 109, 110, 111, 112,
|
||
113, 114, 115, 116, 123, 298, 224, 155, 123, 382,
|
||
123, 382, 188, 265, 266, 267, 382, 166, 279, 9,
|
||
108, 334, 192, 166, 275, 279, 265, 69, 366, 222,
|
||
374, 19, 124, 282, 166, 382, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 82, 87, 88, 89, 90, 91,
|
||
92, 93, 94, 143, 145, 146, 124, 382, 112, 125,
|
||
105, 166, 250, 251, 69, 376, 52, 123, 222, 382,
|
||
166, 125, 127, 166, 188, 195, 197, 199, 210, 123,
|
||
127, 106, 123, 127, 382, 166, 166, 200, 222, 105,
|
||
222, 225, 123, 129, 222, 222, 222, 222, 222, 222,
|
||
222, 222, 222, 222, 202, 222, 203, 222, 222, 222,
|
||
222, 222, 215, 211, 222, 222, 222, 222, 222, 222,
|
||
222, 222, 211, 123, 127, 254, 222, 222, 222, 382,
|
||
303, 307, 16, 300, 307, 3, 4, 159, 316, 321,
|
||
38, 310, 320, 39, 310, 382, 38, 39, 354, 357,
|
||
382, 130, 143, 271, 272, 123, 382, 382, 123, 145,
|
||
145, 145, 145, 145, 222, 222, 222, 222, 222, 222,
|
||
222, 222, 222, 222, 222, 222, 222, 222, 222, 222,
|
||
222, 222, 382, 145, 382, 166, 166, 143, 271, 123,
|
||
152, 143, 123, 382, 222, 143, 52, 123, 276, 382,
|
||
154, 222, 382, 382, 376, 120, 382, 281, 166, 285,
|
||
286, 288, 382, 166, 166, 283, 287, 19, 382, 143,
|
||
131, 123, 123, 166, 204, 208, 217, 222, 256, 377,
|
||
378, 120, 222, 340, 341, 338, 382, 380, 125, 222,
|
||
222, 226, 209, 137, 139, 138, 140, 206, 209, 225,
|
||
130, 206, 206, 206, 222, 162, 163, 301, 255, 305,
|
||
307, 166, 166, 255, 382, 318, 310, 323, 325, 222,
|
||
358, 38, 349, 357, 222, 268, 269, 144, 146, 123,
|
||
129, 267, 207, 299, 9, 144, 266, 382, 166, 331,
|
||
166, 166, 382, 382, 163, 19, 84, 120, 166, 290,
|
||
293, 294, 289, 286, 288, 382, 166, 284, 288, 290,
|
||
105, 166, 378, 123, 166, 123, 343, 163, 106, 382,
|
||
124, 382, 124, 123, 125, 225, 125, 125, 125, 127,
|
||
163, 382, 255, 124, 382, 124, 382, 382, 322, 255,
|
||
382, 163, 355, 382, 222, 9, 222, 130, 123, 163,
|
||
222, 143, 47, 143, 362, 382, 120, 166, 166, 143,
|
||
125, 123, 123, 143, 123, 127, 125, 143, 378, 340,
|
||
99, 346, 17, 103, 381, 226, 105, 142, 147, 166,
|
||
142, 209, 304, 382, 142, 142, 317, 163, 382, 163,
|
||
326, 382, 359, 356, 270, 222, 207, 255, 64, 65,
|
||
369, 370, 371, 166, 143, 124, 143, 143, 120, 166,
|
||
294, 84, 288, 382, 143, 344, 125, 123, 143, 125,
|
||
163, 306, 125, 125, 163, 319, 17, 41, 328, 329,
|
||
163, 163, 382, 222, 125, 48, 335, 166, 363, 382,
|
||
382, 124, 143, 226, 291, 292, 382, 166, 143, 120,
|
||
166, 382, 382, 105, 166, 382, 163, 382, 382, 163,
|
||
163, 255, 332, 66, 367, 368, 163, 163, 291, 123,
|
||
125, 124, 143, 166, 143, 345, 143, 382, 364, 382,
|
||
125, 292, 291, 124, 143, 163, 336, 333, 17, 67,
|
||
365, 163, 125, 291, 17, 46, 337, 336, 125, 166,
|
||
166
|
||
};
|
||
|
||
#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 (pComp, 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 (&yylval, YYLEX_PARAM)
|
||
#else
|
||
# define YYLEX yylex (&yylval, pComp)
|
||
#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, pComp); \
|
||
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, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp)
|
||
FILE *yyoutput;
|
||
int yytype;
|
||
YYSTYPE const * const yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
if (!yyvaluep)
|
||
return;
|
||
YYUSE (pComp);
|
||
# 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, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_symbol_print (yyoutput, yytype, yyvaluep, pComp)
|
||
FILE *yyoutput;
|
||
int yytype;
|
||
YYSTYPE const * const yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
if (yytype < YYNTOKENS)
|
||
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
|
||
else
|
||
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
|
||
|
||
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp);
|
||
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 *bottom, yytype_int16 *top)
|
||
#else
|
||
static void
|
||
yy_stack_print (bottom, top)
|
||
yytype_int16 *bottom;
|
||
yytype_int16 *top;
|
||
#endif
|
||
{
|
||
YYFPRINTF (stderr, "Stack now");
|
||
for (; bottom <= top; ++bottom)
|
||
YYFPRINTF (stderr, " %d", *bottom);
|
||
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, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yy_reduce_print (yyvsp, yyrule, pComp)
|
||
YYSTYPE *yyvsp;
|
||
int yyrule;
|
||
HB_COMP_PTR pComp;
|
||
#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++)
|
||
{
|
||
fprintf (stderr, " $%d = ", yyi + 1);
|
||
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
|
||
&(yyvsp[(yyi + 1) - (yynrhs)])
|
||
, pComp);
|
||
fprintf (stderr, "\n");
|
||
}
|
||
}
|
||
|
||
# define YY_REDUCE_PRINT(Rule) \
|
||
do { \
|
||
if (yydebug) \
|
||
yy_reduce_print (yyvsp, Rule, pComp); \
|
||
} while (YYID (0))
|
||
|
||
/* Nonzero means print parse trace. It is left uninitialized so that
|
||
multiple parsers can coexist. */
|
||
int yydebug;
|
||
#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, HB_COMP_PTR pComp)
|
||
#else
|
||
static void
|
||
yydestruct (yymsg, yytype, yyvaluep, pComp)
|
||
const char *yymsg;
|
||
int yytype;
|
||
YYSTYPE *yyvaluep;
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
{
|
||
YYUSE (yyvaluep);
|
||
YYUSE (pComp);
|
||
|
||
if (!yymsg)
|
||
yymsg = "Deleting";
|
||
YYUSE (yymsg);
|
||
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
||
|
||
switch (yytype)
|
||
{
|
||
case 19: /* "LITERAL" */
|
||
#line 267 "harbour.y"
|
||
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
|
||
#line 4008 "harboury.c"
|
||
break;
|
||
case 96: /* "CBSTART" */
|
||
#line 266 "harbour.y"
|
||
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
|
||
#line 4013 "harboury.c"
|
||
break;
|
||
|
||
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 (HB_COMP_PTR pComp);
|
||
#else
|
||
int yyparse ();
|
||
#endif
|
||
#endif /* ! YYPARSE_PARAM */
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/*----------.
|
||
| yyparse. |
|
||
`----------*/
|
||
|
||
#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 (HB_COMP_PTR pComp)
|
||
#else
|
||
int
|
||
yyparse (pComp)
|
||
HB_COMP_PTR pComp;
|
||
#endif
|
||
#endif
|
||
{
|
||
/* The look-ahead symbol. */
|
||
int yychar;
|
||
|
||
/* The semantic value of the look-ahead symbol. */
|
||
YYSTYPE yylval;
|
||
|
||
/* Number of syntax errors so far. */
|
||
int yynerrs;
|
||
|
||
int yystate;
|
||
int yyn;
|
||
int yyresult;
|
||
/* Number of tokens to shift before error messages enabled. */
|
||
int yyerrstatus;
|
||
/* Look-ahead token as an internal (translated) token number. */
|
||
int yytoken = 0;
|
||
#if YYERROR_VERBOSE
|
||
/* Buffer for error messages, and its allocated size. */
|
||
char yymsgbuf[128];
|
||
char *yymsg = yymsgbuf;
|
||
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
|
||
#endif
|
||
|
||
/* Three stacks and their tools:
|
||
`yyss': related to states,
|
||
`yyvs': related to semantic values,
|
||
`yyls': related to locations.
|
||
|
||
Refer to the stacks thru separate pointers, to allow yyoverflow
|
||
to reallocate them elsewhere. */
|
||
|
||
/* The state stack. */
|
||
yytype_int16 yyssa[YYINITDEPTH];
|
||
yytype_int16 *yyss = yyssa;
|
||
yytype_int16 *yyssp;
|
||
|
||
/* The semantic value stack. */
|
||
YYSTYPE yyvsa[YYINITDEPTH];
|
||
YYSTYPE *yyvs = yyvsa;
|
||
YYSTYPE *yyvsp;
|
||
|
||
|
||
|
||
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
|
||
|
||
YYSIZE_T yystacksize = YYINITDEPTH;
|
||
|
||
/* The variables used to return semantic value and location from the
|
||
action routines. */
|
||
YYSTYPE yyval;
|
||
|
||
|
||
/* The number of symbols on the RHS of the reduced rule.
|
||
Keep to zero when no symbol should be popped. */
|
||
int yylen = 0;
|
||
|
||
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);
|
||
YYSTACK_RELOCATE (yyvs);
|
||
YYUSE (yyptr);
|
||
|
||
# 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));
|
||
|
||
goto yybackup;
|
||
|
||
/*-----------.
|
||
| yybackup. |
|
||
`-----------*/
|
||
yybackup:
|
||
|
||
/* Do appropriate processing given the current state. Read a
|
||
look-ahead token if we need one and don't already have one. */
|
||
|
||
/* First try to decide what to do without reference to look-ahead token. */
|
||
yyn = yypact[yystate];
|
||
if (yyn == YYPACT_NINF)
|
||
goto yydefault;
|
||
|
||
/* Not known => get a look-ahead token if don't already have one. */
|
||
|
||
/* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead 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;
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
/* Count tokens shifted since error; after three, turn off error
|
||
status. */
|
||
if (yyerrstatus)
|
||
yyerrstatus--;
|
||
|
||
/* Shift the look-ahead token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
|
||
|
||
/* Discard the shifted token unless it is eof. */
|
||
if (yychar != YYEOF)
|
||
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 9:
|
||
#line 280 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 286 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 290 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (4)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (4)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (4)].valChar).string ); (yyvsp[(3) - (4)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 17:
|
||
#line 295 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (6)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (6)].valChar).string ); (yyvsp[(3) - (6)].valChar).dealloc = FALSE; }
|
||
if( (yyvsp[(5) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(5) - (6)].valChar).string ); (yyvsp[(5) - (6)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 18:
|
||
#line 302 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;}
|
||
break;
|
||
|
||
case 20:
|
||
#line 303 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;}
|
||
break;
|
||
|
||
case 22:
|
||
#line 304 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;}
|
||
break;
|
||
|
||
case 24:
|
||
#line 305 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;}
|
||
break;
|
||
|
||
case 26:
|
||
#line 308 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 309 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_STATIC; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 310 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_INIT; ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 311 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_EXIT; ;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 314 "harbour.y"
|
||
{ (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 315 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 317 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 320 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 324 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 328 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'N'; ;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 329 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'C'; ;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 330 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'D'; ;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 331 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'L'; ;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 332 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'B'; ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 333 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'O'; ;}
|
||
break;
|
||
|
||
case 44:
|
||
#line 334 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 335 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 339 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'A'; ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 340 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'n'; ;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 341 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'c'; ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 342 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'd'; ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 343 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'l'; ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 344 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'a'; ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 345 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'b'; ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 346 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'o'; ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 347 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 56:
|
||
#line 350 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 351 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 59:
|
||
#line 360 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 60:
|
||
#line 361 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 61:
|
||
#line 362 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 62:
|
||
#line 363 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 63:
|
||
#line 364 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 64:
|
||
#line 370 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 65:
|
||
#line 376 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 66:
|
||
#line 377 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 67:
|
||
#line 378 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 68:
|
||
#line 379 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 69:
|
||
#line 380 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 70:
|
||
#line 381 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 71:
|
||
#line 382 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 383 "harbour.y"
|
||
{ hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 73:
|
||
#line 385 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 386 "harbour.y"
|
||
{
|
||
hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 391 "harbour.y"
|
||
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 76:
|
||
#line 392 "harbour.y"
|
||
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 393 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( (HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE) == 0 )
|
||
{ /* return from a function without a return value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 78:
|
||
#line 405 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 407 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
/* TODO: check if return value agree with declared value */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK )
|
||
/* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */
|
||
hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE )
|
||
{ /* procedure returns a value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 80:
|
||
#line 427 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 81:
|
||
#line 429 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 83:
|
||
#line 433 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
|
||
break;
|
||
|
||
case 84:
|
||
#line 435 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 91:
|
||
#line 444 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->szAnnounce == NULL )
|
||
{
|
||
/* check for reserved name
|
||
* NOTE: Clipper doesn't check for it
|
||
*/
|
||
char * szFunction = hb_compReservedName( (yyvsp[(2) - (2)].string) );
|
||
if( szFunction )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, (yyvsp[(2) - (2)].string) );
|
||
HB_COMP_PARAM->szAnnounce = (yyvsp[(2) - (2)].string);
|
||
}
|
||
else
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, (yyvsp[(2) - (2)].string), NULL );
|
||
;}
|
||
break;
|
||
|
||
case 93:
|
||
#line 458 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 461 "harbour.y"
|
||
{
|
||
if( (yyvsp[(1) - (1)].valChar).dealloc )
|
||
{
|
||
(yyvsp[(1) - (1)].valChar).string = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string, HB_IDENT_FREE );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
}
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string );
|
||
;}
|
||
break;
|
||
|
||
case 95:
|
||
#line 469 "harbour.y"
|
||
{
|
||
{
|
||
char szFileName[ _POSIX_PATH_MAX + 1 ];
|
||
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, sizeof( szFileName ) - 1 ), (yyvsp[(3) - (3)].valChar).string, sizeof( szFileName ) - 1 );
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, szFileName, HB_IDENT_COPY ) );
|
||
if( (yyvsp[(1) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (3)].valChar).string );
|
||
(yyvsp[(1) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
if( (yyvsp[(3) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
|
||
(yyvsp[(3) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 488 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 491 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 492 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 493 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 494 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 102:
|
||
#line 495 "harbour.y"
|
||
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM, HB_COMP_PARAM->functions.pLast ); ;}
|
||
break;
|
||
|
||
case 103:
|
||
#line 496 "harbour.y"
|
||
{ if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine )
|
||
{
|
||
yyclearin;
|
||
}
|
||
else
|
||
{
|
||
yyerrok;
|
||
HB_COMP_PARAM->ilastLineErr = HB_COMP_PARAM->currLine;
|
||
}
|
||
(yyval.lNumber) = 0;
|
||
;}
|
||
break;
|
||
|
||
case 113:
|
||
#line 522 "harbour.y"
|
||
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 525 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 529 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 530 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 118:
|
||
#line 533 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 534 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 538 "harbour.y"
|
||
{ (yyval.string) = "STEP"; ;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 539 "harbour.y"
|
||
{ (yyval.string) = "TO"; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 540 "harbour.y"
|
||
{ (yyval.string) = "LOOP"; ;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 541 "harbour.y"
|
||
{ (yyval.string) = "EXIT"; ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 542 "harbour.y"
|
||
{ (yyval.string) = "IN"; ;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 543 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 544 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 545 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 546 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 547 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 548 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 549 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 550 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 551 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 552 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 553 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 137:
|
||
#line 554 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 559 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 560 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 140:
|
||
#line 563 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDate( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 141:
|
||
#line 566 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 142:
|
||
#line 567 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, hb_compExprNewDouble( (yyvsp[(1) - (2)].valDouble).dNumber, (yyvsp[(1) - (2)].valDouble).bWidth, (yyvsp[(1) - (2)].valDouble).bDec, HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 143:
|
||
#line 572 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 145:
|
||
#line 580 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, (yyvsp[(1) - (1)].valChar).dealloc, HB_COMP_PARAM );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
;}
|
||
break;
|
||
|
||
case 148:
|
||
#line 596 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 149:
|
||
#line 597 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 151:
|
||
#line 605 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 153:
|
||
#line 619 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 155:
|
||
#line 627 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 157:
|
||
#line 633 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 158:
|
||
#line 634 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 160:
|
||
#line 640 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 161:
|
||
#line 641 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 162:
|
||
#line 646 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 163:
|
||
#line 649 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 164:
|
||
#line 654 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 165:
|
||
#line 655 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 167:
|
||
#line 663 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 169:
|
||
#line 673 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 170:
|
||
#line 674 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 171:
|
||
#line 679 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 172:
|
||
#line 680 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 173:
|
||
#line 681 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 174:
|
||
#line 682 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 175:
|
||
#line 683 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 176:
|
||
#line 684 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 177:
|
||
#line 685 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 178:
|
||
#line 686 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 179:
|
||
#line 687 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 180:
|
||
#line 688 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 181:
|
||
#line 689 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 182:
|
||
#line 690 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 183:
|
||
#line 691 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 184:
|
||
#line 692 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 185:
|
||
#line 695 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 188:
|
||
#line 700 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 189:
|
||
#line 701 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 190:
|
||
#line 702 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 191:
|
||
#line 703 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 192:
|
||
#line 704 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 193:
|
||
#line 705 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 194:
|
||
#line 706 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 195:
|
||
#line 707 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 196:
|
||
#line 708 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 197:
|
||
#line 709 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 198:
|
||
#line 710 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 199:
|
||
#line 711 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 200:
|
||
#line 712 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 201:
|
||
#line 713 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 202:
|
||
#line 714 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 203:
|
||
#line 715 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 204:
|
||
#line 716 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 205:
|
||
#line 717 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 206:
|
||
#line 718 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 207:
|
||
#line 719 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 208:
|
||
#line 728 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 209:
|
||
#line 729 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 210:
|
||
#line 730 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 211:
|
||
#line 731 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 212:
|
||
#line 732 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 213:
|
||
#line 733 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 214:
|
||
#line 738 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 215:
|
||
#line 739 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 216:
|
||
#line 740 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 217:
|
||
#line 741 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 218:
|
||
#line 742 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 219:
|
||
#line 743 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 220:
|
||
#line 744 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 221:
|
||
#line 745 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 222:
|
||
#line 746 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 223:
|
||
#line 747 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 224:
|
||
#line 748 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 225:
|
||
#line 749 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 226:
|
||
#line 750 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 227:
|
||
#line 751 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 228:
|
||
#line 752 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 229:
|
||
#line 753 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 230:
|
||
#line 754 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 231:
|
||
#line 755 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 233:
|
||
#line 761 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 234:
|
||
#line 761 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 236:
|
||
#line 765 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 237:
|
||
#line 765 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 238:
|
||
#line 766 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 239:
|
||
#line 766 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 240:
|
||
#line 770 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 242:
|
||
#line 776 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 243:
|
||
#line 777 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 246:
|
||
#line 784 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 247:
|
||
#line 785 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 248:
|
||
#line 786 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 249:
|
||
#line 787 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 250:
|
||
#line 788 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
|
||
break;
|
||
|
||
case 251:
|
||
#line 791 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 253:
|
||
#line 797 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 254:
|
||
#line 798 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 255:
|
||
#line 799 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL );
|
||
(yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM ));
|
||
;}
|
||
break;
|
||
|
||
case 256:
|
||
#line 805 "harbour.y"
|
||
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
|
||
break;
|
||
|
||
case 257:
|
||
#line 806 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 258:
|
||
#line 807 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 259:
|
||
#line 810 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 261:
|
||
#line 818 "harbour.y"
|
||
{(yyval.bTrue)=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 262:
|
||
#line 818 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr) ); HB_COMP_PARAM->iPassByRef=(yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 271:
|
||
#line 837 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 272:
|
||
#line 837 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 282:
|
||
#line 847 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 283:
|
||
#line 847 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 286:
|
||
#line 850 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 287:
|
||
#line 850 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 289:
|
||
#line 852 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 290:
|
||
#line 852 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 302:
|
||
#line 866 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 303:
|
||
#line 866 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 304:
|
||
#line 867 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 305:
|
||
#line 867 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 307:
|
||
#line 871 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 309:
|
||
#line 875 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 311:
|
||
#line 879 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 317:
|
||
#line 885 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 339:
|
||
#line 918 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 340:
|
||
#line 919 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 341:
|
||
#line 922 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 342:
|
||
#line 925 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 343:
|
||
#line 926 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 344:
|
||
#line 929 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 345:
|
||
#line 930 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 346:
|
||
#line 931 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 347:
|
||
#line 934 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 348:
|
||
#line 935 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 349:
|
||
#line 936 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 350:
|
||
#line 937 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 351:
|
||
#line 938 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 352:
|
||
#line 939 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 353:
|
||
#line 940 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 354:
|
||
#line 941 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 355:
|
||
#line 942 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 356:
|
||
#line 943 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 357:
|
||
#line 944 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 358:
|
||
#line 945 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 359:
|
||
#line 946 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 360:
|
||
#line 947 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 361:
|
||
#line 948 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 362:
|
||
#line 949 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 363:
|
||
#line 950 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 364:
|
||
#line 951 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 365:
|
||
#line 952 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 366:
|
||
#line 953 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 367:
|
||
#line 954 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 368:
|
||
#line 957 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 369:
|
||
#line 960 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 370:
|
||
#line 963 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 371:
|
||
#line 966 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 372:
|
||
#line 969 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 373:
|
||
#line 972 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 374:
|
||
#line 975 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 381:
|
||
#line 986 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 382:
|
||
#line 987 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 383:
|
||
#line 988 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 384:
|
||
#line 989 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 385:
|
||
#line 990 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 386:
|
||
#line 991 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 387:
|
||
#line 994 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 388:
|
||
#line 995 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 389:
|
||
#line 998 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 390:
|
||
#line 999 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 391:
|
||
#line 1000 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 392:
|
||
#line 1001 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 393:
|
||
#line 1002 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 394:
|
||
#line 1003 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 395:
|
||
#line 1004 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 396:
|
||
#line 1005 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 397:
|
||
#line 1006 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 399:
|
||
#line 1015 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 400:
|
||
#line 1016 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 401:
|
||
#line 1017 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 402:
|
||
#line 1020 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 403:
|
||
#line 1021 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 404:
|
||
#line 1024 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;}
|
||
break;
|
||
|
||
case 405:
|
||
#line 1025 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;}
|
||
break;
|
||
|
||
case 406:
|
||
#line 1030 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 407:
|
||
#line 1031 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 408:
|
||
#line 1032 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
|
||
break;
|
||
|
||
case 409:
|
||
#line 1033 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 410:
|
||
#line 1036 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 411:
|
||
#line 1037 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 412:
|
||
#line 1040 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 413:
|
||
#line 1041 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 415:
|
||
#line 1046 "harbour.y"
|
||
{ /* 3 */
|
||
HB_CBVAR_PTR pVar;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compCodeBlockStart( HB_COMP_PARAM, TRUE );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_EXTBLOCK;
|
||
HB_COMP_PARAM->functions.pLast->fVParams =
|
||
( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0;
|
||
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_EXT;
|
||
if( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string );
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string = NULL;
|
||
(yyvsp[(1) - (2)].asExpr)->ulLength = 0;
|
||
}
|
||
|
||
HB_COMP_PARAM->iVarScope = VS_PARAMETER;
|
||
pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals;
|
||
while( pVar )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType );
|
||
pVar =pVar->pNext;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 416:
|
||
#line 1071 "harbour.y"
|
||
{ /* 6 */
|
||
hb_compCodeBlockEnd( HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr),
|
||
HB_COMP_PARAM->functions.pLast->pCode + ( ULONG ) (yyvsp[(3) - (5)].lNumber),
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos - ( ULONG ) (yyvsp[(3) - (5)].lNumber) );
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos = ( ULONG ) (yyvsp[(3) - (5)].lNumber);
|
||
HB_COMP_PARAM->lastLinePos = 0;
|
||
;}
|
||
break;
|
||
|
||
case 417:
|
||
#line 1081 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 418:
|
||
#line 1082 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 419:
|
||
#line 1084 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
|
||
break;
|
||
|
||
case 421:
|
||
#line 1097 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;}
|
||
break;
|
||
|
||
case 423:
|
||
#line 1103 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 424:
|
||
#line 1104 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 425:
|
||
#line 1105 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 426:
|
||
#line 1106 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 427:
|
||
#line 1107 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL );
|
||
else
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->wParamNum = 0;
|
||
HB_COMP_PARAM->iVarScope = ( VS_PRIVATE | VS_PARAMETER );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 428:
|
||
#line 1114 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 429:
|
||
#line 1117 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 430:
|
||
#line 1118 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 431:
|
||
#line 1121 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 432:
|
||
#line 1122 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 434:
|
||
#line 1132 "harbour.y"
|
||
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
|
||
break;
|
||
|
||
case 435:
|
||
#line 1134 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 436:
|
||
#line 1138 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 437:
|
||
#line 1144 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 438:
|
||
#line 1145 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (3)].string), NULL, HB_COMP_PARAM ), FALSE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 439:
|
||
#line 1161 "harbour.y"
|
||
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType );
|
||
;}
|
||
break;
|
||
|
||
case 440:
|
||
#line 1164 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 441:
|
||
#line 1165 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (6)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (6)].string), NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
;}
|
||
break;
|
||
|
||
case 442:
|
||
#line 1192 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 444:
|
||
#line 1201 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 445:
|
||
#line 1202 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 446:
|
||
#line 1203 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 447:
|
||
#line 1206 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
|
||
break;
|
||
|
||
case 448:
|
||
#line 1208 "harbour.y"
|
||
{
|
||
if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) );
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 449:
|
||
#line 1214 "harbour.y"
|
||
{ (yyval.iNumber)=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 450:
|
||
#line 1215 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 451:
|
||
#line 1218 "harbour.y"
|
||
{ (yyval.string) = NULL; ;}
|
||
break;
|
||
|
||
case 452:
|
||
#line 1219 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 453:
|
||
#line 1222 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
|
||
break;
|
||
|
||
case 454:
|
||
#line 1222 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 455:
|
||
#line 1225 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 456:
|
||
#line 1226 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 457:
|
||
#line 1229 "harbour.y"
|
||
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
|
||
break;
|
||
|
||
case 458:
|
||
#line 1230 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastDeclared )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->cType = HB_COMP_PARAM->cVarType;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastDeclared->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastDeclared->szName );
|
||
HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
/* Resetting */
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->szDeclaredFun = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
;}
|
||
break;
|
||
|
||
case 459:
|
||
#line 1252 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;}
|
||
break;
|
||
|
||
case 460:
|
||
#line 1252 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 461:
|
||
#line 1253 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 462:
|
||
#line 1254 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 463:
|
||
#line 1255 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 464:
|
||
#line 1256 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; ;}
|
||
break;
|
||
|
||
case 465:
|
||
#line 1256 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 472:
|
||
#line 1269 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 473:
|
||
#line 1270 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 474:
|
||
#line 1291 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
|
||
break;
|
||
|
||
case 475:
|
||
#line 1292 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
PCOMCLASS pClass;
|
||
char szSetData[ HB_SYMBOL_NAME_LEN + 1 ];
|
||
int iLen;
|
||
|
||
/* List Type overrides if exists. */
|
||
if( HB_COMP_PARAM->cDataListType ) HB_COMP_PARAM->cVarType = HB_COMP_PARAM->cDataListType;
|
||
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' :'o' );
|
||
}
|
||
}
|
||
else
|
||
pClass = NULL;
|
||
|
||
iLen = strlen( (yyvsp[(1) - (3)].string) );
|
||
if( iLen >= HB_SYMBOL_NAME_LEN )
|
||
iLen = HB_SYMBOL_NAME_LEN - 1;
|
||
szSetData[ 0 ] = '_';
|
||
memcpy( szSetData + 1, (yyvsp[(1) - (3)].string), iLen );
|
||
szSetData[ iLen + 1 ] = '\0';
|
||
|
||
HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass,
|
||
hb_compIdentifierNew( HB_COMP_PARAM, szSetData, HB_IDENT_COPY ) );
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->iParamCount = 1;
|
||
|
||
/* TOFIX: these allocations causes memory leaks */
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes = ( BYTE * ) hb_xgrab( 1 );
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( COMCLASS ) );
|
||
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes[0] = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 482:
|
||
#line 1357 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 483:
|
||
#line 1360 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;}
|
||
break;
|
||
|
||
case 484:
|
||
#line 1361 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 485:
|
||
#line 1362 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), ( BYTE ) 'F' ); ;}
|
||
break;
|
||
|
||
case 486:
|
||
#line 1363 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;}
|
||
break;
|
||
|
||
case 487:
|
||
#line 1364 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 488:
|
||
#line 1365 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), ( BYTE ) 'F' ); ;}
|
||
break;
|
||
|
||
case 489:
|
||
#line 1368 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;}
|
||
break;
|
||
|
||
case 490:
|
||
#line 1369 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 491:
|
||
#line 1370 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 492:
|
||
#line 1371 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;}
|
||
break;
|
||
|
||
case 493:
|
||
#line 1372 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 494:
|
||
#line 1373 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;}
|
||
break;
|
||
|
||
case 503:
|
||
#line 1386 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 504:
|
||
#line 1387 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 505:
|
||
#line 1388 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 506:
|
||
#line 1389 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 507:
|
||
#line 1393 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 508:
|
||
#line 1395 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 509:
|
||
#line 1397 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 510:
|
||
#line 1400 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 512:
|
||
#line 1404 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 513:
|
||
#line 1406 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 514:
|
||
#line 1410 "harbour.y"
|
||
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 515:
|
||
#line 1414 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 516:
|
||
#line 1416 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 517:
|
||
#line 1420 "harbour.y"
|
||
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 518:
|
||
#line 1426 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wIfCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 521:
|
||
#line 1439 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 524:
|
||
#line 1451 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 525:
|
||
#line 1455 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wCaseCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 528:
|
||
#line 1465 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
|
||
break;
|
||
|
||
case 531:
|
||
#line 1469 "harbour.y"
|
||
{
|
||
if( (yyvsp[(2) - (2)].lNumber) > 0 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 532:
|
||
#line 1477 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 533:
|
||
#line 1478 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 534:
|
||
#line 1483 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 535:
|
||
#line 1489 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 536:
|
||
#line 1490 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 537:
|
||
#line 1495 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 538:
|
||
#line 1502 "harbour.y"
|
||
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 539:
|
||
#line 1502 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 541:
|
||
#line 1504 "harbour.y"
|
||
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
|
||
break;
|
||
|
||
case 543:
|
||
#line 1509 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 544:
|
||
#line 1514 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 545:
|
||
#line 1519 "harbour.y"
|
||
{
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wWhileCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 546:
|
||
#line 1529 "harbour.y"
|
||
{
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 547:
|
||
#line 1538 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 550:
|
||
#line 1546 "harbour.y"
|
||
{ /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
|
||
hb_compDebugStart();
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
(yyvsp[(2) - (4)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprGenPush( hb_compExprAssign( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ) )
|
||
{
|
||
hb_compForStart( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ), FALSE );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 551:
|
||
#line 1559 "harbour.y"
|
||
{ /* 9 */
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 552:
|
||
#line 1564 "harbour.y"
|
||
{ /* 11 */
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 553:
|
||
#line 1568 "harbour.y"
|
||
{
|
||
int iSign, iLine;
|
||
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
|
||
iLine = HB_COMP_PARAM->currLine;
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(1) - (12)].lNumber);
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->currLine = iLine;
|
||
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
{
|
||
(yyvsp[(8) - (12)].asExpr) = hb_compExprReduce( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM );
|
||
iSign = hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) );
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
iSign = 1;
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ) ); /* end */
|
||
if( iSign )
|
||
{
|
||
hb_compGenPCode1( ( BYTE ) ( iSign > 0 ? HB_P_GREATER : HB_P_LESS ), HB_COMP_PARAM );
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ) ); /* step */
|
||
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
|
||
}
|
||
|
||
hb_compGenJumpFalse( ( ULONG ) (yyvsp[(11) - (12)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) )
|
||
hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 556:
|
||
#line 1616 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 557:
|
||
#line 1617 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 558:
|
||
#line 1621 "harbour.y"
|
||
{
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wForCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
;}
|
||
break;
|
||
|
||
case 563:
|
||
#line 1634 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 564:
|
||
#line 1635 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 565:
|
||
#line 1638 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 566:
|
||
#line 1639 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 567:
|
||
#line 1642 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 569:
|
||
#line 1646 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 570:
|
||
#line 1647 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 571:
|
||
#line 1652 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compDebugStart();
|
||
;}
|
||
break;
|
||
|
||
case 572:
|
||
#line 1658 "harbour.y"
|
||
{
|
||
/* 7
|
||
*/
|
||
(yyvsp[(2) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (6)].asExpr), HB_COMP_PARAM );
|
||
(yyvsp[(4) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(4) - (6)].asExpr), HB_COMP_PARAM );
|
||
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
|
||
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 573:
|
||
#line 1669 "harbour.y"
|
||
{
|
||
/* 9
|
||
*/
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 574:
|
||
#line 1675 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
hb_compEnumEnd( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(4) - (10)].asExpr) );
|
||
;}
|
||
break;
|
||
|
||
case 575:
|
||
#line 1689 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 576:
|
||
#line 1690 "harbour.y"
|
||
{ (yyval.iNumber) = -1; ;}
|
||
break;
|
||
|
||
case 577:
|
||
#line 1694 "harbour.y"
|
||
{
|
||
hb_compLoopStart( HB_COMP_PARAM, FALSE );
|
||
hb_compSwitchStart( HB_COMP_PARAM );
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 578:
|
||
#line 1701 "harbour.y"
|
||
{
|
||
hb_compSwitchEnd( HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 579:
|
||
#line 1708 "harbour.y"
|
||
{
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 580:
|
||
#line 1714 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSwitchCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 583:
|
||
#line 1726 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 584:
|
||
#line 1730 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
;}
|
||
break;
|
||
|
||
case 586:
|
||
#line 1737 "harbour.y"
|
||
{
|
||
if( (yyvsp[(2) - (2)].lNumber) > 0 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 587:
|
||
#line 1745 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 589:
|
||
#line 1748 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 593:
|
||
#line 1756 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 594:
|
||
#line 1756 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 596:
|
||
#line 1761 "harbour.y"
|
||
{ /* 2 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 597:
|
||
#line 1769 "harbour.y"
|
||
{ /* 6 */
|
||
/* Set jump address for HB_P_SEQBEGIN opcode - this address
|
||
* will be used in BREAK code if there is no RECOVER clause
|
||
*/
|
||
if( (yyvsp[(3) - (5)].lNumber) )
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(2) - (5)].lNumber), HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
|
||
(yyvsp[(4) - (5)].lNumber) = hb_compLoopCount( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 598:
|
||
#line 1780 "harbour.y"
|
||
{ /* 8 */
|
||
/* Replace END address with RECOVER address in
|
||
* HB_P_SEQBEGIN opcode if there is RECOVER clause
|
||
*/
|
||
if( (yyvsp[(7) - (7)].lNumber) )
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (7)].lNumber), ( ULONG ) (yyvsp[(7) - (7)].lNumber), HB_COMP_PARAM );
|
||
else if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
;}
|
||
break;
|
||
|
||
case 599:
|
||
#line 1790 "harbour.y"
|
||
{ /* 10 */
|
||
long lLoopCount = hb_compLoopCount( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
if( (yyvsp[(9) - (9)].lNumber) )
|
||
{
|
||
if( (yyvsp[(4) - (9)].lNumber) != lLoopCount )
|
||
{
|
||
/* ALWAYS statement after RECOVER with EXIT/LOOP statments */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_ALWAYS_AFTER_EXIT, "EXIT/LOOP", NULL );
|
||
}
|
||
--HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
/* replace END address with ALWAYS address in
|
||
HB_P_SEQEND opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (9)].lNumber) - 4, ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (9)].lNumber) + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_ALWAYSEND, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
/* Fix END address in HB_P_SEQEND opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), HB_COMP_PARAM );
|
||
}
|
||
hb_compSequenceFinish( HB_COMP_PARAM, ( ULONG ) (yyvsp[(2) - (9)].lNumber), ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber),
|
||
(yyvsp[(5) - (9)].lNumber) != 0, (yyvsp[(7) - (9)].lNumber) != 0, (yyvsp[(4) - (9)].lNumber) == lLoopCount );
|
||
;}
|
||
break;
|
||
|
||
case 603:
|
||
#line 1825 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 604:
|
||
#line 1827 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 605:
|
||
#line 1834 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 607:
|
||
#line 1839 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
++HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
hb_compSequenceAlways( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 608:
|
||
#line 1847 "harbour.y"
|
||
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 611:
|
||
#line 1853 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 612:
|
||
#line 1864 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_SEQRECOVER, HB_COMP_PARAM );
|
||
hb_compGenPopVar( (yyvsp[(2) - (2)].string), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 615:
|
||
#line 1886 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 616:
|
||
#line 1888 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (4)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 617:
|
||
#line 1893 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 618:
|
||
#line 1895 "harbour.y"
|
||
{
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
/* DOIDENT is the only one identifier which can be returned in lower letters */
|
||
(yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (3)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(2) - (3)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 619:
|
||
#line 1903 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 620:
|
||
#line 1904 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 621:
|
||
#line 1907 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 622:
|
||
#line 1908 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 623:
|
||
#line 1909 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 624:
|
||
#line 1910 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 625:
|
||
#line 1911 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 626:
|
||
#line 1914 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 631:
|
||
#line 1922 "harbour.y"
|
||
{
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compGenPCode1( HB_P_WITHOBJECTSTART, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->wWithObjectCnt++;
|
||
;}
|
||
break;
|
||
|
||
case 632:
|
||
#line 1931 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt )
|
||
--HB_COMP_PARAM->functions.pLast->wWithObjectCnt;
|
||
if( (yyvsp[(5) - (6)].lNumber) )
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
|
||
( ULONG ) (yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 635:
|
||
#line 1948 "harbour.y"
|
||
{ HB_COMP_PARAM->fError = FALSE; ;}
|
||
break;
|
||
|
||
|
||
/* Line 1268 of yacc.c. */
|
||
#line 7070 "harboury.c"
|
||
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;
|
||
YYUSE (yynerrs);
|
||
#if ! YYERROR_VERBOSE
|
||
yyerror (pComp, 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 (pComp, yymsg);
|
||
}
|
||
else
|
||
{
|
||
yyerror (pComp, YY_("syntax error"));
|
||
if (yysize != 0)
|
||
goto yyexhaustedlab;
|
||
}
|
||
}
|
||
#endif
|
||
}
|
||
|
||
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* If just tried and failed to reuse look-ahead 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, pComp);
|
||
yychar = YYEMPTY;
|
||
}
|
||
}
|
||
|
||
/* Else will try to reuse look-ahead token after shifting the error
|
||
token. */
|
||
goto yyerrlab1;
|
||
|
||
|
||
/*---------------------------------------------------.
|
||
| yyerrorlab -- error raised explicitly by YYERROR. |
|
||
`---------------------------------------------------*/
|
||
#ifndef NO_YYERROR
|
||
yyerrorlab:
|
||
|
||
/* Pacify compilers like GCC when the user code never invokes
|
||
YYERROR and the label yyerrorlab therefore never appears in user
|
||
code. */
|
||
#if ! defined( __BORLANDC__ ) && ! defined( __WATCOMC__ )
|
||
if (/*CONSTCOND*/ 0)
|
||
goto yyerrorlab;
|
||
#endif
|
||
|
||
/* 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;
|
||
#endif /* NO_YYERROR */
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| 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, pComp);
|
||
YYPOPSTACK (1);
|
||
yystate = *yyssp;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
*++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;
|
||
|
||
#ifndef yyoverflow
|
||
/*-------------------------------------------------.
|
||
| yyexhaustedlab -- memory exhaustion comes here. |
|
||
`-------------------------------------------------*/
|
||
yyexhaustedlab:
|
||
yyerror (pComp, YY_("memory exhausted"));
|
||
yyresult = 2;
|
||
/* Fall through. */
|
||
#endif
|
||
|
||
yyreturn:
|
||
if (yychar != YYEOF && yychar != YYEMPTY)
|
||
yydestruct ("Cleanup: discarding lookahead",
|
||
yytoken, &yylval, pComp);
|
||
/* 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, pComp);
|
||
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 1952 "harbour.y"
|
||
|
||
|
||
/*
|
||
** ------------------------------------------------------------------------ **
|
||
*/
|
||
|
||
/*
|
||
* Avoid tracing in preprocessor/compiler.
|
||
*/
|
||
#if ! defined(HB_TRACE_UTILS)
|
||
#if defined(HB_TRACE_LEVEL)
|
||
#undef HB_TRACE_LEVEL
|
||
#endif
|
||
#endif
|
||
|
||
|
||
/* ************************************************************************* */
|
||
|
||
/*
|
||
* This function stores the position in pcode buffer where the FOR/WHILE
|
||
* loop starts. It will be used to fix any LOOP/EXIT statements
|
||
*/
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL fCanLoop )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( pFunc->pLoops )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = pFunc->pLoops;
|
||
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pLoop;
|
||
}
|
||
else
|
||
pFunc->pLoops = pLoop;
|
||
|
||
pLoop->ulOffset = pFunc->lPCodePos; /* store the start position */
|
||
pLoop->fCanLoop = fCanLoop; /* can we use LOOP inside */
|
||
pLoop->wSeqCounter = pFunc->wSeqCounter; /* store current SEQUENCE counter */
|
||
pLoop->wWithObjectCnt = pFunc->wWithObjectCnt; /* store current WITH OBJECT counter */
|
||
pLoop->wAlwaysCounter = pFunc->wAlwaysCounter; /* store current ALWAYS counter */
|
||
pLoop->pExitList = NULL;
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->pNext = NULL;
|
||
}
|
||
|
||
/*
|
||
* return number of LOOP of EXIT statement in the top most structure
|
||
*/
|
||
static long hb_compLoopCount( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLastLoop, pLastExit, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
long lCount = 0;
|
||
|
||
pLastLoop = pLastExit = NULL;
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLastLoop = pLoop;
|
||
pLastExit = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( pLastLoop )
|
||
{
|
||
while( pLastLoop->pLoopList )
|
||
{
|
||
++lCount;
|
||
pLastLoop = pLastLoop->pLoopList;
|
||
}
|
||
}
|
||
if( pLastExit )
|
||
{
|
||
while( pLastExit->pExitList )
|
||
{
|
||
++lCount;
|
||
pLastExit = pLastExit->pExitList;
|
||
}
|
||
}
|
||
|
||
return lCount;
|
||
}
|
||
|
||
/*
|
||
* Stores the position of LOOP statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopLoop( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = NULL, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( ! pLast )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to LOOP from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that LOOP is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to LOOP from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pLoopList = NULL;
|
||
while( pLast->pLoopList )
|
||
pLast = pLast->pLoopList;
|
||
pLast->pLoopList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Stores the position of EXIT statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopExit( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( ! pFunc->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLast = pFunc->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to EXIT from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that EXIT is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to EXIT from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pExitList = NULL;
|
||
while( pLast->pExitList )
|
||
pLast = pLast->pExitList;
|
||
pLast->pExitList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the LOOP statement
|
||
*/
|
||
static void hb_compLoopHere( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pFree, pLast;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
pLoop = pLoop->pNext;
|
||
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
while( pLoop )
|
||
{
|
||
hb_compGenJumpHere( pLoop->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pLast->pLoopList = NULL;
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the EXIT statements and releases memory allocated for current loop
|
||
*/
|
||
static void hb_compLoopEnd( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pLast = pFunc->pLoops, pExit, pFree;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
{
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
pExit = pLoop->pExitList;
|
||
while( pExit )
|
||
{
|
||
hb_compGenJumpHere( pExit->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pExit;
|
||
pExit = pExit->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
|
||
pLast->pNext = NULL;
|
||
if( pLoop == pFunc->pLoops )
|
||
pFunc->pLoops = NULL;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
void hb_compLoopKill( PFUNCTION pFunc )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop, pFree;
|
||
|
||
while( pFunc->pLoops )
|
||
{
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop->pExitList )
|
||
{
|
||
pFree = pLoop->pExitList;
|
||
pLoop->pExitList = pFree->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
while( pLoop->pLoopList )
|
||
{
|
||
pFree = pLoop->pLoopList;
|
||
pLoop->pLoopList = pFree->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pFunc->pLoops = pLoop->pNext;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirst, ULONG ulOffset )
|
||
{
|
||
HB_ELSEIF_PTR pElseIf = ( HB_ELSEIF_PTR ) hb_xgrab( sizeof( HB_ELSEIF ) ), pLast;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pElseIf->ulOffset = ulOffset;
|
||
pElseIf->pPrev = NULL;
|
||
pElseIf->pElseif = NULL;
|
||
|
||
if( pFirst )
|
||
{
|
||
pLast = ( HB_ELSEIF_PTR ) pFirst;
|
||
while( pLast->pElseif )
|
||
pLast = pLast->pElseif;
|
||
pLast->pElseif = pElseIf;
|
||
}
|
||
else
|
||
{
|
||
if( pFunc->elseif )
|
||
{
|
||
pElseIf->pPrev = pFunc->elseif;
|
||
}
|
||
pFirst = pElseIf;
|
||
pFunc->elseif = pElseIf;
|
||
}
|
||
return pFirst;
|
||
}
|
||
|
||
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pFixElseIfs )
|
||
{
|
||
HB_ELSEIF_PTR pFix = ( HB_ELSEIF_PTR ) pFixElseIfs;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
HB_COMP_PARAM->functions.pLast->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
|
||
void hb_compElseIfKill( PFUNCTION pFunc )
|
||
{
|
||
HB_ELSEIF_PTR pFix;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
while( pFunc->elseif )
|
||
{
|
||
pFix = pFunc->elseif;
|
||
pFunc->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR pVar, BOOL bPopInitValue )
|
||
{
|
||
HB_RTVAR_PTR pRTvar = ( HB_RTVAR_PTR ) hb_xgrab( sizeof( HB_RTVAR ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pRTvar->pVar = pVar;
|
||
pRTvar->bPopValue = bPopInitValue;
|
||
pRTvar->pNext = NULL;
|
||
pRTvar->pPrev = NULL;
|
||
|
||
if( pFunc->rtvars )
|
||
{
|
||
HB_RTVAR_PTR pLast = pFunc->rtvars;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pRTvar;
|
||
pRTvar->pPrev = pLast;
|
||
}
|
||
else
|
||
pFunc->rtvars = pRTvar;
|
||
}
|
||
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * szCreateFun )
|
||
{
|
||
USHORT usCount = 0;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_RTVAR_PTR pVar = pFunc->rtvars;
|
||
HB_RTVAR_PTR pDel;
|
||
|
||
/* generate the function call frame */
|
||
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
|
||
|
||
/* push variable names to create */
|
||
while( pVar->pNext )
|
||
{
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
pVar = pVar->pNext;
|
||
++usCount;
|
||
}
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
++usCount;
|
||
|
||
/* call function that will create either PUBLIC or PRIVATE variables */
|
||
if( usCount > 255 )
|
||
hb_compGenPCode3( HB_P_DO, HB_LOBYTE( usCount ), HB_HIBYTE( usCount ), HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_DOSHORT, ( BYTE ) usCount, HB_COMP_PARAM );
|
||
|
||
/* pop initial values */
|
||
while( pVar )
|
||
{
|
||
if( pVar->bPopValue )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( pVar->pVar, HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pDel = pVar;
|
||
pVar = pVar->pPrev;
|
||
hb_xfree( pDel );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
void hb_compRTVariableKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_RTVAR_PTR pVar;
|
||
|
||
while( pFunc->rtvars )
|
||
{
|
||
pVar = pFunc->rtvars;
|
||
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pFunc->rtvars = pVar->pPrev;
|
||
hb_xfree( pVar );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
USHORT uCount = ( USHORT ) hb_compExprListLen( pInitValue );
|
||
|
||
if( uCount == 1 && hb_compExprIsInteger( pInitValue->value.asList.pExprList ) &&
|
||
hb_compExprAsInteger( pInitValue->value.asList.pExprList ) == 0 )
|
||
{
|
||
hb_compGenPCode3( HB_P_ARRAYGEN, 0, 0, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
pInitValue = hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
}
|
||
return pInitValue;
|
||
}
|
||
|
||
static void hb_compVariableDim( char * szName, HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
HB_EXPR_PTR pVar = hb_compExprNewVar( szName, HB_COMP_PARAM );
|
||
HB_EXPR_PTR pAssign;
|
||
|
||
/* create a static variable */
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
/* create an array */
|
||
pInitValue = hb_compArrayDimPush( pInitValue, HB_COMP_PARAM );
|
||
/* now pop an array */
|
||
pVar = hb_compExprGenPop( pVar, HB_COMP_PARAM );
|
||
/* check if valid initializers were used but don't generate any code */
|
||
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
|
||
/* delete all used expressions */
|
||
HB_COMP_EXPR_DELETE( pAssign );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
else
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->iVarScope != VS_LOCAL ||
|
||
!( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar == NULL )
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->pEnum = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof(HB_ENUMERATOR) );
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
}
|
||
else
|
||
{
|
||
BOOL bWarn = TRUE;
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
/* Enumerator variable exists already - throw warning */
|
||
if( bWarn )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FORVAR_DUPL, szVarName, NULL );
|
||
bWarn = FALSE;
|
||
}
|
||
}
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
pLast->pNext = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof( HB_ENUMERATOR ) );
|
||
pEnumVar = pLast->pNext;
|
||
}
|
||
pEnumVar->szName = szVarName;
|
||
pEnumVar->bForEach = bForEach;
|
||
pEnumVar->pNext = NULL;
|
||
}
|
||
|
||
BOOL hb_compForEachVarError( HB_COMP_DECL, char *szVarName )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar )
|
||
{
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
if( pEnumVar->bForEach )
|
||
{
|
||
/* only if it is FOR EACH enumerator
|
||
* generate warning if it is FOR/NEXT loop
|
||
*/
|
||
return FALSE;
|
||
}
|
||
}
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
}
|
||
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_ENUM_INVALID, szVarName, NULL );
|
||
return TRUE;
|
||
}
|
||
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVar )
|
||
{
|
||
HB_ENUMERATOR_PTR * pEnumVar;
|
||
|
||
HB_SYMBOL_UNUSED( szVar );
|
||
|
||
pEnumVar = &HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( *pEnumVar )
|
||
{
|
||
while( ( *pEnumVar )->pNext )
|
||
pEnumVar = &( *pEnumVar )->pNext;
|
||
|
||
hb_xfree( *pEnumVar );
|
||
*pEnumVar = NULL;
|
||
}
|
||
}
|
||
|
||
static HB_CARGO2_FUNC( hb_compEnumEvalStart )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
|
||
if( szName )
|
||
hb_compForStart( HB_COMP_PARAM, szName, TRUE );
|
||
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) dummy, HB_COMP_PARAM ); /* expression */
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) cargo, HB_COMP_PARAM ); /* variable */
|
||
}
|
||
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend )
|
||
{
|
||
ULONG ulLen;
|
||
|
||
if( hb_compExprListLen(pVars) != hb_compExprListLen(pExprs) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_DIFF, NULL, NULL );
|
||
}
|
||
|
||
ulLen = hb_compExprListEval2( HB_COMP_PARAM, pVars, pExprs, hb_compEnumEvalStart );
|
||
|
||
if( ulLen > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_TOOMANY, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode3( HB_P_ENUMSTART, ( BYTE ) ( ulLen & 0xFF ), ( BYTE ) ( descend > 0 ? 1 : 0 ), HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend )
|
||
{
|
||
HB_SYMBOL_UNUSED( pExpr );
|
||
if( descend > 0 )
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMNEXT, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMPREV, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static HB_CARGO_FUNC( hb_compEnumEvalEnd )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
|
||
|
||
if( szName )
|
||
hb_compForEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
hb_compExprListEval( HB_COMP_PARAM, pExpr, hb_compEnumEvalEnd );
|
||
hb_compGenPCode1( HB_P_ENUMEND, HB_COMP_PARAM );
|
||
}
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL )
|
||
{
|
||
HB_SWITCHCMD_PTR pSwitch = (HB_SWITCHCMD_PTR) hb_xgrab( sizeof( HB_SWITCHCMD ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pSwitch->pCases = NULL;
|
||
pSwitch->pLast = NULL;
|
||
pSwitch->ulDefault = 0;
|
||
pSwitch->ulOffset = pFunc->lPCodePos;
|
||
pSwitch->iCount = 0;
|
||
pSwitch->pPrev = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch;
|
||
}
|
||
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pFunc->bFlags &= ~FUN_BREAK_CODE;
|
||
|
||
if( pExpr )
|
||
{
|
||
/* normal CASE */
|
||
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
|
||
pCase->ulOffset = pFunc->lPCodePos;
|
||
pCase->pNext = NULL;
|
||
pExpr = hb_compExprReduce( pExpr, HB_COMP_PARAM );
|
||
if( !(hb_compExprIsLong(pExpr) || hb_compExprIsString(pExpr)) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_NOT_LITERAL_CASE, NULL, NULL );
|
||
}
|
||
pCase->pExpr = pExpr;
|
||
|
||
if( pFunc->pSwitch->pLast )
|
||
{
|
||
pFunc->pSwitch->pLast->pNext = pCase;
|
||
pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->pCases = pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
pFunc->pSwitch->iCount++;
|
||
if( hb_compExprIsString( pExpr ) && hb_compExprAsStringLen(pExpr) > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_STR, NULL, NULL );
|
||
}
|
||
}
|
||
else
|
||
{
|
||
/* DEFAULT */
|
||
if( pFunc->pSwitch->ulDefault )
|
||
{
|
||
/* more than one default clause */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->ulDefault = pFunc->lPCodePos;
|
||
pFunc->pSwitch->iCount++;
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
static void hb_compSwitchEnd( HB_COMP_DECL )
|
||
{
|
||
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
|
||
BOOL fTextSubst = HB_COMP_PARAM->fTextSubst;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_SWITCHCASE_PTR pCase = pFunc->pSwitch->pCases;
|
||
HB_SWITCHCASE_PTR pTmp;
|
||
HB_SWITCHCMD_PTR pTmpSw;
|
||
ULONG ulExitPos;
|
||
|
||
/* skip switch pcode if there was no EXIT in the last CASE
|
||
* or in the DEFAULT case
|
||
*/
|
||
ulExitPos = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( pFunc->pSwitch->ulOffset + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_SWITCH, HB_LOBYTE( pFunc->pSwitch->iCount ), HB_HIBYTE( pFunc->pSwitch->iCount ), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->fLongOptimize = FALSE;
|
||
HB_COMP_PARAM->fTextSubst = FALSE;
|
||
while( pCase )
|
||
{
|
||
if( pCase->pExpr )
|
||
{
|
||
if( hb_compExprIsLong( pCase->pExpr ) || hb_compExprIsString( pCase->pExpr ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pCase->pExpr, HB_COMP_PARAM ) );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ), pCase->ulOffset, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
}
|
||
}
|
||
pCase = pCase->pNext;
|
||
}
|
||
|
||
if( pFunc->pSwitch->ulDefault )
|
||
{
|
||
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pFunc->pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
|
||
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
|
||
HB_COMP_PARAM->fTextSubst = fTextSubst;
|
||
|
||
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
|
||
|
||
pCase = pFunc->pSwitch->pCases;
|
||
while( pCase )
|
||
{
|
||
pTmp = pCase->pNext;
|
||
hb_xfree( (void *)pCase );
|
||
pCase = pTmp;
|
||
}
|
||
pTmpSw = pFunc->pSwitch;
|
||
pFunc->pSwitch = pFunc->pSwitch->pPrev;
|
||
hb_xfree( pTmpSw );
|
||
}
|
||
|
||
/* Release all switch statements
|
||
*/
|
||
void hb_compSwitchKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
HB_SWITCHCMD_PTR pSwitch;
|
||
|
||
while( pFunc->pSwitch )
|
||
{
|
||
while( pFunc->pSwitch->pCases )
|
||
{
|
||
pCase = pFunc->pSwitch->pCases;
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
pFunc->pSwitch->pCases = pCase->pNext;
|
||
hb_xfree( (void *) pCase );
|
||
}
|
||
pSwitch = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch->pPrev;
|
||
hb_xfree( (void *) pSwitch );
|
||
}
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
if( pExpr->ExprType == HB_ET_FUNCALL )
|
||
{
|
||
if( hb_compExprParamListLen( pExpr->value.asFunCall.pParms ) == 0 )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
if( pExpr->value.asFunCall.pFunName->ExprType == HB_ET_MACRO )
|
||
{
|
||
pExpr = pExpr->value.asFunCall.pFunName;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
else
|
||
{
|
||
pExpr = hb_compExprNewFunRef( hb_compExprAsSymbol( pExpr ), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( pDelExpr );
|
||
}
|
||
return pExpr;
|
||
}
|
||
else
|
||
{
|
||
const char * szDesc;
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
}
|
||
#if 0
|
||
else if( !( HB_COMP_PARAM->iPassByRef & ( HB_PASSBYREF_FUNCALL | HB_PASSBYREF_ARRAY ) ) )
|
||
{
|
||
const char * szDesc;
|
||
if( pExpr->ExprType == HB_ET_REFERENCE )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
pExpr = pExpr->value.asReference;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
#endif
|
||
return pExpr;
|
||
}
|
||
|
||
/* ************************************************************************* */
|
||
|
||
BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
BOOL fUnclosed = TRUE;
|
||
|
||
if( pFunc->wIfCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
|
||
pFunc->wIfCounter = 0;
|
||
}
|
||
else if( pFunc->wForCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
|
||
pFunc->wForCounter = 0;
|
||
}
|
||
else if( pFunc->wWhileCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
|
||
pFunc->wWhileCounter = 0;
|
||
}
|
||
else if( pFunc->wCaseCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
|
||
pFunc->wCaseCounter = 0;
|
||
}
|
||
else if( pFunc->wSwitchCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
|
||
pFunc->wSwitchCounter = 0;
|
||
}
|
||
else if( pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
|
||
pFunc->wWithObjectCnt = 0;
|
||
}
|
||
else if( pFunc->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
|
||
pFunc->wSeqCounter = 0;
|
||
}
|
||
else if( pFunc->bFlags & FUN_EXTBLOCK )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL );
|
||
pFunc->bFlags &= ~FUN_EXTBLOCK;
|
||
}
|
||
else
|
||
fUnclosed = FALSE;
|
||
|
||
return fUnclosed;
|
||
}
|
||
|
||
void yyerror( HB_COMP_DECL, char * s )
|
||
{
|
||
if( !HB_COMP_PARAM->pLex->lasttok || HB_COMP_PARAM->pLex->lasttok[ 0 ] == '\n' )
|
||
{
|
||
if( HB_COMP_PARAM->iErrorCount == 0 || !hb_pp_eof( HB_COMP_PARAM->pLex->pPP ) )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INCOMPLETE_STMT, NULL, NULL );
|
||
}
|
||
else
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok );
|
||
}
|
||
|