* harbour/include/hbcomp.h
* harbour/include/hbcompdf.h
* harbour/include/hbexpra.c
* harbour/include/hbexprb.c
* harbour/include/hbexprop.h
* harbour/source/common/expropt1.c
* harbour/source/compiler/genc.c
* harbour/source/compiler/harbour.y
* harbour/source/compiler/hbmain.c
* harbour/source/compiler/hbopt.c
! reverted fix for unnecessary -W2 warning:
Function '...' does not end with RETURN statement
in code like:
func f(v)
if v
return "TRUE"
else
return "FALSE"
endif
Sorry but I had to make it because this fix was wrong and causes
that code like:
func f(v)
if v
? v
else
return "FALSE"
endif
was compiled without any warnings but wrong PCODE was generated.
In some spare time I'll try to implement valid RETURN detection,
now simply add RETURN NIL at the end of such functions - it will
be removed by dead code eliminator.
! fixed memory leak when more then one .prg file was given as compiler
parameter
+ cleaned some code for future modifications
* harbour/source/macro/macro.y
+ added small hack for two BCC/OW warnings
* harbour/source/compiler/harbour.yyc
* harbour/source/compiler/harbour.yyh
* harbour/source/macro/macro.yyc
* harbour/source/macro/macro.yyh
* regenerated with modified Bison version which should give code
without BCC warnings - I cannot promise I'll keep it in the
future but I will try.
* harbour/source/rdd/dbcmd.c
! use default RDD instead of current one in COPY TO and APPEND FROM
* harbour/source/vm/classes.c
* added support for (@func()):eval(...)
7858 lines
336 KiB
Plaintext
7858 lines
336 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,
|
||
DO = 322,
|
||
WITH = 323,
|
||
SELF = 324,
|
||
LINE = 325,
|
||
MACROVAR = 326,
|
||
MACROTEXT = 327,
|
||
AS_ARRAY = 328,
|
||
AS_BLOCK = 329,
|
||
AS_CHARACTER = 330,
|
||
AS_CLASS = 331,
|
||
AS_DATE = 332,
|
||
AS_LOGICAL = 333,
|
||
AS_NUMERIC = 334,
|
||
AS_OBJECT = 335,
|
||
AS_VARIANT = 336,
|
||
DECLARE = 337,
|
||
OPTIONAL = 338,
|
||
DECLARE_CLASS = 339,
|
||
DECLARE_MEMBER = 340,
|
||
AS_ARRAY_ARRAY = 341,
|
||
AS_BLOCK_ARRAY = 342,
|
||
AS_CHARACTER_ARRAY = 343,
|
||
AS_CLASS_ARRAY = 344,
|
||
AS_DATE_ARRAY = 345,
|
||
AS_LOGICAL_ARRAY = 346,
|
||
AS_NUMERIC_ARRAY = 347,
|
||
AS_OBJECT_ARRAY = 348,
|
||
PROCREQ = 349,
|
||
CBSTART = 350,
|
||
DOIDENT = 351,
|
||
FOREACH = 352,
|
||
DESCEND = 353,
|
||
DOSWITCH = 354,
|
||
WITHOBJECT = 355,
|
||
NUM_DATE = 356,
|
||
EPSILON = 357,
|
||
HASHOP = 358,
|
||
POST = 359,
|
||
UNARY = 360,
|
||
PRE = 361
|
||
};
|
||
#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 DO 322
|
||
#define WITH 323
|
||
#define SELF 324
|
||
#define LINE 325
|
||
#define MACROVAR 326
|
||
#define MACROTEXT 327
|
||
#define AS_ARRAY 328
|
||
#define AS_BLOCK 329
|
||
#define AS_CHARACTER 330
|
||
#define AS_CLASS 331
|
||
#define AS_DATE 332
|
||
#define AS_LOGICAL 333
|
||
#define AS_NUMERIC 334
|
||
#define AS_OBJECT 335
|
||
#define AS_VARIANT 336
|
||
#define DECLARE 337
|
||
#define OPTIONAL 338
|
||
#define DECLARE_CLASS 339
|
||
#define DECLARE_MEMBER 340
|
||
#define AS_ARRAY_ARRAY 341
|
||
#define AS_BLOCK_ARRAY 342
|
||
#define AS_CHARACTER_ARRAY 343
|
||
#define AS_CLASS_ARRAY 344
|
||
#define AS_DATE_ARRAY 345
|
||
#define AS_LOGICAL_ARRAY 346
|
||
#define AS_NUMERIC_ARRAY 347
|
||
#define AS_OBJECT_ARRAY 348
|
||
#define PROCREQ 349
|
||
#define CBSTART 350
|
||
#define DOIDENT 351
|
||
#define FOREACH 352
|
||
#define DESCEND 353
|
||
#define DOSWITCH 354
|
||
#define WITHOBJECT 355
|
||
#define NUM_DATE 356
|
||
#define EPSILON 357
|
||
#define HASHOP 358
|
||
#define POST 359
|
||
#define UNARY 360
|
||
#define PRE 361
|
||
|
||
|
||
|
||
|
||
/* 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
|
||
|
||
static void hb_compLoopStart( HB_COMP_DECL );
|
||
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 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 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 HARBOUR_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 105 "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 457 "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 147 "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 477 "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 286
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 8295
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 129
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 239
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 619
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 989
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 361
|
||
|
||
#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,
|
||
118, 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, 108, 113, 116, 2,
|
||
121, 122, 111, 109, 120, 110, 2, 112, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 125, 119,
|
||
106, 105, 107, 2, 117, 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, 127, 2, 126, 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, 123, 128, 124, 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,
|
||
114, 115
|
||
};
|
||
|
||
#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, 105, 107, 109,
|
||
111, 113, 115, 118, 120, 122, 124, 126, 128, 130,
|
||
132, 134, 136, 138, 141, 144, 149, 152, 155, 158,
|
||
161, 164, 167, 170, 173, 176, 179, 182, 185, 188,
|
||
191, 194, 195, 200, 203, 206, 209, 210, 215, 216,
|
||
217, 223, 224, 225, 231, 233, 235, 237, 241, 245,
|
||
246, 251, 256, 258, 262, 263, 266, 268, 270, 272,
|
||
274, 276, 278, 283, 291, 296, 304, 305, 307, 309,
|
||
311, 313, 316, 317, 319, 321, 325, 327, 331, 333,
|
||
335, 337, 339, 341, 343, 345, 347, 349, 351, 353,
|
||
355, 357, 359, 361, 363, 365, 367, 369, 371, 373,
|
||
376, 379, 381, 384, 386, 389, 392, 394, 396, 399,
|
||
401, 404, 408, 411, 414, 417, 421, 425, 428, 432,
|
||
438, 440, 443, 445, 447, 450, 453, 456, 459, 463,
|
||
466, 469, 472, 475, 478, 481, 484, 487, 490, 493,
|
||
496, 499, 502, 505, 507, 509, 511, 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, 647, 653, 655, 656, 662, 663, 669, 672,
|
||
675, 677, 681, 683, 685, 688, 691, 694, 697, 700,
|
||
702, 704, 708, 712, 715, 717, 719, 721, 726, 729,
|
||
730, 736, 739, 741, 743, 745, 747, 749, 751, 753,
|
||
754, 758, 760, 762, 764, 766, 768, 770, 772, 774,
|
||
776, 777, 781, 783, 785, 786, 790, 792, 793, 797,
|
||
799, 801, 803, 805, 807, 809, 811, 813, 815, 817,
|
||
819, 820, 824, 825, 829, 831, 833, 835, 836, 838,
|
||
840, 842, 844, 846, 848, 850, 852, 854, 856, 858,
|
||
860, 862, 864, 866, 868, 870, 872, 874, 876, 878,
|
||
880, 882, 884, 886, 888, 890, 892, 894, 896, 898,
|
||
901, 904, 907, 910, 913, 916, 920, 924, 928, 932,
|
||
936, 940, 944, 948, 952, 956, 960, 964, 968, 972,
|
||
976, 980, 984, 988, 992, 996, 1000, 1004, 1008, 1012,
|
||
1016, 1020, 1024, 1028, 1030, 1032, 1034, 1036, 1038, 1040,
|
||
1044, 1048, 1052, 1056, 1060, 1064, 1068, 1072, 1076, 1080,
|
||
1084, 1088, 1092, 1096, 1100, 1104, 1108, 1111, 1114, 1118,
|
||
1123, 1125, 1129, 1130, 1137, 1139, 1143, 1144, 1146, 1148,
|
||
1152, 1155, 1160, 1162, 1166, 1170, 1173, 1182, 1185, 1186,
|
||
1191, 1192, 1197, 1198, 1203, 1205, 1209, 1211, 1215, 1217,
|
||
1220, 1225, 1228, 1232, 1233, 1237, 1238, 1239, 1246, 1249,
|
||
1253, 1256, 1259, 1263, 1268, 1269, 1274, 1277, 1282, 1286,
|
||
1287, 1292, 1295, 1300, 1301, 1310, 1311, 1317, 1321, 1325,
|
||
1326, 1334, 1336, 1340, 1342, 1345, 1347, 1350, 1351, 1358,
|
||
1359, 1363, 1364, 1366, 1368, 1372, 1374, 1378, 1380, 1383,
|
||
1387, 1393, 1398, 1404, 1412, 1416, 1421, 1428, 1434, 1441,
|
||
1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1469,
|
||
1473, 1477, 1482, 1483, 1484, 1491, 1492, 1497, 1498, 1499,
|
||
1506, 1507, 1508, 1516, 1518, 1520, 1524, 1528, 1531, 1536,
|
||
1538, 1540, 1541, 1545, 1547, 1550, 1551, 1552, 1559, 1560,
|
||
1561, 1569, 1570, 1571, 1577, 1578, 1584, 1585, 1586, 1594,
|
||
1596, 1598, 1600, 1601, 1602, 1603, 1616, 1618, 1620, 1621,
|
||
1624, 1627, 1631, 1634, 1638, 1640, 1642, 1644, 1648, 1651,
|
||
1653, 1655, 1659, 1660, 1661, 1662, 1673, 1674, 1676, 1677,
|
||
1682, 1685, 1687, 1688, 1693, 1695, 1698, 1699, 1705, 1706,
|
||
1713, 1715, 1718, 1719, 1720, 1726, 1727, 1728, 1729, 1730,
|
||
1741, 1742, 1746, 1748, 1749, 1753, 1757, 1759, 1762, 1764,
|
||
1766, 1767, 1772, 1773, 1777, 1778, 1781, 1783, 1786, 1788,
|
||
1791, 1795, 1797, 1799, 1801, 1803, 1805, 1806, 1813, 1815
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yytype_int16 yyrhs[] =
|
||
{
|
||
130, 0, -1, 131, -1, -1, 367, -1, 273, -1,
|
||
133, -1, 144, -1, 132, -1, 1, 367, -1, 131,
|
||
367, -1, 131, 273, -1, 131, 133, -1, 131, 144,
|
||
-1, 131, 132, -1, 131, 1, 367, -1, 70, 10,
|
||
19, 367, -1, 70, 10, 19, 117, 19, 367, -1,
|
||
-1, 138, 3, 162, 134, 367, -1, -1, 138, 4,
|
||
162, 135, 367, -1, -1, 138, 3, 162, 136, 121,
|
||
139, 122, 367, -1, -1, 138, 4, 162, 137, 121,
|
||
139, 122, 367, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, -1, 102, -1, 143, -1, 143, 120, 102, -1,
|
||
-1, 141, -1, 79, -1, 75, -1, 77, -1, 78,
|
||
-1, 74, -1, 80, -1, 76, 162, -1, 81, -1,
|
||
142, -1, 73, -1, 92, -1, 88, -1, 90, -1,
|
||
91, -1, 86, -1, 87, -1, 93, -1, 89, 162,
|
||
-1, 162, 140, -1, 143, 120, 162, 140, -1, 288,
|
||
153, -1, 252, 153, -1, 197, 153, -1, 192, 153,
|
||
-1, 210, 153, -1, 184, 153, -1, 186, 153, -1,
|
||
250, 153, -1, 227, 153, -1, 226, 153, -1, 237,
|
||
153, -1, 230, 153, -1, 229, 153, -1, 359, 153,
|
||
-1, 63, 153, -1, -1, 63, 145, 218, 367, -1,
|
||
26, 153, -1, 44, 153, -1, 6, 153, -1, -1,
|
||
6, 146, 218, 367, -1, -1, -1, 30, 147, 259,
|
||
148, 367, -1, -1, -1, 61, 149, 259, 150, 367,
|
||
-1, 254, -1, 267, -1, 270, -1, 23, 160, 367,
|
||
-1, 24, 161, 367, -1, -1, 22, 162, 151, 367,
|
||
-1, 94, 152, 122, 367, -1, 19, -1, 19, 109,
|
||
19, -1, -1, 154, 367, -1, 367, -1, 144, -1,
|
||
273, -1, 132, -1, 156, -1, 1, -1, 157, 3,
|
||
162, 367, -1, 157, 3, 162, 121, 139, 122, 367,
|
||
-1, 157, 4, 162, 367, -1, 157, 4, 162, 121,
|
||
139, 122, 367, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, 155, -1, 158, 155, -1, -1, 158, -1, 162,
|
||
-1, 160, 120, 162, -1, 162, -1, 161, 120, 162,
|
||
-1, 5, -1, 48, -1, 47, -1, 44, -1, 26,
|
||
-1, 52, -1, 83, -1, 23, -1, 24, -1, 22,
|
||
-1, 11, -1, 42, -1, 12, -1, 61, -1, 30,
|
||
-1, 53, -1, 94, -1, 98, -1, 8, -1, 10,
|
||
-1, 101, -1, 10, 36, -1, 8, 36, -1, 7,
|
||
-1, 166, 36, -1, 19, -1, 168, 36, -1, 244,
|
||
36, -1, 20, -1, 21, -1, 171, 36, -1, 69,
|
||
-1, 173, 36, -1, 123, 243, 124, -1, 175, 36,
|
||
-1, 175, 241, -1, 177, 36, -1, 123, 103, 124,
|
||
-1, 123, 181, 124, -1, 179, 36, -1, 218, 103,
|
||
222, -1, 181, 120, 218, 103, 222, -1, 162, -1,
|
||
162, 36, -1, 71, -1, 72, -1, 184, 36, -1,
|
||
116, 250, -1, 186, 36, -1, 51, 36, -1, 51,
|
||
36, 188, -1, 188, 183, -1, 188, 165, -1, 188,
|
||
251, -1, 188, 185, -1, 188, 187, -1, 188, 167,
|
||
-1, 188, 169, -1, 188, 172, -1, 188, 170, -1,
|
||
188, 174, -1, 188, 176, -1, 188, 178, -1, 188,
|
||
180, -1, 188, 253, -1, 162, -1, 184, -1, 186,
|
||
-1, 165, 190, -1, 185, 190, -1, 187, 190, -1,
|
||
251, 190, -1, 167, 190, -1, 169, 190, -1, 172,
|
||
190, -1, 170, 190, -1, 180, 190, -1, 174, 190,
|
||
-1, 176, 190, -1, 178, 190, -1, 194, 190, -1,
|
||
253, 190, -1, 201, 190, -1, 209, 190, -1, 212,
|
||
190, -1, 183, 190, -1, 188, 190, -1, 189, 190,
|
||
-1, 165, 250, -1, 183, 250, -1, 185, 250, -1,
|
||
187, 250, -1, 251, 250, -1, 188, 250, -1, 163,
|
||
241, -1, 166, 241, -1, 164, 241, -1, 168, 241,
|
||
-1, 244, 241, -1, 171, 241, -1, 179, 241, -1,
|
||
173, 241, -1, 182, 241, -1, 191, 241, -1, 192,
|
||
241, -1, 184, 241, -1, 186, 241, -1, 206, 241,
|
||
-1, 210, 241, -1, 197, 241, -1, 252, 241, -1,
|
||
250, 241, -1, 193, 36, -1, -1, 162, 121, 196,
|
||
202, 122, -1, 195, -1, -1, 184, 121, 198, 202,
|
||
122, -1, -1, 186, 121, 199, 202, 122, -1, 117,
|
||
195, -1, 197, 36, -1, 205, -1, 202, 120, 205,
|
||
-1, 222, -1, 204, -1, 117, 162, -1, 117, 184,
|
||
-1, 117, 191, -1, 117, 206, -1, 117, 193, -1,
|
||
102, -1, 203, -1, 224, 125, 207, -1, 208, 125,
|
||
207, -1, 125, 207, -1, 162, -1, 184, -1, 186,
|
||
-1, 121, 117, 162, 122, -1, 206, 36, -1, -1,
|
||
206, 121, 211, 202, 122, -1, 210, 36, -1, 163,
|
||
-1, 166, -1, 164, -1, 168, -1, 244, -1, 171,
|
||
-1, 173, -1, -1, 173, 214, 141, -1, 175, -1,
|
||
177, -1, 179, -1, 191, -1, 192, -1, 184, -1,
|
||
186, -1, 193, -1, 197, -1, -1, 197, 215, 141,
|
||
-1, 252, -1, 206, -1, -1, 206, 216, 141, -1,
|
||
210, -1, -1, 210, 217, 141, -1, 229, -1, 237,
|
||
-1, 226, -1, 227, -1, 228, -1, 238, -1, 239,
|
||
-1, 240, -1, 213, -1, 182, -1, 250, -1, -1,
|
||
182, 219, 141, -1, -1, 250, 220, 141, -1, 200,
|
||
-1, 102, -1, 218, -1, -1, 218, -1, 162, -1,
|
||
191, -1, 184, -1, 186, -1, 206, -1, 193, -1,
|
||
250, -1, 163, -1, 166, -1, 164, -1, 168, -1,
|
||
244, -1, 171, -1, 173, -1, 175, -1, 177, -1,
|
||
179, -1, 191, -1, 192, -1, 184, -1, 186, -1,
|
||
182, -1, 193, -1, 250, -1, 197, -1, 252, -1,
|
||
206, -1, 210, -1, 34, -1, 35, -1, 224, 225,
|
||
-1, 34, 218, -1, 35, 218, -1, 29, 218, -1,
|
||
110, 218, -1, 109, 218, -1, 163, 9, 218, -1,
|
||
166, 9, 218, -1, 164, 9, 218, -1, 168, 9,
|
||
218, -1, 244, 9, 218, -1, 171, 9, 218, -1,
|
||
173, 9, 218, -1, 175, 9, 218, -1, 177, 9,
|
||
218, -1, 179, 9, 218, -1, 191, 9, 218, -1,
|
||
192, 9, 218, -1, 184, 9, 218, -1, 186, 9,
|
||
218, -1, 182, 9, 218, -1, 193, 9, 218, -1,
|
||
250, 9, 218, -1, 252, 9, 218, -1, 197, 9,
|
||
218, -1, 206, 9, 218, -1, 210, 9, 218, -1,
|
||
224, 105, 218, -1, 224, 54, 218, -1, 224, 55,
|
||
218, -1, 224, 56, 218, -1, 224, 57, 218, -1,
|
||
224, 60, 218, -1, 224, 59, 218, -1, 231, -1,
|
||
232, -1, 233, -1, 234, -1, 235, -1, 236, -1,
|
||
218, 109, 218, -1, 218, 110, 218, -1, 218, 111,
|
||
218, -1, 218, 112, 218, -1, 218, 113, 218, -1,
|
||
218, 58, 218, -1, 218, 27, 218, -1, 218, 28,
|
||
218, -1, 218, 31, 218, -1, 218, 106, 218, -1,
|
||
218, 107, 218, -1, 218, 49, 218, -1, 218, 50,
|
||
218, -1, 218, 32, 218, -1, 218, 33, 218, -1,
|
||
218, 108, 218, -1, 218, 105, 218, -1, 242, 126,
|
||
-1, 127, 221, -1, 242, 120, 221, -1, 242, 126,
|
||
127, 221, -1, 205, -1, 243, 120, 205, -1, -1,
|
||
95, 245, 247, 128, 246, 124, -1, 218, -1, 246,
|
||
120, 218, -1, -1, 102, -1, 248, -1, 248, 120,
|
||
102, -1, 162, 140, -1, 248, 120, 162, 140, -1,
|
||
218, -1, 249, 120, 218, -1, 121, 249, 122, -1,
|
||
250, 36, -1, 13, 121, 218, 120, 203, 120, 203,
|
||
122, -1, 252, 36, -1, -1, 11, 255, 258, 367,
|
||
-1, -1, 12, 256, 258, 367, -1, -1, 53, 257,
|
||
272, 367, -1, 261, -1, 258, 120, 261, -1, 260,
|
||
-1, 259, 120, 260, -1, 261, -1, 184, 140, -1,
|
||
184, 140, 9, 218, -1, 184, 265, -1, 184, 265,
|
||
142, -1, -1, 162, 140, 262, -1, -1, -1, 162,
|
||
140, 263, 9, 264, 218, -1, 162, 265, -1, 162,
|
||
265, 142, -1, 266, 126, -1, 127, 218, -1, 266,
|
||
120, 218, -1, 266, 126, 127, 218, -1, -1, 51,
|
||
268, 269, 367, -1, 162, 140, -1, 269, 120, 162,
|
||
140, -1, 269, 52, 162, -1, -1, 42, 271, 272,
|
||
367, -1, 162, 140, -1, 272, 120, 162, 140, -1,
|
||
-1, 82, 162, 121, 274, 283, 122, 140, 367, -1,
|
||
-1, 82, 162, 275, 278, 367, -1, 84, 162, 367,
|
||
-1, 85, 279, 367, -1, -1, 85, 123, 140, 276,
|
||
277, 124, 367, -1, 281, -1, 277, 120, 281, -1,
|
||
279, -1, 278, 279, -1, 281, -1, 278, 281, -1,
|
||
-1, 162, 121, 280, 283, 122, 140, -1, -1, 162,
|
||
282, 140, -1, -1, 286, -1, 287, -1, 286, 120,
|
||
287, -1, 285, -1, 284, 120, 285, -1, 222, -1,
|
||
162, 140, -1, 117, 162, 140, -1, 117, 162, 121,
|
||
284, 122, -1, 286, 120, 162, 140, -1, 286, 120,
|
||
117, 162, 140, -1, 286, 120, 117, 162, 121, 284,
|
||
122, -1, 83, 162, 140, -1, 83, 117, 162, 140,
|
||
-1, 83, 117, 162, 121, 284, 122, -1, 287, 120,
|
||
83, 162, 140, -1, 287, 120, 83, 117, 162, 140,
|
||
-1, 287, 120, 83, 117, 162, 121, 284, 122, -1,
|
||
289, -1, 301, -1, 315, -1, 320, -1, 348, -1,
|
||
331, -1, 336, -1, 365, -1, 290, 300, -1, 290,
|
||
293, 300, -1, 290, 295, 300, -1, 290, 295, 293,
|
||
300, -1, -1, -1, 14, 218, 291, 367, 292, 159,
|
||
-1, -1, 15, 367, 294, 159, -1, -1, -1, 16,
|
||
296, 218, 367, 297, 159, -1, -1, -1, 295, 16,
|
||
298, 218, 367, 299, 159, -1, 18, -1, 17, -1,
|
||
305, 306, 302, -1, 305, 311, 302, -1, 305, 302,
|
||
-1, 305, 306, 311, 302, -1, 40, -1, 17, -1,
|
||
-1, 37, 304, 367, -1, 303, -1, 303, 158, -1,
|
||
-1, -1, 38, 307, 218, 367, 308, 159, -1, -1,
|
||
-1, 306, 38, 309, 218, 367, 310, 159, -1, -1,
|
||
-1, 39, 312, 367, 313, 159, -1, -1, 311, 39,
|
||
314, 367, 159, -1, -1, -1, 318, 218, 367, 316,
|
||
159, 317, 319, -1, 43, -1, 17, -1, 41, -1,
|
||
-1, -1, -1, 45, 223, 324, 218, 321, 47, 218,
|
||
325, 322, 367, 323, 326, -1, 105, -1, 9, -1,
|
||
-1, 48, 218, -1, 159, 46, -1, 159, 46, 162,
|
||
-1, 159, 17, -1, 159, 17, 162, -1, 162, -1,
|
||
191, -1, 327, -1, 328, 120, 327, -1, 117, 162,
|
||
-1, 218, -1, 329, -1, 330, 120, 329, -1, -1,
|
||
-1, -1, 97, 328, 52, 330, 332, 335, 333, 367,
|
||
334, 326, -1, -1, 98, -1, -1, 341, 337, 342,
|
||
338, -1, 341, 338, -1, 17, -1, -1, 99, 340,
|
||
218, 367, -1, 339, -1, 339, 158, -1, -1, 38,
|
||
218, 343, 367, 159, -1, -1, 342, 38, 218, 344,
|
||
367, 159, -1, 345, -1, 342, 345, -1, -1, -1,
|
||
39, 346, 367, 347, 159, -1, -1, -1, -1, -1,
|
||
62, 349, 367, 159, 350, 355, 351, 353, 352, 17,
|
||
-1, -1, 354, 367, 159, -1, 66, -1, -1, 356,
|
||
367, 159, -1, 357, 367, 159, -1, 64, -1, 65,
|
||
162, -1, 184, -1, 186, -1, -1, 67, 358, 360,
|
||
362, -1, -1, 96, 361, 362, -1, -1, 68, 363,
|
||
-1, 120, -1, 120, 364, -1, 364, -1, 363, 120,
|
||
-1, 363, 120, 364, -1, 162, -1, 204, -1, 200,
|
||
-1, 213, -1, 250, -1, -1, 100, 218, 367, 366,
|
||
159, 17, -1, 118, -1, 119, -1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const yytype_uint16 yyrline[] =
|
||
{
|
||
0, 265, 265, 266, 269, 270, 271, 272, 273, 274,
|
||
275, 276, 277, 278, 279, 280, 283, 288, 296, 296,
|
||
297, 297, 298, 298, 299, 299, 302, 303, 304, 305,
|
||
308, 309, 310, 311, 314, 315, 318, 319, 320, 321,
|
||
322, 323, 324, 325, 326, 329, 330, 331, 332, 333,
|
||
334, 335, 336, 337, 340, 341, 349, 350, 351, 352,
|
||
353, 354, 360, 366, 367, 368, 369, 370, 371, 372,
|
||
373, 375, 375, 381, 382, 383, 395, 395, 414, 416,
|
||
414, 420, 422, 420, 426, 427, 428, 429, 430, 431,
|
||
431, 445, 448, 456, 469, 469, 472, 473, 474, 475,
|
||
476, 477, 489, 490, 491, 492, 495, 496, 497, 498,
|
||
501, 502, 505, 506, 509, 510, 513, 514, 517, 518,
|
||
519, 520, 521, 522, 523, 524, 525, 526, 527, 528,
|
||
529, 530, 531, 532, 533, 534, 539, 540, 543, 551,
|
||
552, 557, 560, 565, 571, 576, 581, 582, 585, 590,
|
||
593, 604, 607, 612, 615, 618, 619, 622, 625, 626,
|
||
631, 634, 639, 640, 643, 648, 651, 658, 659, 664,
|
||
665, 666, 667, 668, 669, 670, 671, 672, 673, 674,
|
||
675, 676, 677, 680, 681, 682, 685, 686, 687, 688,
|
||
689, 690, 691, 692, 693, 694, 695, 696, 697, 698,
|
||
699, 700, 701, 702, 703, 704, 713, 714, 715, 716,
|
||
717, 718, 723, 724, 725, 726, 727, 728, 729, 730,
|
||
731, 732, 733, 734, 735, 736, 737, 738, 739, 740,
|
||
743, 746, 746, 749, 750, 750, 751, 751, 755, 758,
|
||
761, 762, 765, 766, 769, 770, 771, 772, 773, 776,
|
||
777, 782, 783, 784, 790, 791, 792, 795, 798, 803,
|
||
803, 806, 815, 816, 817, 818, 819, 820, 821, 822,
|
||
822, 823, 824, 825, 826, 827, 828, 829, 830, 831,
|
||
832, 832, 833, 834, 835, 835, 836, 837, 837, 838,
|
||
839, 840, 841, 842, 843, 844, 845, 848, 849, 850,
|
||
851, 851, 852, 852, 853, 856, 857, 860, 861, 864,
|
||
865, 866, 867, 868, 869, 870, 877, 878, 879, 880,
|
||
881, 882, 883, 884, 885, 886, 887, 888, 889, 890,
|
||
891, 892, 893, 894, 895, 896, 897, 903, 904, 907,
|
||
910, 911, 914, 915, 916, 919, 920, 921, 922, 923,
|
||
924, 925, 926, 927, 928, 929, 930, 931, 932, 933,
|
||
934, 935, 936, 937, 938, 939, 942, 945, 948, 951,
|
||
954, 957, 960, 963, 964, 965, 966, 967, 968, 971,
|
||
972, 973, 974, 975, 976, 979, 980, 983, 984, 985,
|
||
986, 987, 988, 989, 990, 991, 994, 1000, 1001, 1002,
|
||
1005, 1006, 1009, 1009, 1015, 1016, 1021, 1022, 1023, 1024,
|
||
1027, 1028, 1031, 1032, 1034, 1037, 1046, 1050, 1053, 1053,
|
||
1055, 1055, 1057, 1057, 1067, 1068, 1071, 1072, 1080, 1081,
|
||
1083, 1087, 1094, 1103, 1103, 1117, 1120, 1117, 1145, 1146,
|
||
1152, 1155, 1156, 1157, 1161, 1161, 1164, 1165, 1166, 1169,
|
||
1169, 1172, 1173, 1176, 1176, 1199, 1199, 1200, 1201, 1202,
|
||
1202, 1205, 1206, 1209, 1210, 1211, 1212, 1215, 1215, 1237,
|
||
1237, 1293, 1294, 1295, 1296, 1299, 1300, 1303, 1306, 1307,
|
||
1308, 1309, 1310, 1311, 1314, 1315, 1316, 1317, 1318, 1319,
|
||
1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1332, 1333,
|
||
1334, 1335, 1339, 1341, 1338, 1346, 1346, 1350, 1352, 1350,
|
||
1360, 1362, 1360, 1371, 1374, 1379, 1383, 1387, 1390, 1396,
|
||
1401, 1408, 1408, 1411, 1412, 1420, 1421, 1420, 1432, 1433,
|
||
1432, 1445, 1445, 1445, 1447, 1447, 1452, 1457, 1451, 1471,
|
||
1474, 1475, 1479, 1491, 1496, 1478, 1536, 1537, 1540, 1541,
|
||
1544, 1547, 1550, 1553, 1558, 1559, 1562, 1563, 1566, 1567,
|
||
1570, 1571, 1576, 1582, 1591, 1575, 1611, 1612, 1616, 1615,
|
||
1628, 1635, 1643, 1642, 1652, 1653, 1661, 1661, 1664, 1664,
|
||
1667, 1669, 1672, 1672, 1672, 1677, 1684, 1692, 1702, 1676,
|
||
1726, 1727, 1730, 1738, 1739, 1740, 1743, 1754, 1772, 1773,
|
||
1777, 1776, 1784, 1783, 1794, 1795, 1798, 1799, 1800, 1801,
|
||
1802, 1805, 1806, 1807, 1808, 1809, 1813, 1812, 1835, 1836
|
||
};
|
||
#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", "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", "WITHOBJECT", "NUM_DATE", "EPSILON", "HASHOP", "POST", "'='",
|
||
"'<'", "'>'", "'$'", "'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE",
|
||
"'&'", "'@'", "'\\n'", "';'", "','", "'('", "')'", "'{'", "'}'", "':'",
|
||
"']'", "'['", "'|'", "$accept", "Main", "Source", "Line", "Function",
|
||
"@1", "@2", "@3", "@4", "FunScope", "Params", "AsType", "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", "CodeBlock", "@23", "BlockExpList", "BlockVars",
|
||
"BlockVarList", "ExpList", "PareExpList", "PareExpListAlias", "IfInline",
|
||
"IfInlineAlias", "VarDefs", "@24", "@25", "@26", "VarList", "ExtVarList",
|
||
"ExtVarDef", "VarDef", "@27", "@28", "@29", "DimList", "DimIndex",
|
||
"FieldsDef", "@30", "FieldList", "MemvarDef", "@31", "MemvarList",
|
||
"Declaration", "@32", "@33", "@34", "DecDataList", "ClassInfo",
|
||
"DecMethod", "@35", "DecData", "@36", "DecList", "DummyArgList",
|
||
"DummyArgument", "FormalList", "OptList", "ExecFlow", "IfEndif",
|
||
"IfBegin", "@37", "@38", "IfElse", "@39", "IfElseIf", "@40", "@41",
|
||
"@42", "@43", "EndIf", "DoCase", "EndCase", "DoCaseStart", "@44",
|
||
"DoCaseBegin", "Cases", "@45", "@46", "@47", "@48", "Otherwise", "@49",
|
||
"@50", "@51", "DoWhile", "@52", "@53", "WhileBegin", "EndWhile",
|
||
"ForNext", "@54", "@55", "@56", "ForAssign", "StepExpr", "ForStatements",
|
||
"ForVar", "ForList", "ForExpr", "ForArgs", "ForEach", "@57", "@58",
|
||
"@59", "Descend", "DoSwitch", "@60", "EndSwitch", "SwitchStart", "@61",
|
||
"SwitchBegin", "SwitchCases", "@62", "@63", "SwitchDefault", "@64",
|
||
"@65", "BeginSeq", "@66", "@67", "@68", "@69", "AlwaysSeq", "Always",
|
||
"RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoName", "DoProc", "@70",
|
||
"@71", "DoArgs", "DoArgList", "DoArgument", "WithObject", "@72", "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, 61, 60, 62, 36, 43,
|
||
45, 42, 47, 37, 360, 361, 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, 129, 130, 130, 131, 131, 131, 131, 131, 131,
|
||
131, 131, 131, 131, 131, 131, 132, 132, 134, 133,
|
||
135, 133, 136, 133, 137, 133, 138, 138, 138, 138,
|
||
139, 139, 139, 139, 140, 140, 141, 141, 141, 141,
|
||
141, 141, 141, 141, 141, 142, 142, 142, 142, 142,
|
||
142, 142, 142, 142, 143, 143, 144, 144, 144, 144,
|
||
144, 144, 144, 144, 144, 144, 144, 144, 144, 144,
|
||
144, 145, 144, 144, 144, 144, 146, 144, 147, 148,
|
||
144, 149, 150, 144, 144, 144, 144, 144, 144, 151,
|
||
144, 144, 152, 152, 154, 153, 155, 155, 155, 155,
|
||
155, 155, 156, 156, 156, 156, 157, 157, 157, 157,
|
||
158, 158, 159, 159, 160, 160, 161, 161, 162, 162,
|
||
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
||
162, 162, 162, 162, 162, 162, 163, 163, 164, 165,
|
||
165, 166, 167, 168, 169, 170, 171, 171, 172, 173,
|
||
174, 175, 176, 177, 178, 179, 179, 180, 181, 181,
|
||
182, 183, 184, 184, 185, 186, 187, 188, 188, 189,
|
||
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
|
||
189, 189, 189, 190, 190, 190, 191, 191, 191, 191,
|
||
191, 191, 191, 191, 191, 191, 191, 191, 191, 191,
|
||
191, 191, 191, 191, 191, 191, 192, 192, 192, 192,
|
||
192, 192, 193, 193, 193, 193, 193, 193, 193, 193,
|
||
193, 193, 193, 193, 193, 193, 193, 193, 193, 193,
|
||
194, 196, 195, 197, 198, 197, 199, 197, 200, 201,
|
||
202, 202, 203, 203, 204, 204, 204, 204, 204, 205,
|
||
205, 206, 206, 206, 207, 207, 207, 208, 209, 211,
|
||
210, 212, 213, 213, 213, 213, 213, 213, 213, 214,
|
||
213, 213, 213, 213, 213, 213, 213, 213, 213, 213,
|
||
215, 213, 213, 213, 216, 213, 213, 217, 213, 213,
|
||
213, 213, 213, 213, 213, 213, 213, 218, 218, 218,
|
||
219, 218, 220, 218, 218, 221, 221, 222, 222, 223,
|
||
223, 223, 223, 223, 223, 223, 224, 224, 224, 224,
|
||
224, 224, 224, 224, 224, 224, 224, 224, 224, 224,
|
||
224, 224, 224, 224, 224, 224, 224, 225, 225, 226,
|
||
227, 227, 228, 228, 228, 229, 229, 229, 229, 229,
|
||
229, 229, 229, 229, 229, 229, 229, 229, 229, 229,
|
||
229, 229, 229, 229, 229, 229, 230, 231, 232, 233,
|
||
234, 235, 236, 237, 237, 237, 237, 237, 237, 238,
|
||
238, 238, 238, 238, 238, 239, 239, 240, 240, 240,
|
||
240, 240, 240, 240, 240, 240, 241, 242, 242, 242,
|
||
243, 243, 245, 244, 246, 246, 247, 247, 247, 247,
|
||
248, 248, 249, 249, 250, 251, 252, 253, 255, 254,
|
||
256, 254, 257, 254, 258, 258, 259, 259, 260, 260,
|
||
260, 260, 260, 262, 261, 263, 264, 261, 261, 261,
|
||
265, 266, 266, 266, 268, 267, 269, 269, 269, 271,
|
||
270, 272, 272, 274, 273, 275, 273, 273, 273, 276,
|
||
273, 277, 277, 278, 278, 278, 278, 280, 279, 282,
|
||
281, 283, 283, 283, 283, 284, 284, 285, 286, 286,
|
||
286, 286, 286, 286, 287, 287, 287, 287, 287, 287,
|
||
288, 288, 288, 288, 288, 288, 288, 288, 289, 289,
|
||
289, 289, 291, 292, 290, 294, 293, 296, 297, 295,
|
||
298, 299, 295, 300, 300, 301, 301, 301, 301, 302,
|
||
302, 304, 303, 305, 305, 307, 308, 306, 309, 310,
|
||
306, 312, 313, 311, 314, 311, 316, 317, 315, 318,
|
||
319, 319, 321, 322, 323, 320, 324, 324, 325, 325,
|
||
326, 326, 326, 326, 327, 327, 328, 328, 329, 329,
|
||
330, 330, 332, 333, 334, 331, 335, 335, 337, 336,
|
||
336, 338, 340, 339, 341, 341, 343, 342, 344, 342,
|
||
342, 342, 346, 347, 345, 349, 350, 351, 352, 348,
|
||
353, 353, 354, 355, 355, 355, 356, 357, 358, 358,
|
||
360, 359, 361, 359, 362, 362, 363, 363, 363, 363,
|
||
363, 364, 364, 364, 364, 364, 366, 365, 367, 367
|
||
};
|
||
|
||
/* 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, 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, 6, 1, 3, 0, 1, 1, 3,
|
||
2, 4, 1, 3, 3, 2, 8, 2, 0, 4,
|
||
0, 4, 0, 4, 1, 3, 1, 3, 1, 2,
|
||
4, 2, 3, 0, 3, 0, 0, 6, 2, 3,
|
||
2, 2, 3, 4, 0, 4, 2, 4, 3, 0,
|
||
4, 2, 4, 0, 8, 0, 5, 3, 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, 3, 3, 2, 4, 1,
|
||
1, 0, 3, 1, 2, 0, 0, 6, 0, 0,
|
||
7, 0, 0, 5, 0, 5, 0, 0, 7, 1,
|
||
1, 1, 0, 0, 0, 12, 1, 1, 0, 2,
|
||
2, 3, 2, 3, 1, 1, 1, 3, 2, 1,
|
||
1, 3, 0, 0, 0, 10, 0, 1, 0, 4,
|
||
2, 1, 0, 4, 1, 2, 0, 5, 0, 6,
|
||
1, 2, 0, 0, 5, 0, 0, 0, 0, 10,
|
||
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
|
||
};
|
||
|
||
/* 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, 118, 76, 141, 136, 137, 418, 420, 0,
|
||
0, 143, 146, 147, 127, 125, 126, 28, 122, 78,
|
||
0, 0, 521, 449, 539, 121, 0, 120, 119, 444,
|
||
123, 422, 81, 585, 71, 0, 149, 0, 162, 163,
|
||
0, 124, 0, 0, 134, 402, 602, 0, 135, 572,
|
||
0, 138, 0, 618, 619, 0, 307, 0, 0, 0,
|
||
8, 6, 0, 7, 160, 316, 318, 0, 317, 0,
|
||
319, 0, 0, 321, 0, 322, 0, 323, 0, 324,
|
||
0, 325, 0, 330, 0, 328, 0, 329, 0, 0,
|
||
0, 326, 327, 331, 0, 233, 333, 0, 335, 0,
|
||
0, 336, 0, 0, 94, 94, 94, 94, 373, 374,
|
||
375, 376, 377, 378, 94, 320, 332, 0, 334, 0,
|
||
84, 85, 86, 5, 94, 490, 0, 491, 0, 0,
|
||
492, 0, 493, 495, 496, 0, 568, 494, 94, 497,
|
||
4, 9, 0, 75, 0, 140, 139, 0, 0, 0,
|
||
128, 130, 127, 125, 126, 122, 0, 132, 129, 121,
|
||
0, 133, 131, 134, 0, 0, 0, 262, 264, 263,
|
||
265, 267, 268, 271, 272, 273, 298, 276, 277, 274,
|
||
275, 278, 279, 304, 283, 286, 297, 502, 0, 291,
|
||
292, 293, 289, 290, 294, 295, 296, 266, 299, 282,
|
||
89, 0, 114, 0, 116, 73, 0, 340, 341, 0,
|
||
0, 74, 160, 316, 318, 317, 319, 321, 322, 323,
|
||
324, 325, 330, 311, 312, 310, 327, 314, 333, 313,
|
||
336, 0, 0, 320, 315, 334, 167, 0, 0, 0,
|
||
0, 0, 70, 598, 599, 600, 0, 455, 0, 34,
|
||
0, 0, 92, 0, 406, 604, 160, 328, 329, 555,
|
||
331, 335, 332, 556, 0, 0, 0, 0, 165, 0,
|
||
412, 0, 249, 0, 0, 0, 250, 243, 400, 308,
|
||
242, 0, 254, 255, 256, 253, 1, 0, 14, 12,
|
||
13, 11, 10, 0, 0, 161, 231, 0, 0, 212,
|
||
0, 0, 214, 183, 184, 185, 186, 206, 0, 142,
|
||
213, 190, 0, 144, 215, 191, 193, 0, 148, 217,
|
||
192, 0, 150, 219, 195, 0, 152, 153, 196, 0,
|
||
154, 197, 0, 157, 218, 194, 0, 220, 203, 207,
|
||
0, 164, 234, 61, 223, 187, 208, 0, 166, 236,
|
||
62, 224, 188, 209, 0, 0, 183, 170, 0, 174,
|
||
0, 175, 177, 0, 176, 0, 178, 0, 179, 0,
|
||
180, 0, 181, 169, 184, 172, 185, 173, 204, 0,
|
||
211, 171, 0, 182, 205, 0, 221, 0, 59, 222,
|
||
0, 230, 198, 0, 239, 58, 227, 200, 0, 258,
|
||
259, 225, 0, 201, 0, 261, 60, 226, 202, 337,
|
||
338, 0, 0, 0, 0, 0, 0, 0, 0, 339,
|
||
65, 64, 68, 67, 66, 0, 145, 216, 0, 415,
|
||
63, 229, 189, 210, 0, 417, 57, 228, 199, 56,
|
||
0, 507, 514, 513, 0, 0, 498, 101, 420, 108,
|
||
122, 99, 97, 110, 100, 0, 0, 98, 96, 520,
|
||
525, 531, 519, 517, 0, 0, 0, 0, 571, 0,
|
||
570, 69, 0, 95, 34, 0, 424, 0, 0, 342,
|
||
344, 343, 0, 238, 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,
|
||
87, 0, 88, 34, 79, 426, 428, 522, 34, 0,
|
||
547, 546, 0, 168, 34, 0, 0, 82, 0, 0,
|
||
604, 0, 453, 0, 457, 45, 40, 37, 0, 38,
|
||
39, 36, 41, 43, 50, 51, 47, 0, 48, 49,
|
||
46, 52, 459, 35, 44, 467, 458, 0, 0, 407,
|
||
34, 0, 408, 0, 603, 0, 0, 0, 616, 0,
|
||
0, 414, 155, 244, 245, 246, 248, 238, 247, 0,
|
||
156, 307, 307, 151, 15, 18, 20, 307, 345, 305,
|
||
306, 397, 0, 396, 347, 346, 348, 350, 351, 352,
|
||
353, 354, 359, 357, 307, 358, 307, 355, 356, 360,
|
||
363, 364, 307, 252, 365, 367, 368, 369, 370, 372,
|
||
371, 366, 251, 349, 361, 362, 505, 0, 499, 510,
|
||
0, 500, 0, 0, 111, 0, 0, 528, 515, 0,
|
||
534, 516, 536, 0, 582, 0, 580, 77, 0, 433,
|
||
438, 0, 0, 419, 421, 307, 270, 301, 281, 285,
|
||
288, 385, 386, 387, 392, 393, 390, 391, 384, 395,
|
||
388, 389, 394, 379, 380, 381, 382, 383, 503, 303,
|
||
90, 115, 117, 429, 431, 0, 0, 451, 0, 450,
|
||
542, 446, 0, 0, 445, 423, 0, 0, 586, 72,
|
||
601, 0, 16, 471, 469, 0, 463, 465, 42, 53,
|
||
0, 471, 93, 91, 410, 0, 0, 606, 160, 304,
|
||
612, 297, 0, 299, 605, 608, 0, 559, 560, 562,
|
||
557, 573, 0, 257, 413, 0, 308, 158, 401, 0,
|
||
0, 0, 0, 0, 240, 398, 0, 0, 0, 0,
|
||
0, 0, 0, 501, 0, 0, 0, 532, 0, 518,
|
||
0, 0, 576, 0, 0, 569, 581, 441, 434, 0,
|
||
439, 0, 440, 425, 0, 0, 0, 432, 427, 80,
|
||
34, 0, 448, 34, 83, 593, 0, 124, 0, 34,
|
||
0, 472, 473, 34, 464, 466, 456, 469, 0, 461,
|
||
0, 404, 0, 409, 34, 607, 609, 558, 0, 566,
|
||
0, 307, 19, 30, 21, 30, 307, 232, 399, 235,
|
||
237, 260, 506, 508, 0, 30, 102, 30, 104, 526,
|
||
0, 0, 0, 537, 0, 583, 578, 436, 442, 0,
|
||
307, 504, 430, 452, 0, 447, 596, 0, 587, 0,
|
||
0, 17, 0, 34, 34, 478, 34, 0, 0, 470,
|
||
0, 0, 34, 0, 403, 411, 610, 561, 567, 563,
|
||
617, 159, 31, 0, 32, 34, 0, 241, 0, 511,
|
||
0, 0, 0, 533, 529, 535, 0, 0, 0, 0,
|
||
0, 443, 0, 548, 597, 590, 0, 0, 34, 484,
|
||
307, 479, 0, 0, 34, 474, 0, 462, 460, 468,
|
||
405, 0, 0, 0, 54, 0, 509, 0, 0, 0,
|
||
527, 0, 540, 541, 538, 577, 584, 0, 437, 416,
|
||
0, 543, 592, 588, 0, 594, 595, 307, 485, 477,
|
||
0, 475, 454, 34, 481, 0, 34, 564, 23, 33,
|
||
34, 25, 512, 103, 105, 530, 579, 549, 0, 0,
|
||
0, 0, 307, 480, 307, 482, 34, 487, 0, 55,
|
||
544, 589, 591, 486, 476, 0, 307, 488, 0, 565,
|
||
0, 483, 0, 552, 550, 545, 489, 553, 551
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yydefgoto[] =
|
||
{
|
||
-1, 58, 59, 451, 61, 739, 741, 740, 742, 62,
|
||
873, 552, 553, 554, 874, 452, 241, 142, 206, 686,
|
||
239, 696, 508, 253, 205, 144, 453, 454, 455, 697,
|
||
978, 201, 203, 64, 167, 168, 67, 169, 69, 170,
|
||
71, 72, 171, 74, 172, 76, 173, 78, 174, 80,
|
||
175, 82, 275, 176, 84, 177, 86, 178, 88, 89,
|
||
90, 306, 179, 180, 181, 94, 95, 587, 182, 604,
|
||
606, 183, 97, 743, 276, 277, 744, 184, 285, 99,
|
||
100, 185, 612, 102, 186, 484, 486, 487, 488, 736,
|
||
485, 507, 591, 280, 231, 188, 419, 189, 190, 191,
|
||
192, 107, 108, 109, 110, 111, 112, 113, 193, 194,
|
||
195, 196, 344, 300, 281, 197, 254, 802, 561, 562,
|
||
271, 198, 117, 199, 119, 120, 147, 148, 238, 475,
|
||
514, 515, 516, 768, 769, 890, 650, 651, 121, 237,
|
||
525, 122, 210, 519, 457, 703, 533, 710, 798, 705,
|
||
251, 711, 707, 793, 790, 940, 941, 791, 792, 124,
|
||
125, 126, 506, 775, 444, 750, 445, 627, 878, 752,
|
||
917, 446, 127, 463, 128, 209, 129, 464, 635, 882,
|
||
758, 921, 465, 636, 830, 760, 130, 761, 886, 131,
|
||
924, 132, 781, 958, 980, 522, 931, 979, 263, 264,
|
||
728, 729, 133, 809, 911, 968, 869, 134, 469, 470,
|
||
135, 265, 136, 645, 834, 889, 646, 763, 888, 137,
|
||
240, 785, 895, 959, 933, 934, 848, 849, 850, 245,
|
||
138, 530, 255, 564, 724, 725, 139, 732, 458
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -907
|
||
static const yytype_int16 yypact[] =
|
||
{
|
||
3540, 148, -907, 204, -907, -8, 5, 545, 462, -36,
|
||
7048, -907, -907, -907, 4242, 4242, 4242, -907, 112, 646,
|
||
7048, 7048, -907, 699, -907, 204, 3355, -907, -907, 10,
|
||
-907, 1640, 1762, -907, 204, -9, -907, 93, -907, -907,
|
||
4242, -907, 4242, 1170, 110, -907, -907, 3355, -907, -907,
|
||
7048, -907, 94, -907, -907, 7167, 6572, 7844, 180, 4608,
|
||
-907, -907, 448, -907, -7, 13, 21, 3234, 14, 7844,
|
||
16, 7844, 7844, 25, 7844, 47, 7844, 55, 7844, 72,
|
||
7844, 57, 7844, 31, 3234, 12, 3234, 90, 3234, 7524,
|
||
7844, 44, 18, 225, 7844, -907, 70, 7844, 29, 68,
|
||
7844, 102, 7844, 1308, -907, -907, -907, -907, -907, -907,
|
||
-907, -907, -907, -907, -907, 59, 118, 3234, 178, 7844,
|
||
-907, -907, -907, -907, -907, -907, 378, -907, 4854, 466,
|
||
-907, 7048, -907, -907, -907, 5469, 208, -907, -907, -907,
|
||
-907, -907, 7048, -907, 148, -907, -907, 4242, 4242, 7048,
|
||
-907, -907, -907, -907, -907, -907, 7048, -907, -907, -907,
|
||
10, -907, -907, -907, 7048, 7048, 4242, 731, 964, 808,
|
||
1842, 1897, 7575, 1971, 1190, 2006, 3620, 235, 1584, 1295,
|
||
1435, 1466, 7635, -907, 4475, 7695, -907, 4081, 1325, -907,
|
||
-907, -907, -907, -907, -907, -907, -907, 2111, 7755, 2267,
|
||
-907, 414, -907, 417, -907, -907, 8070, -907, -907, 148,
|
||
4242, -907, 210, 106, 106, 51, 56, 89, 149, 171,
|
||
242, 182, 106, 159, 205, 131, 106, 76, 186, 214,
|
||
191, 15, 181, 206, -4, 216, 266, 4242, 4242, 8070,
|
||
148, 7048, -907, -907, -907, -907, 315, 223, 148, 4312,
|
||
226, 148, 228, 231, 7878, 293, 251, -3, 77, 131,
|
||
330, 154, 218, -907, -15, 7048, 3012, 7048, -907, 4242,
|
||
4081, 262, -907, 280, 3355, 267, -907, -907, -907, 3752,
|
||
-907, 283, -907, -907, -907, -907, -907, 148, -907, -907,
|
||
-907, -907, -907, 4242, 4242, -907, -907, 7048, 6691, -907,
|
||
-84, 7048, -907, -907, -907, -907, -907, -907, 7048, -907,
|
||
-907, -907, 7048, -907, -907, -907, -907, 7048, -907, -907,
|
||
-907, 7048, -907, -907, -907, 7048, -907, -907, -907, 7048,
|
||
-907, -907, 7048, -907, -907, -907, 7048, -907, -907, -907,
|
||
7048, -907, -907, -907, -907, -907, -907, 7048, -907, -907,
|
||
-907, -907, -907, -907, -8, 5, 341, -907, 394, -907,
|
||
397, -907, -907, 405, -907, 407, -907, 171, -907, 242,
|
||
-907, 419, -907, -907, 422, -907, 428, -907, -907, 445,
|
||
464, -907, 471, -907, -907, 7048, -907, 7048, -907, -907,
|
||
7048, -907, -907, 7048, -907, -907, -907, -907, 7048, -907,
|
||
-907, -907, 7844, -907, 7048, -907, -907, -907, -907, -907,
|
||
-907, 7048, 7048, 7048, 7048, 7048, 7048, 7048, 7844, -907,
|
||
-907, -907, -907, -907, -907, 7048, -907, -907, 7048, -907,
|
||
-907, -907, -907, -907, 7048, -907, -907, -907, -907, -907,
|
||
148, -907, -907, -907, 467, 497, -907, -907, 537, -907,
|
||
164, -907, -907, -907, -907, 491, 4977, -907, -907, -907,
|
||
-907, -907, -907, -907, 486, 311, 3012, 5592, -907, 505,
|
||
-907, -907, 3012, -907, 2101, 429, -907, 429, 2352, 1552,
|
||
-907, -907, 389, -907, 4312, 4312, 4312, 4312, 4312, 7048,
|
||
7048, 7048, 7048, 7048, 7048, 7048, 7048, 7048, 7048, 7048,
|
||
7048, 7048, 7048, 7048, 7048, 7048, 148, 4312, 148, 4242,
|
||
-907, 4242, -907, 2101, 400, -907, -907, -907, 4312, 432,
|
||
-907, -907, 7048, -907, 4312, 256, 432, 400, 5100, 3012,
|
||
293, 438, -907, 4242, -907, -907, -907, -907, 4242, -907,
|
||
-907, -907, -907, -907, -907, -907, -907, 4242, -907, -907,
|
||
-907, -907, -907, -907, -907, -907, -907, 504, 148, -907,
|
||
4312, 402, 433, 6810, -907, 7286, 3355, 3012, -907, 495,
|
||
7048, -907, -907, 227, 159, 131, 76, 211, 214, 7048,
|
||
-907, 7048, 6929, -907, -907, 418, 437, 6929, 4081, -907,
|
||
4081, -907, 6691, 451, 4081, 4081, 4081, 4081, 4081, 4081,
|
||
4081, 4081, 4081, 4081, 6929, 4081, 6929, 4081, 4081, 4081,
|
||
4081, 4081, 6929, -907, 4081, 4081, 4081, 4081, 4081, 4081,
|
||
4081, 4081, -907, 4081, 4081, 4081, -907, 7048, -907, -907,
|
||
467, -907, 4242, 4242, -907, 7048, 148, -907, -907, 311,
|
||
-907, -907, -907, 7048, -907, 362, -907, -907, 7048, 551,
|
||
534, -75, 4242, -907, -907, 7405, -907, -907, -907, -907,
|
||
-907, 3402, 4081, 1552, 1552, 1552, 1552, 1552, 507, 1552,
|
||
1552, 1552, 1552, 363, 363, 252, 252, 252, -907, -907,
|
||
-907, -907, -907, 573, 534, 8070, 148, -907, 4242, -907,
|
||
4081, -907, 4242, 4242, -907, -907, 148, 4731, -907, -907,
|
||
-907, 565, -907, 2685, 226, 2499, -907, -907, -907, -907,
|
||
4242, 2685, -907, -907, -907, 7048, 7940, 7405, 249, 444,
|
||
-907, 450, 4081, 4124, 475, -907, 4242, 4081, -907, 478,
|
||
-907, -907, 6453, -907, 4081, 3981, 4081, -907, -907, 148,
|
||
498, 148, 509, 348, -907, -907, 6691, 358, 454, 455,
|
||
5961, 3012, 7048, -907, 328, 342, 3012, -907, 7048, -907,
|
||
148, 6084, 4081, 148, 7048, -907, -907, 4081, -907, 605,
|
||
-907, 7048, 510, -907, 511, 5223, 7048, -907, -907, -907,
|
||
4312, 587, -907, 4312, -907, 564, 148, 2854, 4242, 4312,
|
||
514, 518, 519, 4312, -907, -907, -907, -907, 292, -907,
|
||
522, 4081, 318, -907, 4312, -907, 7405, 389, 7286, 542,
|
||
632, 7048, -907, 7974, -907, 7974, 6929, -907, -907, -907,
|
||
-907, -907, -907, -907, 3012, 7974, -907, 7974, -907, -907,
|
||
5715, 3012, 5715, -907, 148, -907, 4081, -907, 4081, 7048,
|
||
7405, -907, 4081, -907, 7048, -907, -907, 4242, -907, 148,
|
||
148, -907, 4242, 4312, 3862, -907, 4312, 3711, 568, -907,
|
||
4242, 148, 4312, 7048, -907, -907, -907, -907, -907, -907,
|
||
-907, -907, -907, 530, 533, 4312, 532, -907, 5223, -907,
|
||
535, 538, 5346, -907, -907, -907, 183, 5838, 5838, 148,
|
||
7048, 4081, 539, 4324, -907, 590, 6207, 6207, 8117, -907,
|
||
7048, -907, 148, 4242, 4312, 519, 3958, -907, -907, -907,
|
||
4081, 148, 148, 8036, -907, 148, -907, 5223, 148, 148,
|
||
-907, 5346, -907, -907, -907, -907, -907, 5838, 4081, -907,
|
||
7048, -907, -907, -907, 148, -907, -907, 7048, -907, -907,
|
||
468, -907, -907, 8138, -907, 4242, 4312, -907, -907, -907,
|
||
4312, -907, -907, -907, -907, -907, -907, 4081, 148, 642,
|
||
6453, 488, 7048, -907, 7048, -907, 8174, -907, 6330, -907,
|
||
-907, -907, -907, -907, -907, 489, 7048, -907, 27, -907,
|
||
6330, -907, 493, 4242, 4242, -907, -907, -907, -907
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yypgoto[] =
|
||
{
|
||
-907, -907, -907, 39, 604, -907, -907, -907, -907, -907,
|
||
-396, -464, 4, -607, -907, 213, -907, -907, -907, -907,
|
||
-907, -907, -907, -907, 321, -907, -449, -907, -907, 192,
|
||
-473, -907, -907, 3119, 1161, 1189, 576, 179, 578, 253,
|
||
579, 580, 373, 582, 410, 584, 559, 585, 586, 588,
|
||
710, 589, -907, 1377, 594, 0, 597, 75, 599, 440,
|
||
-907, 8083, 1451, 1556, 1667, -907, -165, -907, 1744, -907,
|
||
-907, -557, -907, -226, -644, -555, -53, 1869, -145, -907,
|
||
-907, 1973, -907, -907, -551, -907, -907, -907, -907, 3736,
|
||
-907, -907, -573, -579, -907, 2092, -907, 1853, 2114, -907,
|
||
2254, -907, -907, -907, -907, -907, -907, -907, 2353, -907,
|
||
-907, -907, 4243, -907, -907, 855, -907, -907, -907, -907,
|
||
-907, 176, 600, 872, 601, -907, -907, -907, -907, 531,
|
||
452, 7, -143, -907, -907, -907, 185, -907, -907, -907,
|
||
-907, -907, -907, 457, 240, -907, -907, -907, -907, -907,
|
||
-524, -907, -690, -907, -18, -906, -266, -907, -158, -907,
|
||
-907, -907, -907, -907, 268, -907, -907, -907, -907, -907,
|
||
-907, -431, -907, -448, -907, -907, -907, -907, -907, -907,
|
||
-907, -907, 247, -907, -907, -907, -907, -907, -907, -907,
|
||
-907, -907, -907, -907, -907, -907, -907, -268, 150, -907,
|
||
-93, -907, -907, -907, -907, -907, -907, -907, -907, 73,
|
||
-907, -907, -907, -907, -907, -907, 74, -907, -907, -907,
|
||
-907, -907, -907, -907, -907, -907, -907, -907, -907, -907,
|
||
-907, -907, -907, 187, -907, -505, -907, -907, 2964
|
||
};
|
||
|
||
/* 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 -616
|
||
static const yytype_int16 yytable[] =
|
||
{
|
||
85, 483, 737, 278, 476, 476, 719, 634, 720, 706,
|
||
649, 774, 721, 628, 631, 795, 638, 641, 634, 745,
|
||
799, 340, 297, 308, 520, 312, 223, 387, 145, 295,
|
||
301, 961, 429, 341, 317, 243, 592, 565, 398, 60,
|
||
336, 146, 593, 770, 983, 771, 236, 257, 341, 683,
|
||
309, 772, 313, 385, 687, 698, 321, 283, 975, 85,
|
||
691, 318, 38, 39, 325, 399, 332, 304, 425, 304,
|
||
982, 304, 304, 984, 304, 87, 304, 777, 304, 393,
|
||
304, 329, 304, 322, 304, 149, 304, 309, 304, 374,
|
||
304, 326, 313, 333, 304, 426, 714, 304, 288, 347,
|
||
304, 224, 304, 246, 483, 566, 394, 52, 330, 577,
|
||
244, 404, 391, 348, 296, -29, -29, 304, 342, 304,
|
||
521, -332, 258, 298, 298, 318, 348, 428, 85, 252,
|
||
-94, -94, 284, 342, 87, 85, -94, -94, 405, 298,
|
||
298, 298, 305, 298, 305, 298, 305, 305, 298, 305,
|
||
400, 305, 298, 305, 429, 305, 298, 305, 298, 305,
|
||
719, 305, 720, 305, 376, 305, 721, -109, -109, 305,
|
||
907, 298, 305, 818, 298, 305, 116, 305, 298, 68,
|
||
286, 794, 298, 298, 298, 322, 298, 434, -94, -94,
|
||
399, 759, 305, 402, 305, 341, 892, 298, 349, 753,
|
||
922, -331, 234, 87, 298, 215, 513, 326, -94, -94,
|
||
87, 349, 805, 63, 435, 267, 298, 298, 333, -309,
|
||
-94, -94, 394, 262, 923, 468, 215, 405, 268, 298,
|
||
-94, -94, 871, 298, 390, 116, -94, -94, 68, 513,
|
||
123, 348, 426, 307, 340, 298, 295, -233, 634, 719,
|
||
399, 720, 435, 70, 429, 721, -326, 613, 298, 810,
|
||
339, 391, 346, 295, 353, 380, 53, 54, 358, -328,
|
||
-328, 341, 290, 622, 574, 400, 298, 822, 330, 216,
|
||
342, 298, -94, -94, -328, 295, 298, 295, 833, -328,
|
||
-328, -328, -328, 433, -328, -328, -94, -94, 298, 291,
|
||
216, 866, 841, -554, 116, 298, 418, 68, 692, 298,
|
||
496, 116, 70, 298, 68, -309, 843, 160, 298, 845,
|
||
456, 939, -94, -94, 143, 855, 349, 467, 459, 859,
|
||
-329, 296, 298, 298, 531, 400, -233, 557, -233, -335,
|
||
865, 298, 360, 298, 532, 298, 211, 555, 296, 258,
|
||
640, 462, -160, 558, -160, 242, 342, 883, 939, 885,
|
||
-328, 563, 298, 503, 504, 505, 391, -611, -611, -611,
|
||
296, -554, 296, 73, 53, 54, 693, 295, 747, 468,
|
||
748, 70, 570, 939, 571, 939, 749, 579, 70, 899,
|
||
901, 580, 902, 440, 441, 442, 443, 939, 909, 217,
|
||
764, 644, 283, 582, 572, 916, 343, 583, 350, 920,
|
||
75, 914, 860, 388, 925, 926, 861, 395, 283, 876,
|
||
217, 496, 406, 935, 936, 420, 421, 422, 423, 880,
|
||
309, 881, 73, 313, 938, 424, 218, 430, 863, 436,
|
||
944, 318, 864, 322, 952, 439, 53, 54, 955, 825,
|
||
262, 293, 294, 215, 956, 333, 85, 218, 341, 471,
|
||
53, 54, 363, 827, 348, -27, -27, 85, 816, 75,
|
||
817, -130, 501, 502, 503, 504, 505, 284, 816, 965,
|
||
819, 426, 967, 459, 442, 443, 969, 972, 656, 657,
|
||
658, 659, 660, 284, 632, 633, -130, -130, -130, 365,
|
||
429, 73, 977, 459, 460, 461, 462, 435, 73, 773,
|
||
296, 679, 440, 629, 442, 443, -130, -130, -130, -130,
|
||
685, -130, -130, 712, 637, 461, 462, 216, 85, 738,
|
||
715, 87, 53, 54, 509, 53, 54, 511, 75, -22,
|
||
-107, -107, 87, 643, 644, 75, -130, 53, 54, 652,
|
||
53, 54, 688, 716, -128, 701, 53, 54, -24, 77,
|
||
-435, 483, -613, -613, -613, 496, 257, -130, -614, -614,
|
||
-614, -130, -130, -130, 816, 816, 820, 821, 746, -128,
|
||
-128, -128, 776, -130, 786, 219, 79, -130, 962, -130,
|
||
963, -130, -130, -130, -130, 806, -130, -130, 808, -128,
|
||
-128, -128, -128, 87, -128, -128, 219, 535, 962, 962,
|
||
973, 981, 220, 962, 837, 986, 296, 733, 77, 813,
|
||
544, 545, 546, 547, 548, 549, 550, 551, 846, 847,
|
||
815, 840, 116, 220, 844, 68, 856, 839, 857, 858,
|
||
868, 258, -130, 116, 862, 79, 68, 217, 367, 870,
|
||
-128, 906, 912, 913, 915, -132, 932, 918, -130, 971,
|
||
919, 929, -130, 289, -130, 357, -128, 359, 361, 362,
|
||
-128, 364, -128, 366, 368, 369, 523, 370, 372, 477,
|
||
-132, -132, -132, 373, 218, 513, 375, 77, 377, 381,
|
||
383, 527, 778, 800, 77, 526, 974, 85, 684, 905,
|
||
-132, -132, -132, -132, 116, -132, -132, 68, -129, 70,
|
||
81, 639, 985, 630, 79, 867, 730, 700, 765, 766,
|
||
70, 79, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 85, -129, -129, -129, 221, 0, 0, 723,
|
||
297, 0, 262, 0, 0, 215, 0, 0, 0, 0,
|
||
85, -132, 0, -129, -129, -129, -129, 221, -129, -129,
|
||
0, 85, 0, 877, 0, -316, -316, -132, 0, 81,
|
||
0, -132, 87, -132, 0, 85, 0, 0, 0, 0,
|
||
0, 70, 0, 0, 0, -316, -316, -316, -316, 0,
|
||
-316, -316, 0, 0, 0, 0, 0, 0, 0, 371,
|
||
0, 0, 0, 0, -129, 0, 0, 87, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 308, 0, 216,
|
||
-129, 0, 0, 0, -129, 87, -129, 0, 0, 73,
|
||
85, 0, 85, 219, 0, 0, 87, 0, 81, 0,
|
||
73, 0, -317, -317, 309, 81, 0, 0, 0, 0,
|
||
87, 0, 0, 0, 0, 115, -316, 0, 298, 0,
|
||
220, 0, -317, -317, -317, -317, 75, -317, -317, 0,
|
||
0, 0, 118, 116, 0, 0, 68, 75, 85, 0,
|
||
0, 233, 85, 0, 0, 0, 0, 85, 85, 0,
|
||
0, 0, 0, 723, 0, 0, 85, 85, 235, 0,
|
||
0, 73, 233, 0, 0, 87, 0, 87, 116, 0,
|
||
0, 68, 0, 0, 115, 0, 0, 85, 0, 235,
|
||
0, 85, 0, 0, 0, 0, 116, 85, 0, 68,
|
||
0, 118, 0, -317, 0, 298, 0, 116, 75, 217,
|
||
68, 0, 0, 0, 379, 0, 0, 0, 0, 0,
|
||
70, 116, 0, 87, 68, 0, 0, 87, 0, 0,
|
||
85, 382, 87, 87, 0, 0, 0, 0, 85, 0,
|
||
0, 87, 87, 301, 0, 0, 218, 0, 0, 0,
|
||
85, 0, 723, 115, 221, 70, 0, 0, 0, 0,
|
||
115, 0, 87, 0, 0, 0, 87, 0, -318, -318,
|
||
118, 0, 87, 70, 0, 0, 116, 118, 116, 68,
|
||
0, 68, 0, 0, 70, 77, 0, 0, -318, -318,
|
||
-318, -318, 0, -318, -318, 0, 77, 0, 70, 0,
|
||
0, 0, 0, 0, 0, 87, 0, 0, 0, 0,
|
||
0, 0, 79, 87, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 79, 116, 87, 0, 68, 116, 0,
|
||
0, 68, 0, 116, 116, 0, 68, 68, 0, 0,
|
||
73, 0, 116, 116, 0, 68, 68, 0, 0, 0,
|
||
0, 0, 0, 70, 0, 70, 0, 77, 0, -318,
|
||
0, 298, 0, 116, 0, 0, 68, 116, 0, 0,
|
||
68, 0, 0, 116, 0, 73, 68, 75, 0, 0,
|
||
0, 0, 0, 0, 79, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 73, 0, 219, 0, 0, 0, 233,
|
||
0, 70, 0, 0, 73, 70, 116, 0, 0, 68,
|
||
70, 70, 75, 0, 116, 0, 235, 68, 73, 70,
|
||
70, 0, 220, 0, 0, 0, 116, 0, 0, 68,
|
||
75, 65, 0, 0, 0, 0, 81, 0, 0, 0,
|
||
70, 75, 0, 0, 70, 2, 0, 81, 0, 0,
|
||
70, 150, 151, 0, 0, 75, 0, 213, 0, 66,
|
||
0, 0, 152, 153, 154, 0, 155, 0, 0, 329,
|
||
157, 0, 0, 73, 0, 73, 0, 0, 213, 0,
|
||
0, 0, 158, 70, 159, 214, 0, 27, 28, 0,
|
||
65, 70, 30, 161, -324, -324, 330, 0, 0, 0,
|
||
0, 162, 0, 70, 0, 0, 214, 0, 81, 0,
|
||
75, 0, 75, 0, -324, -324, -324, -324, 66, -324,
|
||
-324, 73, 0, 41, 0, 73, 77, 0, 0, 0,
|
||
73, 73, 0, 0, 163, 0, 0, 0, 48, 73,
|
||
73, 0, 0, 0, 0, 0, 221, 0, 0, 0,
|
||
0, 0, 0, 79, 0, 0, 0, 0, 75, 65,
|
||
73, 77, 75, 249, 73, 0, 65, 75, 75, 0,
|
||
73, 0, 0, 0, 385, 0, 75, 75, 0, 77,
|
||
0, 115, 0, 0, 0, -324, 0, 66, 79, 0,
|
||
77, 0, 115, 0, 66, 0, 0, 75, 118, -326,
|
||
-326, 75, 0, 73, 77, 0, 79, 75, 0, 118,
|
||
0, 73, 409, 410, 0, 0, 0, 79, 0, -326,
|
||
-326, -326, -326, 73, -326, -326, 0, 0, 0, 409,
|
||
410, 79, 411, 412, 413, 414, 0, 415, 416, 0,
|
||
75, 0, 0, 0, 0, 0, 0, 83, 75, 411,
|
||
412, 413, 414, 115, 415, 416, 0, 0, 0, 77,
|
||
75, 77, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
118, 0, 0, 222, 0, 0, 0, 81, 0, 0,
|
||
0, 0, 0, 417, 0, 0, 79, 0, 79, 0,
|
||
-326, 233, 298, 0, 222, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 418, 0, 213, 83, 77, 235, 0,
|
||
0, 77, 81, 0, 387, 0, 77, 77, 0, 0,
|
||
418, 91, 0, 0, 0, 77, 77, 0, 0, 0,
|
||
81, 0, 0, 214, 79, 0, 0, 0, 79, -327,
|
||
-327, 81, 0, 79, 79, 390, 77, 225, 0, 0,
|
||
77, 0, 79, 79, 0, 81, 77, 0, 0, -327,
|
||
-327, -327, -327, 0, -327, -327, 0, 0, 259, 0,
|
||
-331, -331, 391, 79, 0, 83, 0, 79, 0, 0,
|
||
91, 0, 83, 79, 0, 0, 0, 0, 0, 77,
|
||
-331, -331, -331, -331, 0, -331, -331, 77, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 77,
|
||
81, 0, 81, 0, 0, 0, 79, 0, 0, 0,
|
||
0, 0, 115, 0, 79, 0, 92, 0, 0, 0,
|
||
-327, 0, 298, 0, 0, 0, 79, 0, 0, 118,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 91,
|
||
0, 0, 226, 491, 492, 493, 91, 115, 81, 0,
|
||
0, -331, 81, 347, 0, 0, 0, 81, 81, 0,
|
||
0, 494, 495, 226, 118, 115, 81, 81, 0, 0,
|
||
496, 0, 0, 0, 0, 92, 115, 65, -329, -329,
|
||
348, 0, 118, 0, 0, 0, 0, 81, 65, 0,
|
||
115, 81, 0, 118, 0, 0, 0, 81, -329, -329,
|
||
-329, -329, 0, -329, -329, 66, 0, 118, 0, -133,
|
||
0, 222, 0, 0, 0, 0, 66, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 0, 93, 0, 0,
|
||
81, 0, 0, 0, -133, -133, -133, 0, 81, 0,
|
||
0, 0, 0, 0, 92, 115, 0, 115, 0, 65,
|
||
81, 92, 0, 227, -133, -133, -133, -133, 0, -133,
|
||
-133, 0, 118, 0, 118, 349, 0, 0, 0, -329,
|
||
0, 298, 0, 0, 260, 0, 0, 66, 0, 0,
|
||
0, 0, 0, 0, 0, 575, 93, 213, 0, 0,
|
||
0, 0, 0, 115, 0, 0, 0, 115, 0, 0,
|
||
0, 0, 115, 115, 96, -133, 0, 0, 0, 0,
|
||
118, 115, 115, 0, 118, 214, 0, 0, 0, 118,
|
||
118, -133, 0, 0, 0, -133, 0, -133, 118, 118,
|
||
228, -131, 115, 0, 0, 0, 115, 0, 0, 0,
|
||
0, 0, 115, 0, 0, 0, 0, 0, 0, 118,
|
||
0, 228, 0, 118, 0, 93, -131, -131, -131, 118,
|
||
0, 0, 93, 96, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 115, -131, -131, -131, -131,
|
||
0, -131, -131, 115, 0, 0, 0, 0, 0, 0,
|
||
226, 0, 118, 83, 0, 115, 0, 0, 0, 0,
|
||
118, 0, 0, 0, 83, 0, 0, 0, 0, 0,
|
||
0, 312, 118, 104, 0, 0, 0, 0, 65, 0,
|
||
0, 0, 0, 0, 0, 0, 0, -131, 0, 98,
|
||
0, 0, 96, 0, 0, 0, -319, -319, 313, 96,
|
||
0, 0, 0, -131, 0, 0, 66, -131, 0, -131,
|
||
0, 0, 0, 65, 0, 229, -319, -319, -319, -319,
|
||
0, -319, -319, 0, 0, 83, 317, 91, 0, 0,
|
||
0, 65, 104, 0, 0, 0, 261, 0, 91, 0,
|
||
0, 66, 65, 0, 0, 0, 0, 0, 98, 0,
|
||
0, -321, -321, 318, 0, 0, 65, 0, 0, 66,
|
||
0, 576, 0, 222, 0, 0, 0, 0, 0, 0,
|
||
66, -321, -321, -321, -321, 0, -321, -321, 0, 0,
|
||
0, 0, 0, 0, 66, 0, 0, -319, 0, 298,
|
||
0, 0, 0, 101, 0, 0, 0, 0, 0, 91,
|
||
325, 104, 0, 0, 0, 0, 0, 0, 104, 0,
|
||
0, 65, 0, 65, 0, 0, 0, 98, 0, 230,
|
||
0, 0, 0, 0, 98, -323, -323, 326, 0, 0,
|
||
0, 0, 92, 0, 0, 332, 0, 259, 228, 66,
|
||
230, 66, -321, 92, 298, -323, -323, -323, -323, 0,
|
||
-323, -323, 101, 0, 0, 0, 0, 0, 0, 65,
|
||
-325, -325, 333, 65, 0, 0, 0, 0, 65, 65,
|
||
0, 0, 0, 0, 0, 0, 0, 65, 65, 0,
|
||
-325, -325, -325, -325, 0, -325, -325, 66, 0, 0,
|
||
0, 66, 0, 0, 83, 0, 66, 66, 65, 0,
|
||
0, 0, 65, 0, 92, 66, 66, 0, 65, 0,
|
||
0, 0, 103, 0, 0, 0, -323, 0, 298, 0,
|
||
0, 101, 0, 0, 0, 0, 66, 0, 101, 83,
|
||
66, 0, 0, 0, 105, 0, 66, 0, 232, 0,
|
||
425, 65, 226, 93, 0, 0, 0, 83, 0, 65,
|
||
0, -325, 0, 298, 93, 0, 0, 0, 83, 232,
|
||
0, 65, 0, 578, 0, -320, -320, 426, 91, 66,
|
||
0, 103, 83, 0, 0, 0, 0, 66, 0, 0,
|
||
0, 0, 0, 0, 0, -320, -320, -320, -320, 66,
|
||
-320, -320, 0, 105, 535, 536, 537, 538, 539, 540,
|
||
541, 542, 543, 91, 0, 0, 0, 544, 545, 546,
|
||
547, 548, 549, 550, 551, 93, 0, 0, 0, 0,
|
||
96, 91, 0, 0, 0, 0, 0, 83, 0, 83,
|
||
0, 96, 91, 0, 0, 0, 0, 0, 0, 0,
|
||
103, 0, 0, 0, 0, 0, 91, 103, 648, 0,
|
||
0, 0, 0, 260, 0, 0, -320, 0, 298, 0,
|
||
0, 0, 105, 0, 0, 0, 0, 230, 0, 105,
|
||
0, 0, 0, 92, 106, 83, 0, 0, 0, 83,
|
||
0, 0, 0, 0, 83, 83, 0, 0, 0, 0,
|
||
0, 0, 96, 83, 83, 0, 434, 0, 0, 0,
|
||
0, 91, 0, 91, 0, 0, 0, 0, 92, 0,
|
||
0, 0, 0, 0, 83, 0, 0, 0, 83, 0,
|
||
0, -334, -334, 435, 83, 0, 92, 0, 0, 104,
|
||
228, 0, 0, 106, 0, 0, 0, 92, 0, 0,
|
||
104, -334, -334, -334, -334, 98, -334, -334, 0, 91,
|
||
0, 92, 0, 91, 0, 0, 98, 83, 91, 91,
|
||
0, 0, 0, 0, 0, 83, 0, 91, 91, 0,
|
||
0, 0, 0, 114, 0, 0, 0, 83, 0, 0,
|
||
0, 0, 0, 0, 93, 0, 232, 0, 91, 0,
|
||
0, 0, 91, 0, 0, 0, 0, 0, 91, 489,
|
||
490, 104, 106, 491, 492, 493, 92, 0, 92, 106,
|
||
0, 0, -334, 0, 298, 0, 0, 98, 0, 93,
|
||
0, 494, 495, 0, 0, 0, 0, 0, 0, 0,
|
||
496, 91, 114, 0, 0, 0, 0, 93, 0, 91,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 93, 101,
|
||
0, 91, 0, 0, 92, 261, 0, 0, 92, 0,
|
||
101, 96, 93, 92, 92, 0, 0, 0, 0, 0,
|
||
0, 0, 92, 92, 0, 0, 0, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 0, 0, 0, 0,
|
||
0, 0, 655, 92, 0, 0, 96, 92, 0, 0,
|
||
0, 114, 0, 92, 0, 0, 0, 0, 114, 0,
|
||
0, 0, 0, 0, 96, 0, 0, 93, 0, 93,
|
||
0, 101, 0, 0, 2, 96, 0, 0, 0, 0,
|
||
150, 151, 0, 0, 0, 0, 92, 0, 0, 96,
|
||
0, 152, 153, 154, 92, 155, 0, 0, 0, 157,
|
||
0, 0, 0, 0, 0, 0, 92, 0, 0, 230,
|
||
0, 158, 0, 159, 0, 93, 27, 28, 103, 93,
|
||
104, 30, 161, 0, 93, 93, 0, 0, 0, 103,
|
||
162, 0, 0, 93, 93, 0, 98, 0, 0, 0,
|
||
105, 0, 0, 0, 96, 0, 96, 0, 0, 0,
|
||
0, 105, 41, 0, 93, 104, 0, 0, 93, 0,
|
||
0, 0, 0, 163, 93, 0, 0, 48, 0, 0,
|
||
0, 98, 0, 104, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 104, 0, 0, 53, 54, 98,
|
||
103, 0, 96, 0, 0, 0, 96, 93, 104, 0,
|
||
98, 96, 96, 0, 0, 93, 0, 0, 0, 0,
|
||
96, 96, 105, 0, 98, 0, 0, 93, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 232, 0,
|
||
0, 96, 0, 0, 0, 96, 0, 0, 0, 0,
|
||
101, 96, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 104, 0, 104, 0, 0, 0, 0,
|
||
2, 0, 0, 0, 0, 0, 150, 151, 0, 98,
|
||
0, 98, 0, 0, 96, 101, 0, 152, 153, 154,
|
||
106, 155, 96, 0, 0, 157, 0, 0, 0, 0,
|
||
0, 106, 0, 101, 96, 0, 0, 158, 0, 159,
|
||
0, 104, 27, 28, 101, 104, 0, 30, 161, 0,
|
||
104, 104, 0, 0, 0, 0, 162, 98, 101, 104,
|
||
104, 98, 0, 0, 0, 0, 98, 98, 0, 0,
|
||
0, 0, 0, 0, 0, 98, 98, 0, 787, 0,
|
||
104, 0, 0, 0, 104, 0, 0, 0, 0, 163,
|
||
104, 0, 106, 48, 0, 0, 98, 0, 0, 103,
|
||
98, 0, 0, 0, 0, 0, 98, 0, 0, 0,
|
||
0, 0, 788, 101, 0, 101, 0, 0, 0, 114,
|
||
0, 105, 0, 104, 0, 0, 0, 0, 0, 0,
|
||
114, 104, 0, 0, 103, 0, 0, 0, 0, 98,
|
||
0, 0, 0, 104, 0, 0, 0, 98, 0, 0,
|
||
0, 0, 103, 0, 0, 0, 105, 0, 0, 98,
|
||
0, 101, 0, 103, 0, 101, 0, 0, 0, 2,
|
||
101, 101, 0, 0, 105, 150, 151, 103, 0, 101,
|
||
101, 0, 0, 0, 0, 105, 152, 153, 154, 0,
|
||
155, 114, 0, 0, 157, 0, 0, 0, 0, 105,
|
||
101, 0, 0, 0, 101, 0, 158, 0, 159, 0,
|
||
101, 27, 28, 0, 0, 0, 30, 161, 0, 0,
|
||
0, 0, 0, 0, 0, 162, 0, 0, 0, 0,
|
||
0, 0, 103, 0, 103, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 101, 0, 0, 0, 41, 0, 0,
|
||
0, 101, 0, 0, 105, 0, 105, 0, 163, 0,
|
||
0, 106, 48, 101, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 140, 141, 0, 0, 0, 0,
|
||
103, 852, 0, 0, 103, 0, 0, 0, 0, 103,
|
||
103, 0, 0, 0, 0, 0, 106, 0, 103, 103,
|
||
0, 0, 105, 0, 0, 0, 105, 0, 0, 0,
|
||
0, 105, 105, 0, 106, 0, 0, 0, 0, 103,
|
||
105, 105, 0, 103, 0, 106, 0, 0, 0, 103,
|
||
0, 0, 0, 292, 0, 0, 0, 0, 0, 106,
|
||
0, 105, 0, 0, 0, 105, 0, 0, 0, 489,
|
||
490, 105, 0, 491, 492, 493, 0, 0, 0, 0,
|
||
114, 0, 103, 0, 0, 0, 0, 0, 0, 0,
|
||
103, 494, 495, 0, 0, 0, 0, 0, 0, 0,
|
||
496, 0, 103, 0, 105, 0, 0, 0, 0, 0,
|
||
0, 0, 105, 0, 106, 114, 106, 0, 0, 0,
|
||
0, 0, 0, 0, 105, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 114, 0, 0, 0, 0, 473, 0,
|
||
0, 0, 0, 0, 114, 0, 0, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 0, 0, 114, 0,
|
||
53, 54, 106, 200, 202, 204, 106, 0, 0, 0,
|
||
0, 106, 106, 0, 0, 212, 0, 0, 0, 0,
|
||
106, 106, 0, 0, 0, 0, 0, 0, 0, 247,
|
||
0, 248, 250, 0, 0, 510, 256, 512, 0, 0,
|
||
0, 106, 0, 517, 0, 106, 282, 0, 0, 0,
|
||
0, 106, 0, 114, 0, 114, 303, 0, 303, 0,
|
||
303, 303, 0, 303, 0, 303, 0, 303, 0, 303,
|
||
0, 303, 0, 303, 528, 303, 0, 303, 356, 303,
|
||
0, 0, 534, 303, 106, 556, 303, 0, 0, 303,
|
||
0, 303, 106, 0, 0, 0, 0, 0, 0, 0,
|
||
568, 114, 0, 0, 106, 114, 303, 0, 303, 2,
|
||
114, 114, 0, 0, 0, 150, 151, 0, 0, 114,
|
||
114, 584, 0, 0, 0, 0, 152, 153, 154, 0,
|
||
155, 0, 0, 0, 157, 0, 474, 474, 0, 0,
|
||
114, 0, 0, 0, 114, 0, 158, 0, 159, 0,
|
||
114, 27, 28, 0, 0, 482, 30, 161, 0, 0,
|
||
0, 0, 0, 0, 0, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 114, 0, 0, 0, 41, 0, 0,
|
||
0, 114, 0, 0, 0, 474, 0, 0, 163, 518,
|
||
0, 0, 48, 114, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
52, 0, 0, 0, 0, 267, 524, 518, 474, 0,
|
||
2, 0, 4, 5, 0, 6, 150, 151, 9, 0,
|
||
0, 0, 0, 560, 11, 12, 13, 152, 153, 154,
|
||
0, 155, 0, 0, 0, 157, 0, 0, 569, 0,
|
||
0, 0, 0, 573, 0, 0, 0, 158, 0, 159,
|
||
0, 0, 27, 28, 626, 0, 160, 30, 161, 0,
|
||
0, 0, 585, 586, 0, 0, 162, 0, 0, 0,
|
||
0, 0, 0, 0, 36, 0, 38, 39, 0, 489,
|
||
642, 0, 0, 491, 492, 493, 647, 0, 41, 653,
|
||
0, 654, 0, 0, 0, 0, 0, 0, 0, 163,
|
||
45, 494, 495, 48, 0, 0, 51, 0, 0, 0,
|
||
496, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
678, 52, 680, 0, 0, 0, 55, 0, 56, 0,
|
||
57, 0, 0, 689, 0, 0, 0, 0, 0, 694,
|
||
695, 0, 0, 699, 0, 702, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 0, 0, 0, 0,
|
||
0, 282, 713, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 731, 0, 0, 0, 0, 0, 282, 0, 0,
|
||
-3, 1, 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,
|
||
757, 32, 33, 34, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 681, 336,
|
||
682, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
50, 51, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
779, 0, 704, 0, -330, -330, 52, 708, 53, 54,
|
||
784, 55, 0, 56, 0, 57, 709, 0, 0, 796,
|
||
0, 0, 0, 0, -330, -330, -330, -330, 0, -330,
|
||
-330, 0, 718, 0, 0, 256, 0, 0, 0, 0,
|
||
0, 0, 0, -300, -300, -300, -300, -300, -300, -300,
|
||
-300, -300, 0, 812, 0, 814, -300, -300, -300, -300,
|
||
-300, -300, -300, -300, 0, 823, 2, 0, 826, 828,
|
||
829, 0, 150, 151, 832, 0, 0, 835, 0, 0,
|
||
0, 0, 0, 152, 153, 154, 0, 155, 0, 0,
|
||
0, 157, 0, 0, 0, -330, 187, 298, 0, 0,
|
||
851, 754, 755, 158, 0, 159, 207, 208, 27, 28,
|
||
0, 0, 0, 30, 161, 0, 0, 0, 0, 0,
|
||
0, 474, 162, 0, 0, 0, 0, 0, 0, 489,
|
||
490, 0, 0, 491, 492, 493, 266, 0, 879, 0,
|
||
0, 270, 279, 0, 787, 884, 0, 0, 887, 0,
|
||
0, 494, 495, 0, 474, 163, 0, 780, 0, 48,
|
||
496, 782, 783, 896, 897, 0, 0, 0, 0, 0,
|
||
0, 0, 789, 0, 704, 908, 0, 0, 903, 797,
|
||
789, 0, 0, 0, 0, 804, 718, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 807, 0, 0, 0, 0,
|
||
0, 0, 0, 927, 0, 581, 0, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 942, 466, 0, 0,
|
||
0, 0, 0, 0, 0, 947, 948, 0, 472, 951,
|
||
0, 0, 953, 954, 0, 478, 0, 0, 0, 0,
|
||
0, 0, 479, 0, 0, 0, 0, 0, 960, 0,
|
||
480, 481, 0, 0, 0, 0, 853, 854, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 970, 0, 0, 718, 0, 0, 0, 0,
|
||
0, 0, 875, 0, 875, 535, 536, 537, 538, 539,
|
||
540, 541, 542, 543, 875, 0, 875, 0, 544, 545,
|
||
546, 547, 548, 549, 550, 551, 0, 0, 0, 0,
|
||
0, 0, 0, 2, 0, 0, 894, 0, 0, 150,
|
||
151, 898, 0, 0, 0, 0, 904, 529, 0, 797,
|
||
152, 153, 154, 900, 155, 0, 0, 0, 157, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
158, 567, 159, 270, 0, 27, 28, 0, 489, 490,
|
||
30, 161, 491, 492, 493, 0, 0, 0, 0, 162,
|
||
0, 0, 943, 0, 0, 946, 0, 0, 0, 0,
|
||
494, 495, 950, 588, 590, 0, 0, 594, 0, 496,
|
||
0, 41, 0, 0, 595, 0, 0, 0, 596, 0,
|
||
0, 0, 163, 597, 0, 0, 48, 598, 0, 0,
|
||
0, 599, 0, 0, 966, 600, 0, 0, 601, 0,
|
||
0, 0, 602, 0, 0, 945, 603, 0, 0, 0,
|
||
0, 0, 0, 605, 811, 0, 497, 498, 499, 500,
|
||
501, 502, 503, 504, 505, 0, 0, 0, 0, 0,
|
||
0, 0, 987, 988, 0, 0, 0, 0, 489, 490,
|
||
0, 0, 491, 492, 493, 0, 0, 0, 0, 0,
|
||
0, 607, 0, 608, 0, 0, 609, 0, 0, 610,
|
||
494, 495, 0, 428, 611, 0, 0, 0, 0, 496,
|
||
614, 0, 0, 0, 0, 0, 0, 615, 616, 617,
|
||
618, 619, 620, 621, 0, 0, 0, 0, -332, -332,
|
||
429, 623, 0, 0, 624, 0, 0, 0, 0, 0,
|
||
625, 0, 0, 0, 0, 0, 0, 0, -332, -332,
|
||
-332, -332, 0, -332, -332, 0, 497, 498, 499, 500,
|
||
501, 502, 503, 504, 505, 0, 0, -302, -302, -302,
|
||
-302, -302, -302, -302, -302, -302, 0, 0, 0, 0,
|
||
-302, -302, -302, -302, -302, -302, -302, -302, 0, 0,
|
||
0, 0, 0, 0, 0, 661, 662, 663, 664, 665,
|
||
666, 667, 668, 669, 670, 671, 672, 673, 674, 675,
|
||
676, 677, -615, -615, -615, 0, 0, 2, 0, -332,
|
||
0, 298, 0, 150, 151, 0, 0, 0, 690, 0,
|
||
0, 0, 0, 0, 152, 153, 154, 0, 155, 0,
|
||
0, 0, 157, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 158, 0, 159, 0, 0, 27,
|
||
28, 0, 0, 0, 30, 161, 0, 0, 0, 722,
|
||
0, 727, 0, 162, 0, 0, 734, 0, 299, 302,
|
||
0, 310, 0, 314, 0, 735, 319, 0, 323, 0,
|
||
327, 0, 0, 0, 334, 41, 337, 0, 590, 0,
|
||
351, 0, 0, 0, 386, 389, 163, 0, 0, 396,
|
||
48, 401, 0, 0, 407, 0, 0, 0, 0, 0,
|
||
0, 489, 490, 0, 0, 491, 492, 493, 427, 431,
|
||
0, 437, 0, 751, 0, 0, 0, 0, 0, 0,
|
||
0, 756, 930, 494, 495, 0, 0, 0, 0, 762,
|
||
0, 0, 496, 0, 767, 535, 536, 537, 538, 539,
|
||
540, 541, 542, 543, 0, 0, 0, 0, 544, 545,
|
||
546, 547, 548, 549, 550, 551, 0, 0, 0, 0,
|
||
299, 302, 310, 314, 319, 323, 327, 0, 334, 337,
|
||
0, 351, 386, 389, 0, 396, 0, 401, 407, 497,
|
||
498, 499, 500, 501, 502, 503, 504, 505, 0, 0,
|
||
427, 431, 437, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 801, 0, 722, 0, 0, 299, 302, 310, 314,
|
||
319, 323, 327, 0, 334, 337, 0, 351, 386, 389,
|
||
0, 396, 401, 407, 0, 0, 427, 431, 437, 0,
|
||
0, 0, 590, 0, 398, 0, 0, 0, 824, 0,
|
||
0, 0, 0, 0, 831, 0, 0, 0, 0, 0,
|
||
836, 351, 386, 0, 401, 431, 0, 838, 0, -335,
|
||
-335, 399, 842, 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, 722, 0, 727, 0, 0, 0, -284, -284,
|
||
-284, -284, -284, -284, -284, -284, -284, 0, 0, 0,
|
||
0, -284, -284, -284, -284, -284, -284, -284, -284, 0,
|
||
0, 0, 0, 0, 0, 891, 0, 0, 0, 0,
|
||
893, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 400, 0, 0, 910,
|
||
-335, 0, 298, 0, 0, 0, 0, 0, -2, 287,
|
||
327, -26, -26, 2, 3, 4, 5, 0, 6, 7,
|
||
8, 9, 10, 0, 0, 0, 928, 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, 957, 0, 0, 32,
|
||
33, 34, 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, 50, 51,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 52, 0, 53, 54, 0, 55,
|
||
0, 56, 447, 57, -106, -106, 2, 3, 4, 5,
|
||
0, 6, 7, 448, 9, 10, -113, -113, -113, -113,
|
||
11, 12, 13, 14, 15, 16, 449, 450, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, -113,
|
||
-113, -113, -113, 23, 24, 25, 26, -113, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, -113, -113, -113, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 386, 0,
|
||
0, 401, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 447, 57, -106, -106, 2,
|
||
3, 4, 5, 0, 6, 7, 448, 9, 10, 0,
|
||
0, -523, 0, 11, 12, 13, 14, 15, 16, 449,
|
||
450, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, -523, -523, -523, 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, 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, 50, 51, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 431, 0, 0, 0,
|
||
52, 0, 53, 54, 0, 55, 0, 56, 447, 57,
|
||
-106, -106, 2, 3, 4, 5, 0, 6, 7, 448,
|
||
9, 10, 0, 0, -524, 0, 11, 12, 13, 14,
|
||
15, 16, 449, 450, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, -524, -524, -524, 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, 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, 50, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 447, 57, -106, -106, 2, 3, 4, 5, 0,
|
||
6, 7, 448, 9, 10, 0, 0, -112, 0, 11,
|
||
12, 13, 14, 15, 16, 449, 450, 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, -112, -112, -112, 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,
|
||
50, 51, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 52, 0, 53, 54,
|
||
0, 55, 0, 56, 447, 57, -106, -106, 2, 3,
|
||
4, 5, 0, 6, 7, 448, 9, 10, -112, -112,
|
||
-112, -112, 11, 12, 13, 14, 15, 16, 449, 450,
|
||
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,
|
||
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, 50, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 447, 57, -106,
|
||
-106, 2, 3, 4, 5, 0, 6, 7, 448, 9,
|
||
10, 0, 0, -112, 0, 11, 12, 13, 14, 15,
|
||
16, 449, 450, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, -112, -112, -112, 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, 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, 50, 51, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 52, 0, 53, 54, 0, 55, 0, 56,
|
||
447, 57, -106, -106, 2, 3, 4, 5, 0, 6,
|
||
7, 448, 9, 10, 0, 0, -574, 0, 11, 12,
|
||
13, 14, 15, 16, 449, 450, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, -574, -574, 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, 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, 50,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 52, 0, 53, 54, 0,
|
||
55, 0, 56, 447, 57, -106, -106, 2, 3, 4,
|
||
5, 0, 6, 7, 448, 9, 10, 0, 0, -575,
|
||
0, 11, 12, 13, 14, 15, 16, 449, 450, 0,
|
||
0, 0, 19, 0, 0, 0, 20, 21, 0, 22,
|
||
-575, -575, 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, 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, 50, 51, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 52, 0,
|
||
53, 54, 0, 55, 0, 56, 447, 57, -106, -106,
|
||
2, 3, 4, 5, 0, 6, 7, 448, 9, 10,
|
||
0, 0, -112, 0, 11, 12, 13, 14, 15, 16,
|
||
449, 450, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, 0, -112, -112, 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, 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, 50, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 447,
|
||
57, -106, -106, 2, 3, 4, 5, 0, 6, 7,
|
||
448, 9, 10, 0, 0, -112, 0, 11, 12, 13,
|
||
14, 15, 16, 449, 450, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, -112, -112, 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, 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, 50, 51,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 52, 0, 53, 54, 0, 55,
|
||
0, 56, 447, 57, -106, -106, 2, 3, 4, 5,
|
||
0, 6, 7, 448, 9, 10, 0, 0, -112, -112,
|
||
11, 12, 13, 14, 15, 16, 449, 450, 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, 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, 50, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 447, 57, -106, -106, 2,
|
||
3, 4, 5, 0, 6, 7, 448, 9, 10, 0,
|
||
0, -112, 0, 11, 12, 13, 14, 15, 16, 449,
|
||
450, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, 0, 0, 0, -112, 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, 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, 50, 51, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
52, 0, 53, 54, 0, 55, 0, 56, 447, 57,
|
||
-106, -106, 2, 3, 4, 5, 0, 6, 7, 448,
|
||
9, 10, 0, 0, -112, 0, 11, 12, 13, 14,
|
||
15, 16, 449, 450, 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, -112, 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, 50, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 447, 57, -106, -106, 2, 3, 4, 5, 0,
|
||
6, 7, 448, 9, 10, 0, 0, -112, 0, 11,
|
||
12, 13, 14, 15, 16, 449, 450, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, -112, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 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,
|
||
50, 51, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 52, 0, 53, 54,
|
||
0, 55, 0, 56, 447, 57, -106, -106, 2, 3,
|
||
4, 5, 0, 6, 7, 448, 9, 10, 0, 0,
|
||
-112, 0, 11, 12, 13, 14, 15, 16, 449, 450,
|
||
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,
|
||
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, 50, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 2, 57, 4,
|
||
5, 0, 6, 150, 151, 9, 0, 0, 0, 0,
|
||
0, 11, 12, 13, 152, 153, 154, 0, 155, 0,
|
||
0, 156, 157, 0, 0, 0, 20, 21, 0, 0,
|
||
0, 0, 0, 0, 158, 0, 159, 0, 0, 27,
|
||
28, 0, 0, 160, 30, 161, 0, 0, 0, 0,
|
||
0, 0, 0, 162, 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, 163, 45, 0, 0,
|
||
48, 0, 0, 51, 272, 273, 0, 0, 0, 0,
|
||
0, 164, 165, 0, 0, 0, 0, 0, 52, 274,
|
||
0, 0, 0, 55, 0, 56, 2, 57, 4, 5,
|
||
0, 6, 150, 151, 9, 0, 0, 0, 0, 0,
|
||
11, 12, 13, 152, 153, 154, 0, 155, 0, 0,
|
||
156, 157, 0, 0, 0, 20, 21, 0, 0, 0,
|
||
0, 0, 0, 158, 0, 159, 0, 0, 27, 28,
|
||
0, 0, 160, 30, 161, 0, 0, 0, 0, 0,
|
||
0, 0, 162, 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, 163, 45, 0, 0, 48,
|
||
0, 0, 51, 589, 0, 0, 0, 0, 0, 0,
|
||
164, 165, 0, 0, 0, 0, 0, 52, 166, 0,
|
||
0, 0, 55, 0, 56, 2, 57, 4, 5, 0,
|
||
6, 150, 151, 9, 0, 0, 0, 0, 0, 11,
|
||
12, 13, 152, 153, 154, 0, 155, 0, 0, 156,
|
||
157, 0, 0, 0, 20, 21, 0, 0, 0, 0,
|
||
0, 0, 158, 0, 159, 0, 0, 27, 28, 0,
|
||
0, 160, 30, 161, 0, 0, 0, 0, 0, 0,
|
||
0, 162, 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, 163, 45, 0, 0, 48, 0,
|
||
0, 51, 0, 0, 0, 0, 0, 0, 0, 164,
|
||
165, 0, 0, 0, 0, 0, 52, 274, 0, 0,
|
||
717, 55, 0, 56, 2, 57, 4, 5, 0, 6,
|
||
150, 151, 9, 0, 0, 0, 0, 0, 11, 12,
|
||
13, 152, 153, 154, 0, 155, 0, 0, 156, 157,
|
||
0, 0, 0, 20, 21, 0, 0, 0, 0, 0,
|
||
0, 158, 0, 159, 0, 0, 27, 28, 0, 0,
|
||
160, 30, 161, 0, 0, 0, 0, 0, 0, 0,
|
||
162, 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, 163, 45, 0, 0, 48, 0, 0,
|
||
51, 272, 0, 0, 0, 0, 0, 0, 164, 165,
|
||
0, 0, 0, 0, 0, 52, 274, 0, 0, 0,
|
||
55, 0, 56, 2, 57, 4, 5, 0, 6, 150,
|
||
151, 9, 0, 0, 0, 0, 0, 11, 12, 13,
|
||
152, 153, 154, 0, 155, 0, 0, 156, 157, 0,
|
||
0, 0, 20, 21, 0, 0, 0, 0, 0, 0,
|
||
158, 0, 159, 0, 0, 27, 28, 0, 0, 160,
|
||
30, 161, 0, 0, 0, 0, 0, 0, 0, 162,
|
||
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, 163, 45, 0, 0, 48, 0, 0, 51,
|
||
0, 0, 0, 0, 0, 0, 0, 164, 165, 0,
|
||
0, 0, 0, 0, 52, 166, 0, 0, 0, 55,
|
||
0, 56, 2, 57, 4, 5, 0, 6, 150, 151,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 152,
|
||
153, 154, 0, 155, 0, 0, 156, 157, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 158,
|
||
0, 159, 0, 0, 27, 28, 0, 0, 160, 30,
|
||
161, 0, 0, 0, 0, 0, 0, 0, 162, 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, 163, 45, 0, 0, 48, 0, 0, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 164, 165, 0, 0,
|
||
0, 0, 0, 52, 269, 0, 0, 0, 55, 0,
|
||
56, 2, 57, 4, 5, 0, 6, 150, 151, 9,
|
||
0, 0, 0, 0, 0, 11, 12, 13, 152, 153,
|
||
154, 0, 155, 0, 0, 156, 157, 0, 0, 0,
|
||
20, 21, 0, 0, 0, 0, 0, 0, 158, 0,
|
||
159, 0, 0, 27, 28, 0, 0, 160, 30, 161,
|
||
0, 0, 0, 0, 0, 0, 0, 162, 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,
|
||
163, 45, 0, 0, 48, 0, 0, 51, 0, 0,
|
||
0, 0, 0, 0, 0, 164, 165, 0, 0, 0,
|
||
0, 0, 52, 726, 0, 0, 0, 55, 0, 56,
|
||
2, 57, 4, 5, 0, 6, 150, 151, 9, 0,
|
||
0, 0, 0, 0, 11, 12, 13, 152, 153, 154,
|
||
0, 155, 0, 0, 156, 157, 0, 0, 0, 20,
|
||
21, 0, 0, 0, 0, 0, 0, 158, 0, 159,
|
||
0, 0, 27, 28, 0, 0, 160, 30, 161, 0,
|
||
0, 0, 0, 0, 0, 0, 162, 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, 163,
|
||
45, 0, 0, 48, 0, 0, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 164, 165, 0, 0, 0, 0,
|
||
0, 52, 274, 0, 0, 0, 55, 0, 56, 2,
|
||
57, 4, 354, 0, 355, 150, 151, 9, 0, 0,
|
||
0, 0, 0, 11, 12, 13, 152, 153, 154, 0,
|
||
155, 0, 0, 0, 157, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 158, 0, 159, 0,
|
||
0, 27, 28, 0, 0, 0, 30, 161, 0, 0,
|
||
0, 0, 0, 0, 321, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, -322,
|
||
-322, 322, 0, 0, 0, 0, 0, 0, 163, 45,
|
||
0, 0, 48, 0, 0, 0, 0, 0, 0, -322,
|
||
-322, -322, -322, 0, -322, -322, 0, 0, 0, 0,
|
||
52, 0, 0, 0, 393, 267, 0, 56, -269, -269,
|
||
-269, -269, -269, -269, -269, -269, -269, 0, 0, 0,
|
||
0, -269, -269, -269, -269, -269, -269, -269, -269, -333,
|
||
-333, 394, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, -333,
|
||
-333, -333, -333, 0, -333, -333, 0, 0, 0, 0,
|
||
-322, 0, 298, 0, 404, 0, 0, 0, -280, -280,
|
||
-280, -280, -280, -280, -280, -280, -280, 0, 0, 0,
|
||
0, -280, -280, -280, -280, -280, -280, -280, -280, -336,
|
||
-336, 405, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, -336,
|
||
-336, -336, -336, 0, -336, -336, 0, 0, 0, 0,
|
||
-333, 0, 298, 0, 428, 0, 0, 0, -287, -287,
|
||
-287, -287, -287, -287, -287, -287, -287, 0, 0, 0,
|
||
0, -287, -287, -287, -287, -287, -287, -287, -287, -332,
|
||
-332, 429, 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,
|
||
-336, 0, 298, 0, 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, 150, 151, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 152, 153, 154, 0,
|
||
155, 0, 0, 0, 157, 0, 0, 0, 0, 0,
|
||
-332, 0, 298, 2, 0, 0, 158, 0, 159, 150,
|
||
151, 27, 28, 0, 0, 0, 30, 161, 0, 0,
|
||
152, 153, 154, 0, 155, 162, 0, 0, 157, 0,
|
||
0, 0, 0, 0, 0, 38, 39, 0, 0, 0,
|
||
158, 0, 159, 0, 0, 27, 28, 41, 0, 0,
|
||
30, 161, 0, 0, 0, 0, 0, 0, 163, 162,
|
||
0, 0, 48, 0, 0, 2, 0, 0, 0, 0,
|
||
0, 150, 151, 0, 0, 0, 0, 0, 0, 0,
|
||
52, 41, 152, 153, 154, 0, 155, 0, 0, 0,
|
||
157, 0, 163, 0, 0, 0, 48, 0, 0, 2,
|
||
559, 0, 158, 0, 159, 150, 151, 27, 28, 0,
|
||
0, 0, 30, 161, 0, 0, 152, 153, 154, 0,
|
||
155, 162, 0, 0, 157, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 158, 0, 159, 0,
|
||
0, 27, 28, 41, 0, 0, 30, 161, 0, 0,
|
||
0, 0, 0, 0, 163, 162, 0, 0, 48, 0,
|
||
0, 2, 803, 0, 0, 0, 0, 150, 151, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 152, 153,
|
||
154, 0, 155, 0, 0, 0, 157, 0, 163, 0,
|
||
0, 0, 48, 0, 0, 2, 872, 0, 158, 0,
|
||
159, 150, 151, 27, 28, 0, 0, 0, 30, 161,
|
||
0, 0, 152, 153, 154, 0, 155, 162, 0, 0,
|
||
157, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 158, 0, 159, 0, 0, 27, 28, 41,
|
||
0, 0, 30, 161, 0, 0, 0, 0, 0, 0,
|
||
163, 162, 0, 0, 48, 0, 0, 0, 949, 0,
|
||
0, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 311, 41, 315, 316, 0, 320, 0, 324,
|
||
0, 328, 0, 331, 163, 335, 0, 338, 48, 345,
|
||
0, 352, 378, 384, 0, 0, 0, 392, 0, 0,
|
||
397, 0, 0, 403, 0, 408, 0, 0, 0, 0,
|
||
535, 536, 537, 538, 539, 540, 541, 542, 543, 0,
|
||
432, 0, 438, 544, 545, 546, 547, 548, 549, 550,
|
||
551, 535, 536, 537, 538, 539, 540, 541, 542, 543,
|
||
0, 0, 0, 0, 544, 545, 546, 547, 548, 549,
|
||
550, 551, 0, 0, 0, 0, 0, 0, 937, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 535, 536, 537,
|
||
538, 539, 540, 541, 542, 543, 0, 0, 0, 964,
|
||
544, 545, 546, 547, 548, 549, 550, 551, 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, 976
|
||
};
|
||
|
||
static const yytype_int16 yycheck[] =
|
||
{
|
||
0, 166, 581, 56, 147, 148, 563, 456, 563, 533,
|
||
474, 655, 563, 444, 445, 705, 464, 465, 467, 592,
|
||
710, 9, 9, 9, 9, 9, 26, 9, 36, 36,
|
||
9, 937, 36, 36, 9, 35, 120, 52, 9, 0,
|
||
9, 36, 126, 650, 17, 120, 36, 47, 36, 513,
|
||
36, 126, 36, 9, 518, 528, 9, 57, 964, 59,
|
||
524, 36, 71, 72, 9, 36, 9, 67, 9, 69,
|
||
976, 71, 72, 46, 74, 0, 76, 684, 78, 9,
|
||
80, 9, 82, 36, 84, 121, 86, 36, 88, 89,
|
||
90, 36, 36, 36, 94, 36, 560, 97, 59, 9,
|
||
100, 26, 102, 10, 269, 120, 36, 116, 36, 274,
|
||
35, 9, 36, 36, 121, 3, 4, 117, 121, 119,
|
||
105, 125, 47, 127, 127, 36, 36, 9, 128, 19,
|
||
118, 119, 57, 121, 59, 135, 118, 119, 36, 127,
|
||
127, 127, 67, 127, 69, 127, 71, 72, 127, 74,
|
||
121, 76, 127, 78, 36, 80, 127, 82, 127, 84,
|
||
717, 86, 717, 88, 89, 90, 717, 3, 4, 94,
|
||
860, 127, 97, 746, 127, 100, 0, 102, 127, 0,
|
||
0, 705, 127, 127, 127, 36, 127, 9, 118, 119,
|
||
36, 639, 117, 125, 119, 36, 840, 127, 121, 630,
|
||
17, 125, 26, 128, 127, 26, 206, 36, 118, 119,
|
||
135, 121, 717, 0, 36, 121, 127, 127, 36, 9,
|
||
118, 119, 36, 47, 41, 17, 47, 36, 52, 127,
|
||
118, 119, 811, 127, 9, 59, 118, 119, 59, 239,
|
||
0, 36, 36, 67, 9, 127, 36, 36, 697, 806,
|
||
36, 806, 36, 0, 36, 806, 125, 402, 127, 732,
|
||
84, 36, 86, 36, 88, 89, 118, 119, 89, 34,
|
||
35, 36, 59, 418, 274, 121, 127, 750, 36, 26,
|
||
121, 127, 118, 119, 125, 36, 127, 36, 761, 54,
|
||
55, 56, 57, 117, 59, 60, 118, 119, 127, 59,
|
||
47, 806, 775, 52, 128, 127, 125, 128, 52, 127,
|
||
58, 135, 59, 127, 135, 105, 780, 51, 127, 783,
|
||
128, 900, 118, 119, 3, 789, 121, 135, 17, 793,
|
||
125, 121, 127, 127, 19, 121, 125, 109, 127, 125,
|
||
804, 127, 89, 127, 121, 127, 25, 121, 121, 274,
|
||
39, 40, 125, 122, 127, 34, 121, 830, 937, 832,
|
||
125, 68, 127, 111, 112, 113, 36, 118, 119, 120,
|
||
121, 120, 121, 0, 118, 119, 120, 36, 604, 17,
|
||
606, 128, 120, 962, 122, 964, 612, 120, 135, 853,
|
||
854, 124, 856, 15, 16, 17, 18, 976, 862, 26,
|
||
38, 39, 402, 120, 124, 878, 85, 124, 87, 882,
|
||
0, 875, 120, 92, 887, 888, 124, 96, 418, 815,
|
||
47, 58, 101, 896, 897, 104, 105, 106, 107, 825,
|
||
36, 827, 59, 36, 898, 114, 26, 116, 120, 118,
|
||
904, 36, 124, 36, 917, 124, 118, 119, 921, 121,
|
||
274, 3, 4, 274, 927, 36, 456, 47, 36, 138,
|
||
118, 119, 89, 121, 36, 3, 4, 467, 120, 59,
|
||
122, 9, 109, 110, 111, 112, 113, 402, 120, 943,
|
||
122, 36, 946, 17, 17, 18, 950, 960, 484, 485,
|
||
486, 487, 488, 418, 3, 4, 34, 35, 36, 89,
|
||
36, 128, 966, 17, 38, 39, 40, 36, 135, 652,
|
||
121, 507, 15, 16, 17, 18, 54, 55, 56, 57,
|
||
120, 59, 60, 19, 38, 39, 40, 274, 528, 582,
|
||
128, 456, 118, 119, 120, 118, 119, 120, 128, 121,
|
||
3, 4, 467, 38, 39, 135, 9, 118, 119, 120,
|
||
118, 119, 120, 120, 9, 117, 118, 119, 121, 0,
|
||
9, 726, 118, 119, 120, 58, 566, 105, 118, 119,
|
||
120, 34, 35, 36, 120, 120, 122, 122, 127, 34,
|
||
35, 36, 9, 121, 19, 26, 0, 125, 120, 127,
|
||
122, 54, 55, 56, 57, 120, 59, 60, 120, 54,
|
||
55, 56, 57, 528, 59, 60, 47, 73, 120, 120,
|
||
122, 122, 26, 120, 9, 122, 121, 122, 59, 121,
|
||
86, 87, 88, 89, 90, 91, 92, 93, 64, 65,
|
||
121, 120, 456, 47, 47, 456, 122, 127, 120, 120,
|
||
98, 566, 105, 467, 122, 59, 467, 274, 89, 17,
|
||
105, 83, 122, 120, 122, 9, 66, 122, 121, 17,
|
||
122, 122, 125, 59, 127, 89, 121, 89, 89, 89,
|
||
125, 89, 127, 89, 89, 89, 236, 89, 89, 148,
|
||
34, 35, 36, 89, 274, 685, 89, 128, 89, 89,
|
||
89, 239, 685, 711, 135, 238, 962, 697, 513, 857,
|
||
54, 55, 56, 57, 528, 59, 60, 528, 9, 456,
|
||
0, 464, 980, 445, 128, 808, 566, 530, 645, 645,
|
||
467, 135, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 732, 34, 35, 36, 26, -1, -1, 563,
|
||
9, -1, 566, -1, -1, 566, -1, -1, -1, -1,
|
||
750, 105, -1, 54, 55, 56, 57, 47, 59, 60,
|
||
-1, 761, -1, 816, -1, 34, 35, 121, -1, 59,
|
||
-1, 125, 697, 127, -1, 775, -1, -1, -1, -1,
|
||
-1, 528, -1, -1, -1, 54, 55, 56, 57, -1,
|
||
59, 60, -1, -1, -1, -1, -1, -1, -1, 89,
|
||
-1, -1, -1, -1, 105, -1, -1, 732, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 9, -1, 566,
|
||
121, -1, -1, -1, 125, 750, 127, -1, -1, 456,
|
||
830, -1, 832, 274, -1, -1, 761, -1, 128, -1,
|
||
467, -1, 34, 35, 36, 135, -1, -1, -1, -1,
|
||
775, -1, -1, -1, -1, 0, 125, -1, 127, -1,
|
||
274, -1, 54, 55, 56, 57, 456, 59, 60, -1,
|
||
-1, -1, 0, 697, -1, -1, 697, 467, 878, -1,
|
||
-1, 26, 882, -1, -1, -1, -1, 887, 888, -1,
|
||
-1, -1, -1, 717, -1, -1, 896, 897, 26, -1,
|
||
-1, 528, 47, -1, -1, 830, -1, 832, 732, -1,
|
||
-1, 732, -1, -1, 59, -1, -1, 917, -1, 47,
|
||
-1, 921, -1, -1, -1, -1, 750, 927, -1, 750,
|
||
-1, 59, -1, 125, -1, 127, -1, 761, 528, 566,
|
||
761, -1, -1, -1, 89, -1, -1, -1, -1, -1,
|
||
697, 775, -1, 878, 775, -1, -1, 882, -1, -1,
|
||
960, 89, 887, 888, -1, -1, -1, -1, 968, -1,
|
||
-1, 896, 897, 9, -1, -1, 566, -1, -1, -1,
|
||
980, -1, 806, 128, 274, 732, -1, -1, -1, -1,
|
||
135, -1, 917, -1, -1, -1, 921, -1, 34, 35,
|
||
128, -1, 927, 750, -1, -1, 830, 135, 832, 830,
|
||
-1, 832, -1, -1, 761, 456, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, -1, 467, -1, 775, -1,
|
||
-1, -1, -1, -1, -1, 960, -1, -1, -1, -1,
|
||
-1, -1, 456, 968, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 467, 878, 980, -1, 878, 882, -1,
|
||
-1, 882, -1, 887, 888, -1, 887, 888, -1, -1,
|
||
697, -1, 896, 897, -1, 896, 897, -1, -1, -1,
|
||
-1, -1, -1, 830, -1, 832, -1, 528, -1, 125,
|
||
-1, 127, -1, 917, -1, -1, 917, 921, -1, -1,
|
||
921, -1, -1, 927, -1, 732, 927, 697, -1, -1,
|
||
-1, -1, -1, -1, 528, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 750, -1, 566, -1, -1, -1, 274,
|
||
-1, 878, -1, -1, 761, 882, 960, -1, -1, 960,
|
||
887, 888, 732, -1, 968, -1, 274, 968, 775, 896,
|
||
897, -1, 566, -1, -1, -1, 980, -1, -1, 980,
|
||
750, 0, -1, -1, -1, -1, 456, -1, -1, -1,
|
||
917, 761, -1, -1, 921, 5, -1, 467, -1, -1,
|
||
927, 11, 12, -1, -1, 775, -1, 26, -1, 0,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, 9,
|
||
30, -1, -1, 830, -1, 832, -1, -1, 47, -1,
|
||
-1, -1, 42, 960, 44, 26, -1, 47, 48, -1,
|
||
59, 968, 52, 53, 34, 35, 36, -1, -1, -1,
|
||
-1, 61, -1, 980, -1, -1, 47, -1, 528, -1,
|
||
830, -1, 832, -1, 54, 55, 56, 57, 59, 59,
|
||
60, 878, -1, 83, -1, 882, 697, -1, -1, -1,
|
||
887, 888, -1, -1, 94, -1, -1, -1, 98, 896,
|
||
897, -1, -1, -1, -1, -1, 566, -1, -1, -1,
|
||
-1, -1, -1, 697, -1, -1, -1, -1, 878, 128,
|
||
917, 732, 882, 123, 921, -1, 135, 887, 888, -1,
|
||
927, -1, -1, -1, 9, -1, 896, 897, -1, 750,
|
||
-1, 456, -1, -1, -1, 125, -1, 128, 732, -1,
|
||
761, -1, 467, -1, 135, -1, -1, 917, 456, 34,
|
||
35, 921, -1, 960, 775, -1, 750, 927, -1, 467,
|
||
-1, 968, 34, 35, -1, -1, -1, 761, -1, 54,
|
||
55, 56, 57, 980, 59, 60, -1, -1, -1, 34,
|
||
35, 775, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
960, -1, -1, -1, -1, -1, -1, 0, 968, 54,
|
||
55, 56, 57, 528, 59, 60, -1, -1, -1, 830,
|
||
980, 832, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
528, -1, -1, 26, -1, -1, -1, 697, -1, -1,
|
||
-1, -1, -1, 105, -1, -1, 830, -1, 832, -1,
|
||
125, 566, 127, -1, 47, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 125, -1, 274, 59, 878, 566, -1,
|
||
-1, 882, 732, -1, 9, -1, 887, 888, -1, -1,
|
||
125, 0, -1, -1, -1, 896, 897, -1, -1, -1,
|
||
750, -1, -1, 274, 878, -1, -1, -1, 882, 34,
|
||
35, 761, -1, 887, 888, 9, 917, 26, -1, -1,
|
||
921, -1, 896, 897, -1, 775, 927, -1, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, 47, -1,
|
||
34, 35, 36, 917, -1, 128, -1, 921, -1, -1,
|
||
59, -1, 135, 927, -1, -1, -1, -1, -1, 960,
|
||
54, 55, 56, 57, -1, 59, 60, 968, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 980,
|
||
830, -1, 832, -1, -1, -1, 960, -1, -1, -1,
|
||
-1, -1, 697, -1, 968, -1, 0, -1, -1, -1,
|
||
125, -1, 127, -1, -1, -1, 980, -1, -1, 697,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 128,
|
||
-1, -1, 26, 31, 32, 33, 135, 732, 878, -1,
|
||
-1, 125, 882, 9, -1, -1, -1, 887, 888, -1,
|
||
-1, 49, 50, 47, 732, 750, 896, 897, -1, -1,
|
||
58, -1, -1, -1, -1, 59, 761, 456, 34, 35,
|
||
36, -1, 750, -1, -1, -1, -1, 917, 467, -1,
|
||
775, 921, -1, 761, -1, -1, -1, 927, 54, 55,
|
||
56, 57, -1, 59, 60, 456, -1, 775, -1, 9,
|
||
-1, 274, -1, -1, -1, -1, 467, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, -1, 0, -1, -1,
|
||
960, -1, -1, -1, 34, 35, 36, -1, 968, -1,
|
||
-1, -1, -1, -1, 128, 830, -1, 832, -1, 528,
|
||
980, 135, -1, 26, 54, 55, 56, 57, -1, 59,
|
||
60, -1, 830, -1, 832, 121, -1, -1, -1, 125,
|
||
-1, 127, -1, -1, 47, -1, -1, 528, -1, -1,
|
||
-1, -1, -1, -1, -1, 274, 59, 566, -1, -1,
|
||
-1, -1, -1, 878, -1, -1, -1, 882, -1, -1,
|
||
-1, -1, 887, 888, 0, 105, -1, -1, -1, -1,
|
||
878, 896, 897, -1, 882, 566, -1, -1, -1, 887,
|
||
888, 121, -1, -1, -1, 125, -1, 127, 896, 897,
|
||
26, 9, 917, -1, -1, -1, 921, -1, -1, -1,
|
||
-1, -1, 927, -1, -1, -1, -1, -1, -1, 917,
|
||
-1, 47, -1, 921, -1, 128, 34, 35, 36, 927,
|
||
-1, -1, 135, 59, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 960, 54, 55, 56, 57,
|
||
-1, 59, 60, 968, -1, -1, -1, -1, -1, -1,
|
||
274, -1, 960, 456, -1, 980, -1, -1, -1, -1,
|
||
968, -1, -1, -1, 467, -1, -1, -1, -1, -1,
|
||
-1, 9, 980, 0, -1, -1, -1, -1, 697, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 105, -1, 0,
|
||
-1, -1, 128, -1, -1, -1, 34, 35, 36, 135,
|
||
-1, -1, -1, 121, -1, -1, 697, 125, -1, 127,
|
||
-1, -1, -1, 732, -1, 26, 54, 55, 56, 57,
|
||
-1, 59, 60, -1, -1, 528, 9, 456, -1, -1,
|
||
-1, 750, 59, -1, -1, -1, 47, -1, 467, -1,
|
||
-1, 732, 761, -1, -1, -1, -1, -1, 59, -1,
|
||
-1, 34, 35, 36, -1, -1, 775, -1, -1, 750,
|
||
-1, 274, -1, 566, -1, -1, -1, -1, -1, -1,
|
||
761, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, -1, -1, 775, -1, -1, 125, -1, 127,
|
||
-1, -1, -1, 0, -1, -1, -1, -1, -1, 528,
|
||
9, 128, -1, -1, -1, -1, -1, -1, 135, -1,
|
||
-1, 830, -1, 832, -1, -1, -1, 128, -1, 26,
|
||
-1, -1, -1, -1, 135, 34, 35, 36, -1, -1,
|
||
-1, -1, 456, -1, -1, 9, -1, 566, 274, 830,
|
||
47, 832, 125, 467, 127, 54, 55, 56, 57, -1,
|
||
59, 60, 59, -1, -1, -1, -1, -1, -1, 878,
|
||
34, 35, 36, 882, -1, -1, -1, -1, 887, 888,
|
||
-1, -1, -1, -1, -1, -1, -1, 896, 897, -1,
|
||
54, 55, 56, 57, -1, 59, 60, 878, -1, -1,
|
||
-1, 882, -1, -1, 697, -1, 887, 888, 917, -1,
|
||
-1, -1, 921, -1, 528, 896, 897, -1, 927, -1,
|
||
-1, -1, 0, -1, -1, -1, 125, -1, 127, -1,
|
||
-1, 128, -1, -1, -1, -1, 917, -1, 135, 732,
|
||
921, -1, -1, -1, 0, -1, 927, -1, 26, -1,
|
||
9, 960, 566, 456, -1, -1, -1, 750, -1, 968,
|
||
-1, 125, -1, 127, 467, -1, -1, -1, 761, 47,
|
||
-1, 980, -1, 274, -1, 34, 35, 36, 697, 960,
|
||
-1, 59, 775, -1, -1, -1, -1, 968, -1, -1,
|
||
-1, -1, -1, -1, -1, 54, 55, 56, 57, 980,
|
||
59, 60, -1, 59, 73, 74, 75, 76, 77, 78,
|
||
79, 80, 81, 732, -1, -1, -1, 86, 87, 88,
|
||
89, 90, 91, 92, 93, 528, -1, -1, -1, -1,
|
||
456, 750, -1, -1, -1, -1, -1, 830, -1, 832,
|
||
-1, 467, 761, -1, -1, -1, -1, -1, -1, -1,
|
||
128, -1, -1, -1, -1, -1, 775, 135, 127, -1,
|
||
-1, -1, -1, 566, -1, -1, 125, -1, 127, -1,
|
||
-1, -1, 128, -1, -1, -1, -1, 274, -1, 135,
|
||
-1, -1, -1, 697, 0, 878, -1, -1, -1, 882,
|
||
-1, -1, -1, -1, 887, 888, -1, -1, -1, -1,
|
||
-1, -1, 528, 896, 897, -1, 9, -1, -1, -1,
|
||
-1, 830, -1, 832, -1, -1, -1, -1, 732, -1,
|
||
-1, -1, -1, -1, 917, -1, -1, -1, 921, -1,
|
||
-1, 34, 35, 36, 927, -1, 750, -1, -1, 456,
|
||
566, -1, -1, 59, -1, -1, -1, 761, -1, -1,
|
||
467, 54, 55, 56, 57, 456, 59, 60, -1, 878,
|
||
-1, 775, -1, 882, -1, -1, 467, 960, 887, 888,
|
||
-1, -1, -1, -1, -1, 968, -1, 896, 897, -1,
|
||
-1, -1, -1, 0, -1, -1, -1, 980, -1, -1,
|
||
-1, -1, -1, -1, 697, -1, 274, -1, 917, -1,
|
||
-1, -1, 921, -1, -1, -1, -1, -1, 927, 27,
|
||
28, 528, 128, 31, 32, 33, 830, -1, 832, 135,
|
||
-1, -1, 125, -1, 127, -1, -1, 528, -1, 732,
|
||
-1, 49, 50, -1, -1, -1, -1, -1, -1, -1,
|
||
58, 960, 59, -1, -1, -1, -1, 750, -1, 968,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 761, 456,
|
||
-1, 980, -1, -1, 878, 566, -1, -1, 882, -1,
|
||
467, 697, 775, 887, 888, -1, -1, -1, -1, -1,
|
||
-1, -1, 896, 897, -1, -1, -1, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, -1, -1, -1, -1,
|
||
-1, -1, 120, 917, -1, -1, 732, 921, -1, -1,
|
||
-1, 128, -1, 927, -1, -1, -1, -1, 135, -1,
|
||
-1, -1, -1, -1, 750, -1, -1, 830, -1, 832,
|
||
-1, 528, -1, -1, 5, 761, -1, -1, -1, -1,
|
||
11, 12, -1, -1, -1, -1, 960, -1, -1, 775,
|
||
-1, 22, 23, 24, 968, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, -1, -1, -1, 980, -1, -1, 566,
|
||
-1, 42, -1, 44, -1, 878, 47, 48, 456, 882,
|
||
697, 52, 53, -1, 887, 888, -1, -1, -1, 467,
|
||
61, -1, -1, 896, 897, -1, 697, -1, -1, -1,
|
||
456, -1, -1, -1, 830, -1, 832, -1, -1, -1,
|
||
-1, 467, 83, -1, 917, 732, -1, -1, 921, -1,
|
||
-1, -1, -1, 94, 927, -1, -1, 98, -1, -1,
|
||
-1, 732, -1, 750, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 761, -1, -1, 118, 119, 750,
|
||
528, -1, 878, -1, -1, -1, 882, 960, 775, -1,
|
||
761, 887, 888, -1, -1, 968, -1, -1, -1, -1,
|
||
896, 897, 528, -1, 775, -1, -1, 980, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 566, -1,
|
||
-1, 917, -1, -1, -1, 921, -1, -1, -1, -1,
|
||
697, 927, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 830, -1, 832, -1, -1, -1, -1,
|
||
5, -1, -1, -1, -1, -1, 11, 12, -1, 830,
|
||
-1, 832, -1, -1, 960, 732, -1, 22, 23, 24,
|
||
456, 26, 968, -1, -1, 30, -1, -1, -1, -1,
|
||
-1, 467, -1, 750, 980, -1, -1, 42, -1, 44,
|
||
-1, 878, 47, 48, 761, 882, -1, 52, 53, -1,
|
||
887, 888, -1, -1, -1, -1, 61, 878, 775, 896,
|
||
897, 882, -1, -1, -1, -1, 887, 888, -1, -1,
|
||
-1, -1, -1, -1, -1, 896, 897, -1, 83, -1,
|
||
917, -1, -1, -1, 921, -1, -1, -1, -1, 94,
|
||
927, -1, 528, 98, -1, -1, 917, -1, -1, 697,
|
||
921, -1, -1, -1, -1, -1, 927, -1, -1, -1,
|
||
-1, -1, 117, 830, -1, 832, -1, -1, -1, 456,
|
||
-1, 697, -1, 960, -1, -1, -1, -1, -1, -1,
|
||
467, 968, -1, -1, 732, -1, -1, -1, -1, 960,
|
||
-1, -1, -1, 980, -1, -1, -1, 968, -1, -1,
|
||
-1, -1, 750, -1, -1, -1, 732, -1, -1, 980,
|
||
-1, 878, -1, 761, -1, 882, -1, -1, -1, 5,
|
||
887, 888, -1, -1, 750, 11, 12, 775, -1, 896,
|
||
897, -1, -1, -1, -1, 761, 22, 23, 24, -1,
|
||
26, 528, -1, -1, 30, -1, -1, -1, -1, 775,
|
||
917, -1, -1, -1, 921, -1, 42, -1, 44, -1,
|
||
927, 47, 48, -1, -1, -1, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, 830, -1, 832, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 960, -1, -1, -1, 83, -1, -1,
|
||
-1, 968, -1, -1, 830, -1, 832, -1, 94, -1,
|
||
-1, 697, 98, 980, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 0, 1, -1, -1, -1, -1,
|
||
878, 117, -1, -1, 882, -1, -1, -1, -1, 887,
|
||
888, -1, -1, -1, -1, -1, 732, -1, 896, 897,
|
||
-1, -1, 878, -1, -1, -1, 882, -1, -1, -1,
|
||
-1, 887, 888, -1, 750, -1, -1, -1, -1, 917,
|
||
896, 897, -1, 921, -1, 761, -1, -1, -1, 927,
|
||
-1, -1, -1, 59, -1, -1, -1, -1, -1, 775,
|
||
-1, 917, -1, -1, -1, 921, -1, -1, -1, 27,
|
||
28, 927, -1, 31, 32, 33, -1, -1, -1, -1,
|
||
697, -1, 960, -1, -1, -1, -1, -1, -1, -1,
|
||
968, 49, 50, -1, -1, -1, -1, -1, -1, -1,
|
||
58, -1, 980, -1, 960, -1, -1, -1, -1, -1,
|
||
-1, -1, 968, -1, 830, 732, 832, -1, -1, -1,
|
||
-1, -1, -1, -1, 980, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 750, -1, -1, -1, -1, 144, -1,
|
||
-1, -1, -1, -1, 761, -1, -1, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, -1, -1, 775, -1,
|
||
118, 119, 878, 14, 15, 16, 882, -1, -1, -1,
|
||
-1, 887, 888, -1, -1, 26, -1, -1, -1, -1,
|
||
896, 897, -1, -1, -1, -1, -1, -1, -1, 40,
|
||
-1, 42, 43, -1, -1, 201, 47, 203, -1, -1,
|
||
-1, 917, -1, 209, -1, 921, 57, -1, -1, -1,
|
||
-1, 927, -1, 830, -1, 832, 67, -1, 69, -1,
|
||
71, 72, -1, 74, -1, 76, -1, 78, -1, 80,
|
||
-1, 82, -1, 84, 240, 86, -1, 88, 89, 90,
|
||
-1, -1, 248, 94, 960, 251, 97, -1, -1, 100,
|
||
-1, 102, 968, -1, -1, -1, -1, -1, -1, -1,
|
||
266, 878, -1, -1, 980, 882, 117, -1, 119, 5,
|
||
887, 888, -1, -1, -1, 11, 12, -1, -1, 896,
|
||
897, 287, -1, -1, -1, -1, 22, 23, 24, -1,
|
||
26, -1, -1, -1, 30, -1, 147, 148, -1, -1,
|
||
917, -1, -1, -1, 921, -1, 42, -1, 44, -1,
|
||
927, 47, 48, -1, -1, 166, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, 960, -1, -1, -1, 83, -1, -1,
|
||
-1, 968, -1, -1, -1, 206, -1, -1, 94, 210,
|
||
-1, -1, 98, 980, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
116, -1, -1, -1, -1, 121, 237, 238, 239, -1,
|
||
5, -1, 7, 8, -1, 10, 11, 12, 13, -1,
|
||
-1, -1, -1, 254, 19, 20, 21, 22, 23, 24,
|
||
-1, 26, -1, -1, -1, 30, -1, -1, 269, -1,
|
||
-1, -1, -1, 274, -1, -1, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, 440, -1, 51, 52, 53, -1,
|
||
-1, -1, 293, 294, -1, -1, 61, -1, -1, -1,
|
||
-1, -1, -1, -1, 69, -1, 71, 72, -1, 27,
|
||
466, -1, -1, 31, 32, 33, 472, -1, 83, 475,
|
||
-1, 477, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, 49, 50, 98, -1, -1, 101, -1, -1, -1,
|
||
58, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
506, 116, 508, -1, -1, -1, 121, -1, 123, -1,
|
||
125, -1, -1, 519, -1, -1, -1, -1, -1, 525,
|
||
526, -1, -1, 529, -1, 531, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, -1, -1, -1, -1,
|
||
-1, 402, 558, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 567, -1, -1, -1, -1, -1, 418, -1, -1,
|
||
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,
|
||
636, 61, 62, 63, -1, -1, -1, 67, -1, 69,
|
||
70, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, 84, 85, -1, -1, 509, 9,
|
||
511, -1, -1, -1, 94, 95, 96, 97, 98, 99,
|
||
100, 101, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
686, -1, 533, -1, 34, 35, 116, 538, 118, 119,
|
||
696, 121, -1, 123, -1, 125, 547, -1, -1, 705,
|
||
-1, -1, -1, -1, 54, 55, 56, 57, -1, 59,
|
||
60, -1, 563, -1, -1, 566, -1, -1, -1, -1,
|
||
-1, -1, -1, 73, 74, 75, 76, 77, 78, 79,
|
||
80, 81, -1, 739, -1, 741, 86, 87, 88, 89,
|
||
90, 91, 92, 93, -1, 751, 5, -1, 754, 755,
|
||
756, -1, 11, 12, 760, -1, -1, 763, -1, -1,
|
||
-1, -1, -1, 22, 23, 24, -1, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 125, 10, 127, -1, -1,
|
||
786, 632, 633, 42, -1, 44, 20, 21, 47, 48,
|
||
-1, -1, -1, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, 652, 61, -1, -1, -1, -1, -1, -1, 27,
|
||
28, -1, -1, 31, 32, 33, 50, -1, 824, -1,
|
||
-1, 55, 56, -1, 83, 831, -1, -1, 834, -1,
|
||
-1, 49, 50, -1, 685, 94, -1, 688, -1, 98,
|
||
58, 692, 693, 849, 850, -1, -1, -1, -1, -1,
|
||
-1, -1, 703, -1, 705, 861, -1, -1, 117, 710,
|
||
711, -1, -1, -1, -1, 716, 717, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 726, -1, -1, -1, -1,
|
||
-1, -1, -1, 889, -1, 103, -1, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, 902, 131, -1, -1,
|
||
-1, -1, -1, -1, -1, 911, 912, -1, 142, 915,
|
||
-1, -1, 918, 919, -1, 149, -1, -1, -1, -1,
|
||
-1, -1, 156, -1, -1, -1, -1, -1, 934, -1,
|
||
164, 165, -1, -1, -1, -1, 787, 788, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 958, -1, -1, 806, -1, -1, -1, -1,
|
||
-1, -1, 813, -1, 815, 73, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 825, -1, 827, -1, 86, 87,
|
||
88, 89, 90, 91, 92, 93, -1, -1, -1, -1,
|
||
-1, -1, -1, 5, -1, -1, 847, -1, -1, 11,
|
||
12, 852, -1, -1, -1, -1, 857, 241, -1, 860,
|
||
22, 23, 24, 121, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
42, 265, 44, 267, -1, 47, 48, -1, 27, 28,
|
||
52, 53, 31, 32, 33, -1, -1, -1, -1, 61,
|
||
-1, -1, 903, -1, -1, 906, -1, -1, -1, -1,
|
||
49, 50, 913, 297, 298, -1, -1, 301, -1, 58,
|
||
-1, 83, -1, -1, 308, -1, -1, -1, 312, -1,
|
||
-1, -1, 94, 317, -1, -1, 98, 321, -1, -1,
|
||
-1, 325, -1, -1, 945, 329, -1, -1, 332, -1,
|
||
-1, -1, 336, -1, -1, 117, 340, -1, -1, -1,
|
||
-1, -1, -1, 347, 103, -1, 105, 106, 107, 108,
|
||
109, 110, 111, 112, 113, -1, -1, -1, -1, -1,
|
||
-1, -1, 983, 984, -1, -1, -1, -1, 27, 28,
|
||
-1, -1, 31, 32, 33, -1, -1, -1, -1, -1,
|
||
-1, 385, -1, 387, -1, -1, 390, -1, -1, 393,
|
||
49, 50, -1, 9, 398, -1, -1, -1, -1, 58,
|
||
404, -1, -1, -1, -1, -1, -1, 411, 412, 413,
|
||
414, 415, 416, 417, -1, -1, -1, -1, 34, 35,
|
||
36, 425, -1, -1, 428, -1, -1, -1, -1, -1,
|
||
434, -1, -1, -1, -1, -1, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, -1, 105, 106, 107, 108,
|
||
109, 110, 111, 112, 113, -1, -1, 73, 74, 75,
|
||
76, 77, 78, 79, 80, 81, -1, -1, -1, -1,
|
||
86, 87, 88, 89, 90, 91, 92, 93, -1, -1,
|
||
-1, -1, -1, -1, -1, 489, 490, 491, 492, 493,
|
||
494, 495, 496, 497, 498, 499, 500, 501, 502, 503,
|
||
504, 505, 118, 119, 120, -1, -1, 5, -1, 125,
|
||
-1, 127, -1, 11, 12, -1, -1, -1, 522, -1,
|
||
-1, -1, -1, -1, 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, 563,
|
||
-1, 565, -1, 61, -1, -1, 570, -1, 65, 66,
|
||
-1, 68, -1, 70, -1, 579, 73, -1, 75, -1,
|
||
77, -1, -1, -1, 81, 83, 83, -1, 592, -1,
|
||
87, -1, -1, -1, 91, 92, 94, -1, -1, 96,
|
||
98, 98, -1, -1, 101, -1, -1, -1, -1, -1,
|
||
-1, 27, 28, -1, -1, 31, 32, 33, 115, 116,
|
||
-1, 118, -1, 627, -1, -1, -1, -1, -1, -1,
|
||
-1, 635, 48, 49, 50, -1, -1, -1, -1, 643,
|
||
-1, -1, 58, -1, 648, 73, 74, 75, 76, 77,
|
||
78, 79, 80, 81, -1, -1, -1, -1, 86, 87,
|
||
88, 89, 90, 91, 92, 93, -1, -1, -1, -1,
|
||
167, 168, 169, 170, 171, 172, 173, -1, 175, 176,
|
||
-1, 178, 179, 180, -1, 182, -1, 184, 185, 105,
|
||
106, 107, 108, 109, 110, 111, 112, 113, -1, -1,
|
||
197, 198, 199, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 715, -1, 717, -1, -1, 213, 214, 215, 216,
|
||
217, 218, 219, -1, 221, 222, -1, 224, 225, 226,
|
||
-1, 228, 229, 230, -1, -1, 233, 234, 235, -1,
|
||
-1, -1, 746, -1, 9, -1, -1, -1, 752, -1,
|
||
-1, -1, -1, -1, 758, -1, -1, -1, -1, -1,
|
||
764, 258, 259, -1, 261, 262, -1, 771, -1, 34,
|
||
35, 36, 776, -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, 806, -1, 808, -1, -1, -1, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, -1, -1, -1,
|
||
-1, 86, 87, 88, 89, 90, 91, 92, 93, -1,
|
||
-1, -1, -1, -1, -1, 839, -1, -1, -1, -1,
|
||
844, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 121, -1, -1, 863,
|
||
125, -1, 127, -1, -1, -1, -1, -1, 0, 1,
|
||
367, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, -1, 890, 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, 930, -1, -1, 61,
|
||
62, 63, -1, -1, -1, 67, -1, 69, 70, 71,
|
||
72, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
82, 83, 84, 85, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 95, 96, 97, 98, 99, 100, 101,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 116, -1, 118, 119, -1, 121,
|
||
-1, 123, 1, 125, 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, -1, -1,
|
||
-1, -1, 61, 62, 63, 64, 65, 66, 67, -1,
|
||
69, 70, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 84, 85, -1, 575, -1,
|
||
-1, 578, -1, -1, -1, 94, 95, 96, 97, 98,
|
||
99, 100, 101, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 116, -1, 118,
|
||
119, -1, 121, -1, 123, 1, 125, 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, 67, -1, 69, 70, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 82, 83, 84, 85,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
96, 97, 98, 99, 100, 101, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 723, -1, -1, -1,
|
||
116, -1, 118, 119, -1, 121, -1, 123, 1, 125,
|
||
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, 67, -1, 69, 70, 71, 72,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 82,
|
||
83, 84, 85, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, 96, 97, 98, 99, 100, 101, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 116, -1, 118, 119, -1, 121, -1,
|
||
123, 1, 125, 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, -1, 69,
|
||
70, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, 84, 85, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, 96, 97, 98, 99,
|
||
100, 101, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 116, -1, 118, 119,
|
||
-1, 121, -1, 123, 1, 125, 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,
|
||
67, -1, 69, 70, 71, 72, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 82, 83, 84, 85, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 95, 96,
|
||
97, 98, 99, 100, 101, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 116,
|
||
-1, 118, 119, -1, 121, -1, 123, 1, 125, 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, 67, -1, 69, 70, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 82, 83,
|
||
84, 85, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
94, 95, 96, 97, 98, 99, 100, 101, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 116, -1, 118, 119, -1, 121, -1, 123,
|
||
1, 125, 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, 67, -1, 69, 70,
|
||
71, 72, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 82, 83, 84, 85, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, 96, 97, 98, 99, 100,
|
||
101, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 116, -1, 118, 119, -1,
|
||
121, -1, 123, 1, 125, 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, 67,
|
||
-1, 69, 70, 71, 72, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 82, 83, 84, 85, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 94, 95, 96, 97,
|
||
98, 99, 100, 101, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 116, -1,
|
||
118, 119, -1, 121, -1, 123, 1, 125, 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, 67, -1, 69, 70, 71, 72, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 82, 83, 84,
|
||
85, -1, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, 96, 97, 98, 99, 100, 101, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 116, -1, 118, 119, -1, 121, -1, 123, 1,
|
||
125, 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, 67, -1, 69, 70, 71,
|
||
72, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
82, 83, 84, 85, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 95, 96, 97, 98, 99, 100, 101,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 116, -1, 118, 119, -1, 121,
|
||
-1, 123, 1, 125, 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, 67, -1,
|
||
69, 70, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 84, 85, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 94, 95, 96, 97, 98,
|
||
99, 100, 101, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 116, -1, 118,
|
||
119, -1, 121, -1, 123, 1, 125, 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, 67, -1, 69, 70, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 82, 83, 84, 85,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
96, 97, 98, 99, 100, 101, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
116, -1, 118, 119, -1, 121, -1, 123, 1, 125,
|
||
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, -1, 69, 70, 71, 72,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 82,
|
||
83, 84, 85, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, 96, 97, 98, 99, 100, 101, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 116, -1, 118, 119, -1, 121, -1,
|
||
123, 1, 125, 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, 67, -1, 69,
|
||
70, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, 84, 85, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, 96, 97, 98, 99,
|
||
100, 101, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 116, -1, 118, 119,
|
||
-1, 121, -1, 123, 1, 125, 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, -1, 69, 70, 71, 72, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 82, 83, 84, 85, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 95, 96,
|
||
97, 98, 99, 100, 101, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 116,
|
||
-1, 118, 119, -1, 121, -1, 123, 5, 125, 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, 69, -1, 71, 72, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 94, 95, -1, -1,
|
||
98, -1, -1, 101, 102, 103, -1, -1, -1, -1,
|
||
-1, 109, 110, -1, -1, -1, -1, -1, 116, 117,
|
||
-1, -1, -1, 121, -1, 123, 5, 125, 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,
|
||
69, -1, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 94, 95, -1, -1, 98,
|
||
-1, -1, 101, 102, -1, -1, -1, -1, -1, -1,
|
||
109, 110, -1, -1, -1, -1, -1, 116, 117, -1,
|
||
-1, -1, 121, -1, 123, 5, 125, 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, 69,
|
||
-1, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, -1, -1, 98, -1,
|
||
-1, 101, -1, -1, -1, -1, -1, -1, -1, 109,
|
||
110, -1, -1, -1, -1, -1, 116, 117, -1, -1,
|
||
120, 121, -1, 123, 5, 125, 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, 69, -1,
|
||
71, 72, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, -1, -1, 98, -1, -1,
|
||
101, 102, -1, -1, -1, -1, -1, -1, 109, 110,
|
||
-1, -1, -1, -1, -1, 116, 117, -1, -1, -1,
|
||
121, -1, 123, 5, 125, 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, 69, -1, 71,
|
||
72, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 95, -1, -1, 98, -1, -1, 101,
|
||
-1, -1, -1, -1, -1, -1, -1, 109, 110, -1,
|
||
-1, -1, -1, -1, 116, 117, -1, -1, -1, 121,
|
||
-1, 123, 5, 125, 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, 69, -1, 71, 72,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, -1, -1, 98, -1, -1, 101, -1,
|
||
-1, -1, -1, -1, -1, -1, 109, 110, -1, -1,
|
||
-1, -1, -1, 116, 117, -1, -1, -1, 121, -1,
|
||
123, 5, 125, 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, 69, -1, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
94, 95, -1, -1, 98, -1, -1, 101, -1, -1,
|
||
-1, -1, -1, -1, -1, 109, 110, -1, -1, -1,
|
||
-1, -1, 116, 117, -1, -1, -1, 121, -1, 123,
|
||
5, 125, 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, 69, -1, 71, 72, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 83, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, -1, -1, 98, -1, -1, 101, -1, -1, -1,
|
||
-1, -1, -1, -1, 109, 110, -1, -1, -1, -1,
|
||
-1, 116, 117, -1, -1, -1, 121, -1, 123, 5,
|
||
125, 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, -1, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, 9, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, 69, -1, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, -1, 34,
|
||
35, 36, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
-1, -1, 98, -1, -1, -1, -1, -1, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, -1, -1,
|
||
116, -1, -1, -1, 9, 121, -1, 123, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, -1, -1, -1,
|
||
-1, 86, 87, 88, 89, 90, 91, 92, 93, 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,
|
||
125, -1, 127, -1, 9, -1, -1, -1, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, -1, -1, -1,
|
||
-1, 86, 87, 88, 89, 90, 91, 92, 93, 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,
|
||
125, -1, 127, -1, 9, -1, -1, -1, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, -1, -1, -1,
|
||
-1, 86, 87, 88, 89, 90, 91, 92, 93, 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,
|
||
125, -1, 127, -1, -1, -1, -1, -1, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, -1, -1, -1,
|
||
-1, 86, 87, 88, 89, 90, 91, 92, 93, 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,
|
||
125, -1, 127, 5, -1, -1, 42, -1, 44, 11,
|
||
12, 47, 48, -1, -1, -1, 52, 53, -1, -1,
|
||
22, 23, 24, -1, 26, 61, -1, -1, 30, -1,
|
||
-1, -1, -1, -1, -1, 71, 72, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, 83, -1, -1,
|
||
52, 53, -1, -1, -1, -1, -1, -1, 94, 61,
|
||
-1, -1, 98, -1, -1, 5, -1, -1, -1, -1,
|
||
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
|
||
116, 83, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, 94, -1, -1, -1, 98, -1, -1, 5,
|
||
102, -1, 42, -1, 44, 11, 12, 47, 48, -1,
|
||
-1, -1, 52, 53, -1, -1, 22, 23, 24, -1,
|
||
26, 61, -1, -1, 30, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, 83, -1, -1, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, 94, 61, -1, -1, 98, -1,
|
||
-1, 5, 102, -1, -1, -1, -1, 11, 12, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, 22, 23,
|
||
24, -1, 26, -1, -1, -1, 30, -1, 94, -1,
|
||
-1, -1, 98, -1, -1, 5, 102, -1, 42, -1,
|
||
44, 11, 12, 47, 48, -1, -1, -1, 52, 53,
|
||
-1, -1, 22, 23, 24, -1, 26, 61, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, 83,
|
||
-1, -1, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
94, 61, -1, -1, 98, -1, -1, -1, 102, -1,
|
||
-1, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 69, 83, 71, 72, -1, 74, -1, 76,
|
||
-1, 78, -1, 80, 94, 82, -1, 84, 98, 86,
|
||
-1, 88, 89, 90, -1, -1, -1, 94, -1, -1,
|
||
97, -1, -1, 100, -1, 102, -1, -1, -1, -1,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
117, -1, 119, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
-1, -1, -1, -1, 86, 87, 88, 89, 90, 91,
|
||
92, 93, -1, -1, -1, -1, -1, -1, 121, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 73, 74, 75,
|
||
76, 77, 78, 79, 80, 81, -1, -1, -1, 121,
|
||
86, 87, 88, 89, 90, 91, 92, 93, -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, 121
|
||
};
|
||
|
||
/* 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, 67, 69, 70, 71, 72,
|
||
82, 83, 84, 85, 94, 95, 96, 97, 98, 99,
|
||
100, 101, 116, 118, 119, 121, 123, 125, 130, 131,
|
||
132, 133, 138, 144, 162, 163, 164, 165, 166, 167,
|
||
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
||
178, 179, 180, 182, 183, 184, 185, 186, 187, 188,
|
||
189, 191, 192, 193, 194, 195, 197, 201, 206, 208,
|
||
209, 210, 212, 224, 226, 227, 229, 230, 231, 232,
|
||
233, 234, 235, 236, 237, 244, 250, 251, 252, 253,
|
||
254, 267, 270, 273, 288, 289, 290, 301, 303, 305,
|
||
315, 318, 320, 331, 336, 339, 341, 348, 359, 365,
|
||
367, 367, 146, 153, 154, 36, 36, 255, 256, 121,
|
||
11, 12, 22, 23, 24, 26, 29, 30, 42, 44,
|
||
51, 53, 61, 94, 109, 110, 117, 163, 164, 166,
|
||
168, 171, 173, 175, 177, 179, 182, 184, 186, 191,
|
||
192, 193, 197, 200, 206, 210, 213, 218, 224, 226,
|
||
227, 228, 229, 237, 238, 239, 240, 244, 250, 252,
|
||
162, 160, 162, 161, 162, 153, 147, 218, 218, 304,
|
||
271, 153, 162, 163, 164, 166, 168, 171, 173, 175,
|
||
177, 179, 182, 184, 186, 191, 192, 193, 197, 206,
|
||
210, 223, 224, 244, 250, 252, 36, 268, 257, 149,
|
||
349, 145, 153, 184, 186, 358, 10, 162, 162, 123,
|
||
162, 279, 19, 152, 245, 361, 162, 184, 186, 191,
|
||
193, 206, 250, 327, 328, 340, 218, 121, 250, 117,
|
||
218, 249, 102, 103, 117, 181, 203, 204, 205, 218,
|
||
222, 243, 162, 184, 186, 207, 0, 1, 132, 133,
|
||
144, 273, 367, 3, 4, 36, 121, 9, 127, 241,
|
||
242, 9, 241, 162, 184, 186, 190, 250, 9, 36,
|
||
241, 190, 9, 36, 241, 190, 190, 9, 36, 241,
|
||
190, 9, 36, 241, 190, 9, 36, 241, 190, 9,
|
||
36, 190, 9, 36, 241, 190, 9, 241, 190, 250,
|
||
9, 36, 121, 153, 241, 190, 250, 9, 36, 121,
|
||
153, 241, 190, 250, 8, 10, 162, 165, 166, 167,
|
||
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
||
178, 179, 180, 183, 184, 185, 186, 187, 190, 244,
|
||
250, 251, 252, 253, 190, 9, 241, 9, 153, 241,
|
||
9, 36, 190, 9, 36, 153, 241, 190, 9, 36,
|
||
121, 241, 125, 190, 9, 36, 153, 241, 190, 34,
|
||
35, 54, 55, 56, 57, 59, 60, 105, 125, 225,
|
||
153, 153, 153, 153, 153, 9, 36, 241, 9, 36,
|
||
153, 241, 190, 250, 9, 36, 153, 241, 190, 153,
|
||
15, 16, 17, 18, 293, 295, 300, 1, 12, 25,
|
||
26, 132, 144, 155, 156, 157, 158, 273, 367, 17,
|
||
38, 39, 40, 302, 306, 311, 218, 158, 17, 337,
|
||
338, 153, 218, 367, 162, 258, 261, 258, 218, 218,
|
||
218, 218, 162, 195, 214, 219, 215, 216, 217, 27,
|
||
28, 31, 32, 33, 49, 50, 58, 105, 106, 107,
|
||
108, 109, 110, 111, 112, 113, 291, 220, 151, 120,
|
||
367, 120, 367, 184, 259, 260, 261, 367, 162, 272,
|
||
9, 105, 324, 188, 162, 269, 272, 259, 367, 218,
|
||
360, 19, 121, 275, 367, 73, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 86, 87, 88, 89, 90, 91,
|
||
92, 93, 140, 141, 142, 121, 367, 109, 122, 102,
|
||
162, 247, 248, 68, 362, 52, 120, 218, 367, 162,
|
||
120, 122, 124, 162, 184, 191, 193, 195, 206, 120,
|
||
124, 103, 120, 124, 367, 162, 162, 196, 218, 102,
|
||
218, 221, 120, 126, 218, 218, 218, 218, 218, 218,
|
||
218, 218, 218, 218, 198, 218, 199, 218, 218, 218,
|
||
218, 218, 211, 207, 218, 218, 218, 218, 218, 218,
|
||
218, 218, 207, 218, 218, 218, 367, 296, 300, 16,
|
||
293, 300, 3, 4, 155, 307, 312, 38, 302, 311,
|
||
39, 302, 367, 38, 39, 342, 345, 367, 127, 140,
|
||
265, 266, 120, 367, 367, 120, 141, 141, 141, 141,
|
||
141, 218, 218, 218, 218, 218, 218, 218, 218, 218,
|
||
218, 218, 218, 218, 218, 218, 218, 218, 367, 141,
|
||
367, 162, 162, 140, 265, 120, 148, 140, 120, 367,
|
||
218, 140, 52, 120, 367, 367, 150, 158, 159, 367,
|
||
362, 117, 367, 274, 162, 278, 279, 281, 162, 162,
|
||
276, 280, 19, 367, 140, 128, 120, 120, 162, 200,
|
||
204, 213, 218, 250, 363, 364, 117, 218, 329, 330,
|
||
327, 367, 366, 122, 218, 218, 218, 222, 205, 134,
|
||
136, 135, 137, 202, 205, 221, 127, 202, 202, 202,
|
||
294, 218, 298, 300, 162, 162, 218, 367, 309, 302,
|
||
314, 316, 218, 346, 38, 338, 345, 218, 262, 263,
|
||
142, 120, 126, 261, 203, 292, 9, 142, 260, 367,
|
||
162, 321, 162, 162, 367, 350, 19, 83, 117, 162,
|
||
283, 286, 287, 282, 279, 281, 367, 162, 277, 281,
|
||
283, 218, 246, 102, 162, 364, 120, 162, 120, 332,
|
||
159, 103, 367, 121, 367, 121, 120, 122, 221, 122,
|
||
122, 122, 159, 367, 218, 121, 367, 121, 367, 367,
|
||
313, 218, 367, 159, 343, 367, 218, 9, 218, 127,
|
||
120, 159, 218, 140, 47, 140, 64, 65, 355, 356,
|
||
357, 367, 117, 162, 162, 140, 122, 120, 120, 140,
|
||
120, 124, 122, 120, 124, 140, 364, 329, 98, 335,
|
||
17, 222, 102, 139, 143, 162, 139, 205, 297, 367,
|
||
139, 139, 308, 159, 367, 159, 317, 367, 347, 344,
|
||
264, 218, 203, 218, 162, 351, 367, 367, 162, 140,
|
||
121, 140, 140, 117, 162, 287, 83, 281, 367, 140,
|
||
218, 333, 122, 120, 140, 122, 159, 299, 122, 122,
|
||
159, 310, 17, 41, 319, 159, 159, 367, 218, 122,
|
||
48, 325, 66, 353, 354, 159, 159, 121, 140, 222,
|
||
284, 285, 367, 162, 140, 117, 162, 367, 367, 102,
|
||
162, 367, 159, 367, 367, 159, 159, 218, 322, 352,
|
||
367, 284, 120, 122, 121, 140, 162, 140, 334, 140,
|
||
367, 17, 159, 122, 285, 284, 121, 140, 159, 326,
|
||
323, 122, 284, 17, 46, 326, 122, 162, 162
|
||
};
|
||
|
||
#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 261 "harbour.y"
|
||
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
|
||
#line 3860 "harboury.c"
|
||
break;
|
||
case 95: /* "CBSTART" */
|
||
#line 260 "harbour.y"
|
||
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
|
||
#line 3865 "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 274 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 280 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 284 "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 = (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 289 "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 = (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 296 "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 297 "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 298 "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 299 "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 302 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 303 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_STATIC; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 304 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_INIT; ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 305 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_EXIT; ;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 308 "harbour.y"
|
||
{ (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 309 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 311 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 314 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 318 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'N'; ;}
|
||
break;
|
||
|
||
case 37:
|
||
#line 319 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'C'; ;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 320 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'D'; ;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 321 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'L'; ;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 322 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'B'; ;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 323 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'O'; ;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 324 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 325 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 329 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'A'; ;}
|
||
break;
|
||
|
||
case 46:
|
||
#line 330 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'n'; ;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 331 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'c'; ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 332 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'd'; ;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 333 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'l'; ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 334 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'a'; ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 335 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'b'; ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 336 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'o'; ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 337 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 340 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 341 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 350 "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 58:
|
||
#line 351 "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 59:
|
||
#line 352 "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 353 "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 354 "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 62:
|
||
#line 360 "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 63:
|
||
#line 366 "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 64:
|
||
#line 367 "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 65:
|
||
#line 368 "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 369 "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 370 "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 371 "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 372 "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 373 "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 71:
|
||
#line 375 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 376 "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 73:
|
||
#line 381 "harbour.y"
|
||
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 382 "harbour.y"
|
||
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 383 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->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 76:
|
||
#line 395 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 397 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
if( HB_COMP_PARAM->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 ) );
|
||
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 78:
|
||
#line 414 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 416 "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 81:
|
||
#line 420 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
|
||
break;
|
||
|
||
case 82:
|
||
#line 422 "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 89:
|
||
#line 431 "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 91:
|
||
#line 445 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 92:
|
||
#line 448 "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 93:
|
||
#line 456 "harbour.y"
|
||
{
|
||
{
|
||
char szFileName[ _POSIX_PATH_MAX + 1 ];
|
||
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, _POSIX_PATH_MAX ), (yyvsp[(3) - (3)].valChar).string, _POSIX_PATH_MAX );
|
||
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 );
|
||
if( (yyvsp[(3) - (3)].valChar).dealloc )
|
||
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 469 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 472 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 97:
|
||
#line 473 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 474 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 475 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 476 "harbour.y"
|
||
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 477 "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;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 111:
|
||
#line 502 "harbour.y"
|
||
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
|
||
break;
|
||
|
||
case 112:
|
||
#line 505 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 509 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 115:
|
||
#line 510 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 513 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 514 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 518 "harbour.y"
|
||
{ (yyval.string) = "STEP"; ;}
|
||
break;
|
||
|
||
case 120:
|
||
#line 519 "harbour.y"
|
||
{ (yyval.string) = "TO"; ;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 520 "harbour.y"
|
||
{ (yyval.string) = "LOOP"; ;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 521 "harbour.y"
|
||
{ (yyval.string) = "EXIT"; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 522 "harbour.y"
|
||
{ (yyval.string) = "IN"; ;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 523 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 524 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 525 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 526 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 527 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 528 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 529 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 530 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 531 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 532 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 533 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 534 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 539 "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 137:
|
||
#line 540 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 543 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDate( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM );
|
||
if( (yyvsp[(1) - (1)].valLong).lNumber == 0 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_DATE, HB_COMP_PARAM->pLex->lasttok, NULL );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 551 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 140:
|
||
#line 552 "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 141:
|
||
#line 557 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 143:
|
||
#line 565 "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 146:
|
||
#line 581 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 147:
|
||
#line 582 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 149:
|
||
#line 590 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 151:
|
||
#line 604 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 153:
|
||
#line 612 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 155:
|
||
#line 618 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 156:
|
||
#line 619 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 158:
|
||
#line 625 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 159:
|
||
#line 626 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 160:
|
||
#line 631 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 161:
|
||
#line 634 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 162:
|
||
#line 639 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 163:
|
||
#line 640 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 165:
|
||
#line 648 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 167:
|
||
#line 658 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 168:
|
||
#line 659 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 169:
|
||
#line 664 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 170:
|
||
#line 665 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 171:
|
||
#line 666 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 172:
|
||
#line 667 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 173:
|
||
#line 668 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 174:
|
||
#line 669 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 175:
|
||
#line 670 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 176:
|
||
#line 671 "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 672 "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 673 "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 674 "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 675 "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 676 "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 677 "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 680 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 186:
|
||
#line 685 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 187:
|
||
#line 686 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 188:
|
||
#line 687 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 189:
|
||
#line 688 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 190:
|
||
#line 689 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 191:
|
||
#line 690 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 192:
|
||
#line 691 "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 692 "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 693 "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 694 "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 695 "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 696 "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 697 "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 698 "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 699 "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 700 "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 701 "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 702 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 204:
|
||
#line 703 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 205:
|
||
#line 704 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 206:
|
||
#line 713 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 207:
|
||
#line 714 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 208:
|
||
#line 715 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 209:
|
||
#line 716 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 210:
|
||
#line 717 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 211:
|
||
#line 718 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 212:
|
||
#line 723 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 213:
|
||
#line 724 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 214:
|
||
#line 725 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 215:
|
||
#line 726 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 216:
|
||
#line 727 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 217:
|
||
#line 728 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 218:
|
||
#line 729 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 219:
|
||
#line 730 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 220:
|
||
#line 731 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 221:
|
||
#line 732 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 222:
|
||
#line 733 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 223:
|
||
#line 734 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 224:
|
||
#line 735 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 225:
|
||
#line 736 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 226:
|
||
#line 737 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 227:
|
||
#line 738 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 228:
|
||
#line 739 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 229:
|
||
#line 740 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 231:
|
||
#line 746 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 232:
|
||
#line 746 "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 234:
|
||
#line 750 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 235:
|
||
#line 750 "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 236:
|
||
#line 751 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 237:
|
||
#line 751 "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 755 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 240:
|
||
#line 761 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 241:
|
||
#line 762 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 244:
|
||
#line 769 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 245:
|
||
#line 770 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 246:
|
||
#line 771 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 247:
|
||
#line 772 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 248:
|
||
#line 773 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
|
||
break;
|
||
|
||
case 249:
|
||
#line 776 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 251:
|
||
#line 782 "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 252:
|
||
#line 783 "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 253:
|
||
#line 784 "harbour.y"
|
||
{ if( HB_COMP_PARAM->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 254:
|
||
#line 790 "harbour.y"
|
||
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
|
||
break;
|
||
|
||
case 255:
|
||
#line 791 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 256:
|
||
#line 792 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 257:
|
||
#line 795 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 259:
|
||
#line 803 "harbour.y"
|
||
{(yyval.bTrue)=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 260:
|
||
#line 803 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr) ); HB_COMP_PARAM->iPassByRef=(yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 269:
|
||
#line 822 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 270:
|
||
#line 822 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 280:
|
||
#line 832 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 281:
|
||
#line 832 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 284:
|
||
#line 835 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 285:
|
||
#line 835 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 287:
|
||
#line 837 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 288:
|
||
#line 837 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 300:
|
||
#line 851 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 301:
|
||
#line 851 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 302:
|
||
#line 852 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 303:
|
||
#line 852 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 305:
|
||
#line 856 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 307:
|
||
#line 860 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 309:
|
||
#line 864 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 315:
|
||
#line 870 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), NULL ); ;}
|
||
break;
|
||
|
||
case 337:
|
||
#line 903 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 338:
|
||
#line 904 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 339:
|
||
#line 907 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 340:
|
||
#line 910 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 341:
|
||
#line 911 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 342:
|
||
#line 914 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 343:
|
||
#line 915 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 344:
|
||
#line 916 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 345:
|
||
#line 919 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 346:
|
||
#line 920 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 347:
|
||
#line 921 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 348:
|
||
#line 922 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 349:
|
||
#line 923 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 350:
|
||
#line 924 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 351:
|
||
#line 925 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 352:
|
||
#line 926 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 353:
|
||
#line 927 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 354:
|
||
#line 928 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 355:
|
||
#line 929 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 356:
|
||
#line 930 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 357:
|
||
#line 931 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 358:
|
||
#line 932 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 359:
|
||
#line 933 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 360:
|
||
#line 934 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 361:
|
||
#line 935 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 362:
|
||
#line 936 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 363:
|
||
#line 937 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 364:
|
||
#line 938 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 365:
|
||
#line 939 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 366:
|
||
#line 942 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 367:
|
||
#line 945 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 368:
|
||
#line 948 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 369:
|
||
#line 951 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 370:
|
||
#line 954 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 371:
|
||
#line 957 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 372:
|
||
#line 960 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 379:
|
||
#line 971 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 380:
|
||
#line 972 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 381:
|
||
#line 973 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 382:
|
||
#line 974 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 383:
|
||
#line 975 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 384:
|
||
#line 976 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 385:
|
||
#line 979 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 386:
|
||
#line 980 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 387:
|
||
#line 983 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 388:
|
||
#line 984 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 389:
|
||
#line 985 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 390:
|
||
#line 986 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 391:
|
||
#line 987 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 392:
|
||
#line 988 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 393:
|
||
#line 989 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 394:
|
||
#line 990 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 395:
|
||
#line 991 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 397:
|
||
#line 1000 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 398:
|
||
#line 1001 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 399:
|
||
#line 1002 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 400:
|
||
#line 1005 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 401:
|
||
#line 1006 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 402:
|
||
#line 1009 "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 403:
|
||
#line 1010 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (6)].asExpr); ;}
|
||
break;
|
||
|
||
case 404:
|
||
#line 1015 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 405:
|
||
#line 1016 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 406:
|
||
#line 1021 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 407:
|
||
#line 1022 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 408:
|
||
#line 1023 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
|
||
break;
|
||
|
||
case 409:
|
||
#line 1024 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 410:
|
||
#line 1027 "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 1028 "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 1031 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 413:
|
||
#line 1032 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 414:
|
||
#line 1034 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
|
||
break;
|
||
|
||
case 416:
|
||
#line 1047 "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 418:
|
||
#line 1053 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 419:
|
||
#line 1054 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 420:
|
||
#line 1055 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 421:
|
||
#line 1056 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 422:
|
||
#line 1057 "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 423:
|
||
#line 1064 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 424:
|
||
#line 1067 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 425:
|
||
#line 1068 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 426:
|
||
#line 1071 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 427:
|
||
#line 1072 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 429:
|
||
#line 1082 "harbour.y"
|
||
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
|
||
break;
|
||
|
||
case 430:
|
||
#line 1084 "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 431:
|
||
#line 1088 "harbour.y"
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( (yyvsp[(2) - (2)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 432:
|
||
#line 1095 "harbour.y"
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( (yyvsp[(2) - (3)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 433:
|
||
#line 1103 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 434:
|
||
#line 1104 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
hb_compStaticDefEnd( HB_COMP_PARAM );
|
||
hb_compGenStaticName( (yyvsp[(1) - (3)].string), HB_COMP_PARAM );
|
||
}
|
||
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 );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 435:
|
||
#line 1117 "harbour.y"
|
||
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType );
|
||
;}
|
||
break;
|
||
|
||
case 436:
|
||
#line 1120 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 437:
|
||
#line 1121 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType;
|
||
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 );
|
||
hb_compGenStaticName( (yyvsp[(1) - (6)].string), HB_COMP_PARAM );
|
||
}
|
||
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
|
||
{
|
||
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 438:
|
||
#line 1145 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 439:
|
||
#line 1146 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 441:
|
||
#line 1155 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 442:
|
||
#line 1156 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 443:
|
||
#line 1157 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 444:
|
||
#line 1161 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
|
||
break;
|
||
|
||
case 445:
|
||
#line 1161 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 446:
|
||
#line 1164 "harbour.y"
|
||
{ (yyval.iNumber)=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 447:
|
||
#line 1165 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 448:
|
||
#line 1166 "harbour.y"
|
||
{ hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), (yyvsp[(1) - (3)].iNumber) ); ;}
|
||
break;
|
||
|
||
case 449:
|
||
#line 1169 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
|
||
break;
|
||
|
||
case 450:
|
||
#line 1169 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 451:
|
||
#line 1172 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 452:
|
||
#line 1173 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 453:
|
||
#line 1176 "harbour.y"
|
||
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
|
||
break;
|
||
|
||
case 454:
|
||
#line 1177 "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( ( int ) 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 455:
|
||
#line 1199 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 456:
|
||
#line 1199 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 457:
|
||
#line 1200 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 458:
|
||
#line 1201 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 459:
|
||
#line 1202 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; ;}
|
||
break;
|
||
|
||
case 460:
|
||
#line 1202 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 467:
|
||
#line 1215 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 468:
|
||
#line 1216 "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( ( int ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 469:
|
||
#line 1237 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
|
||
break;
|
||
|
||
case 470:
|
||
#line 1238 "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( ( int ) 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 477:
|
||
#line 1303 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 478:
|
||
#line 1306 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 479:
|
||
#line 1307 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 480:
|
||
#line 1308 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), 'F' ); ;}
|
||
break;
|
||
|
||
case 481:
|
||
#line 1309 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 482:
|
||
#line 1310 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 483:
|
||
#line 1311 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), 'F' ); ;}
|
||
break;
|
||
|
||
case 484:
|
||
#line 1314 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ); ;}
|
||
break;
|
||
|
||
case 485:
|
||
#line 1315 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 486:
|
||
#line 1316 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 487:
|
||
#line 1317 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ); ;}
|
||
break;
|
||
|
||
case 488:
|
||
#line 1318 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 489:
|
||
#line 1319 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 498:
|
||
#line 1332 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 499:
|
||
#line 1333 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 500:
|
||
#line 1334 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 501:
|
||
#line 1335 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 502:
|
||
#line 1339 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 503:
|
||
#line 1341 "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 504:
|
||
#line 1343 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 505:
|
||
#line 1346 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 507:
|
||
#line 1350 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 508:
|
||
#line 1352 "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 509:
|
||
#line 1356 "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 510:
|
||
#line 1360 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 511:
|
||
#line 1362 "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 512:
|
||
#line 1366 "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 513:
|
||
#line 1371 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wIfCounter )
|
||
--HB_COMP_PARAM->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;}
|
||
break;
|
||
|
||
case 514:
|
||
#line 1374 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wIfCounter )
|
||
--HB_COMP_PARAM->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;}
|
||
break;
|
||
|
||
case 515:
|
||
#line 1381 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 518:
|
||
#line 1393 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 519:
|
||
#line 1397 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wCaseCounter )
|
||
--HB_COMP_PARAM->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 520:
|
||
#line 1402 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wCaseCounter )
|
||
--HB_COMP_PARAM->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 521:
|
||
#line 1408 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
|
||
break;
|
||
|
||
case 524:
|
||
#line 1412 "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 525:
|
||
#line 1420 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 526:
|
||
#line 1421 "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 527:
|
||
#line 1426 "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 528:
|
||
#line 1432 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 529:
|
||
#line 1433 "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 530:
|
||
#line 1438 "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 531:
|
||
#line 1445 "harbour.y"
|
||
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 532:
|
||
#line 1445 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 534:
|
||
#line 1447 "harbour.y"
|
||
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
|
||
break;
|
||
|
||
case 536:
|
||
#line 1452 "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 537:
|
||
#line 1457 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compGenJump( (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 538:
|
||
#line 1462 "harbour.y"
|
||
{
|
||
hb_compGenJumpHere( (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wWhileCounter )
|
||
--HB_COMP_PARAM->wWhileCounter;
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 539:
|
||
#line 1471 "harbour.y"
|
||
{ (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compLinePushIfInside( HB_COMP_PARAM ); ++HB_COMP_PARAM->wWhileCounter; hb_compLoopStart( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 540:
|
||
#line 1474 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 541:
|
||
#line 1475 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 542:
|
||
#line 1479 "harbour.y"
|
||
{ /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
|
||
hb_compDebugStart();
|
||
++HB_COMP_PARAM->wForCounter;
|
||
(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 543:
|
||
#line 1491 "harbour.y"
|
||
{ /* 9 */
|
||
hb_compLoopStart( HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 544:
|
||
#line 1496 "harbour.y"
|
||
{ /* 11 */
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 545:
|
||
#line 1500 "harbour.y"
|
||
{
|
||
int iSign, iLine;
|
||
|
||
iLine = HB_COMP_PARAM->currLine;
|
||
HB_COMP_PARAM->currLine = (yyvsp[(1) - (12)].lNumber);
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->currLine = iLine;
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
|
||
iSign = (yyvsp[(8) - (12)].asExpr) ? hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) ) : 1;
|
||
if( (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
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
|
||
hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ); /* end */
|
||
if( iSign )
|
||
hb_compGenPCode1( iSign > 0 ? HB_P_GREATER : HB_P_LESS, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ); /* step */
|
||
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
|
||
}
|
||
|
||
hb_compGenJumpFalse( (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[(7) - (12)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 548:
|
||
#line 1540 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 549:
|
||
#line 1541 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 550:
|
||
#line 1544 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 551:
|
||
#line 1547 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 552:
|
||
#line 1550 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 553:
|
||
#line 1553 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 554:
|
||
#line 1558 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 555:
|
||
#line 1559 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 556:
|
||
#line 1562 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 557:
|
||
#line 1563 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 558:
|
||
#line 1566 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 560:
|
||
#line 1570 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 561:
|
||
#line 1571 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 562:
|
||
#line 1576 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->wForCounter; /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compDebugStart();
|
||
;}
|
||
break;
|
||
|
||
case 563:
|
||
#line 1582 "harbour.y"
|
||
{
|
||
/* 7
|
||
*/
|
||
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
|
||
|
||
hb_compLoopStart( HB_COMP_PARAM );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 564:
|
||
#line 1591 "harbour.y"
|
||
{
|
||
/* 9
|
||
*/
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 565:
|
||
#line 1597 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
|
||
hb_compGenJump( (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( (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 566:
|
||
#line 1611 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 567:
|
||
#line 1612 "harbour.y"
|
||
{ (yyval.iNumber) = -1; ;}
|
||
break;
|
||
|
||
case 568:
|
||
#line 1616 "harbour.y"
|
||
{
|
||
hb_compLoopStart( HB_COMP_PARAM );
|
||
hb_compSwitchStart( HB_COMP_PARAM );
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 569:
|
||
#line 1623 "harbour.y"
|
||
{
|
||
hb_compSwitchEnd( HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 570:
|
||
#line 1630 "harbour.y"
|
||
{
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 571:
|
||
#line 1636 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wSwitchCounter )
|
||
--HB_COMP_PARAM->wSwitchCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 572:
|
||
#line 1643 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wSwitchCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 573:
|
||
#line 1647 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
;}
|
||
break;
|
||
|
||
case 575:
|
||
#line 1653 "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 576:
|
||
#line 1661 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 578:
|
||
#line 1664 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 582:
|
||
#line 1672 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 583:
|
||
#line 1672 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 585:
|
||
#line 1677 "harbour.y"
|
||
{ /* 2 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->wSeqCounter;
|
||
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 586:
|
||
#line 1684 "harbour.y"
|
||
{ /* 5 */
|
||
/* Set jump address for HB_P_SEQBEGIN opcode - this address
|
||
* will be used in BREAK code if there is no RECOVER clause
|
||
*/
|
||
hb_compGenJumpHere( (yyvsp[(2) - (4)].lNumber), HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 587:
|
||
#line 1692 "harbour.y"
|
||
{ /* 7 */
|
||
/* Replace END address with RECOVER address in
|
||
* HB_P_SEQBEGIN opcode if there is RECOVER clause
|
||
*/
|
||
if( (yyvsp[(6) - (6)].lNumber) )
|
||
hb_compGenJumpThere( (yyvsp[(2) - (6)].lNumber), (yyvsp[(6) - (6)].lNumber), HB_COMP_PARAM );
|
||
else if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->wSeqCounter;
|
||
;}
|
||
break;
|
||
|
||
case 588:
|
||
#line 1702 "harbour.y"
|
||
{ /* 9 */
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
if( (yyvsp[(8) - (8)].lNumber) )
|
||
{
|
||
/* replace END address with ALWAYS address in
|
||
HB_P_SEQEND opcode */
|
||
hb_compGenJumpThere( (yyvsp[(5) - (8)].lNumber), (yyvsp[(8) - (8)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
|
||
hb_compGenJumpThere( (yyvsp[(2) - (8)].lNumber) - 4, (yyvsp[(8) - (8)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
|
||
hb_compGenJumpHere( (yyvsp[(8) - (8)].lNumber) + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_ALWAYSEND, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
/* Fix END address in HB_P_SEQEND opcode */
|
||
hb_compGenJumpHere( (yyvsp[(5) - (8)].lNumber), HB_COMP_PARAM );
|
||
}
|
||
hb_compSequenceFinish( HB_COMP_PARAM, (yyvsp[(2) - (8)].lNumber), (yyvsp[(5) - (8)].lNumber), (yyvsp[(8) - (8)].lNumber),
|
||
(yyvsp[(4) - (8)].lNumber) != 0, (yyvsp[(6) - (8)].lNumber) != 0 );
|
||
;}
|
||
break;
|
||
|
||
case 590:
|
||
#line 1726 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 592:
|
||
#line 1731 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compSequenceAlways( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 593:
|
||
#line 1738 "harbour.y"
|
||
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 596:
|
||
#line 1744 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 597:
|
||
#line 1755 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->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 600:
|
||
#line 1777 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 601:
|
||
#line 1779 "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 602:
|
||
#line 1784 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 603:
|
||
#line 1786 "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 604:
|
||
#line 1794 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 605:
|
||
#line 1795 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 606:
|
||
#line 1798 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 607:
|
||
#line 1799 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 608:
|
||
#line 1800 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 609:
|
||
#line 1801 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 610:
|
||
#line 1802 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 611:
|
||
#line 1805 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 616:
|
||
#line 1813 "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->wWithObjectCnt++;
|
||
;}
|
||
break;
|
||
|
||
case 617:
|
||
#line 1822 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wWithObjectCnt )
|
||
--HB_COMP_PARAM->wWithObjectCnt;
|
||
if( (yyvsp[(5) - (6)].lNumber) )
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
|
||
(yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 618:
|
||
#line 1835 "harbour.y"
|
||
{ HB_COMP_PARAM->fError = FALSE; ;}
|
||
break;
|
||
|
||
|
||
/* Line 1268 of yacc.c. */
|
||
#line 6864 "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. |
|
||
`---------------------------------------------------*/
|
||
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;
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| 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 1839 "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 )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
|
||
if( HB_COMP_PARAM->pLoops )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = HB_COMP_PARAM->pLoops;
|
||
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pLoop;
|
||
}
|
||
else
|
||
HB_COMP_PARAM->pLoops = pLoop;
|
||
|
||
pLoop->pNext = NULL;
|
||
pLoop->pExitList = NULL;
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the start position */
|
||
pLoop->wSeqCounter = HB_COMP_PARAM->wSeqCounter; /* store current SEQUENCE counter */
|
||
}
|
||
|
||
/*
|
||
* Stores the position of LOOP statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopLoop( HB_COMP_DECL )
|
||
{
|
||
if( ! HB_COMP_PARAM->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the position to fix */
|
||
|
||
pLast = HB_COMP_PARAM->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != HB_COMP_PARAM->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.
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
while( pLast->pLoopList )
|
||
pLast = pLast->pLoopList;
|
||
|
||
pLast->pLoopList = pLoop;
|
||
|
||
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 )
|
||
{
|
||
if( ! HB_COMP_PARAM->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
|
||
pLoop->pExitList = NULL;
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the position to fix */
|
||
|
||
pLast = HB_COMP_PARAM->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != HB_COMP_PARAM->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.
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
while( pLast->pExitList )
|
||
pLast = pLast->pExitList;
|
||
|
||
pLast->pExitList = pLoop;
|
||
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the LOOP statement
|
||
*/
|
||
static void hb_compLoopHere( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = HB_COMP_PARAM->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 )
|
||
{
|
||
HB_LOOPEXIT_PTR pExit, pLoop = HB_COMP_PARAM->pLoops, pLast = HB_COMP_PARAM->pLoops, 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 == HB_COMP_PARAM->pLoops )
|
||
HB_COMP_PARAM->pLoops = NULL;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
void hb_compLoopKill( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop;
|
||
HB_LOOPEXIT_PTR pExit;
|
||
|
||
while( HB_COMP_PARAM->pLoops )
|
||
{
|
||
pLoop = HB_COMP_PARAM->pLoops;
|
||
while( pLoop->pExitList )
|
||
{
|
||
pExit = pLoop->pExitList;
|
||
pLoop->pExitList = pExit->pExitList;
|
||
hb_xfree( ( void * ) pExit );
|
||
}
|
||
HB_COMP_PARAM->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;
|
||
|
||
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( HB_COMP_PARAM->elseif )
|
||
{
|
||
pElseIf->pPrev = HB_COMP_PARAM->elseif;
|
||
}
|
||
pFirst = pElseIf;
|
||
HB_COMP_PARAM->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->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
|
||
void hb_compElseIfKill( HB_COMP_DECL )
|
||
{
|
||
HB_ELSEIF_PTR pFix;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
while( HB_COMP_PARAM->elseif )
|
||
{
|
||
pFix = HB_COMP_PARAM->elseif;
|
||
HB_COMP_PARAM->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 ) );
|
||
|
||
pRTvar->pVar = pVar;
|
||
pRTvar->bPopValue = bPopInitValue;
|
||
pRTvar->pNext = NULL;
|
||
pRTvar->pPrev = NULL;
|
||
|
||
if( HB_COMP_PARAM->rtvars )
|
||
{
|
||
HB_RTVAR_PTR pLast = HB_COMP_PARAM->rtvars;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pRTvar;
|
||
pRTvar->pPrev = pLast;
|
||
}
|
||
else
|
||
HB_COMP_PARAM->rtvars = pRTvar;
|
||
}
|
||
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * szCreateFun )
|
||
{
|
||
USHORT usCount = 0;
|
||
HB_RTVAR_PTR pVar = HB_COMP_PARAM->rtvars;
|
||
HB_RTVAR_PTR pDel;
|
||
|
||
/* generate the function call frame */
|
||
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
|
||
|
||
/* push variable names to create */
|
||
while( pVar->pNext )
|
||
{
|
||
hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
pVar = pVar->pNext;
|
||
++usCount;
|
||
}
|
||
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 );
|
||
}
|
||
HB_COMP_PARAM->rtvars = NULL;
|
||
}
|
||
|
||
void hb_compRTVariableKill( HB_COMP_DECL )
|
||
{
|
||
HB_RTVAR_PTR pVar;
|
||
|
||
while( HB_COMP_PARAM->rtvars )
|
||
{
|
||
pVar = HB_COMP_PARAM->rtvars;
|
||
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
HB_COMP_PARAM->rtvars = pVar->pPrev;
|
||
hb_xfree( pVar );
|
||
}
|
||
HB_COMP_PARAM->rtvars = NULL;
|
||
}
|
||
|
||
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 )
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
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 */
|
||
hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
/* check if valid initializers were used but don't generate any code */
|
||
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
|
||
/* now pop an array */
|
||
hb_compExprGenPop( pVar, HB_COMP_PARAM );
|
||
/* delete all used expressions */
|
||
HB_COMP_EXPR_DELETE( pAssign );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
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 == TRUE )
|
||
{
|
||
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->pNext )
|
||
{
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar->pNext )
|
||
{
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
hb_xfree( pEnumVar );
|
||
pLast->pNext = NULL;
|
||
}
|
||
else
|
||
{
|
||
hb_xfree( pEnumVar );
|
||
HB_COMP_PARAM->functions.pLast->pEnum = 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
|
||
{
|
||
BYTE Len;
|
||
Len = (BYTE) (ulLen & 0xFF);
|
||
hb_compGenPCode3( HB_P_ENUMSTART, Len, 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 ) );
|
||
|
||
pSwitch->pCases = NULL;
|
||
pSwitch->pLast = NULL;
|
||
pSwitch->ulDefault = 0;
|
||
pSwitch->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
pSwitch->iCount = 0;
|
||
pSwitch->pPrev = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->pSwitch = pSwitch;
|
||
}
|
||
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~FUN_BREAK_CODE;
|
||
|
||
if( pExpr )
|
||
{
|
||
/* normal CASE */
|
||
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
|
||
pCase->ulOffset = HB_COMP_PARAM->functions.pLast->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( HB_COMP_PARAM->pSwitch->pLast )
|
||
{
|
||
HB_COMP_PARAM->pSwitch->pLast->pNext = pCase;
|
||
HB_COMP_PARAM->pSwitch->pLast = pCase;
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_PARAM->pSwitch->pCases = HB_COMP_PARAM->pSwitch->pLast = pCase;
|
||
}
|
||
HB_COMP_PARAM->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( HB_COMP_PARAM->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
|
||
{
|
||
HB_COMP_PARAM->pSwitch->ulDefault = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
HB_COMP_PARAM->pSwitch->iCount++;
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
static void hb_compSwitchEnd( HB_COMP_DECL )
|
||
{
|
||
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
|
||
BOOL fTextSubst = HB_COMP_PARAM->fTextSubst;
|
||
HB_SWITCHCASE_PTR pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
HB_SWITCHCASE_PTR pTmp;
|
||
HB_SWITCHCMD_PTR pTmpSw;
|
||
ULONG ulExitPos;
|
||
ULONG ulDef;
|
||
|
||
/* 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( HB_COMP_PARAM->pSwitch->ulOffset + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_SWITCH, HB_LOBYTE(HB_COMP_PARAM->pSwitch->iCount), HB_HIBYTE(HB_COMP_PARAM->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;
|
||
}
|
||
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM ); /* end of cases */
|
||
ulDef = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
|
||
if( HB_COMP_PARAM->pSwitch->ulDefault )
|
||
{
|
||
hb_compGenJumpThere( ulDef, HB_COMP_PARAM->pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
hb_compGenJumpHere( ulDef, HB_COMP_PARAM );
|
||
|
||
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
|
||
HB_COMP_PARAM->fTextSubst = fTextSubst;
|
||
|
||
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
|
||
|
||
pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
while( pCase )
|
||
{
|
||
pTmp = pCase->pNext;
|
||
hb_xfree( (void *)pCase );
|
||
pCase = pTmp;
|
||
}
|
||
pTmpSw = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->pSwitch = HB_COMP_PARAM->pSwitch->pPrev;
|
||
hb_xfree( pTmpSw );
|
||
}
|
||
|
||
/* Release all switch statements
|
||
*/
|
||
void hb_compSwitchKill( HB_COMP_DECL )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
HB_SWITCHCMD_PTR pSwitch;
|
||
|
||
while( HB_COMP_PARAM->pSwitch )
|
||
{
|
||
while( HB_COMP_PARAM->pSwitch->pCases )
|
||
{
|
||
pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
HB_COMP_PARAM->pSwitch->pCases = pCase->pNext;
|
||
hb_xfree( (void *) pCase );
|
||
}
|
||
pSwitch = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->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;
|
||
}
|
||
}
|
||
#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 )
|
||
{
|
||
BOOL fUnclosed = TRUE;
|
||
|
||
if( HB_COMP_PARAM->wIfCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
|
||
HB_COMP_PARAM->wIfCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wForCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
|
||
HB_COMP_PARAM->wForCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wWhileCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
|
||
HB_COMP_PARAM->wWhileCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wCaseCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
|
||
HB_COMP_PARAM->wCaseCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wSwitchCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
|
||
HB_COMP_PARAM->wSwitchCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wWithObjectCnt )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
|
||
HB_COMP_PARAM->wWithObjectCnt = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
|
||
HB_COMP_PARAM->wSeqCounter = 0;
|
||
}
|
||
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_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 );
|
||
}
|
||
|