* harbour/source/macro/macro.y
* harbour/source/macro/macro.yyc
* harbour/source/compiler/harbour.y
* harbour/source/compiler/harbour.yyc
% reduced INASSING definition - thanks to Xavi for information
* harbour/source/compiler/hbopt.c
! fixed stupid bug in logical expression optimization - thanks to Randy
for self contain example
* harbour/include/hbapi.h
* harbour/include/hbmacro.h
* harbour/include/hbexprb.c
* harbour/source/vm/macro.c
* harbour/source/vm/hvm.c
* harbour/source/macro/macro.y
* harbour/source/macro/macro.yyc
+ added direct support for pushing references to macro expressions.
It resolves the problem with Clipper compatibility (thanks to Alex
for information and example) in code like:
m->var := {0}
&("var[1]") += 10
and also many other things, f.e. now Harbour can cleanly compile
and execute this code:
proc main
local s
m->o := errorNew()
s:="o:tries"
? m->o:tries
? &s
? &(s+"+=2")
? m->o:tries
? &(s+":=3")
? m->o:tries
?
&s := 4
? m->o:tries
&s -= 2
? m->o:tries
&s++
? m->o:tries
?
s := "o"
m->o := 1
? &s
&s := &s + 4
? &s
? &s += 5
? --&s
?
s := "o[2]"
m->o := { 1, 2 }
? &s
&s := &s + 4
? &s
? &s += 5
? --&s
return
* harbour/utils/hbtest/Makefile
* force hbtest compilation with line numbers - information about line
numbers is important part of this test.
7972 lines
344 KiB
Plaintext
7972 lines
344 KiB
Plaintext
/* A Bison parser, made by GNU Bison 2.3. */
|
||
|
||
/* Skeleton implementation for Bison's Yacc-like parsers in C
|
||
|
||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||
Free Software Foundation, Inc.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 2, or (at your option)
|
||
any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
Boston, MA 02110-1301, USA. */
|
||
|
||
/* As a special exception, you may create a larger work that contains
|
||
part or all of the Bison parser skeleton and distribute that work
|
||
under terms of your choice, so long as that work isn't itself a
|
||
parser generator using the skeleton or a modified version thereof
|
||
as a parser skeleton. Alternatively, if you modify or redistribute
|
||
the parser skeleton itself, you may (at your option) remove this
|
||
special exception, which will cause the skeleton and the resulting
|
||
Bison output files to be licensed under the GNU General Public
|
||
License without this special exception.
|
||
|
||
This special exception was added by the Free Software Foundation in
|
||
version 2.2 of Bison. */
|
||
|
||
/* C LALR(1) parser skeleton written by Richard Stallman, by
|
||
simplifying the original so-called "semantic" parser. */
|
||
|
||
/* All symbols defined below should begin with yy or YY, to avoid
|
||
infringing on user name space. This should be done even for local
|
||
variables, as they might otherwise be expanded by user macros.
|
||
There are some unavoidable exceptions within include files to
|
||
define necessary library symbols; they are noted "INFRINGES ON
|
||
USER NAME SPACE" below. */
|
||
|
||
/* Identify Bison output. */
|
||
#define YYBISON 1
|
||
|
||
/* Bison version. */
|
||
#define YYBISON_VERSION "2.3"
|
||
|
||
/* Skeleton name. */
|
||
#define YYSKELETON_NAME "yacc.c"
|
||
|
||
/* Pure parsers. */
|
||
#define YYPURE 1
|
||
|
||
/* Using locations. */
|
||
#define YYLSP_NEEDED 0
|
||
|
||
/* Substitute the variable and function names. */
|
||
#define yyparse hb_compparse
|
||
#define yylex hb_complex
|
||
#define yyerror hb_comperror
|
||
#define yylval hb_complval
|
||
#define yychar hb_compchar
|
||
#define yydebug hb_compdebug
|
||
#define yynerrs hb_compnerrs
|
||
|
||
|
||
/* Tokens. */
|
||
#ifndef YYTOKENTYPE
|
||
# define YYTOKENTYPE
|
||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
||
know about them. */
|
||
enum yytokentype {
|
||
FUNCTION = 258,
|
||
PROCEDURE = 259,
|
||
IDENTIFIER = 260,
|
||
RETURN = 261,
|
||
NIL = 262,
|
||
NUM_DOUBLE = 263,
|
||
INASSIGN = 264,
|
||
NUM_LONG = 265,
|
||
LOCAL = 266,
|
||
STATIC = 267,
|
||
IIF = 268,
|
||
IF = 269,
|
||
ELSE = 270,
|
||
ELSEIF = 271,
|
||
END = 272,
|
||
ENDIF = 273,
|
||
LITERAL = 274,
|
||
TRUEVALUE = 275,
|
||
FALSEVALUE = 276,
|
||
ANNOUNCE = 277,
|
||
EXTERN = 278,
|
||
DYNAMIC = 279,
|
||
INIT = 280,
|
||
EXIT = 281,
|
||
AND = 282,
|
||
OR = 283,
|
||
NOT = 284,
|
||
PUBLIC = 285,
|
||
EQ = 286,
|
||
NE1 = 287,
|
||
NE2 = 288,
|
||
INC = 289,
|
||
DEC = 290,
|
||
ALIASOP = 291,
|
||
DOCASE = 292,
|
||
CASE = 293,
|
||
OTHERWISE = 294,
|
||
ENDCASE = 295,
|
||
ENDDO = 296,
|
||
MEMVAR = 297,
|
||
WHILE = 298,
|
||
LOOP = 299,
|
||
FOR = 300,
|
||
NEXT = 301,
|
||
TO = 302,
|
||
STEP = 303,
|
||
LE = 304,
|
||
GE = 305,
|
||
FIELD = 306,
|
||
IN = 307,
|
||
PARAMETERS = 308,
|
||
PLUSEQ = 309,
|
||
MINUSEQ = 310,
|
||
MULTEQ = 311,
|
||
DIVEQ = 312,
|
||
POWER = 313,
|
||
EXPEQ = 314,
|
||
MODEQ = 315,
|
||
PRIVATE = 316,
|
||
BEGINSEQ = 317,
|
||
BREAK = 318,
|
||
RECOVER = 319,
|
||
RECOVERUSING = 320,
|
||
ALWAYS = 321,
|
||
ENDSEQ = 322,
|
||
DO = 323,
|
||
WITH = 324,
|
||
SELF = 325,
|
||
LINE = 326,
|
||
MACROVAR = 327,
|
||
MACROTEXT = 328,
|
||
AS_ARRAY = 329,
|
||
AS_BLOCK = 330,
|
||
AS_CHARACTER = 331,
|
||
AS_CLASS = 332,
|
||
AS_DATE = 333,
|
||
AS_LOGICAL = 334,
|
||
AS_NUMERIC = 335,
|
||
AS_OBJECT = 336,
|
||
AS_VARIANT = 337,
|
||
DECLARE = 338,
|
||
OPTIONAL = 339,
|
||
DECLARE_CLASS = 340,
|
||
DECLARE_MEMBER = 341,
|
||
AS_ARRAY_ARRAY = 342,
|
||
AS_BLOCK_ARRAY = 343,
|
||
AS_CHARACTER_ARRAY = 344,
|
||
AS_CLASS_ARRAY = 345,
|
||
AS_DATE_ARRAY = 346,
|
||
AS_LOGICAL_ARRAY = 347,
|
||
AS_NUMERIC_ARRAY = 348,
|
||
AS_OBJECT_ARRAY = 349,
|
||
PROCREQ = 350,
|
||
CBSTART = 351,
|
||
DOIDENT = 352,
|
||
FOREACH = 353,
|
||
DESCEND = 354,
|
||
DOSWITCH = 355,
|
||
ENDSWITCH = 356,
|
||
WITHOBJECT = 357,
|
||
ENDWITH = 358,
|
||
NUM_DATE = 359,
|
||
TIMESTAMP = 360,
|
||
EPSILON = 361,
|
||
HASHOP = 362,
|
||
THREAD = 363,
|
||
POST = 364,
|
||
UNARY = 365,
|
||
PRE = 366
|
||
};
|
||
#endif
|
||
/* Tokens. */
|
||
#define FUNCTION 258
|
||
#define PROCEDURE 259
|
||
#define IDENTIFIER 260
|
||
#define RETURN 261
|
||
#define NIL 262
|
||
#define NUM_DOUBLE 263
|
||
#define INASSIGN 264
|
||
#define NUM_LONG 265
|
||
#define LOCAL 266
|
||
#define STATIC 267
|
||
#define IIF 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define ELSEIF 271
|
||
#define END 272
|
||
#define ENDIF 273
|
||
#define LITERAL 274
|
||
#define TRUEVALUE 275
|
||
#define FALSEVALUE 276
|
||
#define ANNOUNCE 277
|
||
#define EXTERN 278
|
||
#define DYNAMIC 279
|
||
#define INIT 280
|
||
#define EXIT 281
|
||
#define AND 282
|
||
#define OR 283
|
||
#define NOT 284
|
||
#define PUBLIC 285
|
||
#define EQ 286
|
||
#define NE1 287
|
||
#define NE2 288
|
||
#define INC 289
|
||
#define DEC 290
|
||
#define ALIASOP 291
|
||
#define DOCASE 292
|
||
#define CASE 293
|
||
#define OTHERWISE 294
|
||
#define ENDCASE 295
|
||
#define ENDDO 296
|
||
#define MEMVAR 297
|
||
#define WHILE 298
|
||
#define LOOP 299
|
||
#define FOR 300
|
||
#define NEXT 301
|
||
#define TO 302
|
||
#define STEP 303
|
||
#define LE 304
|
||
#define GE 305
|
||
#define FIELD 306
|
||
#define IN 307
|
||
#define PARAMETERS 308
|
||
#define PLUSEQ 309
|
||
#define MINUSEQ 310
|
||
#define MULTEQ 311
|
||
#define DIVEQ 312
|
||
#define POWER 313
|
||
#define EXPEQ 314
|
||
#define MODEQ 315
|
||
#define PRIVATE 316
|
||
#define BEGINSEQ 317
|
||
#define BREAK 318
|
||
#define RECOVER 319
|
||
#define RECOVERUSING 320
|
||
#define ALWAYS 321
|
||
#define ENDSEQ 322
|
||
#define DO 323
|
||
#define WITH 324
|
||
#define SELF 325
|
||
#define LINE 326
|
||
#define MACROVAR 327
|
||
#define MACROTEXT 328
|
||
#define AS_ARRAY 329
|
||
#define AS_BLOCK 330
|
||
#define AS_CHARACTER 331
|
||
#define AS_CLASS 332
|
||
#define AS_DATE 333
|
||
#define AS_LOGICAL 334
|
||
#define AS_NUMERIC 335
|
||
#define AS_OBJECT 336
|
||
#define AS_VARIANT 337
|
||
#define DECLARE 338
|
||
#define OPTIONAL 339
|
||
#define DECLARE_CLASS 340
|
||
#define DECLARE_MEMBER 341
|
||
#define AS_ARRAY_ARRAY 342
|
||
#define AS_BLOCK_ARRAY 343
|
||
#define AS_CHARACTER_ARRAY 344
|
||
#define AS_CLASS_ARRAY 345
|
||
#define AS_DATE_ARRAY 346
|
||
#define AS_LOGICAL_ARRAY 347
|
||
#define AS_NUMERIC_ARRAY 348
|
||
#define AS_OBJECT_ARRAY 349
|
||
#define PROCREQ 350
|
||
#define CBSTART 351
|
||
#define DOIDENT 352
|
||
#define FOREACH 353
|
||
#define DESCEND 354
|
||
#define DOSWITCH 355
|
||
#define ENDSWITCH 356
|
||
#define WITHOBJECT 357
|
||
#define ENDWITH 358
|
||
#define NUM_DATE 359
|
||
#define TIMESTAMP 360
|
||
#define EPSILON 361
|
||
#define HASHOP 362
|
||
#define THREAD 363
|
||
#define POST 364
|
||
#define UNARY 365
|
||
#define PRE 366
|
||
|
||
|
||
|
||
|
||
/* Copy the first part of user declarations. */
|
||
#line 5 "harbour.y"
|
||
|
||
/*
|
||
* $Id$
|
||
*/
|
||
|
||
/*
|
||
* Harbour Project source code:
|
||
* Compiler YACC rules and actions
|
||
*
|
||
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
||
* www - http://www.harbour-project.org
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program; if not, write to the Free Software
|
||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
|
||
* their web site at http://www.gnu.org/).
|
||
*
|
||
*/
|
||
|
||
/* TODO list
|
||
* 1) Change the pcode generated by ::cVar from Self:cVar to QSELF():cVar
|
||
* The major problem to solve is how to support QSELF() inside a codeblock.
|
||
*/
|
||
|
||
|
||
#include "hbcomp.h"
|
||
|
||
/* Compile using: bison -d -v harbour.y */
|
||
|
||
/* to pacify some warnings in BCC */
|
||
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
|
||
# define __STDC__
|
||
#endif
|
||
|
||
#undef alloca
|
||
#define alloca hb_xgrab
|
||
#undef malloc
|
||
#define malloc hb_xgrab
|
||
#undef realloc
|
||
#define realloc hb_xrealloc
|
||
#undef free
|
||
#define free hb_xfree
|
||
|
||
/* NOTE: these symbols are used internally in bison.simple
|
||
*/
|
||
#undef YYFREE
|
||
#define YYFREE hb_xfree
|
||
#undef YYMALLOC
|
||
#define YYMALLOC hb_xgrab
|
||
|
||
#define NO_YYERROR
|
||
|
||
/* NOTE: these symbols are defined explicitly to pacify warnings */
|
||
#define YYENABLE_NLS 0
|
||
#define YYLTYPE_IS_TRIVIAL 0
|
||
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL );
|
||
static void hb_compLoopEnd( HB_COMP_DECL );
|
||
static void hb_compLoopLoop( HB_COMP_DECL );
|
||
static void hb_compLoopExit( HB_COMP_DECL );
|
||
static void hb_compLoopHere( HB_COMP_DECL );
|
||
static long hb_compLoopCount( HB_COMP_DECL );
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirstElseIf, ULONG ulOffset ); /* generates a support structure for elseifs pcode fixups */
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pIfElseIfs ); /* implements the ElseIfs pcode fixups */
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR, BOOL );
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, const char * );
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL );
|
||
static void hb_compVariableDim( const char *, HB_EXPR_PTR, HB_COMP_DECL );
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, const char *szVarName, BOOL bForEach );
|
||
static void hb_compForEnd( HB_COMP_DECL, const 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, HB_EXPR_PTR );
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR );
|
||
static void hb_compSwitchEnd( HB_COMP_DECL );
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
#ifdef HB_YYDEBUG
|
||
#define YYDEBUG 1 /* Parser debug information support */
|
||
#endif
|
||
|
||
/* Controls if passing by reference '@' is allowed */
|
||
#define HB_PASSBYREF_OFF 0
|
||
#define HB_PASSBYREF_FUNCALL 1
|
||
#define HB_PASSBYREF_ARRAY 2
|
||
|
||
static void hb_compDebugStart( void ) { }
|
||
|
||
|
||
|
||
/* Enabling traces. */
|
||
#ifndef YYDEBUG
|
||
# define YYDEBUG 0
|
||
#endif
|
||
|
||
/* Enabling verbose error messages. */
|
||
#ifdef YYERROR_VERBOSE
|
||
# undef YYERROR_VERBOSE
|
||
# define YYERROR_VERBOSE 1
|
||
#else
|
||
# define YYERROR_VERBOSE 0
|
||
#endif
|
||
|
||
/* Enabling the token table. */
|
||
#ifndef YYTOKEN_TABLE
|
||
# define YYTOKEN_TABLE 0
|
||
#endif
|
||
|
||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||
typedef union YYSTYPE
|
||
#line 113 "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
|
||
{
|
||
long date;
|
||
long time;
|
||
} valTimeStamp;
|
||
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;
|
||
PHB_VARTYPE asVarType;
|
||
}
|
||
/* Line 187 of yacc.c. */
|
||
#line 481 "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 161 "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, const char * ); /* parsing error management function */
|
||
|
||
|
||
/* Line 216 of yacc.c. */
|
||
#line 501 "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 281
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 8680
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 134
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 241
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 611
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 956
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 366
|
||
|
||
#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,
|
||
123, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 113, 118, 121, 2,
|
||
126, 127, 116, 114, 125, 115, 2, 117, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 130, 124,
|
||
111, 110, 112, 2, 122, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 132, 2, 131, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 128, 133, 129, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
|
||
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
||
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
||
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
||
105, 106, 107, 108, 109, 119, 120
|
||
};
|
||
|
||
#if YYDEBUG
|
||
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
||
YYRHS. */
|
||
static const yytype_uint16 yyprhs[] =
|
||
{
|
||
0, 0, 3, 5, 6, 8, 10, 12, 14, 16,
|
||
19, 22, 25, 28, 31, 34, 38, 43, 50, 51,
|
||
57, 58, 64, 65, 74, 75, 84, 85, 87, 89,
|
||
91, 92, 94, 96, 100, 101, 103, 104, 106, 108,
|
||
110, 112, 114, 116, 118, 121, 123, 125, 127, 129,
|
||
131, 133, 135, 137, 139, 141, 144, 147, 152, 155,
|
||
158, 161, 164, 167, 170, 173, 176, 179, 182, 185,
|
||
188, 191, 194, 197, 198, 203, 206, 209, 212, 213,
|
||
218, 219, 220, 226, 227, 228, 234, 236, 238, 240,
|
||
244, 248, 249, 254, 259, 261, 265, 266, 269, 271,
|
||
273, 275, 277, 279, 281, 286, 294, 299, 307, 308,
|
||
310, 312, 314, 316, 319, 320, 322, 324, 328, 330,
|
||
334, 336, 338, 340, 342, 344, 346, 348, 350, 352,
|
||
354, 356, 358, 360, 362, 364, 366, 368, 370, 372,
|
||
374, 376, 378, 380, 383, 386, 388, 391, 393, 396,
|
||
399, 401, 403, 406, 408, 411, 415, 418, 421, 424,
|
||
428, 432, 435, 439, 445, 447, 450, 452, 454, 457,
|
||
460, 463, 466, 470, 473, 476, 479, 482, 485, 488,
|
||
491, 494, 497, 500, 503, 506, 509, 512, 514, 516,
|
||
518, 521, 524, 527, 530, 533, 536, 539, 542, 545,
|
||
548, 551, 554, 557, 560, 563, 566, 569, 572, 575,
|
||
578, 581, 584, 587, 590, 593, 596, 599, 602, 605,
|
||
608, 611, 614, 617, 620, 623, 626, 629, 632, 635,
|
||
638, 641, 644, 647, 650, 653, 656, 661, 663, 668,
|
||
673, 676, 679, 681, 685, 687, 689, 692, 695, 698,
|
||
701, 704, 706, 708, 712, 716, 719, 721, 723, 725,
|
||
730, 733, 738, 741, 743, 745, 747, 749, 751, 753,
|
||
755, 757, 760, 762, 764, 766, 768, 770, 772, 774,
|
||
776, 778, 781, 783, 785, 788, 790, 793, 795, 797,
|
||
799, 801, 803, 805, 807, 809, 811, 813, 815, 818,
|
||
821, 823, 825, 827, 828, 830, 832, 834, 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, 895, 898, 901,
|
||
904, 907, 910, 914, 918, 922, 926, 930, 934, 938,
|
||
942, 944, 946, 948, 950, 952, 954, 958, 962, 966,
|
||
970, 974, 978, 982, 986, 990, 994, 998, 1002, 1006,
|
||
1010, 1014, 1018, 1022, 1025, 1028, 1032, 1037, 1039, 1043,
|
||
1044, 1049, 1050, 1052, 1054, 1058, 1061, 1066, 1068, 1072,
|
||
1073, 1074, 1080, 1081, 1087, 1089, 1093, 1097, 1100, 1109,
|
||
1112, 1113, 1118, 1119, 1124, 1125, 1131, 1132, 1137, 1139,
|
||
1143, 1145, 1149, 1151, 1154, 1159, 1163, 1166, 1167, 1173,
|
||
1177, 1180, 1183, 1187, 1192, 1193, 1199, 1202, 1207, 1208,
|
||
1211, 1212, 1217, 1220, 1225, 1226, 1235, 1236, 1242, 1246,
|
||
1251, 1255, 1256, 1264, 1266, 1270, 1272, 1275, 1277, 1280,
|
||
1281, 1288, 1289, 1293, 1294, 1296, 1298, 1302, 1304, 1308,
|
||
1310, 1313, 1317, 1323, 1328, 1334, 1342, 1346, 1351, 1358,
|
||
1364, 1371, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394,
|
||
1396, 1399, 1403, 1407, 1412, 1413, 1414, 1421, 1422, 1427,
|
||
1428, 1429, 1436, 1437, 1438, 1446, 1448, 1450, 1452, 1456,
|
||
1460, 1463, 1468, 1470, 1472, 1474, 1475, 1479, 1481, 1484,
|
||
1485, 1486, 1493, 1494, 1495, 1503, 1504, 1505, 1511, 1512,
|
||
1518, 1519, 1520, 1528, 1530, 1532, 1534, 1536, 1537, 1538,
|
||
1539, 1552, 1554, 1556, 1557, 1560, 1563, 1565, 1568, 1570,
|
||
1573, 1575, 1577, 1579, 1583, 1586, 1588, 1590, 1594, 1595,
|
||
1596, 1597, 1608, 1609, 1611, 1612, 1617, 1620, 1622, 1624,
|
||
1626, 1627, 1632, 1634, 1637, 1638, 1644, 1645, 1652, 1654,
|
||
1657, 1658, 1659, 1665, 1666, 1667, 1668, 1669, 1681, 1683,
|
||
1685, 1686, 1689, 1690, 1694, 1696, 1697, 1701, 1705, 1707,
|
||
1710, 1712, 1714, 1718, 1721, 1722, 1725, 1727, 1730, 1732,
|
||
1735, 1739, 1741, 1743, 1745, 1747, 1749, 1750, 1757, 1759,
|
||
1761, 1763
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yytype_int16 yyrhs[] =
|
||
{
|
||
135, 0, -1, 136, -1, -1, 374, -1, 274, -1,
|
||
138, -1, 150, -1, 137, -1, 1, 374, -1, 136,
|
||
374, -1, 136, 274, -1, 136, 138, -1, 136, 150,
|
||
-1, 136, 137, -1, 136, 1, 374, -1, 71, 10,
|
||
19, 374, -1, 71, 10, 19, 122, 19, 374, -1,
|
||
-1, 143, 3, 168, 139, 374, -1, -1, 143, 4,
|
||
168, 140, 374, -1, -1, 143, 3, 168, 141, 126,
|
||
144, 127, 374, -1, -1, 143, 4, 168, 142, 126,
|
||
144, 127, 374, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, -1, 106, -1, 149, -1, 149, 125, 106, -1,
|
||
-1, 147, -1, -1, 148, -1, 80, -1, 76, -1,
|
||
78, -1, 79, -1, 75, -1, 81, -1, 77, 168,
|
||
-1, 82, -1, 148, -1, 74, -1, 93, -1, 89,
|
||
-1, 91, -1, 92, -1, 87, -1, 88, -1, 94,
|
||
-1, 90, 168, -1, 168, 145, -1, 149, 125, 168,
|
||
145, -1, 289, 159, -1, 253, 159, -1, 203, 159,
|
||
-1, 199, 159, -1, 214, 159, -1, 191, 159, -1,
|
||
193, 159, -1, 251, 159, -1, 224, 159, -1, 223,
|
||
159, -1, 234, 159, -1, 226, 159, -1, 227, 159,
|
||
-1, 367, 159, -1, 63, 159, -1, -1, 63, 151,
|
||
217, 374, -1, 26, 159, -1, 44, 159, -1, 6,
|
||
159, -1, -1, 6, 152, 217, 374, -1, -1, -1,
|
||
30, 153, 261, 154, 374, -1, -1, -1, 61, 155,
|
||
261, 156, 374, -1, 255, -1, 267, -1, 271, -1,
|
||
23, 166, 374, -1, 24, 167, 374, -1, -1, 22,
|
||
168, 157, 374, -1, 95, 158, 127, 374, -1, 19,
|
||
-1, 19, 114, 19, -1, -1, 160, 374, -1, 374,
|
||
-1, 150, -1, 274, -1, 137, -1, 162, -1, 1,
|
||
-1, 163, 3, 168, 374, -1, 163, 3, 168, 126,
|
||
144, 127, 374, -1, 163, 4, 168, 374, -1, 163,
|
||
4, 168, 126, 144, 127, 374, -1, -1, 12, -1,
|
||
25, -1, 26, -1, 161, -1, 164, 161, -1, -1,
|
||
164, -1, 168, -1, 166, 125, 168, -1, 168, -1,
|
||
167, 125, 168, -1, 5, -1, 48, -1, 47, -1,
|
||
44, -1, 26, -1, 52, -1, 84, -1, 23, -1,
|
||
24, -1, 22, -1, 11, -1, 42, -1, 12, -1,
|
||
61, -1, 30, -1, 53, -1, 95, -1, 99, -1,
|
||
108, -1, 8, -1, 10, -1, 104, -1, 105, -1,
|
||
10, 36, -1, 8, 36, -1, 7, -1, 173, 36,
|
||
-1, 19, -1, 175, 36, -1, 246, 36, -1, 20,
|
||
-1, 21, -1, 178, 36, -1, 70, -1, 180, 36,
|
||
-1, 128, 240, 129, -1, 182, 36, -1, 182, 238,
|
||
-1, 184, 36, -1, 128, 107, 129, -1, 128, 188,
|
||
129, -1, 186, 36, -1, 217, 107, 219, -1, 188,
|
||
125, 217, 107, 219, -1, 168, -1, 168, 36, -1,
|
||
72, -1, 73, -1, 191, 36, -1, 121, 251, -1,
|
||
193, 36, -1, 51, 36, -1, 51, 36, 195, -1,
|
||
195, 190, -1, 195, 172, -1, 195, 252, -1, 195,
|
||
192, -1, 195, 194, -1, 195, 174, -1, 195, 176,
|
||
-1, 195, 179, -1, 195, 177, -1, 195, 181, -1,
|
||
195, 183, -1, 195, 185, -1, 195, 187, -1, 195,
|
||
254, -1, 168, -1, 191, -1, 193, -1, 172, 197,
|
||
-1, 192, 197, -1, 194, 197, -1, 252, 197, -1,
|
||
174, 197, -1, 176, 197, -1, 179, 197, -1, 177,
|
||
197, -1, 187, 197, -1, 181, 197, -1, 183, 197,
|
||
-1, 185, 197, -1, 201, 197, -1, 254, 197, -1,
|
||
205, 197, -1, 213, 197, -1, 215, 197, -1, 190,
|
||
197, -1, 195, 197, -1, 196, 197, -1, 172, 251,
|
||
-1, 190, 251, -1, 192, 251, -1, 194, 251, -1,
|
||
252, 251, -1, 195, 251, -1, 169, 238, -1, 173,
|
||
238, -1, 170, 238, -1, 171, 238, -1, 175, 238,
|
||
-1, 246, 238, -1, 178, 238, -1, 186, 238, -1,
|
||
180, 238, -1, 189, 238, -1, 198, 238, -1, 199,
|
||
238, -1, 191, 238, -1, 193, 238, -1, 210, 238,
|
||
-1, 214, 238, -1, 203, 238, -1, 253, 238, -1,
|
||
251, 238, -1, 200, 36, -1, 168, 126, 206, 127,
|
||
-1, 202, -1, 191, 126, 206, 127, -1, 193, 126,
|
||
206, 127, -1, 122, 202, -1, 203, 36, -1, 209,
|
||
-1, 206, 125, 209, -1, 219, -1, 208, -1, 122,
|
||
168, -1, 122, 191, -1, 122, 198, -1, 122, 210,
|
||
-1, 122, 200, -1, 106, -1, 207, -1, 221, 130,
|
||
211, -1, 212, 130, 211, -1, 130, 211, -1, 168,
|
||
-1, 191, -1, 193, -1, 126, 122, 168, 127, -1,
|
||
210, 36, -1, 210, 126, 206, 127, -1, 214, 36,
|
||
-1, 169, -1, 173, -1, 170, -1, 171, -1, 175,
|
||
-1, 246, -1, 178, -1, 180, -1, 180, 147, -1,
|
||
182, -1, 184, -1, 186, -1, 198, -1, 199, -1,
|
||
191, -1, 193, -1, 200, -1, 203, -1, 203, 147,
|
||
-1, 253, -1, 210, -1, 210, 147, -1, 214, -1,
|
||
214, 147, -1, 227, -1, 234, -1, 223, -1, 224,
|
||
-1, 225, -1, 235, -1, 236, -1, 237, -1, 216,
|
||
-1, 189, -1, 251, -1, 189, 147, -1, 251, 147,
|
||
-1, 204, -1, 106, -1, 217, -1, -1, 217, -1,
|
||
168, -1, 198, -1, 191, -1, 193, -1, 210, -1,
|
||
200, -1, 251, -1, 169, -1, 173, -1, 170, -1,
|
||
171, -1, 175, -1, 246, -1, 178, -1, 180, -1,
|
||
182, -1, 184, -1, 186, -1, 198, -1, 199, -1,
|
||
191, -1, 193, -1, 189, -1, 200, -1, 251, -1,
|
||
203, -1, 253, -1, 210, -1, 214, -1, 34, -1,
|
||
35, -1, 221, 222, -1, 34, 217, -1, 35, 217,
|
||
-1, 29, 217, -1, 115, 217, -1, 114, 217, -1,
|
||
221, 110, 217, -1, 221, 9, 217, -1, 221, 54,
|
||
217, -1, 221, 55, 217, -1, 221, 56, 217, -1,
|
||
221, 57, 217, -1, 221, 60, 217, -1, 221, 59,
|
||
217, -1, 228, -1, 229, -1, 230, -1, 231, -1,
|
||
232, -1, 233, -1, 217, 114, 217, -1, 217, 115,
|
||
217, -1, 217, 116, 217, -1, 217, 117, 217, -1,
|
||
217, 118, 217, -1, 217, 58, 217, -1, 217, 27,
|
||
217, -1, 217, 28, 217, -1, 217, 31, 217, -1,
|
||
217, 111, 217, -1, 217, 112, 217, -1, 217, 49,
|
||
217, -1, 217, 50, 217, -1, 217, 32, 217, -1,
|
||
217, 33, 217, -1, 217, 113, 217, -1, 217, 110,
|
||
217, -1, 239, 131, -1, 132, 218, -1, 239, 125,
|
||
218, -1, 239, 131, 132, 218, -1, 209, -1, 240,
|
||
125, 209, -1, -1, 96, 242, 243, 133, -1, -1,
|
||
106, -1, 244, -1, 244, 125, 106, -1, 168, 145,
|
||
-1, 244, 125, 168, 145, -1, 217, -1, 245, 125,
|
||
217, -1, -1, -1, 241, 247, 245, 248, 129, -1,
|
||
-1, 241, 374, 249, 165, 129, -1, 217, -1, 250,
|
||
125, 217, -1, 126, 250, 127, -1, 251, 36, -1,
|
||
13, 126, 217, 125, 207, 125, 207, 127, -1, 253,
|
||
36, -1, -1, 11, 256, 260, 374, -1, -1, 12,
|
||
257, 260, 374, -1, -1, 108, 12, 258, 260, 374,
|
||
-1, -1, 53, 259, 273, 374, -1, 263, -1, 260,
|
||
125, 263, -1, 262, -1, 261, 125, 262, -1, 263,
|
||
-1, 191, 145, -1, 191, 145, 9, 217, -1, 191,
|
||
265, 146, -1, 168, 145, -1, -1, 168, 145, 264,
|
||
9, 217, -1, 168, 265, 146, -1, 266, 131, -1,
|
||
132, 217, -1, 266, 125, 217, -1, 266, 131, 132,
|
||
217, -1, -1, 51, 268, 269, 270, 374, -1, 168,
|
||
145, -1, 269, 125, 168, 145, -1, -1, 52, 168,
|
||
-1, -1, 42, 272, 273, 374, -1, 168, 145, -1,
|
||
273, 125, 168, 145, -1, -1, 83, 168, 126, 275,
|
||
284, 127, 145, 374, -1, -1, 83, 168, 276, 279,
|
||
374, -1, 85, 168, 374, -1, 85, 168, 168, 374,
|
||
-1, 86, 280, 374, -1, -1, 86, 128, 145, 277,
|
||
278, 129, 374, -1, 282, -1, 278, 125, 282, -1,
|
||
280, -1, 279, 280, -1, 282, -1, 279, 282, -1,
|
||
-1, 168, 126, 281, 284, 127, 145, -1, -1, 168,
|
||
283, 145, -1, -1, 287, -1, 288, -1, 287, 125,
|
||
288, -1, 286, -1, 285, 125, 286, -1, 219, -1,
|
||
168, 145, -1, 122, 168, 145, -1, 122, 168, 126,
|
||
285, 127, -1, 287, 125, 168, 145, -1, 287, 125,
|
||
122, 168, 145, -1, 287, 125, 122, 168, 126, 285,
|
||
127, -1, 84, 168, 145, -1, 84, 122, 168, 145,
|
||
-1, 84, 122, 168, 126, 285, 127, -1, 288, 125,
|
||
84, 168, 145, -1, 288, 125, 84, 122, 168, 145,
|
||
-1, 288, 125, 84, 122, 168, 126, 285, 127, -1,
|
||
290, -1, 303, -1, 318, -1, 324, -1, 354, -1,
|
||
336, -1, 341, -1, 371, -1, 291, 301, -1, 291,
|
||
294, 301, -1, 291, 296, 301, -1, 291, 296, 294,
|
||
301, -1, -1, -1, 14, 250, 292, 374, 293, 165,
|
||
-1, -1, 15, 374, 295, 165, -1, -1, -1, 16,
|
||
297, 250, 374, 298, 165, -1, -1, -1, 296, 16,
|
||
299, 250, 374, 300, 165, -1, 302, -1, 18, -1,
|
||
17, -1, 308, 309, 304, -1, 308, 314, 304, -1,
|
||
308, 304, -1, 308, 309, 314, 304, -1, 305, -1,
|
||
40, -1, 17, -1, -1, 37, 307, 374, -1, 306,
|
||
-1, 306, 164, -1, -1, -1, 38, 310, 250, 374,
|
||
311, 165, -1, -1, -1, 309, 38, 312, 250, 374,
|
||
313, 165, -1, -1, -1, 39, 315, 374, 316, 165,
|
||
-1, -1, 314, 39, 317, 374, 165, -1, -1, -1,
|
||
321, 250, 374, 319, 165, 320, 322, -1, 43, -1,
|
||
323, -1, 41, -1, 17, -1, -1, -1, -1, 45,
|
||
220, 328, 217, 325, 47, 250, 329, 326, 374, 327,
|
||
330, -1, 110, -1, 9, -1, -1, 48, 250, -1,
|
||
165, 331, -1, 46, -1, 46, 168, -1, 17, -1,
|
||
17, 168, -1, 168, -1, 198, -1, 332, -1, 333,
|
||
125, 332, -1, 122, 168, -1, 217, -1, 334, -1,
|
||
335, 125, 334, -1, -1, -1, -1, 98, 333, 52,
|
||
335, 337, 340, 338, 374, 339, 330, -1, -1, 99,
|
||
-1, -1, 347, 342, 348, 343, -1, 347, 343, -1,
|
||
344, -1, 101, -1, 17, -1, -1, 100, 346, 217,
|
||
374, -1, 345, -1, 345, 164, -1, -1, 38, 217,
|
||
349, 374, 165, -1, -1, 348, 38, 217, 350, 374,
|
||
165, -1, 351, -1, 348, 351, -1, -1, -1, 39,
|
||
352, 374, 353, 165, -1, -1, -1, -1, -1, 62,
|
||
355, 360, 374, 165, 356, 363, 357, 361, 358, 359,
|
||
-1, 67, -1, 17, -1, -1, 69, 217, -1, -1,
|
||
362, 374, 165, -1, 66, -1, -1, 364, 374, 165,
|
||
-1, 365, 374, 165, -1, 64, -1, 65, 168, -1,
|
||
191, -1, 193, -1, 68, 366, 368, -1, 97, 368,
|
||
-1, -1, 69, 369, -1, 125, -1, 125, 370, -1,
|
||
370, -1, 369, 125, -1, 369, 125, 370, -1, 168,
|
||
-1, 208, -1, 204, -1, 216, -1, 251, -1, -1,
|
||
102, 217, 374, 372, 165, 373, -1, 103, -1, 17,
|
||
-1, 123, -1, 124, -1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const yytype_uint16 yyrline[] =
|
||
{
|
||
0, 285, 285, 286, 289, 290, 291, 292, 293, 294,
|
||
295, 296, 297, 298, 299, 300, 303, 308, 316, 316,
|
||
317, 317, 318, 318, 319, 319, 322, 323, 324, 325,
|
||
328, 329, 330, 331, 334, 335, 338, 339, 342, 343,
|
||
344, 345, 346, 347, 348, 349, 350, 353, 354, 355,
|
||
356, 357, 358, 359, 360, 361, 364, 365, 373, 374,
|
||
375, 376, 377, 378, 384, 390, 391, 392, 393, 394,
|
||
395, 396, 397, 399, 399, 405, 406, 407, 419, 419,
|
||
439, 441, 439, 445, 447, 445, 451, 452, 453, 454,
|
||
455, 456, 456, 470, 473, 481, 500, 500, 503, 504,
|
||
505, 506, 507, 508, 521, 522, 523, 524, 527, 528,
|
||
529, 530, 533, 534, 537, 538, 541, 542, 545, 546,
|
||
549, 550, 551, 552, 553, 554, 555, 556, 557, 558,
|
||
559, 560, 561, 562, 563, 564, 565, 566, 567, 572,
|
||
573, 576, 579, 582, 583, 588, 591, 596, 602, 607,
|
||
612, 613, 616, 621, 624, 635, 638, 643, 646, 649,
|
||
650, 653, 656, 657, 662, 665, 670, 671, 674, 679,
|
||
682, 689, 690, 695, 696, 697, 698, 699, 700, 701,
|
||
702, 703, 704, 705, 706, 707, 708, 711, 712, 713,
|
||
716, 717, 718, 719, 720, 721, 722, 723, 724, 725,
|
||
726, 727, 728, 729, 730, 731, 732, 733, 734, 735,
|
||
744, 745, 746, 747, 748, 749, 754, 755, 756, 757,
|
||
758, 759, 760, 761, 762, 763, 764, 765, 766, 767,
|
||
768, 769, 770, 771, 772, 775, 779, 782, 783, 784,
|
||
788, 791, 794, 795, 798, 799, 802, 803, 804, 805,
|
||
806, 809, 810, 815, 816, 817, 823, 824, 825, 828,
|
||
831, 836, 839, 848, 849, 850, 851, 852, 853, 854,
|
||
855, 856, 857, 858, 859, 860, 861, 862, 863, 864,
|
||
865, 866, 867, 868, 869, 870, 871, 872, 873, 874,
|
||
875, 876, 877, 878, 879, 882, 883, 884, 885, 886,
|
||
887, 890, 891, 894, 895, 898, 899, 900, 901, 902,
|
||
903, 904, 911, 912, 913, 914, 915, 916, 917, 918,
|
||
919, 920, 921, 922, 923, 924, 925, 926, 927, 928,
|
||
929, 930, 931, 932, 938, 939, 942, 945, 946, 949,
|
||
950, 951, 954, 957, 960, 963, 966, 969, 972, 975,
|
||
978, 979, 980, 981, 982, 983, 986, 987, 988, 989,
|
||
990, 991, 994, 995, 998, 999, 1000, 1001, 1002, 1003,
|
||
1004, 1005, 1006, 1009, 1015, 1016, 1017, 1020, 1021, 1024,
|
||
1024, 1030, 1031, 1032, 1033, 1036, 1037, 1040, 1041, 1045,
|
||
1048, 1044, 1051, 1050, 1086, 1087, 1089, 1092, 1101, 1105,
|
||
1108, 1108, 1110, 1110, 1112, 1112, 1114, 1114, 1124, 1125,
|
||
1128, 1129, 1137, 1138, 1140, 1144, 1151, 1169, 1169, 1198,
|
||
1204, 1207, 1208, 1209, 1212, 1212, 1219, 1220, 1223, 1224,
|
||
1227, 1227, 1230, 1231, 1234, 1234, 1253, 1253, 1254, 1255,
|
||
1256, 1257, 1257, 1260, 1261, 1264, 1265, 1266, 1267, 1270,
|
||
1270, 1289, 1289, 1344, 1345, 1346, 1347, 1350, 1351, 1354,
|
||
1357, 1358, 1359, 1360, 1361, 1362, 1365, 1366, 1367, 1368,
|
||
1369, 1370, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380,
|
||
1383, 1384, 1385, 1386, 1390, 1392, 1389, 1397, 1397, 1401,
|
||
1403, 1401, 1411, 1413, 1411, 1422, 1430, 1431, 1434, 1438,
|
||
1442, 1445, 1451, 1458, 1459, 1462, 1462, 1465, 1466, 1474,
|
||
1475, 1474, 1486, 1487, 1486, 1499, 1499, 1499, 1501, 1501,
|
||
1506, 1511, 1505, 1525, 1534, 1538, 1539, 1543, 1556, 1561,
|
||
1542, 1609, 1610, 1613, 1614, 1617, 1625, 1626, 1627, 1628,
|
||
1631, 1632, 1635, 1636, 1639, 1640, 1643, 1644, 1649, 1655,
|
||
1666, 1648, 1686, 1687, 1691, 1690, 1703, 1711, 1719, 1720,
|
||
1724, 1723, 1734, 1735, 1744, 1744, 1747, 1747, 1750, 1752,
|
||
1755, 1755, 1755, 1760, 1768, 1779, 1789, 1759, 1820, 1821,
|
||
1824, 1825, 1833, 1834, 1837, 1846, 1847, 1848, 1851, 1862,
|
||
1880, 1881, 1884, 1888, 1896, 1897, 1900, 1901, 1902, 1903,
|
||
1904, 1907, 1908, 1909, 1910, 1911, 1915, 1914, 1937, 1938,
|
||
1941, 1942
|
||
};
|
||
#endif
|
||
|
||
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
||
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
||
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
||
static const char *const yytname[] =
|
||
{
|
||
"$end", "error", "$undefined", "FUNCTION", "PROCEDURE", "IDENTIFIER",
|
||
"RETURN", "NIL", "NUM_DOUBLE", "INASSIGN", "NUM_LONG", "LOCAL", "STATIC",
|
||
"IIF", "IF", "ELSE", "ELSEIF", "END", "ENDIF", "LITERAL", "TRUEVALUE",
|
||
"FALSEVALUE", "ANNOUNCE", "EXTERN", "DYNAMIC", "INIT", "EXIT", "AND",
|
||
"OR", "NOT", "PUBLIC", "EQ", "NE1", "NE2", "INC", "DEC", "ALIASOP",
|
||
"DOCASE", "CASE", "OTHERWISE", "ENDCASE", "ENDDO", "MEMVAR", "WHILE",
|
||
"LOOP", "FOR", "NEXT", "TO", "STEP", "LE", "GE", "FIELD", "IN",
|
||
"PARAMETERS", "PLUSEQ", "MINUSEQ", "MULTEQ", "DIVEQ", "POWER", "EXPEQ",
|
||
"MODEQ", "PRIVATE", "BEGINSEQ", "BREAK", "RECOVER", "RECOVERUSING",
|
||
"ALWAYS", "ENDSEQ", "DO", "WITH", "SELF", "LINE", "MACROVAR",
|
||
"MACROTEXT", "AS_ARRAY", "AS_BLOCK", "AS_CHARACTER", "AS_CLASS",
|
||
"AS_DATE", "AS_LOGICAL", "AS_NUMERIC", "AS_OBJECT", "AS_VARIANT",
|
||
"DECLARE", "OPTIONAL", "DECLARE_CLASS", "DECLARE_MEMBER",
|
||
"AS_ARRAY_ARRAY", "AS_BLOCK_ARRAY", "AS_CHARACTER_ARRAY",
|
||
"AS_CLASS_ARRAY", "AS_DATE_ARRAY", "AS_LOGICAL_ARRAY",
|
||
"AS_NUMERIC_ARRAY", "AS_OBJECT_ARRAY", "PROCREQ", "CBSTART", "DOIDENT",
|
||
"FOREACH", "DESCEND", "DOSWITCH", "ENDSWITCH", "WITHOBJECT", "ENDWITH",
|
||
"NUM_DATE", "TIMESTAMP", "EPSILON", "HASHOP", "THREAD", "POST", "'='",
|
||
"'<'", "'>'", "'$'", "'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE",
|
||
"'&'", "'@'", "'\\n'", "';'", "','", "'('", "')'", "'{'", "'}'", "':'",
|
||
"']'", "'['", "'|'", "$accept", "Main", "Source", "Line", "Function",
|
||
"@1", "@2", "@3", "@4", "FunScope", "Params", "AsType", "AsArrayType",
|
||
"StrongType", "AsArray", "ParamList", "Statement", "@5", "@6", "@7",
|
||
"@8", "@9", "@10", "@11", "CompTimeStr", "CrlfStmnt", "@12", "LineStat",
|
||
"ControlError", "FunScopeId", "Statements", "EmptyStats", "ExtList",
|
||
"DynList", "IdentName", "NumValue", "DateValue", "TimeStampValue",
|
||
"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",
|
||
"FunCall", "FunRef", "FunCallAlias", "ArgList", "Argument",
|
||
"RefArgument", "ExtArgument", "ObjectData", "SendId", "ObjectRef",
|
||
"ObjectDataAlias", "ObjectMethod", "ObjectMethodAlias",
|
||
"SimpleExpression", "Expression", "ExtExpression", "EmptyExpression",
|
||
"LValue", "LeftExpression", "PostOp", "ExprPostOp", "ExprPreOp",
|
||
"ExprUnary", "ExprEqual", "ExprAssign", "ExprPlusEq", "ExprMinusEq",
|
||
"ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq", "ExprOperEq",
|
||
"ExprMath", "ExprBool", "ExprRelation", "ArrayIndex", "IndexList",
|
||
"ElemList", "BlockHead", "@13", "BlockVars", "BlockVarList",
|
||
"BlockExpList", "CodeBlock", "@14", "@15", "@16", "ExpList",
|
||
"PareExpList", "PareExpListAlias", "IfInline", "IfInlineAlias",
|
||
"VarDefs", "@17", "@18", "@19", "@20", "VarList", "ExtVarList",
|
||
"ExtVarDef", "VarDef", "@21", "DimList", "DimIndex", "FieldsDef", "@22",
|
||
"FieldList", "InAlias", "MemvarDef", "@23", "MemvarList", "Declaration",
|
||
"@24", "@25", "@26", "DecDataList", "ClassInfo", "DecMethod", "@27",
|
||
"DecData", "@28", "DecList", "DummyArgList", "DummyArgument",
|
||
"FormalList", "OptList", "ExecFlow", "IfEndif", "IfBegin", "@29", "@30",
|
||
"IfElse", "@31", "IfElseIf", "@32", "@33", "@34", "@35", "EndIf",
|
||
"EndIfID", "DoCase", "EndCase", "EndCaseID", "DoCaseStart", "@36",
|
||
"DoCaseBegin", "Cases", "@37", "@38", "@39", "@40", "Otherwise", "@41",
|
||
"@42", "@43", "DoWhile", "@44", "@45", "WhileBegin", "EndWhile",
|
||
"EndWhileID", "ForNext", "@46", "@47", "@48", "ForAssign", "StepExpr",
|
||
"ForStatements", "EndForID", "ForVar", "ForList", "ForExpr", "ForArgs",
|
||
"ForEach", "@49", "@50", "@51", "Descend", "DoSwitch", "@52",
|
||
"EndSwitch", "EndSwitchID", "SwitchStart", "@53", "SwitchBegin",
|
||
"SwitchCases", "@54", "@55", "SwitchDefault", "@56", "@57", "BeginSeq",
|
||
"@58", "@59", "@60", "@61", "EndSeqID", "BlockSeq", "AlwaysSeq",
|
||
"Always", "RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoName",
|
||
"DoProc", "DoArgs", "DoArgList", "DoArgument", "WithObject", "@62",
|
||
"EndWithID", "Crlf", 0
|
||
};
|
||
#endif
|
||
|
||
# ifdef YYPRINT
|
||
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
|
||
token YYLEX-NUM. */
|
||
static const yytype_uint16 yytoknum[] =
|
||
{
|
||
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
||
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
||
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
||
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
||
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
||
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
||
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
||
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
||
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
||
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
|
||
61, 60, 62, 36, 43, 45, 42, 47, 37, 365,
|
||
366, 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, 134, 135, 135, 136, 136, 136, 136, 136, 136,
|
||
136, 136, 136, 136, 136, 136, 137, 137, 139, 138,
|
||
140, 138, 141, 138, 142, 138, 143, 143, 143, 143,
|
||
144, 144, 144, 144, 145, 145, 146, 146, 147, 147,
|
||
147, 147, 147, 147, 147, 147, 147, 148, 148, 148,
|
||
148, 148, 148, 148, 148, 148, 149, 149, 150, 150,
|
||
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
|
||
150, 150, 150, 151, 150, 150, 150, 150, 152, 150,
|
||
153, 154, 150, 155, 156, 150, 150, 150, 150, 150,
|
||
150, 157, 150, 150, 158, 158, 160, 159, 161, 161,
|
||
161, 161, 161, 161, 162, 162, 162, 162, 163, 163,
|
||
163, 163, 164, 164, 165, 165, 166, 166, 167, 167,
|
||
168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
|
||
168, 168, 168, 168, 168, 168, 168, 168, 168, 169,
|
||
169, 170, 171, 172, 172, 173, 174, 175, 176, 177,
|
||
178, 178, 179, 180, 181, 182, 183, 184, 185, 186,
|
||
186, 187, 188, 188, 189, 190, 191, 191, 192, 193,
|
||
194, 195, 195, 196, 196, 196, 196, 196, 196, 196,
|
||
196, 196, 196, 196, 196, 196, 196, 197, 197, 197,
|
||
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
|
||
199, 199, 199, 199, 199, 199, 200, 200, 200, 200,
|
||
200, 200, 200, 200, 200, 200, 200, 200, 200, 200,
|
||
200, 200, 200, 200, 200, 201, 202, 203, 203, 203,
|
||
204, 205, 206, 206, 207, 207, 208, 208, 208, 208,
|
||
208, 209, 209, 210, 210, 210, 211, 211, 211, 212,
|
||
213, 214, 215, 216, 216, 216, 216, 216, 216, 216,
|
||
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
|
||
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
|
||
216, 216, 216, 216, 216, 217, 217, 217, 217, 217,
|
||
217, 218, 218, 219, 219, 220, 220, 220, 220, 220,
|
||
220, 220, 221, 221, 221, 221, 221, 221, 221, 221,
|
||
221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
|
||
221, 221, 221, 221, 222, 222, 223, 224, 224, 225,
|
||
225, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
||
234, 234, 234, 234, 234, 234, 235, 235, 235, 235,
|
||
235, 235, 236, 236, 237, 237, 237, 237, 237, 237,
|
||
237, 237, 237, 238, 239, 239, 239, 240, 240, 242,
|
||
241, 243, 243, 243, 243, 244, 244, 245, 245, 247,
|
||
248, 246, 249, 246, 250, 250, 251, 252, 253, 254,
|
||
256, 255, 257, 255, 258, 255, 259, 255, 260, 260,
|
||
261, 261, 262, 262, 262, 262, 263, 264, 263, 263,
|
||
265, 266, 266, 266, 268, 267, 269, 269, 270, 270,
|
||
272, 271, 273, 273, 275, 274, 276, 274, 274, 274,
|
||
274, 277, 274, 278, 278, 279, 279, 279, 279, 281,
|
||
280, 283, 282, 284, 284, 284, 284, 285, 285, 286,
|
||
287, 287, 287, 287, 287, 287, 288, 288, 288, 288,
|
||
288, 288, 289, 289, 289, 289, 289, 289, 289, 289,
|
||
290, 290, 290, 290, 292, 293, 291, 295, 294, 297,
|
||
298, 296, 299, 300, 296, 301, 302, 302, 303, 303,
|
||
303, 303, 304, 305, 305, 307, 306, 308, 308, 310,
|
||
311, 309, 312, 313, 309, 315, 316, 314, 317, 314,
|
||
319, 320, 318, 321, 322, 323, 323, 325, 326, 327,
|
||
324, 328, 328, 329, 329, 330, 331, 331, 331, 331,
|
||
332, 332, 333, 333, 334, 334, 335, 335, 337, 338,
|
||
339, 336, 340, 340, 342, 341, 341, 343, 344, 344,
|
||
346, 345, 347, 347, 349, 348, 350, 348, 348, 348,
|
||
352, 353, 351, 355, 356, 357, 358, 354, 359, 359,
|
||
360, 360, 361, 361, 362, 363, 363, 363, 364, 365,
|
||
366, 366, 367, 367, 368, 368, 369, 369, 369, 369,
|
||
369, 370, 370, 370, 370, 370, 372, 371, 373, 373,
|
||
374, 374
|
||
};
|
||
|
||
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
||
static const yytype_uint8 yyr2[] =
|
||
{
|
||
0, 2, 1, 0, 1, 1, 1, 1, 1, 2,
|
||
2, 2, 2, 2, 2, 3, 4, 6, 0, 5,
|
||
0, 5, 0, 8, 0, 8, 0, 1, 1, 1,
|
||
0, 1, 1, 3, 0, 1, 0, 1, 1, 1,
|
||
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 2, 2, 4, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 0, 4, 2, 2, 2, 0, 4,
|
||
0, 0, 5, 0, 0, 5, 1, 1, 1, 3,
|
||
3, 0, 4, 4, 1, 3, 0, 2, 1, 1,
|
||
1, 1, 1, 1, 4, 7, 4, 7, 0, 1,
|
||
1, 1, 1, 2, 0, 1, 1, 3, 1, 3,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 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, 2, 4, 1, 4, 4,
|
||
2, 2, 1, 3, 1, 1, 2, 2, 2, 2,
|
||
2, 1, 1, 3, 3, 2, 1, 1, 1, 4,
|
||
2, 4, 2, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 1, 1, 2, 1, 2, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 2, 2,
|
||
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, 1, 2, 2, 2, 2,
|
||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
1, 1, 1, 1, 1, 1, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 2, 2, 3, 4, 1, 3, 0,
|
||
4, 0, 1, 1, 3, 2, 4, 1, 3, 0,
|
||
0, 5, 0, 5, 1, 3, 3, 2, 8, 2,
|
||
0, 4, 0, 4, 0, 5, 0, 4, 1, 3,
|
||
1, 3, 1, 2, 4, 3, 2, 0, 5, 3,
|
||
2, 2, 3, 4, 0, 5, 2, 4, 0, 2,
|
||
0, 4, 2, 4, 0, 8, 0, 5, 3, 4,
|
||
3, 0, 7, 1, 3, 1, 2, 1, 2, 0,
|
||
6, 0, 3, 0, 1, 1, 3, 1, 3, 1,
|
||
2, 3, 5, 4, 5, 7, 3, 4, 6, 5,
|
||
6, 8, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
2, 3, 3, 4, 0, 0, 6, 0, 4, 0,
|
||
0, 6, 0, 0, 7, 1, 1, 1, 3, 3,
|
||
2, 4, 1, 1, 1, 0, 3, 1, 2, 0,
|
||
0, 6, 0, 0, 7, 0, 0, 5, 0, 5,
|
||
0, 0, 7, 1, 1, 1, 1, 0, 0, 0,
|
||
12, 1, 1, 0, 2, 2, 1, 2, 1, 2,
|
||
1, 1, 1, 3, 2, 1, 1, 3, 0, 0,
|
||
0, 10, 0, 1, 0, 4, 2, 1, 1, 1,
|
||
0, 4, 1, 2, 0, 5, 0, 6, 1, 2,
|
||
0, 0, 5, 0, 0, 0, 0, 11, 1, 1,
|
||
0, 2, 0, 3, 1, 0, 3, 3, 1, 2,
|
||
1, 1, 3, 2, 0, 2, 1, 2, 1, 2,
|
||
3, 1, 1, 1, 1, 1, 0, 6, 1, 1,
|
||
1, 1
|
||
};
|
||
|
||
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
|
||
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
|
||
means the default is an error. */
|
||
static const yytype_uint16 yydefact[] =
|
||
{
|
||
0, 0, 120, 78, 145, 139, 140, 400, 402, 0,
|
||
0, 147, 150, 151, 129, 127, 128, 28, 124, 80,
|
||
0, 0, 505, 430, 523, 123, 0, 122, 121, 424,
|
||
125, 406, 83, 573, 73, 0, 153, 0, 166, 167,
|
||
0, 126, 0, 0, 136, 379, 594, 0, 137, 560,
|
||
0, 141, 142, 138, 0, 610, 611, 0, 303, 0,
|
||
0, 0, 8, 6, 0, 7, 164, 312, 314, 315,
|
||
0, 313, 0, 316, 0, 0, 318, 0, 319, 0,
|
||
320, 0, 321, 0, 322, 0, 327, 0, 325, 0,
|
||
326, 0, 0, 0, 323, 324, 328, 0, 237, 330,
|
||
0, 332, 0, 0, 333, 0, 0, 96, 96, 96,
|
||
96, 350, 351, 352, 353, 354, 355, 96, 389, 317,
|
||
329, 0, 331, 0, 86, 87, 88, 5, 96, 472,
|
||
0, 473, 0, 0, 474, 0, 475, 477, 478, 0,
|
||
554, 476, 96, 479, 4, 9, 0, 77, 0, 144,
|
||
143, 0, 0, 0, 130, 132, 129, 127, 128, 124,
|
||
0, 134, 131, 123, 0, 135, 133, 136, 138, 0,
|
||
0, 0, 263, 265, 266, 264, 267, 269, 270, 272,
|
||
273, 274, 296, 277, 278, 275, 276, 279, 280, 300,
|
||
283, 285, 295, 394, 0, 289, 290, 291, 287, 288,
|
||
292, 293, 294, 268, 484, 297, 282, 91, 0, 116,
|
||
0, 118, 75, 0, 337, 338, 0, 0, 76, 164,
|
||
307, 308, 306, 324, 310, 330, 309, 333, 0, 0,
|
||
311, 331, 171, 0, 0, 0, 580, 0, 72, 590,
|
||
591, 594, 0, 436, 0, 34, 0, 0, 94, 0,
|
||
381, 0, 593, 164, 325, 326, 541, 329, 542, 0,
|
||
0, 0, 404, 0, 169, 0, 0, 251, 0, 0,
|
||
0, 252, 245, 377, 304, 244, 0, 256, 257, 258,
|
||
255, 1, 0, 14, 12, 13, 11, 10, 0, 0,
|
||
165, 303, 0, 216, 0, 218, 219, 187, 188, 189,
|
||
190, 210, 146, 217, 194, 148, 220, 195, 197, 152,
|
||
222, 196, 154, 224, 199, 156, 157, 200, 158, 201,
|
||
161, 223, 198, 225, 207, 211, 168, 303, 63, 228,
|
||
191, 212, 170, 303, 64, 229, 192, 213, 0, 0,
|
||
187, 174, 0, 178, 0, 179, 181, 0, 180, 0,
|
||
182, 0, 183, 0, 184, 0, 185, 173, 188, 176,
|
||
189, 177, 208, 0, 215, 175, 0, 186, 209, 226,
|
||
61, 227, 235, 202, 241, 60, 232, 204, 260, 303,
|
||
230, 0, 205, 262, 62, 231, 206, 0, 334, 335,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 336, 67,
|
||
66, 69, 70, 68, 0, 392, 149, 221, 397, 65,
|
||
234, 193, 214, 399, 59, 233, 203, 58, 0, 489,
|
||
497, 496, 0, 0, 480, 495, 103, 402, 110, 124,
|
||
101, 99, 112, 102, 0, 0, 100, 98, 504, 509,
|
||
515, 503, 500, 502, 0, 0, 0, 0, 559, 558,
|
||
0, 556, 557, 71, 0, 97, 34, 0, 408, 0,
|
||
0, 339, 341, 340, 0, 240, 47, 42, 39, 0,
|
||
40, 41, 38, 43, 45, 52, 53, 49, 0, 50,
|
||
51, 48, 54, 271, 46, 298, 281, 284, 286, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 299, 0,
|
||
0, 89, 0, 90, 34, 81, 410, 412, 506, 34,
|
||
0, 532, 531, 0, 172, 34, 428, 0, 84, 0,
|
||
0, 0, 592, 0, 434, 0, 0, 438, 441, 35,
|
||
449, 440, 0, 0, 382, 34, 0, 383, 596, 164,
|
||
300, 602, 295, 0, 297, 595, 598, 0, 0, 0,
|
||
606, 0, 0, 396, 159, 246, 247, 248, 250, 240,
|
||
249, 0, 160, 303, 303, 155, 15, 18, 20, 0,
|
||
242, 304, 301, 302, 374, 0, 373, 0, 0, 0,
|
||
254, 343, 344, 345, 346, 347, 349, 348, 342, 253,
|
||
387, 390, 0, 487, 0, 481, 492, 0, 482, 0,
|
||
0, 113, 0, 0, 512, 498, 0, 518, 499, 520,
|
||
0, 570, 0, 568, 79, 0, 416, 36, 0, 0,
|
||
401, 403, 303, 44, 55, 362, 363, 364, 369, 370,
|
||
367, 368, 361, 372, 365, 366, 371, 356, 357, 358,
|
||
359, 360, 395, 485, 92, 117, 119, 413, 36, 0,
|
||
0, 432, 0, 431, 527, 426, 0, 0, 0, 407,
|
||
0, 581, 0, 74, 0, 16, 453, 451, 0, 445,
|
||
447, 439, 0, 453, 95, 93, 385, 380, 0, 597,
|
||
599, 0, 545, 546, 548, 543, 561, 0, 0, 259,
|
||
0, 162, 378, 0, 0, 0, 0, 303, 236, 375,
|
||
0, 238, 239, 261, 0, 0, 0, 0, 0, 0,
|
||
0, 483, 0, 0, 0, 516, 0, 501, 0, 0,
|
||
564, 0, 0, 555, 569, 421, 0, 419, 37, 0,
|
||
420, 409, 0, 0, 0, 415, 411, 82, 34, 0,
|
||
429, 34, 425, 85, 574, 0, 126, 0, 34, 0,
|
||
454, 455, 34, 446, 448, 437, 451, 0, 443, 0,
|
||
384, 34, 600, 544, 0, 552, 0, 405, 303, 19,
|
||
30, 21, 30, 243, 376, 388, 391, 393, 488, 490,
|
||
0, 30, 104, 30, 106, 510, 0, 0, 0, 521,
|
||
0, 571, 566, 0, 422, 0, 303, 486, 414, 433,
|
||
0, 427, 585, 17, 0, 34, 34, 460, 34, 0,
|
||
0, 452, 0, 0, 34, 386, 547, 553, 549, 609,
|
||
608, 607, 163, 31, 0, 32, 34, 0, 0, 493,
|
||
0, 0, 0, 517, 513, 519, 0, 0, 0, 0,
|
||
418, 423, 0, 533, 588, 0, 575, 0, 0, 34,
|
||
466, 303, 461, 0, 0, 34, 456, 0, 444, 442,
|
||
450, 0, 0, 0, 56, 0, 491, 0, 0, 0,
|
||
511, 0, 526, 525, 522, 524, 565, 572, 0, 398,
|
||
0, 528, 589, 582, 0, 0, 303, 467, 459, 0,
|
||
457, 435, 34, 463, 0, 34, 550, 23, 33, 34,
|
||
25, 494, 105, 107, 514, 567, 534, 0, 584, 576,
|
||
0, 586, 587, 0, 303, 462, 303, 464, 34, 469,
|
||
0, 57, 529, 0, 0, 468, 458, 0, 303, 470,
|
||
0, 551, 0, 579, 578, 577, 583, 465, 0, 538,
|
||
536, 535, 530, 471, 539, 537
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yydefgoto[] =
|
||
{
|
||
-1, 60, 61, 430, 63, 703, 705, 704, 706, 64,
|
||
834, 538, 737, 539, 484, 835, 431, 237, 146, 213,
|
||
660, 235, 670, 509, 249, 212, 148, 432, 433, 434,
|
||
716, 940, 208, 210, 66, 172, 173, 174, 70, 175,
|
||
72, 176, 74, 75, 177, 77, 178, 79, 179, 81,
|
||
180, 83, 181, 85, 270, 182, 87, 183, 89, 184,
|
||
91, 92, 93, 300, 185, 186, 187, 97, 98, 188,
|
||
189, 100, 579, 271, 272, 580, 190, 280, 102, 103,
|
||
191, 105, 192, 581, 584, 275, 228, 194, 398, 195,
|
||
196, 197, 109, 198, 111, 112, 113, 114, 115, 116,
|
||
199, 200, 201, 202, 329, 294, 276, 118, 250, 546,
|
||
547, 601, 203, 404, 715, 602, 266, 205, 121, 206,
|
||
123, 124, 151, 152, 561, 234, 457, 515, 516, 458,
|
||
736, 627, 628, 125, 233, 526, 668, 126, 217, 520,
|
||
436, 676, 535, 682, 767, 678, 247, 683, 680, 762,
|
||
759, 899, 900, 760, 761, 128, 129, 130, 507, 743,
|
||
422, 718, 423, 604, 838, 720, 877, 424, 425, 131,
|
||
442, 443, 132, 216, 133, 444, 612, 842, 726, 881,
|
||
445, 613, 796, 728, 134, 729, 846, 135, 884, 885,
|
||
136, 749, 917, 942, 523, 891, 941, 951, 258, 259,
|
||
693, 694, 137, 775, 871, 930, 828, 138, 450, 451,
|
||
452, 139, 260, 140, 622, 800, 849, 623, 731, 848,
|
||
141, 236, 812, 893, 933, 945, 530, 919, 920, 856,
|
||
857, 858, 241, 142, 252, 555, 556, 143, 697, 831,
|
||
437
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -859
|
||
static const yytype_int16 yypact[] =
|
||
{
|
||
4677, 255, -859, 278, -859, 18, 33, 92, 653, -75,
|
||
7365, -859, -859, -859, 8572, 8572, 8572, -859, 59, 713,
|
||
7365, 7365, -859, 1717, -859, 278, 7861, -859, -859, 37,
|
||
-859, 1749, 1871, -859, 278, 274, -859, 80, -859, -859,
|
||
8572, -859, 8572, 1694, 89, -859, 51, 7861, -859, -859,
|
||
7365, -859, -859, 222, 115, -859, -859, 7489, 3437, 8269,
|
||
254, 4813, -859, -859, 407, -859, 73, 125, 125, 125,
|
||
8180, 5, 8269, 21, 8269, 8269, 28, 8269, 42, 8269,
|
||
46, 8269, 228, 8269, 66, 8269, 125, 8180, 12, 8180,
|
||
68, 8180, 7973, 8269, 125, -74, 236, 8269, -859, 1,
|
||
8269, -14, 212, 8269, 105, 8269, 211, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, 255, 79,
|
||
126, 8180, 165, 8269, -859, -859, -859, -859, -859, -859,
|
||
442, -859, 5199, 387, -859, 7365, -859, -859, -859, 5327,
|
||
204, -859, -859, -859, -859, -859, 7365, -859, 255, -859,
|
||
-859, 8572, 8572, 7365, -859, -859, -859, -859, -859, -859,
|
||
7365, -859, -859, -859, 37, -859, -859, -859, -859, 7365,
|
||
7365, 8572, 946, 1883, 2558, 775, 1597, 1939, 3135, 1995,
|
||
227, 2282, 8089, 433, 541, 2588, 2678, 2544, 3723, -859,
|
||
2981, 4278, -859, 1382, 2440, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, 2406, 242, 8028, 2551, -859, 359, -859,
|
||
371, -859, -859, 8313, -859, -859, 255, 8572, -859, 24,
|
||
78, 170, 180, 125, 149, 144, 194, 159, 19, 266,
|
||
40, 161, 348, 8572, 8572, 8313, 283, 7365, -859, -859,
|
||
-859, 51, 419, 294, 4112, 4201, 310, 255, 330, 334,
|
||
8358, 4486, -859, 263, 77, 196, 180, 181, -859, 127,
|
||
7365, 4271, -859, 7365, -859, 8572, 192, -859, 341, 7861,
|
||
130, -859, -859, -859, 4518, -859, 198, -859, -859, -859,
|
||
-859, -859, 255, -859, -859, -859, -859, -859, 8572, 8572,
|
||
-859, 7117, 7241, -859, -37, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, 7117, -859, -859,
|
||
-859, -859, -859, 7117, -859, -859, -859, -859, 18, 33,
|
||
440, -859, 443, -859, 455, -859, -859, 461, -859, 464,
|
||
-859, 46, -859, 228, -859, 484, -859, -859, 493, -859,
|
||
505, -859, -859, 515, 518, -859, 519, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, -859, 7117,
|
||
-859, 8269, -859, -859, -859, -859, -859, 7365, -859, -859,
|
||
7365, 7365, 7365, 7365, 7365, 7365, 7365, 8269, -859, -859,
|
||
-859, -859, -859, -859, 7365, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, 255, -859,
|
||
-859, -859, 411, 457, -859, -859, -859, 1455, -859, 103,
|
||
-859, -859, -859, -859, 449, 5455, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, 401, 26, 380, 5583, -859, -859,
|
||
447, -859, -859, -859, 4271, -859, 2699, 384, -859, 384,
|
||
3286, 2970, -859, -859, 430, -859, -859, -859, -859, 8572,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, 8572, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, -859, 7365,
|
||
7365, 7365, 7365, 7365, 7365, 7365, 7365, 7365, 7365, 7365,
|
||
7365, 7365, 7365, 7365, 7365, 7365, 7365, 255, -859, 255,
|
||
8572, -859, 8572, -859, 2699, 432, -859, -859, -859, 4201,
|
||
399, -859, -859, 7365, -859, 4201, 191, 399, 432, 7365,
|
||
255, 4271, -859, 404, -859, 8572, 255, -859, -859, -859,
|
||
-859, -859, 543, 255, -859, 4201, 431, 453, 7613, 206,
|
||
409, -859, 412, 1382, 2120, 456, -859, 7737, 7861, 4271,
|
||
-859, 8572, 422, -859, -859, 224, 78, 180, 149, 121,
|
||
194, 7365, -859, 7365, 7117, -859, -859, 458, 459, 249,
|
||
-859, 1382, -859, 1382, -859, 7241, 450, 267, 289, 307,
|
||
-859, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, -859,
|
||
1382, 462, 6991, -859, 7365, -859, -859, 411, -859, 8572,
|
||
8572, -859, 7365, 255, -859, -859, 26, -859, -859, -859,
|
||
7365, -859, 297, -859, -859, 7365, 570, 479, 113, 8572,
|
||
-859, -859, 7613, -859, -859, 3544, 1382, 2970, 2970, 2970,
|
||
1208, 1208, 530, 2970, 1208, 1208, 1208, 291, 291, 306,
|
||
306, 306, 1382, -859, -859, -859, -859, 580, 479, 8313,
|
||
255, -859, 8572, -859, 1382, -859, 8572, 8572, 255, -859,
|
||
255, 1382, 5071, -859, 572, -859, 2825, 310, 4112, -859,
|
||
-859, -859, 8572, 2825, -859, -859, -859, -859, 8402, -859,
|
||
7613, 8572, 1382, -859, 467, -859, -859, 6351, 384, -859,
|
||
8021, -859, -859, 255, 468, 255, 477, 7117, -859, -859,
|
||
7241, -859, -859, -859, 7365, 475, 4941, 480, 6479, 380,
|
||
7365, -859, 259, 340, 380, -859, 7365, -859, 255, 6607,
|
||
1382, 255, 7365, -859, -859, 1382, 597, -859, -859, 7365,
|
||
478, -859, 486, 5711, 7365, -859, -859, -859, 4201, 565,
|
||
-859, 4201, -859, -859, -859, 255, 3975, 8572, 4201, 487,
|
||
488, 491, 4201, -859, -859, -859, -859, 241, -859, 492,
|
||
-859, 4201, -859, 430, 7737, 521, 14, -859, 7365, -859,
|
||
8465, -859, 8465, -859, -859, 1382, -859, -859, -859, -859,
|
||
380, 8465, -859, 8465, -859, -859, 6095, 380, 6095, -859,
|
||
255, -859, 1382, 7365, 1382, 7365, 7613, -859, 1382, -859,
|
||
7365, -859, 446, -859, 8572, 4201, 3182, -859, 4201, 7906,
|
||
534, -859, 8572, 255, 4201, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, 496, 499, 4201, 498, 5711, -859,
|
||
500, 501, 5839, -859, -859, -859, 15, 5967, 5967, 255,
|
||
1382, 1382, 502, 183, -859, 8572, -859, 255, 255, 3338,
|
||
-859, 7365, -859, 255, 8572, 4201, 491, 8224, -859, -859,
|
||
-859, 255, 255, 8509, -859, 255, -859, 5711, 255, 255,
|
||
-859, 5839, -859, -859, -859, -859, -859, -859, 5967, -859,
|
||
7365, -859, -859, 564, 6223, 6223, 7365, -859, -859, 389,
|
||
-859, -859, 3785, -859, 8572, 4201, -859, -859, -859, 4201,
|
||
-859, -859, -859, -859, -859, -859, 242, 255, -859, -859,
|
||
255, -859, -859, 413, 7365, -859, 7365, -859, 4324, -859,
|
||
6735, -859, -859, 29, 6863, -859, -859, 417, 7365, -859,
|
||
25, -859, 6735, -859, -859, -859, -859, -859, 420, 8572,
|
||
8572, -859, -859, -859, -859, -859
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yypgoto[] =
|
||
{
|
||
-859, -859, -859, 219, 571, -859, -859, -859, -859, -859,
|
||
-422, -403, -20, -161, -591, -859, 290, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, 527, -859, -431, -859, -859,
|
||
-87, -504, -859, -859, 3284, 1072, 1236, 1344, 547, 248,
|
||
548, 311, 549, 551, 339, 554, 451, 556, 454, 558,
|
||
513, 561, 705, 562, -859, 1419, 566, 0, 568, 84,
|
||
569, 434, -859, 4379, 1487, 1629, 1660, -859, -170, 1829,
|
||
-245, -859, -293, -618, -244, -56, 1964, -342, -859, -859,
|
||
2097, -859, -242, 3932, -570, -563, -859, 2251, -859, 1987,
|
||
2254, -859, -859, 2407, -859, -859, -859, -859, -859, -859,
|
||
2444, -859, -859, -859, 3519, -859, -859, -859, -859, -859,
|
||
-859, -859, 728, -859, -859, -859, -5, 186, 573, 969,
|
||
576, -859, -859, -859, -859, -859, -144, 428, 11, -210,
|
||
-859, 150, -859, -859, -859, -859, -859, -859, -859, 441,
|
||
301, -859, -859, -859, -859, -859, -512, -859, -658, -859,
|
||
-9, -858, -248, -859, -142, -859, -859, -859, -859, -859,
|
||
256, -859, -859, -859, -859, -859, -859, -411, -859, -859,
|
||
-426, -859, -859, -859, -859, -859, -859, -859, -859, -859,
|
||
234, -859, -859, -859, -859, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -262, -859, 123, -859,
|
||
-92, -859, -859, -859, -859, -859, -859, -859, -859, 62,
|
||
-859, -859, -859, -859, -859, -859, -859, 63, -859, -859,
|
||
-859, -859, -859, -859, -859, -859, -859, -859, -859, -859,
|
||
-859, -859, -859, -859, 452, -859, -535, -859, -859, -859,
|
||
3390
|
||
};
|
||
|
||
/* 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 -606
|
||
static const yytype_int16 yytable[] =
|
||
{
|
||
88, 465, 273, 517, 611, 204, 550, 551, 459, 552,
|
||
701, 605, 608, 689, 742, 709, 611, 483, 615, 618,
|
||
764, 485, 378, 679, 768, 517, 220, 486, 521, 487,
|
||
488, 829, 882, -305, 587, 239, 738, 374, 923, 590,
|
||
588, 302, 949, 438, 508, 435, 943, 254, 326, -96,
|
||
-96, 153, 447, 626, 149, 599, 883, 305, 292, 278,
|
||
290, 88, -29, -29, 309, 617, 441, 738, 937, 150,
|
||
298, 950, 298, 232, 298, 298, 408, 298, 312, 298,
|
||
948, 298, 315, 298, 90, 298, 589, 298, 585, 298,
|
||
242, 298, 358, 298, 586, 465, 944, 298, 717, 569,
|
||
298, -130, 320, 298, 332, 298, -111, -111, 248, 290,
|
||
221, 657, 379, 326, 326, 406, 661, 830, 292, 240,
|
||
251, 298, 665, 298, -96, -96, -130, -130, -130, 522,
|
||
446, 255, 88, 292, -305, -96, -96, 292, 327, 88,
|
||
784, 383, 686, 279, 292, 90, -130, -130, -130, -130,
|
||
291, -130, -130, 292, 299, 772, 299, -237, 299, 299,
|
||
292, 299, 408, 299, 868, 299, 763, 299, 754, 299,
|
||
-329, 299, 292, 299, 292, 299, 360, 299, 292, 557,
|
||
374, 299, -96, -96, 299, 372, 120, 299, 852, 299,
|
||
727, -96, -96, 776, 333, 383, 721, 413, 292, 291,
|
||
292, 413, -130, 327, 327, 299, 332, 299, -325, 292,
|
||
292, 292, 230, 514, 788, 832, 90, 408, -130, 62,
|
||
387, 448, -130, 90, -130, 799, -96, -96, -96, -96,
|
||
378, 890, 332, 257, 262, 514, -321, 292, 739, 807,
|
||
264, 263, 290, 666, 740, 388, 389, 120, 71, -96,
|
||
-96, -237, 558, -237, 281, 571, 301, 292, 292, 572,
|
||
290, -321, -321, 318, 318, 390, 391, 392, 393, 566,
|
||
394, 395, 372, 325, 71, 331, 292, 337, 364, -328,
|
||
283, -321, -321, -321, -321, 611, -321, -321, -96, -96,
|
||
65, 292, 843, 292, 845, 71, 333, 292, 898, 290,
|
||
-326, 127, 292, 550, 551, 449, 552, 412, 506, 71,
|
||
-323, 73, 292, 292, 448, -540, 667, 506, 120, 563,
|
||
379, 396, 333, 574, -332, 120, 292, 575, 292, -601,
|
||
-601, -601, 291, 898, 876, 732, 621, 73, 880, 76,
|
||
342, 397, 381, 886, 887, 809, 38, 39, 811, 496,
|
||
291, 285, 529, 255, -164, 817, -164, -321, 73, 821,
|
||
837, 898, 286, 898, 496, 76, 822, 506, 825, 840,
|
||
823, 841, 73, 911, 707, 898, 708, 914, 55, 56,
|
||
71, 278, 55, 56, 915, 791, 76, 71, -540, 291,
|
||
921, 922, 707, 508, 711, 54, 397, 278, 449, 164,
|
||
76, -96, -96, 344, 438, 501, 502, 503, 504, 505,
|
||
288, 289, 860, 862, 707, 863, 712, 698, 438, 741,
|
||
534, 870, 503, 504, 505, 439, 440, 441, 420, 421,
|
||
946, 347, 707, 874, 713, 88, 540, 554, 533, 614,
|
||
440, 441, -325, 73, 542, 550, 551, 88, 552, 517,
|
||
73, 78, 609, 610, 80, 257, 897, 418, 419, 420,
|
||
421, 543, 903, 55, 56, 279, 793, -325, -325, 326,
|
||
564, 76, 418, 606, 420, 421, 290, 78, 76, 302,
|
||
80, 279, 55, 56, 510, 620, 621, -325, -325, -325,
|
||
-325, 305, -325, -325, 55, 56, 512, 309, 78, 927,
|
||
312, 80, 929, 55, 56, 506, 931, 55, 56, 629,
|
||
854, 855, 78, 82, 924, 80, 925, 71, 702, 90,
|
||
320, 465, 55, 56, 662, 939, 674, 55, 56, 326,
|
||
147, 90, -603, -603, -603, -604, -604, -604, 924, 82,
|
||
935, 332, 924, 349, 947, 924, 351, 953, 291, 699,
|
||
-326, 406, 218, 466, 408, 413, 291, 659, 254, 327,
|
||
82, 238, 684, -325, 687, 292, 475, 476, 477, 478,
|
||
479, 480, 481, 482, 82, -326, -326, 332, 688, -417,
|
||
73, 690, 710, 78, -22, -24, 80, 714, 496, 744,
|
||
78, 755, 774, 80, 780, -326, -326, -326, -326, 719,
|
||
-326, -326, 88, 782, 786, 353, 803, 724, 76, 787,
|
||
805, 806, 810, 819, 818, 328, 820, 334, 867, 824,
|
||
827, 120, 370, 872, 873, 875, 375, 878, 879, 889,
|
||
918, 384, 284, 120, 399, 400, 401, 402, 745, 341,
|
||
343, 345, 255, 346, 403, 82, 348, 409, 350, 414,
|
||
352, 783, 82, 354, 356, 417, -27, -27, 357, 514,
|
||
359, 361, -132, 528, 658, 365, 524, 333, 367, 453,
|
||
746, -326, 88, 292, 769, 527, 936, 866, 616, 607,
|
||
952, 695, 826, 71, 733, 734, 90, -132, -132, -132,
|
||
0, 0, 0, 532, 0, 71, 0, 88, 0, 0,
|
||
0, 0, 0, 0, 0, 84, 0, -132, -132, -132,
|
||
-132, 0, -132, -132, 0, 790, 88, 0, 88, 0,
|
||
78, 797, -134, 80, 0, 0, 0, 0, 119, 88,
|
||
0, 84, 0, 0, 554, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 88, 257, 0, 73, -134, -134, -134,
|
||
0, 0, 84, 0, 119, 0, 90, 0, 73, 0,
|
||
0, 0, 0, -132, 0, 0, 84, -134, -134, -134,
|
||
-134, 0, -134, -134, 76, 119, 0, 0, 0, -132,
|
||
0, 90, 82, -132, -313, -132, 76, 0, 120, 119,
|
||
0, 0, 0, 0, 0, 0, 88, 355, 88, 0,
|
||
90, 0, 90, 0, 0, 853, 71, 0, 0, -313,
|
||
-313, 302, 0, 90, 0, 0, 0, 0, 0, 0,
|
||
363, 0, 0, -134, 0, 0, 0, 90, 0, -313,
|
||
-313, -313, -313, 0, -313, -313, 0, 84, 88, -134,
|
||
0, 0, 88, -134, 84, -134, 0, 88, 88, 0,
|
||
71, 0, 0, 0, 0, 0, 0, 0, 120, 0,
|
||
119, 0, 0, 0, 0, 0, 0, 119, 0, 73,
|
||
0, 0, 0, 0, 0, 0, 554, 88, 0, 0,
|
||
90, 88, 90, 120, 0, 916, 78, 0, 88, 80,
|
||
0, 0, 0, 0, 88, 88, 0, 76, 78, 0,
|
||
0, 80, 120, 0, 120, -313, 0, 292, 0, 0,
|
||
0, 0, 0, 73, 0, 120, 0, 0, 0, 0,
|
||
71, 0, 90, 0, 0, 0, 90, 0, 0, 120,
|
||
88, 90, 90, 0, 88, 0, 0, 0, 0, 0,
|
||
0, 76, 88, 0, 0, 71, 0, 0, 82, 0,
|
||
0, 0, 0, 0, 0, -312, 0, 0, 0, 0,
|
||
82, 90, 0, 0, 71, 90, 71, 0, 0, 122,
|
||
0, 0, 90, 0, 84, 0, 0, 71, 90, 90,
|
||
-312, -312, 120, 73, 120, 0, 0, 0, 0, 0,
|
||
0, 71, 0, 0, 0, 231, 0, 119, 0, 0,
|
||
-312, -312, -312, -312, 0, -312, -312, 0, 73, 78,
|
||
0, 76, 80, 0, 90, 0, 231, 0, 90, 0,
|
||
0, 0, 0, 0, 120, 0, 90, 73, 120, 73,
|
||
122, 0, 0, 120, 120, 0, 76, 0, 0, 0,
|
||
73, 0, 0, 0, 71, 0, 71, 0, 0, 0,
|
||
0, 0, 0, 78, 73, 76, 80, 76, 0, 0,
|
||
0, 366, 0, 120, 0, 0, 0, 120, 76, 0,
|
||
0, 82, 67, 0, 120, 0, -312, 0, 292, 0,
|
||
120, 120, 76, 0, 0, 0, 71, 0, 0, 0,
|
||
71, 0, 0, 0, 0, 71, 71, 0, 67, 0,
|
||
0, 122, 0, 0, 0, 0, 0, 73, 122, 73,
|
||
0, 0, 0, 0, 0, 82, 120, 0, 0, 67,
|
||
120, 0, 0, 78, 0, 71, 80, 0, 120, 71,
|
||
0, 0, 0, 67, 0, 76, 71, 76, 0, 0,
|
||
84, 0, 71, 71, 0, 0, 0, 0, 78, 73,
|
||
0, 80, 84, 73, 0, 0, 0, 0, 73, 73,
|
||
0, 0, 0, 119, 0, 0, 0, 78, 0, 78,
|
||
80, 0, 80, 0, 0, 119, 0, 76, 71, 0,
|
||
78, 76, 71, 80, 0, 82, 76, 76, 73, 0,
|
||
71, 0, 73, 0, 78, 0, 0, 80, 0, 73,
|
||
0, 0, 0, 0, 67, 73, 73, 0, 0, 0,
|
||
82, 67, 0, 0, 0, 0, 76, 0, 0, 0,
|
||
76, 0, 0, 0, 0, 0, 0, 76, 0, 82,
|
||
0, 82, 0, 76, 76, 0, 68, 0, 231, 0,
|
||
0, 73, 82, 0, 0, 73, 0, 78, 0, 78,
|
||
80, 0, 80, 73, 0, 0, 82, 494, 495, 0,
|
||
0, 0, 68, 84, 0, 0, 496, 0, 0, 76,
|
||
0, 0, 0, 76, 0, 0, 0, 0, 0, 0,
|
||
0, 76, 0, 68, 0, 0, 119, 0, 0, 78,
|
||
0, 0, 80, 78, 0, 0, 80, 68, 78, 78,
|
||
0, 80, 80, 0, 0, 0, 0, 84, 0, 82,
|
||
0, 82, 0, 0, 0, 0, 0, 0, 0, 498,
|
||
499, 500, 501, 502, 503, 504, 505, 0, 78, 0,
|
||
119, 80, 78, 0, 0, 80, 0, 0, 0, 78,
|
||
0, 67, 80, 0, 69, 78, 78, 0, 80, 80,
|
||
0, 82, 0, 0, 0, 82, 0, 0, 0, 0,
|
||
82, 82, 0, 0, 0, 0, 0, 0, 68, 0,
|
||
69, 0, 0, 0, 0, 68, 0, 84, 0, 0,
|
||
0, 78, 0, 0, 80, 78, 0, 0, 80, 0,
|
||
82, 69, 0, 78, 82, 0, 80, 0, 0, 0,
|
||
119, 82, 84, 0, 122, 69, 0, 82, 82, 489,
|
||
490, 0, 0, 491, 492, 493, 122, 0, 0, 86,
|
||
0, 84, 0, 84, 0, 119, 0, 0, 0, 0,
|
||
0, 494, 495, 0, 84, 0, 0, 0, 0, 0,
|
||
496, 0, 0, 82, 119, 86, 119, 82, 84, 0,
|
||
0, 0, 0, 0, 0, 82, 0, 119, -109, -109,
|
||
0, 0, 0, 0, -132, 0, 86, 0, 0, 0,
|
||
0, 119, 0, 0, 0, 0, 69, 0, 0, 0,
|
||
86, 0, 0, 69, 0, 0, 0, 94, 0, -132,
|
||
-132, -132, 497, 498, 499, 500, 501, 502, 503, 504,
|
||
505, 84, 0, 84, 0, 68, 0, 67, 0, -132,
|
||
-132, -132, -132, 222, -132, -132, 0, 0, 0, 67,
|
||
0, 0, 0, 0, 119, 0, 119, 231, 0, 0,
|
||
0, 0, 0, 0, 256, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 84, 0, 0, 0, 84, 94, 0,
|
||
0, 86, 84, 84, 0, 0, 0, 0, 86, 0,
|
||
0, 0, 0, 0, 0, -132, 119, 0, 0, 0,
|
||
119, 122, 0, 0, 0, 119, 119, 0, 0, 0,
|
||
0, -132, 84, 0, 0, -132, 84, -132, 0, 0,
|
||
0, 0, 0, 84, 0, 0, 0, 0, 0, 84,
|
||
84, 0, 0, 0, 0, 119, -316, 0, 0, 119,
|
||
0, 0, 0, 69, 0, 0, 119, 0, 0, 94,
|
||
0, 0, 119, 119, 0, 0, 94, 0, 0, 95,
|
||
67, -316, -316, 305, 0, 84, 0, 0, 0, 84,
|
||
0, 122, 0, 0, 0, 0, 0, 84, 0, 0,
|
||
0, -316, -316, -316, -316, 223, -316, -316, 119, 0,
|
||
96, 0, 119, 0, 0, 0, 122, 0, 0, 0,
|
||
119, 68, 0, 0, 67, 0, 223, 0, 0, 0,
|
||
0, 0, 0, 68, 0, 122, 224, 122, 86, 0,
|
||
95, 0, 0, 0, 0, 0, 0, 0, 122, 2,
|
||
0, 0, 0, 0, 0, 154, 155, 96, 0, 0,
|
||
0, 0, 122, 0, 0, 0, 156, 157, 158, 0,
|
||
159, 96, 0, 0, 161, 0, -131, -316, 0, 292,
|
||
0, 0, 0, 0, 0, 0, 162, 0, 163, 0,
|
||
0, 27, 28, 0, 67, 0, 30, 165, 0, 0,
|
||
0, -131, -131, -131, 0, 166, 567, 0, -135, 0,
|
||
0, 95, 0, 0, 0, 122, 0, 122, 95, 67,
|
||
0, -131, -131, -131, -131, 0, -131, -131, 41, 69,
|
||
0, 0, 0, -135, -135, -135, 0, 0, 67, 167,
|
||
67, 69, 96, 48, 68, 0, 0, 0, 0, 96,
|
||
0, 67, 168, -135, -135, -135, -135, 122, -135, -135,
|
||
0, 122, 0, 0, 0, 67, 122, 122, 0, 0,
|
||
0, 0, 245, 0, 0, 0, 0, -131, 0, 99,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 68, 0,
|
||
0, 0, 0, -131, 0, 0, 122, -131, 0, -131,
|
||
122, 0, 0, 0, 86, 225, 0, 122, 0, -135,
|
||
0, 0, 0, 122, 122, 0, 86, 0, 67, 0,
|
||
67, 0, 0, 0, 0, -135, 225, 0, 0, -135,
|
||
-133, -135, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
99, 0, -314, 0, 0, 0, 0, 0, 223, 122,
|
||
0, 0, 69, 122, 0, -133, -133, -133, 68, 0,
|
||
67, 122, 0, 0, 67, 0, 0, -314, -314, 67,
|
||
67, 0, 94, 0, 0, -133, -133, -133, -133, 568,
|
||
-133, -133, 0, 68, 94, 0, 0, -314, -314, -314,
|
||
-314, 0, -314, -314, 0, 0, 69, 0, -318, 67,
|
||
0, 0, 68, 67, 68, 0, 0, 0, 0, 0,
|
||
67, 99, 0, 0, 101, 68, 67, 67, 99, 0,
|
||
0, 0, 0, -318, -318, 309, 0, 86, 0, 68,
|
||
0, -133, 0, 0, 0, 0, 0, 107, 0, 0,
|
||
226, 0, 0, -318, -318, -318, -318, -133, -318, -318,
|
||
0, -133, 67, -133, -320, 0, 67, 0, 0, 0,
|
||
0, 101, 0, -314, 67, 292, 69, 0, 0, 0,
|
||
0, 86, 0, 0, 0, 101, 0, 0, 0, -320,
|
||
-320, 315, 68, 0, 68, 0, 0, 0, 0, 0,
|
||
0, 69, 0, 0, 0, 256, 0, 0, 107, -320,
|
||
-320, -320, -320, 0, -320, -320, 0, 0, 0, 0,
|
||
69, 0, 69, 0, 95, 0, 0, 0, 0, -318,
|
||
0, 292, 0, 69, 68, 0, 95, 0, 68, 0,
|
||
0, 0, 0, 68, 68, 0, 0, 69, 0, 94,
|
||
0, 86, 0, 0, 0, 96, 101, 104, 225, 0,
|
||
0, 0, 0, 101, 0, 0, 0, 96, 0, 0,
|
||
0, 0, 0, 68, 0, 0, 86, 68, 0, 107,
|
||
0, 0, 0, 227, 68, -320, 107, 292, 0, -329,
|
||
68, 68, 0, 0, 0, 86, 0, 86, 0, 0,
|
||
69, 0, 69, 0, 227, 0, 0, 0, 86, 0,
|
||
0, 0, 0, 0, -329, -329, 408, 0, 104, 94,
|
||
0, 0, 86, 0, 0, 0, 68, 0, 0, 0,
|
||
68, 0, 0, 0, -329, -329, -329, -329, 68, -329,
|
||
-329, 0, 69, 0, 94, 0, 69, 223, 0, 0,
|
||
0, 69, 69, 0, 466, 467, 468, 469, 470, 471,
|
||
472, 473, 474, 94, 0, 94, 0, 475, 476, 477,
|
||
478, 479, 480, 481, 482, 86, 94, 86, 96, 0,
|
||
0, 69, 0, 0, 0, 69, 0, 0, 0, 104,
|
||
94, 95, 69, 570, 0, 0, 104, 0, 69, 69,
|
||
0, 0, 0, -605, -605, -605, 0, 0, 0, 0,
|
||
-329, 106, 292, 0, 108, 0, 0, 86, 0, 0,
|
||
0, 86, 96, 0, 99, 0, 86, 86, 0, 0,
|
||
0, 0, 0, 0, 69, 0, 99, 229, 69, 0,
|
||
0, 0, 0, 94, 0, 94, 69, 0, 0, 0,
|
||
0, -322, 0, 0, 0, 0, 86, 0, 229, 0,
|
||
86, 95, 0, 0, 0, 0, 0, 86, 0, 0,
|
||
0, 0, 106, 86, 86, 108, -322, -322, 320, 0,
|
||
0, 0, 0, 0, 0, 94, 95, 0, 0, 94,
|
||
0, 0, 96, 0, 94, 94, -322, -322, -322, -322,
|
||
0, -322, -322, 0, 0, 95, 0, 95, 0, 86,
|
||
0, 0, 0, 86, 0, 0, 0, 96, 95, 0,
|
||
0, 86, 0, 0, 94, 0, 227, 0, 94, 0,
|
||
0, 0, 95, 0, 0, 94, 96, 0, 96, 0,
|
||
0, 94, 94, 106, 0, 0, 108, 225, 0, 96,
|
||
106, 0, 0, 108, 0, 0, 0, 0, 0, 101,
|
||
0, 0, 0, 96, 0, 0, 0, 110, 0, 0,
|
||
0, 101, -322, 0, 292, -317, 0, 94, 0, 0,
|
||
0, 94, 107, 0, 0, 95, 0, 95, 0, 94,
|
||
0, 99, 0, 0, 107, 0, 0, 0, 0, 0,
|
||
-317, -317, 406, 0, 117, 0, 0, 0, 0, 387,
|
||
0, 0, 0, 0, 0, 0, 96, 0, 96, 0,
|
||
-317, -317, -317, -317, 0, -317, -317, 95, 110, 0,
|
||
0, 95, 0, 0, 388, 389, 95, 95, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 390, 391, 392, 393, 96, 394,
|
||
395, 99, 96, 0, 0, 117, 95, 96, 96, 0,
|
||
95, 0, 0, 0, 0, 0, 0, 95, 0, 0,
|
||
229, 0, 101, 95, 95, 0, 99, 0, 0, 0,
|
||
0, 0, 104, 0, 0, 0, -317, 96, 292, 110,
|
||
0, 96, 0, 0, 104, 99, 110, 99, 96, 0,
|
||
0, 0, 0, -328, 96, 96, 0, 0, 99, 95,
|
||
-331, 0, 0, 95, 0, 0, 101, -315, 0, 0,
|
||
397, 95, 99, 0, 0, 0, 117, 0, -328, -328,
|
||
372, 0, 0, 117, 0, -331, -331, 413, 0, 107,
|
||
96, 0, -315, -315, 96, 0, 0, -323, -328, -328,
|
||
-328, -328, 96, -328, -328, -331, -331, -331, -331, 0,
|
||
-331, -331, -315, -315, -315, -315, 0, -315, -315, 0,
|
||
0, 0, -323, -323, 0, 99, 0, 99, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 101, 0, 0, 0,
|
||
0, 0, -323, -323, -323, -323, 0, -323, -323, 0,
|
||
0, 0, 0, 0, 0, 227, 0, 0, 0, 107,
|
||
0, 101, 0, 0, 0, 0, 0, 99, 0, 0,
|
||
0, 99, 0, 0, -328, 0, 99, 99, 0, 0,
|
||
101, -331, 101, 292, 107, 0, 106, -324, -315, 108,
|
||
292, 0, 0, 101, 0, 0, 0, 0, 106, 104,
|
||
0, 108, 0, 107, 0, 107, 99, 101, 0, 0,
|
||
99, 0, -324, -324, 0, 0, 107, 99, -323, 0,
|
||
292, 0, 0, 99, 99, 0, 0, 0, 0, 0,
|
||
107, 0, -324, -324, -324, -324, 0, -324, -324, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 99,
|
||
101, 0, 101, 99, 0, 0, 0, 0, 0, 104,
|
||
0, 99, 0, 466, 467, 468, 469, 470, 471, 472,
|
||
473, 474, 0, 107, 0, 107, 475, 476, 477, 478,
|
||
479, 480, 481, 482, 104, 0, 0, 0, 0, 0,
|
||
0, 0, 101, 0, 0, 0, 101, 0, -324, 229,
|
||
292, 101, 101, 104, 0, 104, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 107, 104, 0, 0, 107,
|
||
2, 625, 0, 0, 107, 107, 154, 155, 0, 0,
|
||
104, 101, 110, 0, 0, 101, 0, 156, 157, 158,
|
||
0, 159, 101, 106, 110, 161, 108, 0, 101, 101,
|
||
0, 0, 0, 0, 107, 0, 0, 162, 107, 163,
|
||
0, 0, 27, 28, 0, 107, 0, 30, 165, 117,
|
||
0, 107, 107, 0, 0, 0, 166, 0, 0, 0,
|
||
0, 117, 0, 104, 101, 104, 0, 0, 101, 0,
|
||
0, 0, 0, 0, 0, 0, 101, 0, 0, 756,
|
||
0, 0, 0, 0, 0, 0, 0, 107, 0, 0,
|
||
167, 107, 0, 106, 48, 0, 108, 0, 0, 107,
|
||
0, 0, 0, 168, 0, 104, 0, 0, 0, 104,
|
||
0, 0, 0, 0, 104, 104, 0, 757, 106, 0,
|
||
0, 108, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 106, 0, 106,
|
||
108, 0, 108, 0, 104, 0, 0, 0, 104, 0,
|
||
106, 0, 0, 108, 0, 104, 0, 0, 0, 0,
|
||
-332, 104, 104, 0, 106, 0, 0, 108, 0, 0,
|
||
0, 491, 492, 493, 0, 0, 0, 0, 0, 110,
|
||
0, 0, 0, 0, 0, -332, -332, 378, 0, 494,
|
||
495, 0, 0, 0, 0, 0, 0, 104, 496, 0,
|
||
0, 104, 0, 0, 0, -332, -332, -332, -332, 104,
|
||
-332, -332, 0, 0, 0, 0, 117, 106, 0, 106,
|
||
108, 0, 108, 0, 0, 466, 467, 468, 469, 470,
|
||
471, 472, 473, 474, 0, 0, 0, 0, 475, 476,
|
||
477, 478, 479, 480, 481, 482, 0, 0, 0, 110,
|
||
497, 498, 499, 500, 501, 502, 503, 504, 505, 106,
|
||
0, 0, 108, 106, 0, 0, 108, 0, 106, 106,
|
||
0, 108, 108, 0, 110, 0, 0, 379, 0, 0,
|
||
0, -332, 0, 292, 0, 0, 117, 0, 0, 0,
|
||
0, 0, 0, 110, 0, 110, 0, 0, 106, 0,
|
||
0, 108, 106, 0, 0, 108, 110, 0, 0, 106,
|
||
0, 117, 108, 0, -319, 106, 106, 0, 108, 108,
|
||
110, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
117, 0, 117, 0, 0, 0, 0, 0, 0, -319,
|
||
-319, 312, 0, 117, 0, 0, 0, 0, 0, 0,
|
||
0, 106, 0, 0, 108, 106, 0, 117, 108, -319,
|
||
-319, -319, -319, 106, -319, -319, 108, 0, 0, 0,
|
||
0, 0, 0, 110, 0, 110, 0, 0, 0, 466,
|
||
467, 468, 469, 470, 471, 472, 473, 474, 0, 0,
|
||
0, 0, 475, 476, 477, 478, 479, 480, 481, 482,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
117, 0, 117, 0, 0, 110, 0, 0, 0, 110,
|
||
0, 0, 0, 0, 110, 110, 466, 467, 468, 469,
|
||
470, 471, 472, 473, 474, -319, 0, 292, 0, 475,
|
||
476, 477, 478, 479, 480, 481, 482, 0, 0, 0,
|
||
0, 0, 117, 0, 110, 0, 117, 0, 110, 0,
|
||
0, 117, 117, 0, 0, 110, 0, 0, 207, 209,
|
||
211, 110, 110, 0, 0, 0, 0, 0, 861, 0,
|
||
219, 0, 0, 489, 490, 0, 0, 491, 492, 493,
|
||
0, 117, 0, 0, 243, 117, 244, 246, 0, 0,
|
||
0, 253, 117, 0, 0, 494, 495, 110, 117, 117,
|
||
0, 110, 0, 277, 496, 0, 0, 0, 0, 110,
|
||
0, 0, 0, 0, 297, 0, 297, 0, 297, 297,
|
||
0, 297, 0, 297, 0, 297, 0, 297, 0, 297,
|
||
0, 297, 0, 297, 117, 297, 340, 297, 117, 0,
|
||
0, 297, 0, 0, 297, 0, 117, 297, 0, 297,
|
||
144, 145, 0, 0, 0, 0, 497, 498, 499, 500,
|
||
501, 502, 503, 504, 505, 297, 0, 297, 0, 0,
|
||
0, 632, 466, 467, 468, 469, 470, 471, 472, 473,
|
||
474, 0, 0, 0, 0, 475, 476, 477, 478, 479,
|
||
480, 481, 482, 0, 0, 456, 456, 0, 0, 0,
|
||
0, 0, 2, 0, 4, 5, 0, 6, 154, 155,
|
||
9, 287, 0, 0, 0, 464, 11, 12, 13, 156,
|
||
157, 158, 0, 159, 896, 0, 160, 161, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 162,
|
||
0, 163, 0, 0, 27, 28, 0, 0, 164, 30,
|
||
165, 0, 0, 0, 0, 0, 0, 456, 166, 0,
|
||
0, 519, 0, 0, 0, 0, 0, 36, 405, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 525, 519, 456,
|
||
0, 41, 0, 0, 0, 0, 0, 0, 536, 0,
|
||
0, 0, 167, 45, 545, 549, 48, 0, 455, 0,
|
||
0, 51, 52, 267, 268, 168, 0, 0, 0, 562,
|
||
0, 169, 170, 565, 0, 0, 0, 0, 54, 269,
|
||
0, 0, 0, 57, 0, 58, 0, 59, 0, 0,
|
||
0, 489, 577, 578, 0, 491, 492, 493, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 293, 295, 296, 0,
|
||
303, 0, 306, 494, 495, 310, 0, 313, 511, 316,
|
||
513, 0, 496, 321, 0, 323, 518, 0, 0, 335,
|
||
0, 0, 0, 369, 371, 0, 0, 0, 376, 0,
|
||
380, 0, 0, 385, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 537, 0, 0, 541, 407, 410,
|
||
0, 415, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 560, 0, 0, 497, 498, 499, 500, 501, 502,
|
||
503, 504, 505, 0, 0, 277, 0, 0, 0, 0,
|
||
0, 0, 576, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 277, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 293, 295, 296, 303, 306, 310, 313, 316, 0,
|
||
321, 323, 0, 335, 369, 371, 0, 376, 0, 380,
|
||
385, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 407, 0, 410, 415, 0, 0, 0, 0,
|
||
0, 0, -330, 0, 0, 0, 0, 0, 0, 0,
|
||
335, 369, 371, 0, 376, 380, 385, 0, 0, 410,
|
||
415, 0, 0, 633, 0, 0, 0, -330, -330, 374,
|
||
0, 0, 634, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 335, 369, 410, -330, -330, -330,
|
||
-330, 0, -330, -330, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 655, 0, 656, 466, 467, 468,
|
||
469, 470, 471, 472, 473, 474, 0, 0, 603, 0,
|
||
475, 476, 477, 478, 479, 480, 481, 482, 0, 677,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 549, 0, 0, 0, 619, 0, 0, 0,
|
||
0, 0, 253, 0, 624, 456, 0, 630, 0, 631,
|
||
0, 0, 0, -330, 0, 292, 0, 0, 0, 466,
|
||
467, 468, 469, 470, 471, 472, 473, 474, 0, 0,
|
||
316, 0, 475, 476, 477, 478, 479, 480, 481, 482,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 722, 723, 0, 0, 653, 0, 654,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
663, 926, 0, 456, 0, 0, 0, 669, 0, 0,
|
||
672, 673, 0, 675, 0, 0, 681, 0, 0, 0,
|
||
0, 0, 0, 685, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 193, 456, 0, 0, 748, 0, 0, 696,
|
||
750, 751, 214, 215, 0, 0, 0, 0, 0, 0,
|
||
758, 0, 677, 0, 0, 0, 766, 758, 0, 0,
|
||
0, 0, 771, 0, 549, 773, 0, 0, 0, 0,
|
||
2, 0, 261, 0, 0, 0, 154, 155, 0, 193,
|
||
274, 0, 0, 0, 0, 0, 0, 156, 157, 158,
|
||
0, 159, 0, 725, 0, 161, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 162, 0, 163,
|
||
0, 0, 27, 28, 0, 0, 0, 30, 165, 0,
|
||
0, 0, 0, 0, 0, 0, 166, 0, 0, 0,
|
||
815, 816, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
747, 0, 0, 0, 0, 0, 0, 0, 752, 41,
|
||
753, 0, 0, 0, 836, 0, 836, 193, 765, 0,
|
||
167, 0, 0, 410, 48, 836, 0, 836, 454, 0,
|
||
0, 0, 0, 168, 0, 460, 369, 0, 777, 380,
|
||
0, 0, 461, 779, 0, 781, 0, 814, 859, 0,
|
||
0, 462, 463, 865, 0, 0, 766, 0, 0, 789,
|
||
0, 0, 792, 794, 795, 0, 0, 2, 798, 0,
|
||
0, 801, 0, 154, 155, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 156, 157, 158, 0, 159, 892,
|
||
0, 0, 161, 0, 0, 813, 0, 0, 902, 0,
|
||
0, 905, 0, 0, 162, 0, 163, 909, 0, 27,
|
||
28, 0, 0, 0, 30, 165, 0, 0, 0, 531,
|
||
0, 0, 0, 166, 0, 0, 0, 0, 0, 0,
|
||
839, 0, 0, 553, 0, 0, 0, 844, 928, 0,
|
||
847, 0, 559, 0, 0, 193, 41, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 167, 0, 0,
|
||
0, 48, 0, 869, 0, 0, 0, 0, 0, 0,
|
||
168, 0, 0, 0, 583, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 954, 955, 55, 56, 0, 0, 888,
|
||
0, 0, 0, 0, 0, 0, 0, 894, 895, 0,
|
||
0, 0, 0, 901, 0, 0, 0, 0, 0, 0,
|
||
0, 906, 907, 0, 0, 910, 0, 0, 912, 913,
|
||
0, 0, 0, 0, 0, 466, 467, 468, 469, 470,
|
||
471, 472, 473, 474, 0, 0, 0, -333, 475, 476,
|
||
477, 478, 479, 480, 481, 482, 0, 0, 489, 490,
|
||
0, 0, 491, 492, 493, 0, 0, 932, 0, 0,
|
||
934, 0, -333, -333, 383, 0, 0, 0, 0, 591,
|
||
494, 495, 592, 593, 594, 595, 596, 597, 598, 496,
|
||
0, 0, -333, -333, -333, -333, 600, -333, -333, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 466, 467, 468, 469, 470, 471, 472, 473,
|
||
474, 0, 0, 0, 0, 475, 476, 477, 478, 479,
|
||
480, 481, 482, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 497, 498, 499, 500, 501, 502, 503, 504, 505,
|
||
0, 0, 0, 0, 55, 56, 0, 0, 466, 467,
|
||
468, 469, 470, 471, 472, 473, 474, 0, -333, 0,
|
||
292, 475, 476, 477, 478, 479, 480, 481, 482, 0,
|
||
0, 635, 636, 637, 638, 639, 640, 641, 642, 643,
|
||
644, 645, 646, 647, 648, 649, 650, 651, 652, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
938, 304, 0, 307, 308, 664, 311, 0, 314, 0,
|
||
317, 671, 319, 0, 322, 0, 324, 0, 330, 0,
|
||
336, 362, 368, 0, 0, 0, 373, 0, 0, 377,
|
||
553, 0, 382, 0, 386, 0, 0, 0, 0, 692,
|
||
0, 2, 0, 4, 5, 0, 6, 154, 155, 9,
|
||
411, 0, 416, 700, 0, 11, 12, 13, 156, 157,
|
||
158, 0, 159, 0, 0, 160, 161, 583, 0, 0,
|
||
20, 21, 0, 0, 0, 0, 0, 0, 162, 0,
|
||
163, 0, 0, 27, 28, 0, 193, 164, 30, 165,
|
||
0, 0, 0, 0, 193, 489, 490, 166, 0, 491,
|
||
492, 493, 730, 0, 0, 0, 36, 735, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 494, 495, 0,
|
||
41, 0, 0, 0, 0, 0, 496, 0, 0, 0,
|
||
0, 167, 45, 0, 0, 48, 0, 0, 0, 0,
|
||
51, 52, 0, 0, 168, 0, 0, 0, 0, 0,
|
||
169, 170, 0, 0, 0, 0, 0, 54, 269, 0,
|
||
0, 548, 57, 0, 58, 0, 59, 0, 0, 0,
|
||
0, 0, 553, 0, 0, 573, 0, 0, 497, 498,
|
||
499, 500, 501, 502, 503, 504, 505, 0, 0, 0,
|
||
0, 0, 583, 0, 0, 0, 785, 0, 0, 0,
|
||
0, 0, 193, 0, 0, 0, 0, 0, 193, 0,
|
||
0, 0, 0, 0, 802, 0, 0, 0, 0, 0,
|
||
0, 804, 0, 0, 0, 0, 808, -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, 692, 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, 850, 0, 851, 32, 33,
|
||
34, 0, 193, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
|
||
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
|
||
55, 56, 0, 57, 0, 58, 0, 59, 0, 0,
|
||
0, 0, 0, -2, 282, 0, -26, -26, 2, 3,
|
||
4, 5, 193, 6, 7, 8, 9, 10, 0, 0,
|
||
0, 0, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 52, 0,
|
||
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
|
||
0, 58, 426, 59, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 427, 9, 10, -115, -115, -115, -115,
|
||
11, 12, 13, 14, 15, 16, 428, 429, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, -115,
|
||
-115, -115, -115, 23, 24, 25, 26, -115, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, -115, -115, -115, -115, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, -115, 50, -115, 51, 52, 0, 0, 53,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
|
||
-115, 59, 426, 0, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 427, 9, 10, 0, 0, -114, 0,
|
||
11, 12, 13, 14, 15, 16, 428, 429, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
|
||
0, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, -114, -114, -114, -114, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
|
||
426, 59, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 427, 9, 10, 0, 0, -507, 0, 11, 12,
|
||
13, 14, 15, 16, 428, 429, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, -507, -507, -507,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 0, 51, 52, 0, 0, 53, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
54, 0, 55, 56, 0, 57, 0, 58, 426, 59,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 427,
|
||
9, 10, 0, 0, -562, 0, 11, 12, 13, 14,
|
||
15, 16, 428, 429, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, -562, -562, 0, 0, 23,
|
||
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
|
||
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
|
||
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, -562, 50,
|
||
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
|
||
55, 56, 0, 57, 0, 58, 426, 59, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 427, 9, 10,
|
||
0, 0, -508, 0, 11, 12, 13, 14, 15, 16,
|
||
428, 429, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, -508, -508, -508, 0, 23, 24, 25,
|
||
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
|
||
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
|
||
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
|
||
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
|
||
0, 57, 0, 58, 426, 59, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 427, 9, 10, 0, 0,
|
||
-563, 0, 11, 12, 13, 14, 15, 16, 428, 429,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, -563, -563, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, -563, 50, 0, 51, 52, 0,
|
||
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
|
||
0, 58, 426, 59, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 427, 9, 10, -114, -114, -114, -114,
|
||
11, 12, 13, 14, 15, 16, 428, 429, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
|
||
0, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
|
||
426, 59, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 427, 9, 10, 0, 0, -114, 0, 11, 12,
|
||
13, 14, 15, 16, 428, 429, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, -114, -114, -114,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 0, 51, 52, 0, 0, 53, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
54, 0, 55, 56, 0, 57, 0, 58, 426, 59,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 427,
|
||
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
|
||
15, 16, 428, 429, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, -114, -114, 0, 0, 23,
|
||
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
|
||
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
|
||
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, -114, 50,
|
||
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
|
||
55, 56, 0, 57, 0, 58, 426, 59, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 427, 9, 10,
|
||
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
|
||
428, 429, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, 0, -114, -114, 0, 23, 24, 25,
|
||
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
|
||
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
|
||
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
|
||
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
|
||
0, 57, 0, 58, 426, 59, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 427, 9, 10, 0, 0,
|
||
-114, 0, 11, 12, 13, 14, 15, 16, 428, 429,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, -114,
|
||
-114, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 52, 0,
|
||
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
|
||
0, 58, 426, 59, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 427, 9, 10, 0, 0, -114, 0,
|
||
11, 12, 13, 14, 15, 16, 428, 429, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
|
||
0, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, 0, 50, -114, 51, 52, 0, 0, 53,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
|
||
426, 59, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 427, 9, 10, 0, 0, -114, -114, 11, 12,
|
||
13, 14, 15, 16, 428, 429, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
0, 50, 0, 51, 52, 0, 0, 53, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
54, 0, 55, 56, 0, 57, 0, 58, 426, 59,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 427,
|
||
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
|
||
15, 16, 428, 429, 0, 0, 0, 19, 0, 0,
|
||
0, 20, 21, 0, 22, 0, 0, 0, -114, 23,
|
||
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
|
||
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
|
||
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
|
||
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
|
||
55, 56, 0, 57, 0, 58, 426, 59, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 427, 9, 10,
|
||
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
|
||
428, 429, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, 0, 0, 0, 0, 23, 24, 25,
|
||
26, -114, 27, 28, 0, 0, 29, 30, 31, 0,
|
||
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
|
||
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
|
||
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
|
||
0, 57, 0, 58, 426, 59, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 427, 9, 10, 0, 0,
|
||
-114, 0, 11, 12, 13, 14, 15, 16, 428, 429,
|
||
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
-114, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 0, 50, 0, 51, 52, 0,
|
||
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
|
||
0, 58, 426, 59, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 427, 9, 10, 0, 0, 0, 0,
|
||
11, 12, 13, 14, 15, 16, 428, 429, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
|
||
0, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
|
||
-114, 59, 2, 0, 4, 5, 0, 6, 154, 155,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 156,
|
||
157, 158, 0, 159, 0, 0, 160, 161, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 162,
|
||
0, 163, 0, 0, 27, 28, 0, 0, 164, 30,
|
||
165, 0, 0, 0, 0, 0, 0, 0, 166, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 167, 45, 0, 0, 48, 0, 0, 0,
|
||
0, 51, 52, 267, 0, 168, 0, 0, 0, 0,
|
||
0, 169, 170, 0, 0, 0, 0, 0, 54, 269,
|
||
0, 0, 0, 57, 0, 58, 2, 59, 4, 5,
|
||
0, 6, 154, 155, 9, 0, 0, 0, 0, 0,
|
||
11, 12, 13, 156, 157, 158, 0, 159, 0, 0,
|
||
160, 161, 0, 0, 0, 20, 21, 0, 0, 0,
|
||
0, 0, 0, 162, 0, 163, 0, 0, 27, 28,
|
||
0, 0, 164, 30, 165, 0, 0, 0, 0, 0,
|
||
0, 0, 166, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 36, 0, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 167, 45, 0, 0,
|
||
48, 0, 0, 0, 0, 51, 52, 582, 0, 168,
|
||
0, 0, 0, 0, 0, 169, 170, 0, 0, 0,
|
||
0, 0, 54, 171, 0, 0, 0, 57, 0, 58,
|
||
2, 59, 4, 5, 0, 6, 154, 155, 9, 0,
|
||
0, 0, 0, 0, 11, 12, 13, 156, 157, 158,
|
||
0, 159, 0, 0, 160, 161, 0, 0, 0, 20,
|
||
21, 0, 0, 0, 0, 0, 0, 162, 0, 163,
|
||
0, 0, 27, 28, 0, 0, 164, 30, 165, 0,
|
||
0, 0, 0, 0, 0, 0, 166, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 36, 0, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
167, 45, 0, 0, 48, 0, 0, 0, 0, 51,
|
||
52, 0, 0, 168, 0, 0, 0, 0, 0, 169,
|
||
170, 0, 0, 0, 0, 0, 54, 171, 0, 0,
|
||
0, 57, 0, 58, 2, 59, 4, 5, 0, 6,
|
||
154, 155, 9, 0, 0, 0, 0, 0, 11, 12,
|
||
13, 156, 157, 158, 0, 159, 0, 0, 160, 161,
|
||
0, 0, 0, 20, 21, 0, 0, 0, 0, 0,
|
||
0, 162, 0, 163, 0, 0, 27, 28, 0, 0,
|
||
164, 30, 165, 0, 0, 0, 0, 0, 0, 0,
|
||
166, 0, 0, 0, 0, 0, 0, 0, 0, 36,
|
||
0, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 167, 45, 0, 0, 48, 0,
|
||
0, 0, 0, 51, 52, 0, 0, 168, 0, 0,
|
||
0, 0, 0, 169, 170, 0, 0, 0, 0, 0,
|
||
54, 265, 0, 0, 0, 57, 0, 58, 2, 59,
|
||
4, 5, 0, 6, 154, 155, 9, 0, 0, 0,
|
||
0, 0, 11, 12, 13, 156, 157, 158, 0, 159,
|
||
0, 0, 160, 161, 0, 0, 0, 20, 21, 0,
|
||
0, 0, 0, 0, 0, 162, 0, 163, 0, 0,
|
||
27, 28, 0, 0, 164, 30, 165, 0, 0, 0,
|
||
0, 0, 0, 0, 166, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 167, 45,
|
||
0, 0, 48, 0, 0, 0, 0, 51, 52, 0,
|
||
0, 168, 0, 0, 0, 0, 0, 169, 170, 0,
|
||
0, 0, 0, 0, 54, 269, 0, 0, 0, 57,
|
||
0, 58, 2, 59, 4, 5, 0, 6, 154, 155,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 156,
|
||
157, 158, 0, 159, 0, 0, 160, 161, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 162,
|
||
0, 163, 0, 0, 27, 28, 0, 0, 164, 30,
|
||
165, 0, 0, 0, 0, 0, 0, 0, 166, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 167, 45, 0, 0, 48, 0, 0, 0,
|
||
0, 51, 52, 0, 0, 168, 0, 0, 0, 0,
|
||
0, 169, 170, 0, 0, 0, 0, 0, 54, 691,
|
||
0, 0, 0, 57, 0, 58, 2, 59, 4, 5,
|
||
0, 6, 154, 155, 9, 0, 0, 0, 0, 0,
|
||
11, 12, 13, 156, 157, 158, 0, 159, 0, 0,
|
||
0, 161, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 162, 0, 163, 0, 0, 27, 28,
|
||
0, 2, 164, 30, 165, 0, 0, 154, 155, 0,
|
||
0, 0, 166, 0, 0, 0, 0, 0, 156, 157,
|
||
158, 36, 159, 38, 39, 0, 161, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 0, 162, 0,
|
||
163, 0, 0, 27, 28, 0, 167, 45, 30, 165,
|
||
48, 0, 0, 0, 0, 51, 52, 166, 0, 168,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 2, 0,
|
||
4, 338, 54, 339, 154, 155, 9, 57, 0, 58,
|
||
756, 59, 11, 12, 13, 156, 157, 158, 0, 159,
|
||
0, 167, 0, 161, 0, 48, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 168, 162, 0, 163, 0, 0,
|
||
27, 28, 0, 0, 0, 30, 165, 0, 864, 0,
|
||
0, 0, 0, 0, 166, 0, 0, -329, 0, 0,
|
||
0, 0, 0, 36, 0, 38, 39, 0, 489, 490,
|
||
0, 0, 491, 492, 493, 0, 0, 41, 0, 0,
|
||
0, 0, -329, -329, 408, 0, 0, 0, 167, 45,
|
||
494, 495, 48, 0, 0, 0, 0, 0, 0, 496,
|
||
0, 168, -329, -329, -329, -329, 0, -329, -329, 0,
|
||
0, 0, 0, 0, 54, 0, 0, 0, -327, 263,
|
||
0, 58, 466, 467, 468, 469, 470, 471, 472, 473,
|
||
474, 0, 0, 0, 0, 475, 476, 477, 478, 479,
|
||
480, 481, 482, -327, -327, 0, 0, 0, 778, 0,
|
||
0, 497, 498, 499, 500, 501, 502, 503, 504, 505,
|
||
0, 0, 0, -327, -327, -327, -327, 0, -327, -327,
|
||
0, 0, 0, 0, 0, 0, 0, 0, -329, 0,
|
||
292, 0, 0, 466, 467, 468, 469, 470, 471, 472,
|
||
473, 474, 0, 0, 0, 0, 475, 476, 477, 478,
|
||
479, 480, 481, 482, 0, 2, 0, 0, 0, 0,
|
||
0, 154, 155, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 156, 157, 158, 0, 159, 0, 0, 0,
|
||
161, 0, 0, 0, 0, 0, 0, 0, 0, -327,
|
||
0, 292, 162, 0, 163, 0, 0, 27, 28, 2,
|
||
0, 0, 30, 165, 0, 154, 155, 0, 0, 0,
|
||
0, 166, 0, 0, 0, 0, 156, 157, 158, 0,
|
||
159, 0, 38, 39, 161, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 162, 0, 163, 0,
|
||
0, 27, 28, 0, 2, 167, 30, 165, 0, 48,
|
||
154, 155, 0, 0, 0, 166, 0, 0, 168, 0,
|
||
0, 156, 157, 158, 0, 159, 0, 0, 0, 161,
|
||
0, 54, 0, 0, 0, 0, 263, 0, 41, 0,
|
||
0, 162, 0, 163, 0, 0, 27, 28, 2, 167,
|
||
0, 30, 165, 48, 154, 155, 0, 0, 0, 0,
|
||
166, 0, 168, 0, 0, 156, 157, 158, 0, 159,
|
||
0, 38, 39, 161, 0, 0, 904, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 162, 0, 163, 0, 0,
|
||
27, 28, 0, 2, 167, 30, 165, 0, 48, 154,
|
||
155, 0, 0, 0, 166, 0, 0, 168, 0, 0,
|
||
156, 157, 158, 0, 159, 38, 39, 0, 161, 0,
|
||
54, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
162, 0, 163, 0, 0, 27, 28, 2, 167, 0,
|
||
30, 165, 48, 154, 155, 0, 0, 0, 0, 166,
|
||
0, 168, 0, 0, 156, 157, 158, 0, 159, 0,
|
||
0, 0, 161, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 162, 0, 163, 0, 0, 27,
|
||
28, 0, 0, 167, 30, 165, 0, 48, 0, 0,
|
||
0, 0, 0, 166, 544, 0, 168, 0, 0, 0,
|
||
2, 0, 0, 0, 0, 0, 154, 155, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 156, 157, 158,
|
||
0, 159, 0, 0, 0, 161, 0, 167, 0, 0,
|
||
0, 48, 0, 0, 0, 0, 0, 162, 770, 163,
|
||
168, 0, 27, 28, 2, 0, 0, 30, 165, 0,
|
||
154, 155, 0, 0, 0, 0, 166, 0, 0, 0,
|
||
0, 156, 157, 158, 0, 159, 0, 0, 0, 161,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 162, 0, 163, 0, 0, 27, 28, 0, 0,
|
||
167, 30, 165, 0, 48, 0, 0, 0, 0, 0,
|
||
166, 833, 0, 168, 0, 0, 0, 2, 0, 0,
|
||
0, 0, 0, 154, 155, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 156, 157, 158, 0, 159, 0,
|
||
0, 0, 161, 0, 167, 0, 0, 0, 48, 0,
|
||
0, 0, 0, 0, 162, 908, 163, 168, 0, 27,
|
||
28, 0, 0, 0, 30, 165, 0, 0, 0, 0,
|
||
0, 0, 0, 166, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 167, 0, 0,
|
||
0, 48, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
168
|
||
};
|
||
|
||
static const yytype_int16 yycheck[] =
|
||
{
|
||
0, 171, 58, 213, 435, 10, 251, 251, 152, 251,
|
||
573, 422, 423, 548, 632, 585, 447, 178, 444, 445,
|
||
678, 182, 36, 535, 682, 235, 26, 188, 9, 190,
|
||
191, 17, 17, 9, 327, 35, 627, 36, 896, 381,
|
||
333, 36, 17, 17, 205, 132, 17, 47, 36, 123,
|
||
124, 126, 139, 456, 36, 397, 41, 36, 132, 59,
|
||
36, 61, 3, 4, 36, 39, 40, 658, 926, 36,
|
||
70, 46, 72, 36, 74, 75, 36, 77, 36, 79,
|
||
938, 81, 36, 83, 0, 85, 379, 87, 125, 89,
|
||
10, 91, 92, 93, 131, 265, 67, 97, 602, 269,
|
||
100, 9, 36, 103, 36, 105, 3, 4, 19, 36,
|
||
26, 514, 126, 36, 36, 36, 519, 103, 132, 35,
|
||
69, 121, 525, 123, 123, 124, 34, 35, 36, 110,
|
||
135, 47, 132, 132, 110, 123, 124, 132, 126, 139,
|
||
710, 36, 545, 59, 132, 61, 54, 55, 56, 57,
|
||
126, 59, 60, 132, 70, 690, 72, 36, 74, 75,
|
||
132, 77, 36, 79, 822, 81, 678, 83, 672, 85,
|
||
130, 87, 132, 89, 132, 91, 92, 93, 132, 52,
|
||
36, 97, 123, 124, 100, 36, 0, 103, 806, 105,
|
||
616, 123, 124, 697, 126, 36, 607, 36, 132, 126,
|
||
132, 36, 110, 126, 126, 121, 36, 123, 130, 132,
|
||
132, 132, 26, 213, 718, 778, 132, 36, 126, 0,
|
||
9, 17, 130, 139, 132, 729, 123, 124, 123, 124,
|
||
36, 48, 36, 47, 12, 235, 9, 132, 125, 743,
|
||
54, 126, 36, 52, 131, 34, 35, 61, 0, 123,
|
||
124, 130, 125, 132, 0, 125, 70, 132, 132, 129,
|
||
36, 34, 35, 36, 36, 54, 55, 56, 57, 269,
|
||
59, 60, 36, 87, 26, 89, 132, 91, 92, 130,
|
||
61, 54, 55, 56, 57, 716, 59, 60, 123, 124,
|
||
0, 132, 796, 132, 798, 47, 126, 132, 861, 36,
|
||
130, 0, 132, 548, 548, 101, 548, 121, 125, 61,
|
||
130, 0, 132, 132, 17, 52, 125, 125, 132, 127,
|
||
126, 110, 126, 125, 130, 139, 132, 129, 132, 123,
|
||
124, 125, 126, 896, 838, 38, 39, 26, 842, 0,
|
||
92, 130, 130, 847, 848, 748, 72, 73, 751, 58,
|
||
126, 61, 69, 269, 130, 758, 132, 130, 47, 762,
|
||
782, 924, 61, 926, 58, 26, 125, 125, 771, 791,
|
||
129, 793, 61, 877, 125, 938, 127, 881, 123, 124,
|
||
132, 381, 123, 124, 888, 126, 47, 139, 125, 126,
|
||
894, 895, 125, 554, 127, 121, 130, 397, 101, 51,
|
||
61, 123, 124, 92, 17, 114, 115, 116, 117, 118,
|
||
3, 4, 815, 816, 125, 818, 127, 561, 17, 629,
|
||
126, 824, 116, 117, 118, 38, 39, 40, 17, 18,
|
||
934, 92, 125, 836, 127, 435, 126, 251, 19, 38,
|
||
39, 40, 9, 132, 114, 690, 690, 447, 690, 659,
|
||
139, 0, 3, 4, 0, 269, 859, 15, 16, 17,
|
||
18, 127, 865, 123, 124, 381, 126, 34, 35, 36,
|
||
129, 132, 15, 16, 17, 18, 36, 26, 139, 36,
|
||
26, 397, 123, 124, 125, 38, 39, 54, 55, 56,
|
||
57, 36, 59, 60, 123, 124, 125, 36, 47, 902,
|
||
36, 47, 905, 123, 124, 125, 909, 123, 124, 125,
|
||
64, 65, 61, 0, 125, 61, 127, 269, 574, 435,
|
||
36, 691, 123, 124, 125, 928, 122, 123, 124, 36,
|
||
3, 447, 123, 124, 125, 123, 124, 125, 125, 26,
|
||
127, 36, 125, 92, 127, 125, 92, 127, 126, 127,
|
||
9, 36, 25, 74, 36, 36, 126, 125, 558, 126,
|
||
47, 34, 19, 130, 133, 132, 87, 88, 89, 90,
|
||
91, 92, 93, 94, 61, 34, 35, 36, 125, 9,
|
||
269, 125, 132, 132, 126, 126, 132, 125, 58, 9,
|
||
139, 19, 125, 139, 126, 54, 55, 56, 57, 604,
|
||
59, 60, 602, 126, 129, 92, 9, 612, 269, 129,
|
||
132, 125, 47, 125, 127, 88, 125, 90, 84, 127,
|
||
99, 435, 95, 127, 125, 127, 99, 127, 127, 127,
|
||
66, 104, 61, 447, 107, 108, 109, 110, 658, 92,
|
||
92, 92, 558, 92, 117, 132, 92, 120, 92, 122,
|
||
92, 707, 139, 92, 92, 128, 3, 4, 92, 659,
|
||
92, 92, 9, 235, 514, 92, 232, 126, 92, 142,
|
||
659, 130, 672, 132, 683, 234, 924, 819, 444, 423,
|
||
942, 558, 774, 435, 622, 622, 602, 34, 35, 36,
|
||
-1, -1, -1, 241, -1, 447, -1, 697, -1, -1,
|
||
-1, -1, -1, -1, -1, 0, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, 720, 716, -1, 718, -1,
|
||
269, 726, 9, 269, -1, -1, -1, -1, 0, 729,
|
||
-1, 26, -1, -1, 548, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 743, 558, -1, 435, 34, 35, 36,
|
||
-1, -1, 47, -1, 26, -1, 672, -1, 447, -1,
|
||
-1, -1, -1, 110, -1, -1, 61, 54, 55, 56,
|
||
57, -1, 59, 60, 435, 47, -1, -1, -1, 126,
|
||
-1, 697, 269, 130, 9, 132, 447, -1, 602, 61,
|
||
-1, -1, -1, -1, -1, -1, 796, 92, 798, -1,
|
||
716, -1, 718, -1, -1, 810, 558, -1, -1, 34,
|
||
35, 36, -1, 729, -1, -1, -1, -1, -1, -1,
|
||
92, -1, -1, 110, -1, -1, -1, 743, -1, 54,
|
||
55, 56, 57, -1, 59, 60, -1, 132, 838, 126,
|
||
-1, -1, 842, 130, 139, 132, -1, 847, 848, -1,
|
||
602, -1, -1, -1, -1, -1, -1, -1, 672, -1,
|
||
132, -1, -1, -1, -1, -1, -1, 139, -1, 558,
|
||
-1, -1, -1, -1, -1, -1, 690, 877, -1, -1,
|
||
796, 881, 798, 697, -1, 890, 435, -1, 888, 435,
|
||
-1, -1, -1, -1, 894, 895, -1, 558, 447, -1,
|
||
-1, 447, 716, -1, 718, 130, -1, 132, -1, -1,
|
||
-1, -1, -1, 602, -1, 729, -1, -1, -1, -1,
|
||
672, -1, 838, -1, -1, -1, 842, -1, -1, 743,
|
||
930, 847, 848, -1, 934, -1, -1, -1, -1, -1,
|
||
-1, 602, 942, -1, -1, 697, -1, -1, 435, -1,
|
||
-1, -1, -1, -1, -1, 9, -1, -1, -1, -1,
|
||
447, 877, -1, -1, 716, 881, 718, -1, -1, 0,
|
||
-1, -1, 888, -1, 269, -1, -1, 729, 894, 895,
|
||
34, 35, 796, 672, 798, -1, -1, -1, -1, -1,
|
||
-1, 743, -1, -1, -1, 26, -1, 269, -1, -1,
|
||
54, 55, 56, 57, -1, 59, 60, -1, 697, 558,
|
||
-1, 672, 558, -1, 930, -1, 47, -1, 934, -1,
|
||
-1, -1, -1, -1, 838, -1, 942, 716, 842, 718,
|
||
61, -1, -1, 847, 848, -1, 697, -1, -1, -1,
|
||
729, -1, -1, -1, 796, -1, 798, -1, -1, -1,
|
||
-1, -1, -1, 602, 743, 716, 602, 718, -1, -1,
|
||
-1, 92, -1, 877, -1, -1, -1, 881, 729, -1,
|
||
-1, 558, 0, -1, 888, -1, 130, -1, 132, -1,
|
||
894, 895, 743, -1, -1, -1, 838, -1, -1, -1,
|
||
842, -1, -1, -1, -1, 847, 848, -1, 26, -1,
|
||
-1, 132, -1, -1, -1, -1, -1, 796, 139, 798,
|
||
-1, -1, -1, -1, -1, 602, 930, -1, -1, 47,
|
||
934, -1, -1, 672, -1, 877, 672, -1, 942, 881,
|
||
-1, -1, -1, 61, -1, 796, 888, 798, -1, -1,
|
||
435, -1, 894, 895, -1, -1, -1, -1, 697, 838,
|
||
-1, 697, 447, 842, -1, -1, -1, -1, 847, 848,
|
||
-1, -1, -1, 435, -1, -1, -1, 716, -1, 718,
|
||
716, -1, 718, -1, -1, 447, -1, 838, 930, -1,
|
||
729, 842, 934, 729, -1, 672, 847, 848, 877, -1,
|
||
942, -1, 881, -1, 743, -1, -1, 743, -1, 888,
|
||
-1, -1, -1, -1, 132, 894, 895, -1, -1, -1,
|
||
697, 139, -1, -1, -1, -1, 877, -1, -1, -1,
|
||
881, -1, -1, -1, -1, -1, -1, 888, -1, 716,
|
||
-1, 718, -1, 894, 895, -1, 0, -1, 269, -1,
|
||
-1, 930, 729, -1, -1, 934, -1, 796, -1, 798,
|
||
796, -1, 798, 942, -1, -1, 743, 49, 50, -1,
|
||
-1, -1, 26, 558, -1, -1, 58, -1, -1, 930,
|
||
-1, -1, -1, 934, -1, -1, -1, -1, -1, -1,
|
||
-1, 942, -1, 47, -1, -1, 558, -1, -1, 838,
|
||
-1, -1, 838, 842, -1, -1, 842, 61, 847, 848,
|
||
-1, 847, 848, -1, -1, -1, -1, 602, -1, 796,
|
||
-1, 798, -1, -1, -1, -1, -1, -1, -1, 111,
|
||
112, 113, 114, 115, 116, 117, 118, -1, 877, -1,
|
||
602, 877, 881, -1, -1, 881, -1, -1, -1, 888,
|
||
-1, 269, 888, -1, 0, 894, 895, -1, 894, 895,
|
||
-1, 838, -1, -1, -1, 842, -1, -1, -1, -1,
|
||
847, 848, -1, -1, -1, -1, -1, -1, 132, -1,
|
||
26, -1, -1, -1, -1, 139, -1, 672, -1, -1,
|
||
-1, 930, -1, -1, 930, 934, -1, -1, 934, -1,
|
||
877, 47, -1, 942, 881, -1, 942, -1, -1, -1,
|
||
672, 888, 697, -1, 435, 61, -1, 894, 895, 27,
|
||
28, -1, -1, 31, 32, 33, 447, -1, -1, 0,
|
||
-1, 716, -1, 718, -1, 697, -1, -1, -1, -1,
|
||
-1, 49, 50, -1, 729, -1, -1, -1, -1, -1,
|
||
58, -1, -1, 930, 716, 26, 718, 934, 743, -1,
|
||
-1, -1, -1, -1, -1, 942, -1, 729, 3, 4,
|
||
-1, -1, -1, -1, 9, -1, 47, -1, -1, -1,
|
||
-1, 743, -1, -1, -1, -1, 132, -1, -1, -1,
|
||
61, -1, -1, 139, -1, -1, -1, 0, -1, 34,
|
||
35, 36, 110, 111, 112, 113, 114, 115, 116, 117,
|
||
118, 796, -1, 798, -1, 269, -1, 435, -1, 54,
|
||
55, 56, 57, 26, 59, 60, -1, -1, -1, 447,
|
||
-1, -1, -1, -1, 796, -1, 798, 558, -1, -1,
|
||
-1, -1, -1, -1, 47, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 838, -1, -1, -1, 842, 61, -1,
|
||
-1, 132, 847, 848, -1, -1, -1, -1, 139, -1,
|
||
-1, -1, -1, -1, -1, 110, 838, -1, -1, -1,
|
||
842, 602, -1, -1, -1, 847, 848, -1, -1, -1,
|
||
-1, 126, 877, -1, -1, 130, 881, 132, -1, -1,
|
||
-1, -1, -1, 888, -1, -1, -1, -1, -1, 894,
|
||
895, -1, -1, -1, -1, 877, 9, -1, -1, 881,
|
||
-1, -1, -1, 269, -1, -1, 888, -1, -1, 132,
|
||
-1, -1, 894, 895, -1, -1, 139, -1, -1, 0,
|
||
558, 34, 35, 36, -1, 930, -1, -1, -1, 934,
|
||
-1, 672, -1, -1, -1, -1, -1, 942, -1, -1,
|
||
-1, 54, 55, 56, 57, 26, 59, 60, 930, -1,
|
||
0, -1, 934, -1, -1, -1, 697, -1, -1, -1,
|
||
942, 435, -1, -1, 602, -1, 47, -1, -1, -1,
|
||
-1, -1, -1, 447, -1, 716, 26, 718, 269, -1,
|
||
61, -1, -1, -1, -1, -1, -1, -1, 729, 5,
|
||
-1, -1, -1, -1, -1, 11, 12, 47, -1, -1,
|
||
-1, -1, 743, -1, -1, -1, 22, 23, 24, -1,
|
||
26, 61, -1, -1, 30, -1, 9, 130, -1, 132,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, 672, -1, 52, 53, -1, -1,
|
||
-1, 34, 35, 36, -1, 61, 269, -1, 9, -1,
|
||
-1, 132, -1, -1, -1, 796, -1, 798, 139, 697,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, 84, 435,
|
||
-1, -1, -1, 34, 35, 36, -1, -1, 716, 95,
|
||
718, 447, 132, 99, 558, -1, -1, -1, -1, 139,
|
||
-1, 729, 108, 54, 55, 56, 57, 838, 59, 60,
|
||
-1, 842, -1, -1, -1, 743, 847, 848, -1, -1,
|
||
-1, -1, 128, -1, -1, -1, -1, 110, -1, 0,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 602, -1,
|
||
-1, -1, -1, 126, -1, -1, 877, 130, -1, 132,
|
||
881, -1, -1, -1, 435, 26, -1, 888, -1, 110,
|
||
-1, -1, -1, 894, 895, -1, 447, -1, 796, -1,
|
||
798, -1, -1, -1, -1, 126, 47, -1, -1, 130,
|
||
9, 132, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
61, -1, 9, -1, -1, -1, -1, -1, 269, 930,
|
||
-1, -1, 558, 934, -1, 34, 35, 36, 672, -1,
|
||
838, 942, -1, -1, 842, -1, -1, 34, 35, 847,
|
||
848, -1, 435, -1, -1, 54, 55, 56, 57, 269,
|
||
59, 60, -1, 697, 447, -1, -1, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, 602, -1, 9, 877,
|
||
-1, -1, 716, 881, 718, -1, -1, -1, -1, -1,
|
||
888, 132, -1, -1, 0, 729, 894, 895, 139, -1,
|
||
-1, -1, -1, 34, 35, 36, -1, 558, -1, 743,
|
||
-1, 110, -1, -1, -1, -1, -1, 0, -1, -1,
|
||
26, -1, -1, 54, 55, 56, 57, 126, 59, 60,
|
||
-1, 130, 930, 132, 9, -1, 934, -1, -1, -1,
|
||
-1, 47, -1, 130, 942, 132, 672, -1, -1, -1,
|
||
-1, 602, -1, -1, -1, 61, -1, -1, -1, 34,
|
||
35, 36, 796, -1, 798, -1, -1, -1, -1, -1,
|
||
-1, 697, -1, -1, -1, 558, -1, -1, 61, 54,
|
||
55, 56, 57, -1, 59, 60, -1, -1, -1, -1,
|
||
716, -1, 718, -1, 435, -1, -1, -1, -1, 130,
|
||
-1, 132, -1, 729, 838, -1, 447, -1, 842, -1,
|
||
-1, -1, -1, 847, 848, -1, -1, 743, -1, 602,
|
||
-1, 672, -1, -1, -1, 435, 132, 0, 269, -1,
|
||
-1, -1, -1, 139, -1, -1, -1, 447, -1, -1,
|
||
-1, -1, -1, 877, -1, -1, 697, 881, -1, 132,
|
||
-1, -1, -1, 26, 888, 130, 139, 132, -1, 9,
|
||
894, 895, -1, -1, -1, 716, -1, 718, -1, -1,
|
||
796, -1, 798, -1, 47, -1, -1, -1, 729, -1,
|
||
-1, -1, -1, -1, 34, 35, 36, -1, 61, 672,
|
||
-1, -1, 743, -1, -1, -1, 930, -1, -1, -1,
|
||
934, -1, -1, -1, 54, 55, 56, 57, 942, 59,
|
||
60, -1, 838, -1, 697, -1, 842, 558, -1, -1,
|
||
-1, 847, 848, -1, 74, 75, 76, 77, 78, 79,
|
||
80, 81, 82, 716, -1, 718, -1, 87, 88, 89,
|
||
90, 91, 92, 93, 94, 796, 729, 798, 558, -1,
|
||
-1, 877, -1, -1, -1, 881, -1, -1, -1, 132,
|
||
743, 602, 888, 269, -1, -1, 139, -1, 894, 895,
|
||
-1, -1, -1, 123, 124, 125, -1, -1, -1, -1,
|
||
130, 0, 132, -1, 0, -1, -1, 838, -1, -1,
|
||
-1, 842, 602, -1, 435, -1, 847, 848, -1, -1,
|
||
-1, -1, -1, -1, 930, -1, 447, 26, 934, -1,
|
||
-1, -1, -1, 796, -1, 798, 942, -1, -1, -1,
|
||
-1, 9, -1, -1, -1, -1, 877, -1, 47, -1,
|
||
881, 672, -1, -1, -1, -1, -1, 888, -1, -1,
|
||
-1, -1, 61, 894, 895, 61, 34, 35, 36, -1,
|
||
-1, -1, -1, -1, -1, 838, 697, -1, -1, 842,
|
||
-1, -1, 672, -1, 847, 848, 54, 55, 56, 57,
|
||
-1, 59, 60, -1, -1, 716, -1, 718, -1, 930,
|
||
-1, -1, -1, 934, -1, -1, -1, 697, 729, -1,
|
||
-1, 942, -1, -1, 877, -1, 269, -1, 881, -1,
|
||
-1, -1, 743, -1, -1, 888, 716, -1, 718, -1,
|
||
-1, 894, 895, 132, -1, -1, 132, 558, -1, 729,
|
||
139, -1, -1, 139, -1, -1, -1, -1, -1, 435,
|
||
-1, -1, -1, 743, -1, -1, -1, 0, -1, -1,
|
||
-1, 447, 130, -1, 132, 9, -1, 930, -1, -1,
|
||
-1, 934, 435, -1, -1, 796, -1, 798, -1, 942,
|
||
-1, 602, -1, -1, 447, -1, -1, -1, -1, -1,
|
||
34, 35, 36, -1, 0, -1, -1, -1, -1, 9,
|
||
-1, -1, -1, -1, -1, -1, 796, -1, 798, -1,
|
||
54, 55, 56, 57, -1, 59, 60, 838, 61, -1,
|
||
-1, 842, -1, -1, 34, 35, 847, 848, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 54, 55, 56, 57, 838, 59,
|
||
60, 672, 842, -1, -1, 61, 877, 847, 848, -1,
|
||
881, -1, -1, -1, -1, -1, -1, 888, -1, -1,
|
||
269, -1, 558, 894, 895, -1, 697, -1, -1, -1,
|
||
-1, -1, 435, -1, -1, -1, 130, 877, 132, 132,
|
||
-1, 881, -1, -1, 447, 716, 139, 718, 888, -1,
|
||
-1, -1, -1, 9, 894, 895, -1, -1, 729, 930,
|
||
9, -1, -1, 934, -1, -1, 602, 9, -1, -1,
|
||
130, 942, 743, -1, -1, -1, 132, -1, 34, 35,
|
||
36, -1, -1, 139, -1, 34, 35, 36, -1, 602,
|
||
930, -1, 34, 35, 934, -1, -1, 9, 54, 55,
|
||
56, 57, 942, 59, 60, 54, 55, 56, 57, -1,
|
||
59, 60, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, 34, 35, -1, 796, -1, 798, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 672, -1, -1, -1,
|
||
-1, -1, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, -1, -1, -1, 558, -1, -1, -1, 672,
|
||
-1, 697, -1, -1, -1, -1, -1, 838, -1, -1,
|
||
-1, 842, -1, -1, 130, -1, 847, 848, -1, -1,
|
||
716, 130, 718, 132, 697, -1, 435, 9, 130, 435,
|
||
132, -1, -1, 729, -1, -1, -1, -1, 447, 602,
|
||
-1, 447, -1, 716, -1, 718, 877, 743, -1, -1,
|
||
881, -1, 34, 35, -1, -1, 729, 888, 130, -1,
|
||
132, -1, -1, 894, 895, -1, -1, -1, -1, -1,
|
||
743, -1, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 930,
|
||
796, -1, 798, 934, -1, -1, -1, -1, -1, 672,
|
||
-1, 942, -1, 74, 75, 76, 77, 78, 79, 80,
|
||
81, 82, -1, 796, -1, 798, 87, 88, 89, 90,
|
||
91, 92, 93, 94, 697, -1, -1, -1, -1, -1,
|
||
-1, -1, 838, -1, -1, -1, 842, -1, 130, 558,
|
||
132, 847, 848, 716, -1, 718, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 838, 729, -1, -1, 842,
|
||
5, 132, -1, -1, 847, 848, 11, 12, -1, -1,
|
||
743, 877, 435, -1, -1, 881, -1, 22, 23, 24,
|
||
-1, 26, 888, 602, 447, 30, 602, -1, 894, 895,
|
||
-1, -1, -1, -1, 877, -1, -1, 42, 881, 44,
|
||
-1, -1, 47, 48, -1, 888, -1, 52, 53, 435,
|
||
-1, 894, 895, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, 447, -1, 796, 930, 798, -1, -1, 934, -1,
|
||
-1, -1, -1, -1, -1, -1, 942, -1, -1, 84,
|
||
-1, -1, -1, -1, -1, -1, -1, 930, -1, -1,
|
||
95, 934, -1, 672, 99, -1, 672, -1, -1, 942,
|
||
-1, -1, -1, 108, -1, 838, -1, -1, -1, 842,
|
||
-1, -1, -1, -1, 847, 848, -1, 122, 697, -1,
|
||
-1, 697, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 716, -1, 718,
|
||
716, -1, 718, -1, 877, -1, -1, -1, 881, -1,
|
||
729, -1, -1, 729, -1, 888, -1, -1, -1, -1,
|
||
9, 894, 895, -1, 743, -1, -1, 743, -1, -1,
|
||
-1, 31, 32, 33, -1, -1, -1, -1, -1, 602,
|
||
-1, -1, -1, -1, -1, 34, 35, 36, -1, 49,
|
||
50, -1, -1, -1, -1, -1, -1, 930, 58, -1,
|
||
-1, 934, -1, -1, -1, 54, 55, 56, 57, 942,
|
||
59, 60, -1, -1, -1, -1, 602, 796, -1, 798,
|
||
796, -1, 798, -1, -1, 74, 75, 76, 77, 78,
|
||
79, 80, 81, 82, -1, -1, -1, -1, 87, 88,
|
||
89, 90, 91, 92, 93, 94, -1, -1, -1, 672,
|
||
110, 111, 112, 113, 114, 115, 116, 117, 118, 838,
|
||
-1, -1, 838, 842, -1, -1, 842, -1, 847, 848,
|
||
-1, 847, 848, -1, 697, -1, -1, 126, -1, -1,
|
||
-1, 130, -1, 132, -1, -1, 672, -1, -1, -1,
|
||
-1, -1, -1, 716, -1, 718, -1, -1, 877, -1,
|
||
-1, 877, 881, -1, -1, 881, 729, -1, -1, 888,
|
||
-1, 697, 888, -1, 9, 894, 895, -1, 894, 895,
|
||
743, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
716, -1, 718, -1, -1, -1, -1, -1, -1, 34,
|
||
35, 36, -1, 729, -1, -1, -1, -1, -1, -1,
|
||
-1, 930, -1, -1, 930, 934, -1, 743, 934, 54,
|
||
55, 56, 57, 942, 59, 60, 942, -1, -1, -1,
|
||
-1, -1, -1, 796, -1, 798, -1, -1, -1, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
|
||
-1, -1, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
796, -1, 798, -1, -1, 838, -1, -1, -1, 842,
|
||
-1, -1, -1, -1, 847, 848, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 82, 130, -1, 132, -1, 87,
|
||
88, 89, 90, 91, 92, 93, 94, -1, -1, -1,
|
||
-1, -1, 838, -1, 877, -1, 842, -1, 881, -1,
|
||
-1, 847, 848, -1, -1, 888, -1, -1, 14, 15,
|
||
16, 894, 895, -1, -1, -1, -1, -1, 126, -1,
|
||
26, -1, -1, 27, 28, -1, -1, 31, 32, 33,
|
||
-1, 877, -1, -1, 40, 881, 42, 43, -1, -1,
|
||
-1, 47, 888, -1, -1, 49, 50, 930, 894, 895,
|
||
-1, 934, -1, 59, 58, -1, -1, -1, -1, 942,
|
||
-1, -1, -1, -1, 70, -1, 72, -1, 74, 75,
|
||
-1, 77, -1, 79, -1, 81, -1, 83, -1, 85,
|
||
-1, 87, -1, 89, 930, 91, 92, 93, 934, -1,
|
||
-1, 97, -1, -1, 100, -1, 942, 103, -1, 105,
|
||
0, 1, -1, -1, -1, -1, 110, 111, 112, 113,
|
||
114, 115, 116, 117, 118, 121, -1, 123, -1, -1,
|
||
-1, 125, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, -1, -1, -1, -1, 87, 88, 89, 90, 91,
|
||
92, 93, 94, -1, -1, 151, 152, -1, -1, -1,
|
||
-1, -1, 5, -1, 7, 8, -1, 10, 11, 12,
|
||
13, 61, -1, -1, -1, 171, 19, 20, 21, 22,
|
||
23, 24, -1, 26, 126, -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, 213, 61, -1,
|
||
-1, 217, -1, -1, -1, -1, -1, 70, 118, 72,
|
||
73, -1, -1, -1, -1, -1, -1, 233, 234, 235,
|
||
-1, 84, -1, -1, -1, -1, -1, -1, 244, -1,
|
||
-1, -1, 95, 96, 250, 251, 99, -1, 148, -1,
|
||
-1, 104, 105, 106, 107, 108, -1, -1, -1, 265,
|
||
-1, 114, 115, 269, -1, -1, -1, -1, 121, 122,
|
||
-1, -1, -1, 126, -1, 128, -1, 130, -1, -1,
|
||
-1, 27, 288, 289, -1, 31, 32, 33, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 67, 68, 69, -1,
|
||
71, -1, 73, 49, 50, 76, -1, 78, 208, 80,
|
||
210, -1, 58, 84, -1, 86, 216, -1, -1, 90,
|
||
-1, -1, -1, 94, 95, -1, -1, -1, 99, -1,
|
||
101, -1, -1, 104, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 244, -1, -1, 247, 119, 120,
|
||
-1, 122, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 261, -1, -1, 110, 111, 112, 113, 114, 115,
|
||
116, 117, 118, -1, -1, 381, -1, -1, -1, -1,
|
||
-1, -1, 282, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 397, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 172, 173, 174, 175, 176, 177, 178, 179, -1,
|
||
181, 182, -1, 184, 185, 186, -1, 188, -1, 190,
|
||
191, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 203, -1, 205, 206, -1, -1, -1, -1,
|
||
-1, -1, 9, -1, -1, -1, -1, -1, -1, -1,
|
||
221, 222, 223, -1, 225, 226, 227, -1, -1, 230,
|
||
231, -1, -1, 469, -1, -1, -1, 34, 35, 36,
|
||
-1, -1, 478, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 255, 256, 257, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 510, -1, 512, 74, 75, 76,
|
||
77, 78, 79, 80, 81, 82, -1, -1, 418, -1,
|
||
87, 88, 89, 90, 91, 92, 93, 94, -1, 535,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 548, -1, -1, -1, 446, -1, -1, -1,
|
||
-1, -1, 558, -1, 454, 561, -1, 457, -1, 459,
|
||
-1, -1, -1, 130, -1, 132, -1, -1, -1, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
|
||
351, -1, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 609, 610, -1, -1, 507, -1, 509,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
520, 126, -1, 629, -1, -1, -1, 527, -1, -1,
|
||
530, 531, -1, 533, -1, -1, 536, -1, -1, -1,
|
||
-1, -1, -1, 543, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 10, 659, -1, -1, 662, -1, -1, 559,
|
||
666, 667, 20, 21, -1, -1, -1, -1, -1, -1,
|
||
676, -1, 678, -1, -1, -1, 682, 683, -1, -1,
|
||
-1, -1, 688, -1, 690, 691, -1, -1, -1, -1,
|
||
5, -1, 50, -1, -1, -1, 11, 12, -1, 57,
|
||
58, -1, -1, -1, -1, -1, -1, 22, 23, 24,
|
||
-1, 26, -1, 613, -1, 30, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, -1, -1, -1, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
756, 757, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
660, -1, -1, -1, -1, -1, -1, -1, 668, 84,
|
||
670, -1, -1, -1, 780, -1, 782, 135, 678, -1,
|
||
95, -1, -1, 554, 99, 791, -1, 793, 146, -1,
|
||
-1, -1, -1, 108, -1, 153, 567, -1, 698, 570,
|
||
-1, -1, 160, 703, -1, 705, -1, 122, 814, -1,
|
||
-1, 169, 170, 819, -1, -1, 822, -1, -1, 719,
|
||
-1, -1, 722, 723, 724, -1, -1, 5, 728, -1,
|
||
-1, 731, -1, 11, 12, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 22, 23, 24, -1, 26, 855,
|
||
-1, -1, 30, -1, -1, 755, -1, -1, 864, -1,
|
||
-1, 867, -1, -1, 42, -1, 44, 873, -1, 47,
|
||
48, -1, -1, -1, 52, 53, -1, -1, -1, 237,
|
||
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
|
||
790, -1, -1, 251, -1, -1, -1, 797, 904, -1,
|
||
800, -1, 260, -1, -1, 263, 84, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, -1, -1,
|
||
-1, 99, -1, 823, -1, -1, -1, -1, -1, -1,
|
||
108, -1, -1, -1, 292, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 949, 950, 123, 124, -1, -1, 849,
|
||
-1, -1, -1, -1, -1, -1, -1, 857, 858, -1,
|
||
-1, -1, -1, 863, -1, -1, -1, -1, -1, -1,
|
||
-1, 871, 872, -1, -1, 875, -1, -1, 878, 879,
|
||
-1, -1, -1, -1, -1, 74, 75, 76, 77, 78,
|
||
79, 80, 81, 82, -1, -1, -1, 9, 87, 88,
|
||
89, 90, 91, 92, 93, 94, -1, -1, 27, 28,
|
||
-1, -1, 31, 32, 33, -1, -1, 917, -1, -1,
|
||
920, -1, 34, 35, 36, -1, -1, -1, -1, 387,
|
||
49, 50, 390, 391, 392, 393, 394, 395, 396, 58,
|
||
-1, -1, 54, 55, 56, 57, 404, 59, 60, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, -1, -1, -1, -1, 87, 88, 89, 90, 91,
|
||
92, 93, 94, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 110, 111, 112, 113, 114, 115, 116, 117, 118,
|
||
-1, -1, -1, -1, 123, 124, -1, -1, 74, 75,
|
||
76, 77, 78, 79, 80, 81, 82, -1, 130, -1,
|
||
132, 87, 88, 89, 90, 91, 92, 93, 94, -1,
|
||
-1, 489, 490, 491, 492, 493, 494, 495, 496, 497,
|
||
498, 499, 500, 501, 502, 503, 504, 505, 506, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
126, 72, -1, 74, 75, 523, 77, -1, 79, -1,
|
||
81, 529, 83, -1, 85, -1, 87, -1, 89, -1,
|
||
91, 92, 93, -1, -1, -1, 97, -1, -1, 100,
|
||
548, -1, 103, -1, 105, -1, -1, -1, -1, 557,
|
||
-1, 5, -1, 7, 8, -1, 10, 11, 12, 13,
|
||
121, -1, 123, 571, -1, 19, 20, 21, 22, 23,
|
||
24, -1, 26, -1, -1, 29, 30, 585, -1, -1,
|
||
34, 35, -1, -1, -1, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, 604, 51, 52, 53,
|
||
-1, -1, -1, -1, 612, 27, 28, 61, -1, 31,
|
||
32, 33, 620, -1, -1, -1, 70, 625, 72, 73,
|
||
-1, -1, -1, -1, -1, -1, -1, 49, 50, -1,
|
||
84, -1, -1, -1, -1, -1, 58, -1, -1, -1,
|
||
-1, 95, 96, -1, -1, 99, -1, -1, -1, -1,
|
||
104, 105, -1, -1, 108, -1, -1, -1, -1, -1,
|
||
114, 115, -1, -1, -1, -1, -1, 121, 122, -1,
|
||
-1, 125, 126, -1, 128, -1, 130, -1, -1, -1,
|
||
-1, -1, 690, -1, -1, 107, -1, -1, 110, 111,
|
||
112, 113, 114, 115, 116, 117, 118, -1, -1, -1,
|
||
-1, -1, 710, -1, -1, -1, 714, -1, -1, -1,
|
||
-1, -1, 720, -1, -1, -1, -1, -1, 726, -1,
|
||
-1, -1, -1, -1, 732, -1, -1, -1, -1, -1,
|
||
-1, 739, -1, -1, -1, -1, 744, 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, 774, 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, 803, -1, 805, 61, 62,
|
||
63, -1, 810, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
|
||
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
|
||
123, 124, -1, 126, -1, 128, -1, 130, -1, -1,
|
||
-1, -1, -1, 0, 1, -1, 3, 4, 5, 6,
|
||
7, 8, 890, 10, 11, 12, 13, 14, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, 105, -1,
|
||
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
|
||
-1, 128, 1, 130, 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, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, 101, 102, 103, 104, 105, -1, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
|
||
129, 130, 1, -1, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, 64, 65, 66, 67, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
|
||
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, 38, 39, 40,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, -1, 104, 105, -1, -1, 108, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, 38, 39, -1, -1, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, 101, 102,
|
||
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
|
||
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
|
||
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
|
||
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
|
||
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
|
||
35, -1, 37, 38, 39, 40, -1, 42, 43, 44,
|
||
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
|
||
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
|
||
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
|
||
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
|
||
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, 38, 39, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, 101, 102, -1, 104, 105, -1,
|
||
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
|
||
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
|
||
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, 38, 39, 40,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, -1, 104, 105, -1, -1, 108, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, 38, 39, -1, -1, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, 101, 102,
|
||
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
|
||
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
|
||
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
|
||
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
|
||
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
|
||
35, -1, 37, -1, 39, 40, -1, 42, 43, 44,
|
||
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
|
||
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
|
||
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
|
||
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
|
||
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, 66,
|
||
67, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, 105, -1,
|
||
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
|
||
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, -1, 102, 103, 104, 105, -1, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
|
||
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, 18, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
|
||
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
|
||
-1, 102, -1, 104, 105, -1, -1, 108, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, -1, -1, -1, 41, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
|
||
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
|
||
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
|
||
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
|
||
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
|
||
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
|
||
35, -1, 37, -1, -1, -1, -1, 42, 43, 44,
|
||
45, 46, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
|
||
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
|
||
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
|
||
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
|
||
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
67, 68, -1, 70, 71, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
97, 98, 99, 100, -1, 102, -1, 104, 105, -1,
|
||
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
|
||
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, -1, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
|
||
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
|
||
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
|
||
129, 130, 5, -1, 7, 8, -1, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
|
||
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 70, -1, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 84, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, -1, -1, 99, -1, -1, -1,
|
||
-1, 104, 105, 106, -1, 108, -1, -1, -1, -1,
|
||
-1, 114, 115, -1, -1, -1, -1, -1, 121, 122,
|
||
-1, -1, -1, 126, -1, 128, 5, 130, 7, 8,
|
||
-1, 10, 11, 12, 13, -1, -1, -1, -1, -1,
|
||
19, 20, 21, 22, 23, 24, -1, 26, -1, -1,
|
||
29, 30, -1, -1, -1, 34, 35, -1, -1, -1,
|
||
-1, -1, -1, 42, -1, 44, -1, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 70, -1, 72, 73, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 84, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 95, 96, -1, -1,
|
||
99, -1, -1, -1, -1, 104, 105, 106, -1, 108,
|
||
-1, -1, -1, -1, -1, 114, 115, -1, -1, -1,
|
||
-1, -1, 121, 122, -1, -1, -1, 126, -1, 128,
|
||
5, 130, 7, 8, -1, 10, 11, 12, 13, -1,
|
||
-1, -1, -1, -1, 19, 20, 21, 22, 23, 24,
|
||
-1, 26, -1, -1, 29, 30, -1, -1, -1, 34,
|
||
35, -1, -1, -1, -1, -1, -1, 42, -1, 44,
|
||
-1, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 70, -1, 72, 73, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
95, 96, -1, -1, 99, -1, -1, -1, -1, 104,
|
||
105, -1, -1, 108, -1, -1, -1, -1, -1, 114,
|
||
115, -1, -1, -1, -1, -1, 121, 122, -1, -1,
|
||
-1, 126, -1, 128, 5, 130, 7, 8, -1, 10,
|
||
11, 12, 13, -1, -1, -1, -1, -1, 19, 20,
|
||
21, 22, 23, 24, -1, 26, -1, -1, 29, 30,
|
||
-1, -1, -1, 34, 35, -1, -1, -1, -1, -1,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, -1, -1, -1, -1, -1, -1, -1, -1, 70,
|
||
-1, 72, 73, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 84, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 95, 96, -1, -1, 99, -1,
|
||
-1, -1, -1, 104, 105, -1, -1, 108, -1, -1,
|
||
-1, -1, -1, 114, 115, -1, -1, -1, -1, -1,
|
||
121, 122, -1, -1, -1, 126, -1, 128, 5, 130,
|
||
7, 8, -1, 10, 11, 12, 13, -1, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, -1, 26,
|
||
-1, -1, 29, 30, -1, -1, -1, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, 42, -1, 44, -1, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 70, -1, 72, 73, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 84, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
|
||
-1, -1, 99, -1, -1, -1, -1, 104, 105, -1,
|
||
-1, 108, -1, -1, -1, -1, -1, 114, 115, -1,
|
||
-1, -1, -1, -1, 121, 122, -1, -1, -1, 126,
|
||
-1, 128, 5, 130, 7, 8, -1, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
|
||
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 70, -1, 72,
|
||
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 84, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 95, 96, -1, -1, 99, -1, -1, -1,
|
||
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
|
||
-1, 114, 115, -1, -1, -1, -1, -1, 121, 122,
|
||
-1, -1, -1, 126, -1, 128, 5, 130, 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, 5, 51, 52, 53, -1, -1, 11, 12, -1,
|
||
-1, -1, 61, -1, -1, -1, -1, -1, 22, 23,
|
||
24, 70, 26, 72, 73, -1, 30, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 84, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, -1, 95, 96, 52, 53,
|
||
99, -1, -1, -1, -1, 104, 105, 61, -1, 108,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 5, -1,
|
||
7, 8, 121, 10, 11, 12, 13, 126, -1, 128,
|
||
84, 130, 19, 20, 21, 22, 23, 24, -1, 26,
|
||
-1, 95, -1, 30, -1, 99, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 108, 42, -1, 44, -1, -1,
|
||
47, 48, -1, -1, -1, 52, 53, -1, 122, -1,
|
||
-1, -1, -1, -1, 61, -1, -1, 9, -1, -1,
|
||
-1, -1, -1, 70, -1, 72, 73, -1, 27, 28,
|
||
-1, -1, 31, 32, 33, -1, -1, 84, -1, -1,
|
||
-1, -1, 34, 35, 36, -1, -1, -1, 95, 96,
|
||
49, 50, 99, -1, -1, -1, -1, -1, -1, 58,
|
||
-1, 108, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, -1, -1, 121, -1, -1, -1, 9, 126,
|
||
-1, 128, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
82, -1, -1, -1, -1, 87, 88, 89, 90, 91,
|
||
92, 93, 94, 34, 35, -1, -1, -1, 107, -1,
|
||
-1, 110, 111, 112, 113, 114, 115, 116, 117, 118,
|
||
-1, -1, -1, 54, 55, 56, 57, -1, 59, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 130, -1,
|
||
132, -1, -1, 74, 75, 76, 77, 78, 79, 80,
|
||
81, 82, -1, -1, -1, -1, 87, 88, 89, 90,
|
||
91, 92, 93, 94, -1, 5, -1, -1, -1, -1,
|
||
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, 130,
|
||
-1, 132, 42, -1, 44, -1, -1, 47, 48, 5,
|
||
-1, -1, 52, 53, -1, 11, 12, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, 22, 23, 24, -1,
|
||
26, -1, 72, 73, 30, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 84, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, 5, 95, 52, 53, -1, 99,
|
||
11, 12, -1, -1, -1, 61, -1, -1, 108, -1,
|
||
-1, 22, 23, 24, -1, 26, -1, -1, -1, 30,
|
||
-1, 121, -1, -1, -1, -1, 126, -1, 84, -1,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, 5, 95,
|
||
-1, 52, 53, 99, 11, 12, -1, -1, -1, -1,
|
||
61, -1, 108, -1, -1, 22, 23, 24, -1, 26,
|
||
-1, 72, 73, 30, -1, -1, 122, -1, -1, -1,
|
||
-1, -1, -1, 84, -1, 42, -1, 44, -1, -1,
|
||
47, 48, -1, 5, 95, 52, 53, -1, 99, 11,
|
||
12, -1, -1, -1, 61, -1, -1, 108, -1, -1,
|
||
22, 23, 24, -1, 26, 72, 73, -1, 30, -1,
|
||
121, -1, -1, -1, -1, -1, -1, 84, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, 5, 95, -1,
|
||
52, 53, 99, 11, 12, -1, -1, -1, -1, 61,
|
||
-1, 108, -1, -1, 22, 23, 24, -1, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 84, -1, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, 95, 52, 53, -1, 99, -1, -1,
|
||
-1, -1, -1, 61, 106, -1, 108, -1, -1, -1,
|
||
5, -1, -1, -1, -1, -1, 11, 12, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, 22, 23, 24,
|
||
-1, 26, -1, -1, -1, 30, -1, 95, -1, -1,
|
||
-1, 99, -1, -1, -1, -1, -1, 42, 106, 44,
|
||
108, -1, 47, 48, 5, -1, -1, 52, 53, -1,
|
||
11, 12, -1, -1, -1, -1, 61, -1, -1, -1,
|
||
-1, 22, 23, 24, -1, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, -1, -1,
|
||
95, 52, 53, -1, 99, -1, -1, -1, -1, -1,
|
||
61, 106, -1, 108, -1, -1, -1, 5, -1, -1,
|
||
-1, -1, -1, 11, 12, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 84, 22, 23, 24, -1, 26, -1,
|
||
-1, -1, 30, -1, 95, -1, -1, -1, 99, -1,
|
||
-1, -1, -1, -1, 42, 106, 44, 108, -1, 47,
|
||
48, -1, -1, -1, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 84, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 95, -1, -1,
|
||
-1, 99, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
108
|
||
};
|
||
|
||
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
||
symbol of state STATE-NUM. */
|
||
static const yytype_uint16 yystos[] =
|
||
{
|
||
0, 1, 5, 6, 7, 8, 10, 11, 12, 13,
|
||
14, 19, 20, 21, 22, 23, 24, 25, 26, 30,
|
||
34, 35, 37, 42, 43, 44, 45, 47, 48, 51,
|
||
52, 53, 61, 62, 63, 68, 70, 71, 72, 73,
|
||
83, 84, 85, 86, 95, 96, 97, 98, 99, 100,
|
||
102, 104, 105, 108, 121, 123, 124, 126, 128, 130,
|
||
135, 136, 137, 138, 143, 150, 168, 169, 170, 171,
|
||
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
|
||
182, 183, 184, 185, 186, 187, 189, 190, 191, 192,
|
||
193, 194, 195, 196, 198, 199, 200, 201, 202, 203,
|
||
205, 210, 212, 213, 214, 215, 221, 223, 224, 226,
|
||
227, 228, 229, 230, 231, 232, 233, 234, 241, 246,
|
||
251, 252, 253, 254, 255, 267, 271, 274, 289, 290,
|
||
291, 303, 306, 308, 318, 321, 324, 336, 341, 345,
|
||
347, 354, 367, 371, 374, 374, 152, 159, 160, 36,
|
||
36, 256, 257, 126, 11, 12, 22, 23, 24, 26,
|
||
29, 30, 42, 44, 51, 53, 61, 95, 108, 114,
|
||
115, 122, 169, 170, 171, 173, 175, 178, 180, 182,
|
||
184, 186, 189, 191, 193, 198, 199, 200, 203, 204,
|
||
210, 214, 216, 217, 221, 223, 224, 225, 227, 234,
|
||
235, 236, 237, 246, 250, 251, 253, 168, 166, 168,
|
||
167, 168, 159, 153, 217, 217, 307, 272, 159, 168,
|
||
191, 193, 198, 199, 200, 203, 210, 214, 220, 221,
|
||
251, 253, 36, 268, 259, 155, 355, 151, 159, 191,
|
||
193, 366, 10, 168, 168, 128, 168, 280, 19, 158,
|
||
242, 69, 368, 168, 191, 193, 198, 251, 332, 333,
|
||
346, 217, 12, 126, 251, 122, 250, 106, 107, 122,
|
||
188, 207, 208, 209, 217, 219, 240, 168, 191, 193,
|
||
211, 0, 1, 137, 138, 150, 274, 374, 3, 4,
|
||
36, 126, 132, 238, 239, 238, 238, 168, 191, 193,
|
||
197, 251, 36, 238, 197, 36, 238, 197, 197, 36,
|
||
238, 197, 36, 238, 197, 36, 238, 197, 36, 197,
|
||
36, 238, 197, 238, 197, 251, 36, 126, 159, 238,
|
||
197, 251, 36, 126, 159, 238, 197, 251, 8, 10,
|
||
168, 172, 173, 174, 175, 176, 177, 178, 179, 180,
|
||
181, 182, 183, 184, 185, 186, 187, 190, 191, 192,
|
||
193, 194, 197, 246, 251, 252, 253, 254, 197, 238,
|
||
159, 238, 36, 197, 36, 159, 238, 197, 36, 126,
|
||
238, 130, 197, 36, 159, 238, 197, 9, 34, 35,
|
||
54, 55, 56, 57, 59, 60, 110, 130, 222, 159,
|
||
159, 159, 159, 159, 247, 374, 36, 238, 36, 159,
|
||
238, 197, 251, 36, 159, 238, 197, 159, 15, 16,
|
||
17, 18, 294, 296, 301, 302, 1, 12, 25, 26,
|
||
137, 150, 161, 162, 163, 164, 274, 374, 17, 38,
|
||
39, 40, 304, 305, 309, 314, 250, 164, 17, 101,
|
||
342, 343, 344, 159, 217, 374, 168, 260, 263, 260,
|
||
217, 217, 217, 217, 168, 202, 74, 75, 76, 77,
|
||
78, 79, 80, 81, 82, 87, 88, 89, 90, 91,
|
||
92, 93, 94, 147, 148, 147, 147, 147, 147, 27,
|
||
28, 31, 32, 33, 49, 50, 58, 110, 111, 112,
|
||
113, 114, 115, 116, 117, 118, 125, 292, 147, 157,
|
||
125, 374, 125, 374, 191, 261, 262, 263, 374, 168,
|
||
273, 9, 110, 328, 195, 168, 269, 273, 261, 69,
|
||
360, 217, 368, 19, 126, 276, 168, 374, 145, 147,
|
||
126, 374, 114, 127, 106, 168, 243, 244, 125, 168,
|
||
204, 208, 216, 217, 251, 369, 370, 52, 125, 217,
|
||
374, 258, 168, 127, 129, 168, 191, 198, 200, 202,
|
||
210, 125, 129, 107, 125, 129, 374, 168, 168, 206,
|
||
209, 217, 106, 217, 218, 125, 131, 206, 206, 206,
|
||
211, 217, 217, 217, 217, 217, 217, 217, 217, 211,
|
||
217, 245, 249, 374, 297, 301, 16, 294, 301, 3,
|
||
4, 161, 310, 315, 38, 304, 314, 39, 304, 374,
|
||
38, 39, 348, 351, 374, 132, 145, 265, 266, 125,
|
||
374, 374, 125, 168, 168, 217, 217, 217, 217, 217,
|
||
217, 217, 217, 217, 217, 217, 217, 217, 217, 217,
|
||
217, 217, 217, 374, 374, 168, 168, 145, 265, 125,
|
||
154, 145, 125, 374, 217, 145, 52, 125, 270, 374,
|
||
156, 217, 374, 374, 122, 374, 275, 168, 279, 280,
|
||
282, 374, 277, 281, 19, 374, 145, 133, 125, 370,
|
||
125, 122, 217, 334, 335, 332, 374, 372, 260, 127,
|
||
217, 219, 209, 139, 141, 140, 142, 125, 127, 218,
|
||
132, 127, 127, 127, 125, 248, 164, 165, 295, 250,
|
||
299, 301, 168, 168, 250, 374, 312, 304, 317, 319,
|
||
217, 352, 38, 343, 351, 217, 264, 146, 148, 125,
|
||
131, 263, 207, 293, 9, 146, 262, 374, 168, 325,
|
||
168, 168, 374, 374, 165, 19, 84, 122, 168, 284,
|
||
287, 288, 283, 280, 282, 374, 168, 278, 282, 284,
|
||
106, 168, 370, 168, 125, 337, 165, 374, 107, 374,
|
||
126, 374, 126, 209, 218, 217, 129, 129, 165, 374,
|
||
250, 126, 374, 126, 374, 374, 316, 250, 374, 165,
|
||
349, 374, 217, 9, 217, 132, 125, 165, 217, 145,
|
||
47, 145, 356, 374, 122, 168, 168, 145, 127, 125,
|
||
125, 145, 125, 129, 127, 145, 334, 99, 340, 17,
|
||
103, 373, 219, 106, 144, 149, 168, 144, 298, 374,
|
||
144, 144, 311, 165, 374, 165, 320, 374, 353, 350,
|
||
217, 217, 207, 250, 64, 65, 363, 364, 365, 168,
|
||
145, 126, 145, 145, 122, 168, 288, 84, 282, 374,
|
||
145, 338, 127, 125, 145, 127, 165, 300, 127, 127,
|
||
165, 313, 17, 41, 322, 323, 165, 165, 374, 127,
|
||
48, 329, 168, 357, 374, 374, 126, 145, 219, 285,
|
||
286, 374, 168, 145, 122, 168, 374, 374, 106, 168,
|
||
374, 165, 374, 374, 165, 165, 250, 326, 66, 361,
|
||
362, 165, 165, 285, 125, 127, 126, 145, 168, 145,
|
||
339, 145, 374, 358, 374, 127, 286, 285, 126, 145,
|
||
165, 330, 327, 17, 67, 359, 165, 127, 285, 17,
|
||
46, 331, 330, 127, 168, 168
|
||
};
|
||
|
||
#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 281 "harbour.y"
|
||
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
|
||
#line 3955 "harboury.c"
|
||
break;
|
||
case 96: /* "CBSTART" */
|
||
#line 280 "harbour.y"
|
||
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
|
||
#line 3960 "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 294 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 300 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 304 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (4)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
(yyvsp[(3) - (4)].valChar).dealloc = FALSE; ;}
|
||
break;
|
||
|
||
case 17:
|
||
#line 309 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (6)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (6)].valChar).string ); (yyvsp[(3) - (6)].valChar).dealloc = FALSE; }
|
||
(yyvsp[(5) - (6)].valChar).dealloc = FALSE; ;}
|
||
break;
|
||
|
||
case 18:
|
||
#line 316 "harbour.y"
|
||
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;}
|
||
break;
|
||
|
||
case 20:
|
||
#line 317 "harbour.y"
|
||
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;}
|
||
break;
|
||
|
||
case 22:
|
||
#line 318 "harbour.y"
|
||
{ 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 319 "harbour.y"
|
||
{ 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 322 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 323 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_STATIC; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 324 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_INIT; ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 325 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_EXIT; ;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 328 "harbour.y"
|
||
{ (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 329 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 331 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 334 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 338 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 342 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'N', NULL ); ;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 343 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'C', NULL ); ;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 344 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'D', NULL ); ;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 345 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'L', NULL ); ;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 346 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'B', NULL ); ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 347 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'O', NULL ); ;}
|
||
break;
|
||
|
||
case 44:
|
||
#line 348 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'S', (yyvsp[(2) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 349 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 353 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ); ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 354 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'n', NULL ); ;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 355 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'c', NULL ); ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 356 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'd', NULL ); ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 357 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'l', NULL ); ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 358 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'a', NULL ); ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 359 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'b', NULL ); ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 360 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'o', NULL ); ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 361 "harbour.y"
|
||
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 's', (yyvsp[(2) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 56:
|
||
#line 364 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 365 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 59:
|
||
#line 374 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 60:
|
||
#line 375 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 61:
|
||
#line 376 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 62:
|
||
#line 377 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 63:
|
||
#line 378 "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->funFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 64:
|
||
#line 384 "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->funFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 65:
|
||
#line 390 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 66:
|
||
#line 391 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 67:
|
||
#line 392 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 68:
|
||
#line 393 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 69:
|
||
#line 394 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 70:
|
||
#line 395 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 71:
|
||
#line 396 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 397 "harbour.y"
|
||
{ hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 73:
|
||
#line 399 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 400 "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->funFlags |= FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 405 "harbour.y"
|
||
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 76:
|
||
#line 406 "harbour.y"
|
||
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 407 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( (HB_COMP_PARAM->functions.pLast->funFlags & 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->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 78:
|
||
#line 419 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 421 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
/* TODO: check if return value agree with declared value */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK )
|
||
/* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */
|
||
hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->funFlags & 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->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 80:
|
||
#line 439 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 81:
|
||
#line 441 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" );
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 83:
|
||
#line 445 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
|
||
break;
|
||
|
||
case 84:
|
||
#line 447 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" );
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 91:
|
||
#line 456 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->szAnnounce == NULL )
|
||
{
|
||
/* check for reserved name
|
||
* NOTE: Clipper doesn't check for it
|
||
*/
|
||
const char * szFunction = hb_compReservedName( (yyvsp[(2) - (2)].string) );
|
||
if( szFunction )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, (yyvsp[(2) - (2)].string) );
|
||
HB_COMP_PARAM->szAnnounce = (yyvsp[(2) - (2)].string);
|
||
}
|
||
else
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, (yyvsp[(2) - (2)].string), NULL );
|
||
;}
|
||
break;
|
||
|
||
case 93:
|
||
#line 470 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 473 "harbour.y"
|
||
{
|
||
if( (yyvsp[(1) - (1)].valChar).dealloc )
|
||
{
|
||
(yyvsp[(1) - (1)].valChar).string = ( char * ) hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string, HB_IDENT_FREE );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
}
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string );
|
||
;}
|
||
break;
|
||
|
||
case 95:
|
||
#line 481 "harbour.y"
|
||
{
|
||
{
|
||
char szFileName[ HB_PATH_MAX ];
|
||
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, sizeof( szFileName ) - 1 ), (yyvsp[(3) - (3)].valChar).string, sizeof( szFileName ) - 1 );
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, szFileName, HB_IDENT_COPY ) );
|
||
if( (yyvsp[(1) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (3)].valChar).string );
|
||
(yyvsp[(1) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
if( (yyvsp[(3) - (3)].valChar).dealloc )
|
||
{
|
||
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
|
||
(yyvsp[(3) - (3)].valChar).dealloc = FALSE;
|
||
}
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 500 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 503 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 504 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 505 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 506 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 102:
|
||
#line 507 "harbour.y"
|
||
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM, HB_COMP_PARAM->functions.pLast ); ;}
|
||
break;
|
||
|
||
case 103:
|
||
#line 508 "harbour.y"
|
||
{ if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine )
|
||
{
|
||
yyclearin;
|
||
}
|
||
else
|
||
{
|
||
yyerrok;
|
||
HB_COMP_PARAM->ilastLineErr = HB_COMP_PARAM->currLine;
|
||
}
|
||
(yyval.lNumber) = 0;
|
||
;}
|
||
break;
|
||
|
||
case 113:
|
||
#line 534 "harbour.y"
|
||
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 537 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 541 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 542 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 118:
|
||
#line 545 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 546 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 550 "harbour.y"
|
||
{ (yyval.string) = ( char * ) "STEP"; ;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 551 "harbour.y"
|
||
{ (yyval.string) = ( char * ) "TO"; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 552 "harbour.y"
|
||
{ (yyval.string) = ( char * ) "LOOP"; ;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 553 "harbour.y"
|
||
{ (yyval.string) = ( char * ) "EXIT"; ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 554 "harbour.y"
|
||
{ (yyval.string) = ( char * ) "IN"; ;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 555 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 556 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 557 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 558 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 559 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 560 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 561 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 562 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 563 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 564 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 565 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 137:
|
||
#line 566 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 567 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 572 "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 140:
|
||
#line 573 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 141:
|
||
#line 576 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDate( ( long ) (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 142:
|
||
#line 579 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewTimeStamp( (yyvsp[(1) - (1)].valTimeStamp).date, (yyvsp[(1) - (1)].valTimeStamp).time, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 143:
|
||
#line 582 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 144:
|
||
#line 583 "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 145:
|
||
#line 588 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 147:
|
||
#line 596 "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 150:
|
||
#line 612 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 151:
|
||
#line 613 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 153:
|
||
#line 621 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 155:
|
||
#line 635 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 157:
|
||
#line 643 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 159:
|
||
#line 649 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 160:
|
||
#line 650 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 162:
|
||
#line 656 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 163:
|
||
#line 657 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 164:
|
||
#line 662 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 165:
|
||
#line 665 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 166:
|
||
#line 670 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 167:
|
||
#line 671 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 169:
|
||
#line 679 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 171:
|
||
#line 689 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 172:
|
||
#line 690 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 173:
|
||
#line 695 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 174:
|
||
#line 696 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 175:
|
||
#line 697 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 176:
|
||
#line 698 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 177:
|
||
#line 699 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 178:
|
||
#line 700 "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 701 "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 702 "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 703 "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 704 "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 705 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 184:
|
||
#line 706 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 185:
|
||
#line 707 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 186:
|
||
#line 708 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 187:
|
||
#line 711 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 190:
|
||
#line 716 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 191:
|
||
#line 717 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 192:
|
||
#line 718 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 193:
|
||
#line 719 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 194:
|
||
#line 720 "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 721 "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 722 "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 723 "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 724 "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 725 "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 726 "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 727 "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 728 "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 729 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 204:
|
||
#line 730 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 205:
|
||
#line 731 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 206:
|
||
#line 732 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 207:
|
||
#line 733 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 208:
|
||
#line 734 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 209:
|
||
#line 735 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 210:
|
||
#line 744 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 211:
|
||
#line 745 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 212:
|
||
#line 746 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 213:
|
||
#line 747 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 214:
|
||
#line 748 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 215:
|
||
#line 749 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 216:
|
||
#line 754 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 217:
|
||
#line 755 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 218:
|
||
#line 756 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 219:
|
||
#line 757 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 220:
|
||
#line 758 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 221:
|
||
#line 759 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 222:
|
||
#line 760 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 223:
|
||
#line 761 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 224:
|
||
#line 762 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 225:
|
||
#line 763 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 226:
|
||
#line 764 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 227:
|
||
#line 765 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 228:
|
||
#line 766 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 229:
|
||
#line 767 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 230:
|
||
#line 768 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 231:
|
||
#line 769 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 232:
|
||
#line 770 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 233:
|
||
#line 771 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 234:
|
||
#line 772 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 236:
|
||
#line 779 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (4)].string), HB_COMP_PARAM ), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 238:
|
||
#line 783 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 239:
|
||
#line 784 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 240:
|
||
#line 788 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 242:
|
||
#line 794 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 243:
|
||
#line 795 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 246:
|
||
#line 802 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 247:
|
||
#line 803 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 248:
|
||
#line 804 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 249:
|
||
#line 805 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 250:
|
||
#line 806 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
|
||
break;
|
||
|
||
case 251:
|
||
#line 809 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 253:
|
||
#line 815 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 254:
|
||
#line 816 "harbour.y"
|
||
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
|
||
break;
|
||
|
||
case 255:
|
||
#line 817 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL );
|
||
(yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM ));
|
||
;}
|
||
break;
|
||
|
||
case 256:
|
||
#line 823 "harbour.y"
|
||
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
|
||
break;
|
||
|
||
case 257:
|
||
#line 824 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 258:
|
||
#line 825 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 259:
|
||
#line 828 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 261:
|
||
#line 836 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 271:
|
||
#line 856 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 281:
|
||
#line 866 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 284:
|
||
#line 869 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 286:
|
||
#line 871 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 298:
|
||
#line 885 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 299:
|
||
#line 886 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 301:
|
||
#line 890 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 303:
|
||
#line 894 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 305:
|
||
#line 898 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 311:
|
||
#line 904 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 334:
|
||
#line 938 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 335:
|
||
#line 939 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 336:
|
||
#line 942 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 337:
|
||
#line 945 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 338:
|
||
#line 946 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 339:
|
||
#line 949 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 340:
|
||
#line 950 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 341:
|
||
#line 951 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 342:
|
||
#line 954 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 343:
|
||
#line 957 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 344:
|
||
#line 960 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 345:
|
||
#line 963 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 346:
|
||
#line 966 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 347:
|
||
#line 969 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 348:
|
||
#line 972 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 349:
|
||
#line 975 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 356:
|
||
#line 986 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 357:
|
||
#line 987 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 358:
|
||
#line 988 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 359:
|
||
#line 989 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 360:
|
||
#line 990 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 361:
|
||
#line 991 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 362:
|
||
#line 994 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 363:
|
||
#line 995 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 364:
|
||
#line 998 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 365:
|
||
#line 999 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 366:
|
||
#line 1000 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 367:
|
||
#line 1001 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 368:
|
||
#line 1002 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 369:
|
||
#line 1003 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 370:
|
||
#line 1004 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 371:
|
||
#line 1005 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 372:
|
||
#line 1006 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 374:
|
||
#line 1015 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 375:
|
||
#line 1016 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 376:
|
||
#line 1017 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 377:
|
||
#line 1020 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 378:
|
||
#line 1021 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 379:
|
||
#line 1024 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;}
|
||
break;
|
||
|
||
case 380:
|
||
#line 1025 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;}
|
||
break;
|
||
|
||
case 381:
|
||
#line 1030 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 382:
|
||
#line 1031 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 383:
|
||
#line 1032 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
|
||
break;
|
||
|
||
case 384:
|
||
#line 1033 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 385:
|
||
#line 1036 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType)->cVarType, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 386:
|
||
#line 1037 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType)->cVarType, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 387:
|
||
#line 1040 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 388:
|
||
#line 1041 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 389:
|
||
#line 1045 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->functions.pLast->bBlock;
|
||
HB_COMP_PARAM->functions.pLast->bBlock = TRUE; ;}
|
||
break;
|
||
|
||
case 390:
|
||
#line 1048 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bBlock = (yyvsp[(2) - (3)].bTrue); ;}
|
||
break;
|
||
|
||
case 392:
|
||
#line 1051 "harbour.y"
|
||
{ /* 3 */
|
||
HB_CBVAR_PTR pVar;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compCodeBlockStart( HB_COMP_PARAM, TRUE );
|
||
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_EXTBLOCK;
|
||
HB_COMP_PARAM->functions.pLast->fVParams =
|
||
( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0;
|
||
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_EXT;
|
||
if( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string );
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string = NULL;
|
||
(yyvsp[(1) - (2)].asExpr)->ulLength = 0;
|
||
}
|
||
|
||
HB_COMP_PARAM->iVarScope = VS_PARAMETER;
|
||
pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals;
|
||
while( pVar )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, hb_compVarTypeNew( HB_COMP_PARAM, pVar->bType, NULL ) );
|
||
pVar =pVar->pNext;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 393:
|
||
#line 1076 "harbour.y"
|
||
{ /* 6 */
|
||
hb_compCodeBlockEnd( HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr),
|
||
HB_COMP_PARAM->functions.pLast->pCode + ( ULONG ) (yyvsp[(3) - (5)].lNumber),
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos - ( ULONG ) (yyvsp[(3) - (5)].lNumber) );
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos = ( ULONG ) (yyvsp[(3) - (5)].lNumber);
|
||
HB_COMP_PARAM->lastLinePos = 0;
|
||
;}
|
||
break;
|
||
|
||
case 394:
|
||
#line 1086 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 395:
|
||
#line 1087 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 396:
|
||
#line 1089 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
|
||
break;
|
||
|
||
case 398:
|
||
#line 1102 "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 400:
|
||
#line 1108 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 402:
|
||
#line 1110 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 404:
|
||
#line 1112 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 406:
|
||
#line 1114 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->funFlags & 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 407:
|
||
#line 1121 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 408:
|
||
#line 1124 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 409:
|
||
#line 1125 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 410:
|
||
#line 1128 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 411:
|
||
#line 1129 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 413:
|
||
#line 1139 "harbour.y"
|
||
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
|
||
break;
|
||
|
||
case 414:
|
||
#line 1141 "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 415:
|
||
#line 1145 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 416:
|
||
#line 1152 "harbour.y"
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) );
|
||
if( HB_COMP_PARAM->iVarScope & VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (2)].string), NULL, HB_COMP_PARAM ), FALSE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 417:
|
||
#line 1169 "harbour.y"
|
||
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) );
|
||
;}
|
||
break;
|
||
|
||
case 418:
|
||
#line 1173 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].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) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (5)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (5)].string), NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber);
|
||
;}
|
||
break;
|
||
|
||
case 419:
|
||
#line 1198 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 421:
|
||
#line 1207 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 422:
|
||
#line 1208 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 423:
|
||
#line 1209 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 424:
|
||
#line 1212 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
|
||
break;
|
||
|
||
case 425:
|
||
#line 1214 "harbour.y"
|
||
{
|
||
if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) );
|
||
;}
|
||
break;
|
||
|
||
case 426:
|
||
#line 1219 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 427:
|
||
#line 1220 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 428:
|
||
#line 1223 "harbour.y"
|
||
{ (yyval.string) = NULL; ;}
|
||
break;
|
||
|
||
case 429:
|
||
#line 1224 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 430:
|
||
#line 1227 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
|
||
break;
|
||
|
||
case 432:
|
||
#line 1230 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 433:
|
||
#line 1231 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 434:
|
||
#line 1234 "harbour.y"
|
||
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
|
||
break;
|
||
|
||
case 435:
|
||
#line 1235 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastDeclared )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->cType = (yyvsp[(7) - (8)].asVarType)->cVarType;
|
||
|
||
if ( HB_TOUPPER( (yyvsp[(7) - (8)].asVarType)->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(7) - (8)].asVarType)->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastDeclared->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, (yyvsp[(7) - (8)].asVarType)->szFromClass, HB_COMP_PARAM->pLastDeclared->szName );
|
||
HB_COMP_PARAM->pLastDeclared->cType = ( HB_ISUPPER( ( UCHAR ) (yyvsp[(7) - (8)].asVarType)->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
}
|
||
}
|
||
HB_COMP_PARAM->szDeclaredFun = NULL;
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
;}
|
||
break;
|
||
|
||
case 436:
|
||
#line 1253 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;}
|
||
break;
|
||
|
||
case 437:
|
||
#line 1253 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 438:
|
||
#line 1254 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 439:
|
||
#line 1255 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 440:
|
||
#line 1256 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 441:
|
||
#line 1257 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = (yyvsp[(3) - (3)].asVarType)->cVarType; ;}
|
||
break;
|
||
|
||
case 442:
|
||
#line 1257 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 449:
|
||
#line 1270 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 450:
|
||
#line 1271 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->cType = (yyvsp[(6) - (6)].asVarType)->cVarType;
|
||
if ( HB_TOUPPER( (yyvsp[(6) - (6)].asVarType)->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, (yyvsp[(6) - (6)].asVarType)->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( HB_ISUPPER( ( UCHAR ) (yyvsp[(6) - (6)].asVarType)->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
}
|
||
}
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
;}
|
||
break;
|
||
|
||
case 451:
|
||
#line 1289 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
|
||
break;
|
||
|
||
case 452:
|
||
#line 1290 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
PCOMCLASS pClass;
|
||
char szSetData[ HB_SYMBOL_NAME_LEN + 1 ];
|
||
int iLen;
|
||
char cVarType = (yyvsp[(3) - (3)].asVarType)->cVarType;
|
||
|
||
/* List Type overrides if exists. */
|
||
if( HB_COMP_PARAM->cDataListType )
|
||
cVarType = HB_COMP_PARAM->cDataListType;
|
||
|
||
HB_COMP_PARAM->pLastMethod->cType = cVarType;
|
||
if ( HB_TOUPPER( cVarType ) == 'S' )
|
||
{
|
||
pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->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, (yyvsp[(3) - (3)].asVarType)->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( HB_ISUPPER( ( UCHAR ) 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 = cVarType;
|
||
HB_COMP_PARAM->pLastMethod->iParamCount = 1;
|
||
|
||
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] = cVarType;
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass;
|
||
|
||
if ( HB_TOUPPER( cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
}
|
||
}
|
||
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
;}
|
||
break;
|
||
|
||
case 459:
|
||
#line 1354 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 460:
|
||
#line 1357 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 461:
|
||
#line 1358 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 462:
|
||
#line 1359 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;}
|
||
break;
|
||
|
||
case 463:
|
||
#line 1360 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
|
||
break;
|
||
|
||
case 464:
|
||
#line 1361 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 465:
|
||
#line 1362 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;}
|
||
break;
|
||
|
||
case 466:
|
||
#line 1365 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;}
|
||
break;
|
||
|
||
case 467:
|
||
#line 1366 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(4) - (4)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 468:
|
||
#line 1367 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 469:
|
||
#line 1368 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;}
|
||
break;
|
||
|
||
case 470:
|
||
#line 1369 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 471:
|
||
#line 1370 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
|
||
break;
|
||
|
||
case 480:
|
||
#line 1383 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 481:
|
||
#line 1384 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 482:
|
||
#line 1385 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 483:
|
||
#line 1386 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 484:
|
||
#line 1390 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 485:
|
||
#line 1392 "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 486:
|
||
#line 1394 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 487:
|
||
#line 1397 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 489:
|
||
#line 1401 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 490:
|
||
#line 1403 "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 491:
|
||
#line 1407 "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 492:
|
||
#line 1411 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 493:
|
||
#line 1413 "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 494:
|
||
#line 1417 "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 495:
|
||
#line 1423 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wIfCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 498:
|
||
#line 1436 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 501:
|
||
#line 1448 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 502:
|
||
#line 1452 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wCaseCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 505:
|
||
#line 1462 "harbour.y"
|
||
{ ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
|
||
break;
|
||
|
||
case 508:
|
||
#line 1466 "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 509:
|
||
#line 1474 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 510:
|
||
#line 1475 "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 511:
|
||
#line 1480 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ 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 512:
|
||
#line 1486 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 513:
|
||
#line 1487 "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 514:
|
||
#line 1492 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ 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 515:
|
||
#line 1499 "harbour.y"
|
||
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 516:
|
||
#line 1499 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 518:
|
||
#line 1501 "harbour.y"
|
||
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
|
||
break;
|
||
|
||
case 520:
|
||
#line 1506 "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 521:
|
||
#line 1511 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 522:
|
||
#line 1516 "harbour.y"
|
||
{
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wWhileCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 523:
|
||
#line 1526 "harbour.y"
|
||
{
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wWhileCounter;
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 524:
|
||
#line 1535 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 527:
|
||
#line 1543 "harbour.y"
|
||
{ /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
|
||
hb_compDebugStart();
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
(yyvsp[(2) - (4)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM );
|
||
(yyval.asExpr) = hb_compExprGenPush( hb_compExprAssign( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ) )
|
||
{
|
||
hb_compForStart( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ), FALSE );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 528:
|
||
#line 1556 "harbour.y"
|
||
{ /* 9 */
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 529:
|
||
#line 1561 "harbour.y"
|
||
{ /* 11 */
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 530:
|
||
#line 1565 "harbour.y"
|
||
{
|
||
int iSign, iLine;
|
||
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
|
||
iLine = HB_COMP_PARAM->currLine;
|
||
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(1) - (12)].lNumber);
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->currLine = iLine;
|
||
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
{
|
||
(yyvsp[(8) - (12)].asExpr) = hb_compExprReduce( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM );
|
||
iSign = hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) );
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
iSign = 1;
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ) ); /* end */
|
||
if( iSign )
|
||
{
|
||
hb_compGenPCode1( ( BYTE ) ( iSign > 0 ? HB_P_GREATER : HB_P_LESS ), HB_COMP_PARAM );
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ) ); /* step */
|
||
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
|
||
}
|
||
|
||
hb_compGenJumpFalse( ( ULONG ) (yyvsp[(11) - (12)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) )
|
||
hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 533:
|
||
#line 1613 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 534:
|
||
#line 1614 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 535:
|
||
#line 1618 "harbour.y"
|
||
{
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->wForCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wForCounter;
|
||
;}
|
||
break;
|
||
|
||
case 540:
|
||
#line 1631 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 541:
|
||
#line 1632 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 542:
|
||
#line 1635 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 543:
|
||
#line 1636 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 544:
|
||
#line 1639 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 546:
|
||
#line 1643 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 547:
|
||
#line 1644 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 548:
|
||
#line 1649 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compDebugStart();
|
||
;}
|
||
break;
|
||
|
||
case 549:
|
||
#line 1655 "harbour.y"
|
||
{
|
||
/* 7
|
||
*/
|
||
(yyvsp[(2) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (6)].asExpr), HB_COMP_PARAM );
|
||
(yyvsp[(4) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(4) - (6)].asExpr), HB_COMP_PARAM );
|
||
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
|
||
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 550:
|
||
#line 1666 "harbour.y"
|
||
{
|
||
/* 9
|
||
*/
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 551:
|
||
#line 1672 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
|
||
hb_compGenJump( ( ULONG ) (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( 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 552:
|
||
#line 1686 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 553:
|
||
#line 1687 "harbour.y"
|
||
{ (yyval.iNumber) = -1; ;}
|
||
break;
|
||
|
||
case 554:
|
||
#line 1691 "harbour.y"
|
||
{
|
||
hb_compLoopStart( HB_COMP_PARAM, FALSE );
|
||
hb_compSwitchStart( HB_COMP_PARAM, (yyvsp[(1) - (1)].asExpr) );
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 555:
|
||
#line 1698 "harbour.y"
|
||
{
|
||
hb_compSwitchEnd( HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 556:
|
||
#line 1705 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 557:
|
||
#line 1712 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->functions.pLast->wSwitchCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 560:
|
||
#line 1724 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->functions.pLast->wSwitchCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 561:
|
||
#line 1729 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprReduce( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 563:
|
||
#line 1736 "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 564:
|
||
#line 1744 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 566:
|
||
#line 1747 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 570:
|
||
#line 1755 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 571:
|
||
#line 1755 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 573:
|
||
#line 1760 "harbour.y"
|
||
{ /* 2 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 574:
|
||
#line 1768 "harbour.y"
|
||
{ /* 6 */
|
||
/* Set jump address for HB_P_SEQBEGIN opcode - this address
|
||
* will be used in BREAK code if there is no RECOVER clause
|
||
*/
|
||
if( (yyvsp[(3) - (5)].lNumber) )
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(2) - (5)].lNumber), HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
|
||
(yyvsp[(4) - (5)].lNumber) = hb_compLoopCount( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 575:
|
||
#line 1779 "harbour.y"
|
||
{ /* 8 */
|
||
/* Replace END address with RECOVER address in
|
||
* HB_P_SEQBEGIN opcode if there is RECOVER clause
|
||
*/
|
||
if( (yyvsp[(7) - (7)].lNumber) )
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (7)].lNumber), ( ULONG ) (yyvsp[(7) - (7)].lNumber), HB_COMP_PARAM );
|
||
else if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
;}
|
||
break;
|
||
|
||
case 576:
|
||
#line 1789 "harbour.y"
|
||
{ /* 10 */
|
||
long lLoopCount = hb_compLoopCount( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
if( (yyvsp[(9) - (9)].lNumber) )
|
||
{
|
||
if( (yyvsp[(4) - (9)].lNumber) != lLoopCount )
|
||
{
|
||
/* ALWAYS statement after RECOVER with EXIT/LOOP statments */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_ALWAYS_AFTER_EXIT, "EXIT/LOOP", NULL );
|
||
}
|
||
--HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
/* replace END address with ALWAYS address in
|
||
HB_P_SEQEND opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
|
||
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (9)].lNumber) - 4, ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (9)].lNumber) + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_ALWAYSEND, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
/* Fix END address in HB_P_SEQEND opcode */
|
||
hb_compGenJumpHere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), HB_COMP_PARAM );
|
||
}
|
||
hb_compSequenceFinish( HB_COMP_PARAM, ( ULONG ) (yyvsp[(2) - (9)].lNumber), ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber),
|
||
(yyvsp[(5) - (9)].lNumber) != 0, (yyvsp[(7) - (9)].lNumber) != 0, (yyvsp[(4) - (9)].lNumber) == lLoopCount );
|
||
;}
|
||
break;
|
||
|
||
case 580:
|
||
#line 1824 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 581:
|
||
#line 1826 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 582:
|
||
#line 1833 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 584:
|
||
#line 1838 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
++HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
|
||
hb_compSequenceAlways( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 585:
|
||
#line 1846 "harbour.y"
|
||
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 588:
|
||
#line 1852 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 589:
|
||
#line 1863 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
|
||
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_SEQRECOVER, HB_COMP_PARAM );
|
||
hb_compGenPopVar( (yyvsp[(2) - (2)].string), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 592:
|
||
#line 1885 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 593:
|
||
#line 1889 "harbour.y"
|
||
{
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].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) - (2)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 594:
|
||
#line 1896 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 595:
|
||
#line 1897 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 596:
|
||
#line 1900 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 597:
|
||
#line 1901 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 598:
|
||
#line 1902 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 599:
|
||
#line 1903 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 600:
|
||
#line 1904 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 601:
|
||
#line 1907 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 606:
|
||
#line 1915 "harbour.y"
|
||
{
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compGenPCode1( HB_P_WITHOBJECTSTART, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->wWithObjectCnt++;
|
||
;}
|
||
break;
|
||
|
||
case 607:
|
||
#line 1924 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt )
|
||
--HB_COMP_PARAM->functions.pLast->wWithObjectCnt;
|
||
if( (yyvsp[(5) - (6)].lNumber) )
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
|
||
( ULONG ) (yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 610:
|
||
#line 1941 "harbour.y"
|
||
{ HB_COMP_PARAM->fError = FALSE; ;}
|
||
break;
|
||
|
||
|
||
/* Line 1268 of yacc.c. */
|
||
#line 6851 "harboury.c"
|
||
default: break;
|
||
}
|
||
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
|
||
|
||
YYPOPSTACK (yylen);
|
||
yylen = 0;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
|
||
*++yyvsp = yyval;
|
||
|
||
|
||
/* Now `shift' the result of the reduction. Determine what state
|
||
that goes to, based on the state we popped back to and the rule
|
||
number reduced by. */
|
||
|
||
yyn = yyr1[yyn];
|
||
|
||
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
|
||
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
|
||
yystate = yytable[yystate];
|
||
else
|
||
yystate = yydefgoto[yyn - YYNTOKENS];
|
||
|
||
goto yynewstate;
|
||
|
||
|
||
/*------------------------------------.
|
||
| yyerrlab -- here on detecting error |
|
||
`------------------------------------*/
|
||
yyerrlab:
|
||
/* If not already recovering from an error, report this error. */
|
||
if (!yyerrstatus)
|
||
{
|
||
++yynerrs;
|
||
YYUSE (yynerrs);
|
||
#if ! YYERROR_VERBOSE
|
||
yyerror (pComp, YY_("syntax error"));
|
||
#else
|
||
{
|
||
YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
|
||
if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
|
||
{
|
||
YYSIZE_T yyalloc = 2 * yysize;
|
||
if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
|
||
yyalloc = YYSTACK_ALLOC_MAXIMUM;
|
||
if (yymsg != yymsgbuf)
|
||
YYSTACK_FREE (yymsg);
|
||
yymsg = (char *) YYSTACK_ALLOC (yyalloc);
|
||
if (yymsg)
|
||
yymsg_alloc = yyalloc;
|
||
else
|
||
{
|
||
yymsg = yymsgbuf;
|
||
yymsg_alloc = sizeof yymsgbuf;
|
||
}
|
||
}
|
||
|
||
if (0 < yysize && yysize <= yymsg_alloc)
|
||
{
|
||
(void) yysyntax_error (yymsg, yystate, yychar);
|
||
yyerror (pComp, yymsg);
|
||
}
|
||
else
|
||
{
|
||
yyerror (pComp, YY_("syntax error"));
|
||
if (yysize != 0)
|
||
goto yyexhaustedlab;
|
||
}
|
||
}
|
||
#endif
|
||
}
|
||
|
||
|
||
|
||
if (yyerrstatus == 3)
|
||
{
|
||
/* If just tried and failed to reuse look-ahead token after an
|
||
error, discard it. */
|
||
|
||
if (yychar <= YYEOF)
|
||
{
|
||
/* Return failure if at end of input. */
|
||
if (yychar == YYEOF)
|
||
YYABORT;
|
||
}
|
||
else
|
||
{
|
||
yydestruct ("Error: discarding",
|
||
yytoken, &yylval, pComp);
|
||
yychar = YYEMPTY;
|
||
}
|
||
}
|
||
|
||
/* Else will try to reuse look-ahead token after shifting the error
|
||
token. */
|
||
goto yyerrlab1;
|
||
|
||
|
||
/*---------------------------------------------------.
|
||
| yyerrorlab -- error raised explicitly by YYERROR. |
|
||
`---------------------------------------------------*/
|
||
#ifndef NO_YYERROR
|
||
yyerrorlab:
|
||
|
||
/* Pacify compilers like GCC when the user code never invokes
|
||
YYERROR and the label yyerrorlab therefore never appears in user
|
||
code. */
|
||
#if ! defined( __BORLANDC__ ) && ! defined( __WATCOMC__ )
|
||
if (/*CONSTCOND*/ 0)
|
||
goto yyerrorlab;
|
||
#endif
|
||
|
||
/* Do not reclaim the symbols of the rule which action triggered
|
||
this YYERROR. */
|
||
YYPOPSTACK (yylen);
|
||
yylen = 0;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
yystate = *yyssp;
|
||
goto yyerrlab1;
|
||
#endif /* NO_YYERROR */
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| yyerrlab1 -- common code for both syntax error and YYERROR. |
|
||
`-------------------------------------------------------------*/
|
||
yyerrlab1:
|
||
yyerrstatus = 3; /* Each real token shifted decrements this. */
|
||
|
||
for (;;)
|
||
{
|
||
yyn = yypact[yystate];
|
||
if (yyn != YYPACT_NINF)
|
||
{
|
||
yyn += YYTERROR;
|
||
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
|
||
{
|
||
yyn = yytable[yyn];
|
||
if (0 < yyn)
|
||
break;
|
||
}
|
||
}
|
||
|
||
/* Pop the current state because it cannot handle the error token. */
|
||
if (yyssp == yyss)
|
||
YYABORT;
|
||
|
||
|
||
yydestruct ("Error: popping",
|
||
yystos[yystate], yyvsp, pComp);
|
||
YYPOPSTACK (1);
|
||
yystate = *yyssp;
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
}
|
||
|
||
if (yyn == YYFINAL)
|
||
YYACCEPT;
|
||
|
||
*++yyvsp = yylval;
|
||
|
||
|
||
/* Shift the error token. */
|
||
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
|
||
|
||
yystate = yyn;
|
||
goto yynewstate;
|
||
|
||
|
||
/*-------------------------------------.
|
||
| yyacceptlab -- YYACCEPT comes here. |
|
||
`-------------------------------------*/
|
||
yyacceptlab:
|
||
yyresult = 0;
|
||
goto yyreturn;
|
||
|
||
/*-----------------------------------.
|
||
| yyabortlab -- YYABORT comes here. |
|
||
`-----------------------------------*/
|
||
yyabortlab:
|
||
yyresult = 1;
|
||
goto yyreturn;
|
||
|
||
#ifndef yyoverflow
|
||
/*-------------------------------------------------.
|
||
| yyexhaustedlab -- memory exhaustion comes here. |
|
||
`-------------------------------------------------*/
|
||
yyexhaustedlab:
|
||
yyerror (pComp, YY_("memory exhausted"));
|
||
yyresult = 2;
|
||
/* Fall through. */
|
||
#endif
|
||
|
||
yyreturn:
|
||
if (yychar != YYEOF && yychar != YYEMPTY)
|
||
yydestruct ("Cleanup: discarding lookahead",
|
||
yytoken, &yylval, pComp);
|
||
/* Do not reclaim the symbols of the rule which action triggered
|
||
this YYABORT or YYACCEPT. */
|
||
YYPOPSTACK (yylen);
|
||
YY_STACK_PRINT (yyss, yyssp);
|
||
while (yyssp != yyss)
|
||
{
|
||
yydestruct ("Cleanup: popping",
|
||
yystos[*yyssp], yyvsp, pComp);
|
||
YYPOPSTACK (1);
|
||
}
|
||
#ifndef yyoverflow
|
||
if (yyss != yyssa)
|
||
YYSTACK_FREE (yyss);
|
||
#endif
|
||
#if YYERROR_VERBOSE
|
||
if (yymsg != yymsgbuf)
|
||
YYSTACK_FREE (yymsg);
|
||
#endif
|
||
/* Make sure YYID is used. */
|
||
return YYID (yyresult);
|
||
}
|
||
|
||
|
||
#line 1945 "harbour.y"
|
||
|
||
|
||
/*
|
||
** ------------------------------------------------------------------------ **
|
||
*/
|
||
|
||
/*
|
||
* Avoid tracing in preprocessor/compiler.
|
||
*/
|
||
#if ! defined(HB_TRACE_UTILS)
|
||
#if defined(HB_TRACE_LEVEL)
|
||
#undef HB_TRACE_LEVEL
|
||
#endif
|
||
#endif
|
||
|
||
|
||
/* ************************************************************************* */
|
||
|
||
/*
|
||
* This function stores the position in pcode buffer where the FOR/WHILE
|
||
* loop starts. It will be used to fix any LOOP/EXIT statements
|
||
*/
|
||
static void hb_compLoopStart( HB_COMP_DECL, BOOL fCanLoop )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( pFunc->pLoops )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = pFunc->pLoops;
|
||
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pLoop;
|
||
}
|
||
else
|
||
pFunc->pLoops = pLoop;
|
||
|
||
pLoop->ulOffset = pFunc->lPCodePos; /* store the start position */
|
||
pLoop->fCanLoop = fCanLoop; /* can we use LOOP inside */
|
||
pLoop->wSeqCounter = pFunc->wSeqCounter; /* store current SEQUENCE counter */
|
||
pLoop->wWithObjectCnt = pFunc->wWithObjectCnt; /* store current WITH OBJECT counter */
|
||
pLoop->wAlwaysCounter = pFunc->wAlwaysCounter; /* store current ALWAYS counter */
|
||
pLoop->pExitList = NULL;
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->pNext = NULL;
|
||
}
|
||
|
||
/*
|
||
* return number of LOOP of EXIT statement in the top most structure
|
||
*/
|
||
static long hb_compLoopCount( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLastLoop, pLastExit, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
long lCount = 0;
|
||
|
||
pLastLoop = pLastExit = NULL;
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLastLoop = pLoop;
|
||
pLastExit = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( pLastLoop )
|
||
{
|
||
while( pLastLoop->pLoopList )
|
||
{
|
||
++lCount;
|
||
pLastLoop = pLastLoop->pLoopList;
|
||
}
|
||
}
|
||
if( pLastExit )
|
||
{
|
||
while( pLastExit->pExitList )
|
||
{
|
||
++lCount;
|
||
pLastExit = pLastExit->pExitList;
|
||
}
|
||
}
|
||
|
||
return lCount;
|
||
}
|
||
|
||
/*
|
||
* Stores the position of LOOP statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopLoop( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = NULL, pLoop;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop )
|
||
{
|
||
if( pLoop->fCanLoop )
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
if( ! pLast )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to LOOP from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that LOOP is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to LOOP from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pLoopList = NULL;
|
||
while( pLast->pLoopList )
|
||
pLast = pLast->pLoopList;
|
||
pLast->pLoopList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Stores the position of EXIT statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopExit( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
if( ! pFunc->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLast = pFunc->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != pFunc->wSeqCounter )
|
||
{
|
||
/* Attempt to EXIT from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that EXIT is allowed in RECOVER code when there is no
|
||
* ALWAYS block
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
|
||
{
|
||
/* Attempt to EXIT from ALWAYS block of BEGIN/END sequence
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
|
||
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
pLoop->pExitList = NULL;
|
||
while( pLast->pExitList )
|
||
pLast = pLast->pExitList;
|
||
pLast->pExitList = pLoop;
|
||
|
||
while( wWithObjectCnt < pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
wWithObjectCnt++;
|
||
}
|
||
/* store the position to fix */
|
||
pLoop->ulOffset = pFunc->lPCodePos;
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the LOOP statement
|
||
*/
|
||
static void hb_compLoopHere( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pFree, pLast;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
pLoop = pLoop->pNext;
|
||
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
while( pLoop )
|
||
{
|
||
hb_compGenJumpHere( pLoop->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pLast->pLoopList = NULL;
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the EXIT statements and releases memory allocated for current loop
|
||
*/
|
||
static void hb_compLoopEnd( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pLast = pFunc->pLoops, pExit, pFree;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
{
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
pExit = pLoop->pExitList;
|
||
while( pExit )
|
||
{
|
||
hb_compGenJumpHere( pExit->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pExit;
|
||
pExit = pExit->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
|
||
pLast->pNext = NULL;
|
||
if( pLoop == pFunc->pLoops )
|
||
pFunc->pLoops = NULL;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
void hb_compLoopKill( PFUNCTION pFunc )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop, pFree;
|
||
|
||
while( pFunc->pLoops )
|
||
{
|
||
pLoop = pFunc->pLoops;
|
||
while( pLoop->pExitList )
|
||
{
|
||
pFree = pLoop->pExitList;
|
||
pLoop->pExitList = pFree->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
while( pLoop->pLoopList )
|
||
{
|
||
pFree = pLoop->pLoopList;
|
||
pLoop->pLoopList = pFree->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pFunc->pLoops = pLoop->pNext;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirst, ULONG ulOffset )
|
||
{
|
||
HB_ELSEIF_PTR pElseIf = ( HB_ELSEIF_PTR ) hb_xgrab( sizeof( HB_ELSEIF ) ), pLast;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pElseIf->ulOffset = ulOffset;
|
||
pElseIf->pPrev = NULL;
|
||
pElseIf->pElseif = NULL;
|
||
|
||
if( pFirst )
|
||
{
|
||
pLast = ( HB_ELSEIF_PTR ) pFirst;
|
||
while( pLast->pElseif )
|
||
pLast = pLast->pElseif;
|
||
pLast->pElseif = pElseIf;
|
||
}
|
||
else
|
||
{
|
||
if( pFunc->elseif )
|
||
{
|
||
pElseIf->pPrev = pFunc->elseif;
|
||
}
|
||
pFirst = pElseIf;
|
||
pFunc->elseif = pElseIf;
|
||
}
|
||
return pFirst;
|
||
}
|
||
|
||
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pFixElseIfs )
|
||
{
|
||
HB_ELSEIF_PTR pFix = ( HB_ELSEIF_PTR ) pFixElseIfs;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
HB_COMP_PARAM->functions.pLast->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
|
||
void hb_compElseIfKill( PFUNCTION pFunc )
|
||
{
|
||
HB_ELSEIF_PTR pFix;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
while( pFunc->elseif )
|
||
{
|
||
pFix = pFunc->elseif;
|
||
pFunc->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR pVar, BOOL bPopInitValue )
|
||
{
|
||
HB_RTVAR_PTR pRTvar = ( HB_RTVAR_PTR ) hb_xgrab( sizeof( HB_RTVAR ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pRTvar->pVar = pVar;
|
||
pRTvar->bPopValue = bPopInitValue;
|
||
pRTvar->pNext = NULL;
|
||
pRTvar->pPrev = NULL;
|
||
|
||
if( pFunc->rtvars )
|
||
{
|
||
HB_RTVAR_PTR pLast = pFunc->rtvars;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pRTvar;
|
||
pRTvar->pPrev = pLast;
|
||
}
|
||
else
|
||
pFunc->rtvars = pRTvar;
|
||
}
|
||
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, const char * szCreateFun )
|
||
{
|
||
USHORT usCount = 0;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_RTVAR_PTR pVar = pFunc->rtvars;
|
||
HB_RTVAR_PTR pDel;
|
||
|
||
/* generate the function call frame */
|
||
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
|
||
|
||
/* push variable names to create */
|
||
while( pVar->pNext )
|
||
{
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
pVar = pVar->pNext;
|
||
++usCount;
|
||
}
|
||
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
++usCount;
|
||
|
||
/* call function that will create either PUBLIC or PRIVATE variables */
|
||
if( usCount > 255 )
|
||
hb_compGenPCode3( HB_P_DO, HB_LOBYTE( usCount ), HB_HIBYTE( usCount ), HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_DOSHORT, ( BYTE ) usCount, HB_COMP_PARAM );
|
||
|
||
/* pop initial values */
|
||
while( pVar )
|
||
{
|
||
if( pVar->bPopValue )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( pVar->pVar, HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pDel = pVar;
|
||
pVar = pVar->pPrev;
|
||
hb_xfree( pDel );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
void hb_compRTVariableKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_RTVAR_PTR pVar;
|
||
|
||
while( pFunc->rtvars )
|
||
{
|
||
pVar = pFunc->rtvars;
|
||
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pFunc->rtvars = pVar->pPrev;
|
||
hb_xfree( pVar );
|
||
}
|
||
pFunc->rtvars = NULL;
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
USHORT uCount = ( USHORT ) hb_compExprListLen( pInitValue );
|
||
|
||
if( uCount == 1 && hb_compExprIsInteger( pInitValue->value.asList.pExprList ) &&
|
||
hb_compExprAsInteger( pInitValue->value.asList.pExprList ) == 0 )
|
||
{
|
||
hb_compGenPCode3( HB_P_ARRAYGEN, 0, 0, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
pInitValue = hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
}
|
||
return pInitValue;
|
||
}
|
||
|
||
static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope & VS_STATIC )
|
||
{
|
||
HB_EXPR_PTR pVar = hb_compExprNewVar( szName, HB_COMP_PARAM );
|
||
HB_EXPR_PTR pAssign;
|
||
|
||
/* create a static variable */
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
|
||
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
/* create an array */
|
||
pInitValue = hb_compArrayDimPush( pInitValue, HB_COMP_PARAM );
|
||
/* now pop an array */
|
||
pVar = hb_compExprGenPop( pVar, HB_COMP_PARAM );
|
||
/* check if valid initializers were used but don't generate any code */
|
||
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
|
||
/* delete all used expressions */
|
||
HB_COMP_EXPR_DELETE( pAssign );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
else
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
|
||
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->iVarScope != VS_LOCAL ||
|
||
!( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, const char *szVarName, BOOL bForEach )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar == NULL )
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->pEnum = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof(HB_ENUMERATOR) );
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
}
|
||
else
|
||
{
|
||
BOOL bWarn = TRUE;
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
/* Enumerator variable exists already - throw warning */
|
||
if( bWarn )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FORVAR_DUPL, szVarName, NULL );
|
||
bWarn = FALSE;
|
||
}
|
||
}
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
pLast->pNext = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof( HB_ENUMERATOR ) );
|
||
pEnumVar = pLast->pNext;
|
||
}
|
||
pEnumVar->szName = szVarName;
|
||
pEnumVar->bForEach = bForEach;
|
||
pEnumVar->pNext = NULL;
|
||
}
|
||
|
||
BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar && !HB_COMP_PARAM->functions.pLast->bBlock )
|
||
{
|
||
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, const char *szVar )
|
||
{
|
||
HB_ENUMERATOR_PTR * pEnumVar;
|
||
|
||
HB_SYMBOL_UNUSED( szVar );
|
||
|
||
pEnumVar = &HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( *pEnumVar )
|
||
{
|
||
while( ( *pEnumVar )->pNext )
|
||
pEnumVar = &( *pEnumVar )->pNext;
|
||
|
||
hb_xfree( *pEnumVar );
|
||
*pEnumVar = NULL;
|
||
}
|
||
}
|
||
|
||
static HB_CARGO2_FUNC( hb_compEnumEvalStart )
|
||
{
|
||
const char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
|
||
if( szName )
|
||
hb_compForStart( HB_COMP_PARAM, szName, TRUE );
|
||
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) dummy, HB_COMP_PARAM ); /* expression */
|
||
hb_compExprGenPush( ( HB_EXPR_PTR ) cargo, HB_COMP_PARAM ); /* variable */
|
||
}
|
||
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend )
|
||
{
|
||
ULONG ulLen;
|
||
|
||
if( hb_compExprListLen(pVars) != hb_compExprListLen(pExprs) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_DIFF, NULL, NULL );
|
||
}
|
||
|
||
ulLen = hb_compExprListEval2( HB_COMP_PARAM, pVars, pExprs, hb_compEnumEvalStart );
|
||
|
||
if( ulLen > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_TOOMANY, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode3( HB_P_ENUMSTART, ( BYTE ) ( ulLen & 0xFF ), ( BYTE ) ( descend > 0 ? 1 : 0 ), HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend )
|
||
{
|
||
HB_SYMBOL_UNUSED( pExpr );
|
||
if( descend > 0 )
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMNEXT, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMPREV, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static HB_CARGO_FUNC( hb_compEnumEvalEnd )
|
||
{
|
||
const 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_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCMD_PTR pSwitch = (HB_SWITCHCMD_PTR) hb_xgrab( sizeof( HB_SWITCHCMD ) );
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pSwitch->pCases = NULL;
|
||
pSwitch->pLast = NULL;
|
||
pSwitch->ulDefault = 0;
|
||
pSwitch->ulOffset = pFunc->lPCodePos;
|
||
pSwitch->pExpr = pExpr;
|
||
pSwitch->pPrev = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch;
|
||
}
|
||
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
|
||
pFunc->funFlags &= ~FUN_BREAK_CODE;
|
||
|
||
if( pExpr )
|
||
{
|
||
/* normal CASE */
|
||
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
|
||
pCase->ulOffset = pFunc->lPCodePos;
|
||
pCase->pNext = NULL;
|
||
pExpr = hb_compExprReduce( pExpr, HB_COMP_PARAM );
|
||
if( !( hb_compExprIsLong( pExpr ) || hb_compExprIsString( pExpr ) ) )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_NOT_LITERAL_CASE, NULL, NULL );
|
||
|
||
pCase->pExpr = pExpr;
|
||
|
||
if( pFunc->pSwitch->pLast )
|
||
{
|
||
pFunc->pSwitch->pLast->pNext = pCase;
|
||
pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->pCases = pFunc->pSwitch->pLast = pCase;
|
||
}
|
||
if( hb_compExprIsString( pExpr ) && hb_compExprAsStringLen(pExpr) > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_STR, NULL, NULL );
|
||
}
|
||
}
|
||
else
|
||
{
|
||
/* DEFAULT */
|
||
if( pFunc->pSwitch->ulDefault )
|
||
{
|
||
/* more than one default clause */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
pFunc->pSwitch->ulDefault = pFunc->lPCodePos;
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compSwitchEnd( HB_COMP_DECL )
|
||
{
|
||
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
|
||
HB_SWITCHCMD_PTR pSwitch = pFunc->pSwitch;
|
||
HB_EXPR_PTR pExpr = pSwitch->pExpr;
|
||
HB_SWITCHCASE_PTR pCase, pTmp;
|
||
ULONG ulExitPos, ulCountPos;
|
||
int iCount = 0;
|
||
|
||
/* 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( pSwitch->ulOffset + 1, HB_COMP_PARAM );
|
||
|
||
pCase = pSwitch->pCases;
|
||
if( hb_compExprIsLong( pExpr ) || hb_compExprIsString( pExpr ) )
|
||
{
|
||
BOOL fGen = FALSE;
|
||
while( pCase )
|
||
{
|
||
if( hb_compExprIsLong( pCase->pExpr ) )
|
||
{
|
||
fGen = hb_compExprIsLong( pExpr ) &&
|
||
hb_compExprAsLongNum( pExpr ) ==
|
||
hb_compExprAsLongNum( pCase->pExpr );
|
||
}
|
||
else if( hb_compExprIsString( pCase->pExpr ) )
|
||
{
|
||
fGen = hb_compExprIsString( pExpr ) &&
|
||
hb_compExprAsStringLen( pExpr ) ==
|
||
hb_compExprAsStringLen( pCase->pExpr ) &&
|
||
memcmp( hb_compExprAsString( pExpr ),
|
||
hb_compExprAsString( pCase->pExpr ),
|
||
hb_compExprAsStringLen( pExpr ) ) == 0;
|
||
}
|
||
if( fGen )
|
||
{
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pCase->ulOffset, HB_COMP_PARAM );
|
||
break;
|
||
}
|
||
pCase = pCase->pNext;
|
||
}
|
||
if( pSwitch->ulDefault && !fGen )
|
||
{
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
else
|
||
{
|
||
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
|
||
BOOL fMacroText = ( HB_COMP_PARAM->supported & HB_COMPFLAG_MACROTEXT ) != 0;
|
||
|
||
pExpr = hb_compExprGenPush( pExpr, HB_COMP_PARAM );
|
||
ulCountPos = pFunc->lPCodePos + 1;
|
||
hb_compGenPCode3( HB_P_SWITCH, 0, 0, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->fLongOptimize = FALSE;
|
||
HB_COMP_PARAM->supported &= ~HB_COMPFLAG_MACROTEXT;
|
||
while( pCase )
|
||
{
|
||
if( hb_compExprIsLong( pCase->pExpr ) || hb_compExprIsString( pCase->pExpr ) )
|
||
{
|
||
iCount++;
|
||
pCase->pExpr = hb_compExprGenPush( pCase->pExpr, HB_COMP_PARAM );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pCase->ulOffset, HB_COMP_PARAM );
|
||
}
|
||
pCase = pCase->pNext;
|
||
}
|
||
if( pSwitch->ulDefault )
|
||
{
|
||
iCount++;
|
||
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
HB_PUT_LE_UINT16( pFunc->pCode + ulCountPos, iCount );
|
||
|
||
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
|
||
if( fMacroText )
|
||
HB_COMP_PARAM->supported |= HB_COMPFLAG_MACROTEXT;
|
||
}
|
||
|
||
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
|
||
|
||
if( pExpr )
|
||
HB_COMP_EXPR_DELETE( pExpr );
|
||
|
||
pCase = pSwitch->pCases;
|
||
while( pCase )
|
||
{
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
pTmp = pCase->pNext;
|
||
hb_xfree( (void *)pCase );
|
||
pCase = pTmp;
|
||
}
|
||
pFunc->pSwitch = pSwitch->pPrev;
|
||
hb_xfree( pSwitch );
|
||
}
|
||
|
||
/* Release all switch statements
|
||
*/
|
||
void hb_compSwitchKill( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
HB_SWITCHCMD_PTR pSwitch;
|
||
|
||
while( pFunc->pSwitch )
|
||
{
|
||
while( pFunc->pSwitch->pCases )
|
||
{
|
||
pCase = pFunc->pSwitch->pCases;
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
pFunc->pSwitch->pCases = pCase->pNext;
|
||
hb_xfree( (void *) pCase );
|
||
}
|
||
pSwitch = pFunc->pSwitch;
|
||
pFunc->pSwitch = pSwitch->pPrev;
|
||
if( pSwitch->pExpr )
|
||
HB_COMP_EXPR_DELETE( pSwitch->pExpr );
|
||
hb_xfree( (void *) pSwitch );
|
||
}
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
if( pExpr->ExprType == HB_ET_FUNCALL )
|
||
{
|
||
if( hb_compExprParamListLen( pExpr->value.asFunCall.pParms ) == 0 )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
if( pExpr->value.asFunCall.pFunName->ExprType == HB_ET_MACRO )
|
||
{
|
||
pExpr = pExpr->value.asFunCall.pFunName;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
else
|
||
{
|
||
pExpr = hb_compExprNewFunRef( hb_compExprAsSymbol( pExpr ), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( pDelExpr );
|
||
}
|
||
return pExpr;
|
||
}
|
||
else
|
||
{
|
||
const char * szDesc;
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
}
|
||
|
||
return pExpr;
|
||
}
|
||
|
||
/* ************************************************************************* */
|
||
|
||
BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc )
|
||
{
|
||
BOOL fUnclosed = TRUE;
|
||
|
||
if( pFunc->wIfCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
|
||
pFunc->wIfCounter = 0;
|
||
}
|
||
else if( pFunc->wForCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
|
||
pFunc->wForCounter = 0;
|
||
}
|
||
else if( pFunc->wWhileCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
|
||
pFunc->wWhileCounter = 0;
|
||
}
|
||
else if( pFunc->wCaseCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
|
||
pFunc->wCaseCounter = 0;
|
||
}
|
||
else if( pFunc->wSwitchCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
|
||
pFunc->wSwitchCounter = 0;
|
||
}
|
||
else if( pFunc->wWithObjectCnt )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
|
||
pFunc->wWithObjectCnt = 0;
|
||
}
|
||
else if( pFunc->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
|
||
pFunc->wSeqCounter = 0;
|
||
}
|
||
else if( pFunc->funFlags & FUN_EXTBLOCK )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL );
|
||
pFunc->funFlags &= ~FUN_EXTBLOCK;
|
||
}
|
||
else
|
||
fUnclosed = FALSE;
|
||
|
||
return fUnclosed;
|
||
}
|
||
|
||
void yyerror( HB_COMP_DECL, const char * s )
|
||
{
|
||
if( !HB_COMP_PARAM->pLex->lasttok || HB_COMP_PARAM->pLex->lasttok[ 0 ] == '\n' )
|
||
{
|
||
if( HB_COMP_PARAM->iErrorCount == 0 || !hb_pp_eof( HB_COMP_PARAM->pLex->pPP ) )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INCOMPLETE_STMT, NULL, NULL );
|
||
}
|
||
else
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok );
|
||
}
|
||
|