* harbour/include/hbcompdf.h
* harbour/source/compiler/harbour.yyc
* harbour/source/compiler/harbour.y
! fixed using LOOP inside SWITCH/CASE.../END statement
! fixed possible memory leeks when compile time error appear
with some unfinished LOOP statements
! do not push unnecessary NIL on HVM stack when SWITCH/CASE.../END
statement were used without OTHERWISE clause
* harbour/source/pp/ppcore.c
! do not calculate last line when it does not contain any character
* clear line number counter after preprocessing standard definitions/
rules - I hope it will make David happy ;-)
8012 lines
344 KiB
Plaintext
8012 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,
|
||
DO = 322,
|
||
WITH = 323,
|
||
SELF = 324,
|
||
LINE = 325,
|
||
MACROVAR = 326,
|
||
MACROTEXT = 327,
|
||
AS_ARRAY = 328,
|
||
AS_BLOCK = 329,
|
||
AS_CHARACTER = 330,
|
||
AS_CLASS = 331,
|
||
AS_DATE = 332,
|
||
AS_LOGICAL = 333,
|
||
AS_NUMERIC = 334,
|
||
AS_OBJECT = 335,
|
||
AS_VARIANT = 336,
|
||
DECLARE = 337,
|
||
OPTIONAL = 338,
|
||
DECLARE_CLASS = 339,
|
||
DECLARE_MEMBER = 340,
|
||
AS_ARRAY_ARRAY = 341,
|
||
AS_BLOCK_ARRAY = 342,
|
||
AS_CHARACTER_ARRAY = 343,
|
||
AS_CLASS_ARRAY = 344,
|
||
AS_DATE_ARRAY = 345,
|
||
AS_LOGICAL_ARRAY = 346,
|
||
AS_NUMERIC_ARRAY = 347,
|
||
AS_OBJECT_ARRAY = 348,
|
||
PROCREQ = 349,
|
||
CBSTART = 350,
|
||
DOIDENT = 351,
|
||
FOREACH = 352,
|
||
DESCEND = 353,
|
||
DOSWITCH = 354,
|
||
WITHOBJECT = 355,
|
||
NUM_DATE = 356,
|
||
EPSILON = 357,
|
||
HASHOP = 358,
|
||
POST = 359,
|
||
UNARY = 360,
|
||
PRE = 361
|
||
};
|
||
#endif
|
||
/* Tokens. */
|
||
#define FUNCTION 258
|
||
#define PROCEDURE 259
|
||
#define IDENTIFIER 260
|
||
#define RETURN 261
|
||
#define NIL 262
|
||
#define NUM_DOUBLE 263
|
||
#define INASSIGN 264
|
||
#define NUM_LONG 265
|
||
#define LOCAL 266
|
||
#define STATIC 267
|
||
#define IIF 268
|
||
#define IF 269
|
||
#define ELSE 270
|
||
#define ELSEIF 271
|
||
#define END 272
|
||
#define ENDIF 273
|
||
#define LITERAL 274
|
||
#define TRUEVALUE 275
|
||
#define FALSEVALUE 276
|
||
#define ANNOUNCE 277
|
||
#define EXTERN 278
|
||
#define DYNAMIC 279
|
||
#define INIT 280
|
||
#define EXIT 281
|
||
#define AND 282
|
||
#define OR 283
|
||
#define NOT 284
|
||
#define PUBLIC 285
|
||
#define EQ 286
|
||
#define NE1 287
|
||
#define NE2 288
|
||
#define INC 289
|
||
#define DEC 290
|
||
#define ALIASOP 291
|
||
#define DOCASE 292
|
||
#define CASE 293
|
||
#define OTHERWISE 294
|
||
#define ENDCASE 295
|
||
#define ENDDO 296
|
||
#define MEMVAR 297
|
||
#define WHILE 298
|
||
#define LOOP 299
|
||
#define FOR 300
|
||
#define NEXT 301
|
||
#define TO 302
|
||
#define STEP 303
|
||
#define LE 304
|
||
#define GE 305
|
||
#define FIELD 306
|
||
#define IN 307
|
||
#define PARAMETERS 308
|
||
#define PLUSEQ 309
|
||
#define MINUSEQ 310
|
||
#define MULTEQ 311
|
||
#define DIVEQ 312
|
||
#define POWER 313
|
||
#define EXPEQ 314
|
||
#define MODEQ 315
|
||
#define PRIVATE 316
|
||
#define BEGINSEQ 317
|
||
#define BREAK 318
|
||
#define RECOVER 319
|
||
#define RECOVERUSING 320
|
||
#define ALWAYS 321
|
||
#define DO 322
|
||
#define WITH 323
|
||
#define SELF 324
|
||
#define LINE 325
|
||
#define MACROVAR 326
|
||
#define MACROTEXT 327
|
||
#define AS_ARRAY 328
|
||
#define AS_BLOCK 329
|
||
#define AS_CHARACTER 330
|
||
#define AS_CLASS 331
|
||
#define AS_DATE 332
|
||
#define AS_LOGICAL 333
|
||
#define AS_NUMERIC 334
|
||
#define AS_OBJECT 335
|
||
#define AS_VARIANT 336
|
||
#define DECLARE 337
|
||
#define OPTIONAL 338
|
||
#define DECLARE_CLASS 339
|
||
#define DECLARE_MEMBER 340
|
||
#define AS_ARRAY_ARRAY 341
|
||
#define AS_BLOCK_ARRAY 342
|
||
#define AS_CHARACTER_ARRAY 343
|
||
#define AS_CLASS_ARRAY 344
|
||
#define AS_DATE_ARRAY 345
|
||
#define AS_LOGICAL_ARRAY 346
|
||
#define AS_NUMERIC_ARRAY 347
|
||
#define AS_OBJECT_ARRAY 348
|
||
#define PROCREQ 349
|
||
#define CBSTART 350
|
||
#define DOIDENT 351
|
||
#define FOREACH 352
|
||
#define DESCEND 353
|
||
#define DOSWITCH 354
|
||
#define WITHOBJECT 355
|
||
#define NUM_DATE 356
|
||
#define EPSILON 357
|
||
#define HASHOP 358
|
||
#define POST 359
|
||
#define UNARY 360
|
||
#define PRE 361
|
||
|
||
|
||
|
||
|
||
/* Copy the first part of user declarations. */
|
||
#line 5 "harbour.y"
|
||
|
||
/*
|
||
* $Id$
|
||
*/
|
||
|
||
/*
|
||
* Harbour Project source code:
|
||
* Compiler YACC rules and actions
|
||
*
|
||
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
||
* www - http://www.harbour-project.org
|
||
*
|
||
* This program is free software; you can redistribute it and/or modify
|
||
* it under the terms of the GNU General Public License as published by
|
||
* the Free Software Foundation; either version 2 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU General Public License
|
||
* along with this program; if not, write to the Free Software
|
||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
|
||
* their web site at http://www.gnu.org/).
|
||
*
|
||
*/
|
||
|
||
/* TODO list
|
||
* 1) Change the pcode generated by ::cVar from Self:cVar to QSELF():cVar
|
||
* The major problem to solve is how to support QSELF() inside a codeblock.
|
||
*/
|
||
|
||
|
||
#include "hbcomp.h"
|
||
|
||
/* Compile using: bison -d -v harbour.y */
|
||
|
||
/* to pacify some warnings in BCC */
|
||
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
|
||
# define __STDC__
|
||
#endif
|
||
|
||
#undef alloca
|
||
#define alloca hb_xgrab
|
||
#undef malloc
|
||
#define malloc hb_xgrab
|
||
#undef realloc
|
||
#define realloc hb_xrealloc
|
||
#undef free
|
||
#define free hb_xfree
|
||
|
||
/* NOTE: these symbols are used internally in bison.simple
|
||
*/
|
||
#undef YYFREE
|
||
#define YYFREE hb_xfree
|
||
#undef YYMALLOC
|
||
#define YYMALLOC hb_xgrab
|
||
|
||
static void hb_compLoopStart( HB_COMP_DECL, 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 void * hb_compElseIfGen( HB_COMP_DECL, void * pFirstElseIf, ULONG ulOffset ); /* generates a support structure for elseifs pcode fixups */
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pIfElseIfs ); /* implements the ElseIfs pcode fixups */
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR, BOOL );
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * );
|
||
|
||
static void hb_compVariableDim( char *, HB_EXPR_PTR, HB_COMP_DECL );
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach );
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVarName );
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend );
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend );
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL );
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR );
|
||
static void hb_compSwitchEnd( HB_COMP_DECL );
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr );
|
||
|
||
#ifdef HARBOUR_YYDEBUG
|
||
#define YYDEBUG 1 /* Parser debug information support */
|
||
#endif
|
||
|
||
/* Controls if passing by reference '@' is allowed */
|
||
#define HB_PASSBYREF_OFF 0
|
||
#define HB_PASSBYREF_FUNCALL 1
|
||
#define HB_PASSBYREF_ARRAY 2
|
||
|
||
static void hb_compDebugStart( void ) { };
|
||
|
||
|
||
|
||
/* Enabling traces. */
|
||
#ifndef YYDEBUG
|
||
# define YYDEBUG 0
|
||
#endif
|
||
|
||
/* Enabling verbose error messages. */
|
||
#ifdef YYERROR_VERBOSE
|
||
# undef YYERROR_VERBOSE
|
||
# define YYERROR_VERBOSE 1
|
||
#else
|
||
# define YYERROR_VERBOSE 0
|
||
#endif
|
||
|
||
/* Enabling the token table. */
|
||
#ifndef YYTOKEN_TABLE
|
||
# define YYTOKEN_TABLE 0
|
||
#endif
|
||
|
||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||
typedef union YYSTYPE
|
||
#line 105 "harbour.y"
|
||
{
|
||
char * string; /* to hold a string returned by lex */
|
||
int iNumber; /* to hold a temporary integer number */
|
||
HB_LONG lNumber; /* to hold a temporary long number */
|
||
BOOL bTrue;
|
||
HB_EXPR_PTR asExpr;
|
||
void * pVoid; /* to hold any memory structure we may need */
|
||
struct
|
||
{
|
||
HB_LONG lNumber; /* to hold a long number returned by lex */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
} valLong;
|
||
struct
|
||
{
|
||
double dNumber; /* to hold a double number returned by lex */
|
||
/* NOTE: Intentionally using "unsigned char" instead of "BYTE" */
|
||
UCHAR bWidth; /* to hold the width of the value */
|
||
UCHAR bDec; /* to hold the number of decimal points in the value */
|
||
} valDouble;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
BOOL dealloc;
|
||
} valChar;
|
||
struct
|
||
{
|
||
char * string;
|
||
int length;
|
||
int flags; /* Flag for early {|| ¯o} (1) or late {|| &(macro)} (2) binding */
|
||
} asCodeblock;
|
||
struct
|
||
{
|
||
BOOL bMacro;
|
||
union
|
||
{
|
||
char * string;
|
||
HB_EXPR_PTR macro;
|
||
} value;
|
||
} asMessage;
|
||
}
|
||
/* Line 193 of yacc.c. */
|
||
#line 457 "harboury.c"
|
||
YYSTYPE;
|
||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||
# define YYSTYPE_IS_DECLARED 1
|
||
# define YYSTYPE_IS_TRIVIAL 1
|
||
#endif
|
||
|
||
|
||
|
||
/* Copy the second part of user declarations. */
|
||
#line 147 "harbour.y"
|
||
|
||
/* This must be placed after the above union - the union is
|
||
* typedef-ined to YYSTYPE
|
||
*/
|
||
extern int yylex( YYSTYPE *, HB_COMP_DECL ); /* main lex token function, called by yyparse() */
|
||
extern void yyerror( HB_COMP_DECL, char * ); /* parsing error management function */
|
||
|
||
|
||
/* Line 216 of yacc.c. */
|
||
#line 477 "harboury.c"
|
||
|
||
#ifdef short
|
||
# undef short
|
||
#endif
|
||
|
||
#ifdef YYTYPE_UINT8
|
||
typedef YYTYPE_UINT8 yytype_uint8;
|
||
#else
|
||
typedef unsigned char yytype_uint8;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_INT8
|
||
typedef YYTYPE_INT8 yytype_int8;
|
||
#elif (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
typedef signed char yytype_int8;
|
||
#else
|
||
typedef short int yytype_int8;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_UINT16
|
||
typedef YYTYPE_UINT16 yytype_uint16;
|
||
#else
|
||
typedef unsigned short int yytype_uint16;
|
||
#endif
|
||
|
||
#ifdef YYTYPE_INT16
|
||
typedef YYTYPE_INT16 yytype_int16;
|
||
#else
|
||
typedef short int yytype_int16;
|
||
#endif
|
||
|
||
#ifndef YYSIZE_T
|
||
# ifdef __SIZE_TYPE__
|
||
# define YYSIZE_T __SIZE_TYPE__
|
||
# elif defined size_t
|
||
# define YYSIZE_T size_t
|
||
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YYSIZE_T size_t
|
||
# else
|
||
# define YYSIZE_T unsigned int
|
||
# endif
|
||
#endif
|
||
|
||
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
|
||
|
||
#ifndef YY_
|
||
# if YYENABLE_NLS
|
||
# if ENABLE_NLS
|
||
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define YY_(msgid) dgettext ("bison-runtime", msgid)
|
||
# endif
|
||
# endif
|
||
# ifndef YY_
|
||
# define YY_(msgid) msgid
|
||
# endif
|
||
#endif
|
||
|
||
/* Suppress unused-variable warnings by "using" E. */
|
||
#if ! defined lint || defined __GNUC__
|
||
# define YYUSE(e) ((void) (e))
|
||
#else
|
||
# define YYUSE(e) /* empty */
|
||
#endif
|
||
|
||
/* Identity function, used to suppress warnings about constant conditions. */
|
||
#ifndef lint
|
||
# define YYID(n) (n)
|
||
#else
|
||
#if (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
static int
|
||
YYID (int i)
|
||
#else
|
||
static int
|
||
YYID (i)
|
||
int i;
|
||
#endif
|
||
{
|
||
return i;
|
||
}
|
||
#endif
|
||
|
||
#if ! defined yyoverflow || YYERROR_VERBOSE
|
||
|
||
/* The parser invokes alloca or malloc; define the necessary symbols. */
|
||
|
||
# ifdef YYSTACK_USE_ALLOCA
|
||
# if YYSTACK_USE_ALLOCA
|
||
# ifdef __GNUC__
|
||
# define YYSTACK_ALLOC __builtin_alloca
|
||
# elif defined __BUILTIN_VA_ARG_INCR
|
||
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
|
||
# elif defined _AIX
|
||
# define YYSTACK_ALLOC __alloca
|
||
# elif defined _MSC_VER
|
||
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
|
||
# define alloca _alloca
|
||
# else
|
||
# define YYSTACK_ALLOC alloca
|
||
# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||
# ifndef _STDLIB_H
|
||
# define _STDLIB_H 1
|
||
# endif
|
||
# endif
|
||
# endif
|
||
# endif
|
||
# endif
|
||
|
||
# ifdef YYSTACK_ALLOC
|
||
/* Pacify GCC's `empty if-body' warning. */
|
||
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
/* The OS might guarantee only one guard page at the bottom of the stack,
|
||
and a page size can be as small as 4096 bytes. So we cannot safely
|
||
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
|
||
to allow for a few compiler-allocated temporary stack slots. */
|
||
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
|
||
# endif
|
||
# else
|
||
# define YYSTACK_ALLOC YYMALLOC
|
||
# define YYSTACK_FREE YYFREE
|
||
# ifndef YYSTACK_ALLOC_MAXIMUM
|
||
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
|
||
# endif
|
||
# if (defined __cplusplus && ! defined _STDLIB_H \
|
||
&& ! ((defined YYMALLOC || defined malloc) \
|
||
&& (defined YYFREE || defined free)))
|
||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||
# ifndef _STDLIB_H
|
||
# define _STDLIB_H 1
|
||
# endif
|
||
# endif
|
||
# ifndef YYMALLOC
|
||
# define YYMALLOC malloc
|
||
# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# ifndef YYFREE
|
||
# define YYFREE free
|
||
# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|
||
|| defined __cplusplus || defined _MSC_VER)
|
||
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
||
# endif
|
||
# endif
|
||
# endif
|
||
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
|
||
|
||
|
||
#if (! defined yyoverflow \
|
||
&& (! defined __cplusplus \
|
||
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
|
||
|
||
/* A type that is properly aligned for any stack member. */
|
||
union yyalloc
|
||
{
|
||
yytype_int16 yyss;
|
||
YYSTYPE yyvs;
|
||
};
|
||
|
||
/* The size of the maximum gap between one aligned stack and the next. */
|
||
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
|
||
|
||
/* The size of an array large to enough to hold all stacks, each with
|
||
N elements. */
|
||
# define YYSTACK_BYTES(N) \
|
||
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
|
||
+ YYSTACK_GAP_MAXIMUM)
|
||
|
||
/* Copy COUNT objects from FROM to TO. The source and destination do
|
||
not overlap. */
|
||
# ifndef YYCOPY
|
||
# if defined __GNUC__ && 1 < __GNUC__
|
||
# define YYCOPY(To, From, Count) \
|
||
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
|
||
# else
|
||
# define YYCOPY(To, From, Count) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yyi; \
|
||
for (yyi = 0; yyi < (Count); yyi++) \
|
||
(To)[yyi] = (From)[yyi]; \
|
||
} \
|
||
while (YYID (0))
|
||
# endif
|
||
# endif
|
||
|
||
/* Relocate STACK from its old location to the new one. The
|
||
local variables YYSIZE and YYSTACKSIZE give the old and new number of
|
||
elements in the stack, and YYPTR gives the new location of the
|
||
stack. Advance YYPTR to a properly aligned location for the next
|
||
stack. */
|
||
# define YYSTACK_RELOCATE(Stack) \
|
||
do \
|
||
{ \
|
||
YYSIZE_T yynewbytes; \
|
||
YYCOPY (&yyptr->Stack, Stack, yysize); \
|
||
Stack = &yyptr->Stack; \
|
||
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
|
||
yyptr += yynewbytes / sizeof (*yyptr); \
|
||
} \
|
||
while (YYID (0))
|
||
|
||
#endif
|
||
|
||
/* YYFINAL -- State number of the termination state. */
|
||
#define YYFINAL 287
|
||
/* YYLAST -- Last index in YYTABLE. */
|
||
#define YYLAST 8599
|
||
|
||
/* YYNTOKENS -- Number of terminals. */
|
||
#define YYNTOKENS 129
|
||
/* YYNNTS -- Number of nonterminals. */
|
||
#define YYNNTS 244
|
||
/* YYNRULES -- Number of rules. */
|
||
#define YYNRULES 625
|
||
/* YYNRULES -- Number of states. */
|
||
#define YYNSTATES 999
|
||
|
||
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
||
#define YYUNDEFTOK 2
|
||
#define YYMAXUTOK 361
|
||
|
||
#define YYTRANSLATE(YYX) \
|
||
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
|
||
|
||
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
|
||
static const yytype_uint8 yytranslate[] =
|
||
{
|
||
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
118, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 108, 113, 116, 2,
|
||
121, 122, 111, 109, 120, 110, 2, 112, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 125, 119,
|
||
106, 105, 107, 2, 117, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 127, 2, 126, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 123, 128, 124, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
|
||
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
||
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
||
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
|
||
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
|
||
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
|
||
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
|
||
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
|
||
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
|
||
114, 115
|
||
};
|
||
|
||
#if YYDEBUG
|
||
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
||
YYRHS. */
|
||
static const yytype_uint16 yyprhs[] =
|
||
{
|
||
0, 0, 3, 5, 6, 8, 10, 12, 14, 16,
|
||
19, 22, 25, 28, 31, 34, 38, 43, 50, 51,
|
||
57, 58, 64, 65, 74, 75, 84, 85, 87, 89,
|
||
91, 92, 94, 96, 100, 101, 103, 104, 106, 108,
|
||
110, 112, 114, 116, 118, 121, 123, 125, 127, 129,
|
||
131, 133, 135, 137, 139, 141, 144, 147, 152, 155,
|
||
158, 161, 164, 167, 170, 173, 176, 179, 182, 185,
|
||
188, 191, 194, 197, 198, 203, 206, 209, 212, 213,
|
||
218, 219, 220, 226, 227, 228, 234, 236, 238, 240,
|
||
244, 248, 249, 254, 259, 261, 265, 266, 269, 271,
|
||
273, 275, 277, 279, 281, 286, 294, 299, 307, 308,
|
||
310, 312, 314, 316, 319, 320, 322, 324, 328, 330,
|
||
334, 336, 338, 340, 342, 344, 346, 348, 350, 352,
|
||
354, 356, 358, 360, 362, 364, 366, 368, 370, 372,
|
||
374, 376, 379, 382, 384, 387, 389, 392, 395, 397,
|
||
399, 402, 404, 407, 411, 414, 417, 420, 424, 428,
|
||
431, 435, 441, 443, 446, 448, 450, 453, 456, 459,
|
||
462, 466, 469, 472, 475, 478, 481, 484, 487, 490,
|
||
493, 496, 499, 502, 505, 508, 510, 512, 514, 517,
|
||
520, 523, 526, 529, 532, 535, 538, 541, 544, 547,
|
||
550, 553, 556, 559, 562, 565, 568, 571, 574, 577,
|
||
580, 583, 586, 589, 592, 595, 598, 601, 604, 607,
|
||
610, 613, 616, 619, 622, 625, 628, 631, 634, 637,
|
||
640, 643, 646, 649, 650, 656, 658, 659, 665, 666,
|
||
672, 675, 678, 680, 684, 686, 688, 691, 694, 697,
|
||
700, 703, 705, 707, 711, 715, 718, 720, 722, 724,
|
||
729, 732, 733, 739, 742, 744, 746, 748, 750, 752,
|
||
754, 756, 757, 761, 763, 765, 767, 769, 771, 773,
|
||
775, 777, 779, 780, 784, 786, 788, 789, 793, 795,
|
||
796, 800, 802, 804, 806, 808, 810, 812, 814, 816,
|
||
818, 820, 822, 823, 827, 828, 832, 834, 836, 838,
|
||
839, 841, 843, 845, 847, 849, 851, 853, 855, 857,
|
||
859, 861, 863, 865, 867, 869, 871, 873, 875, 877,
|
||
879, 881, 883, 885, 887, 889, 891, 893, 895, 897,
|
||
899, 901, 904, 907, 910, 913, 916, 919, 923, 927,
|
||
931, 935, 939, 943, 947, 951, 955, 959, 963, 967,
|
||
971, 975, 979, 983, 987, 991, 995, 999, 1003, 1007,
|
||
1011, 1015, 1019, 1023, 1027, 1031, 1033, 1035, 1037, 1039,
|
||
1041, 1043, 1047, 1051, 1055, 1059, 1063, 1067, 1071, 1075,
|
||
1079, 1083, 1087, 1091, 1095, 1099, 1103, 1107, 1111, 1114,
|
||
1117, 1121, 1126, 1128, 1132, 1133, 1138, 1139, 1141, 1143,
|
||
1147, 1150, 1155, 1157, 1161, 1165, 1166, 1172, 1174, 1178,
|
||
1182, 1185, 1194, 1197, 1198, 1203, 1204, 1209, 1210, 1215,
|
||
1217, 1221, 1223, 1227, 1229, 1232, 1237, 1241, 1242, 1246,
|
||
1247, 1248, 1255, 1259, 1262, 1265, 1269, 1274, 1275, 1281,
|
||
1284, 1289, 1290, 1293, 1294, 1299, 1302, 1307, 1308, 1317,
|
||
1318, 1324, 1328, 1332, 1333, 1341, 1343, 1347, 1349, 1352,
|
||
1354, 1357, 1358, 1365, 1366, 1370, 1371, 1373, 1375, 1379,
|
||
1381, 1385, 1387, 1390, 1394, 1400, 1405, 1411, 1419, 1423,
|
||
1428, 1435, 1441, 1448, 1457, 1459, 1461, 1463, 1465, 1467,
|
||
1469, 1471, 1473, 1476, 1480, 1484, 1489, 1490, 1491, 1498,
|
||
1499, 1504, 1505, 1506, 1513, 1514, 1515, 1523, 1525, 1527,
|
||
1531, 1535, 1538, 1543, 1545, 1547, 1548, 1552, 1554, 1557,
|
||
1558, 1559, 1566, 1567, 1568, 1576, 1577, 1578, 1584, 1585,
|
||
1591, 1592, 1593, 1601, 1603, 1605, 1607, 1608, 1609, 1610,
|
||
1623, 1625, 1627, 1628, 1631, 1634, 1638, 1641, 1645, 1647,
|
||
1649, 1651, 1655, 1658, 1660, 1662, 1666, 1667, 1668, 1669,
|
||
1680, 1681, 1683, 1684, 1689, 1692, 1694, 1695, 1700, 1702,
|
||
1705, 1706, 1712, 1713, 1720, 1722, 1725, 1726, 1727, 1733,
|
||
1734, 1735, 1736, 1737, 1749, 1750, 1753, 1754, 1758, 1760,
|
||
1761, 1765, 1769, 1771, 1774, 1776, 1778, 1779, 1784, 1785,
|
||
1789, 1790, 1793, 1795, 1798, 1800, 1803, 1807, 1809, 1811,
|
||
1813, 1815, 1817, 1818, 1825, 1827
|
||
};
|
||
|
||
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
||
static const yytype_int16 yyrhs[] =
|
||
{
|
||
130, 0, -1, 131, -1, -1, 372, -1, 277, -1,
|
||
133, -1, 145, -1, 132, -1, 1, 372, -1, 131,
|
||
372, -1, 131, 277, -1, 131, 133, -1, 131, 145,
|
||
-1, 131, 132, -1, 131, 1, 372, -1, 70, 10,
|
||
19, 372, -1, 70, 10, 19, 117, 19, 372, -1,
|
||
-1, 138, 3, 163, 134, 372, -1, -1, 138, 4,
|
||
163, 135, 372, -1, -1, 138, 3, 163, 136, 121,
|
||
139, 122, 372, -1, -1, 138, 4, 163, 137, 121,
|
||
139, 122, 372, -1, -1, 12, -1, 25, -1, 26,
|
||
-1, -1, 102, -1, 144, -1, 144, 120, 102, -1,
|
||
-1, 142, -1, -1, 143, -1, 79, -1, 75, -1,
|
||
77, -1, 78, -1, 74, -1, 80, -1, 76, 163,
|
||
-1, 81, -1, 143, -1, 73, -1, 92, -1, 88,
|
||
-1, 90, -1, 91, -1, 86, -1, 87, -1, 93,
|
||
-1, 89, 163, -1, 163, 140, -1, 144, 120, 163,
|
||
140, -1, 292, 154, -1, 255, 154, -1, 198, 154,
|
||
-1, 193, 154, -1, 211, 154, -1, 185, 154, -1,
|
||
187, 154, -1, 253, 154, -1, 228, 154, -1, 227,
|
||
154, -1, 238, 154, -1, 231, 154, -1, 230, 154,
|
||
-1, 364, 154, -1, 63, 154, -1, -1, 63, 146,
|
||
219, 372, -1, 26, 154, -1, 44, 154, -1, 6,
|
||
154, -1, -1, 6, 147, 219, 372, -1, -1, -1,
|
||
30, 148, 262, 149, 372, -1, -1, -1, 61, 150,
|
||
262, 151, 372, -1, 257, -1, 270, -1, 274, -1,
|
||
23, 161, 372, -1, 24, 162, 372, -1, -1, 22,
|
||
163, 152, 372, -1, 94, 153, 122, 372, -1, 19,
|
||
-1, 19, 109, 19, -1, -1, 155, 372, -1, 372,
|
||
-1, 145, -1, 277, -1, 132, -1, 157, -1, 1,
|
||
-1, 158, 3, 163, 372, -1, 158, 3, 163, 121,
|
||
139, 122, 372, -1, 158, 4, 163, 372, -1, 158,
|
||
4, 163, 121, 139, 122, 372, -1, -1, 12, -1,
|
||
25, -1, 26, -1, 156, -1, 159, 156, -1, -1,
|
||
159, -1, 163, -1, 161, 120, 163, -1, 163, -1,
|
||
162, 120, 163, -1, 5, -1, 48, -1, 47, -1,
|
||
44, -1, 26, -1, 52, -1, 83, -1, 23, -1,
|
||
24, -1, 22, -1, 11, -1, 42, -1, 12, -1,
|
||
61, -1, 30, -1, 53, -1, 94, -1, 98, -1,
|
||
8, -1, 10, -1, 101, -1, 10, 36, -1, 8,
|
||
36, -1, 7, -1, 167, 36, -1, 19, -1, 169,
|
||
36, -1, 250, 36, -1, 20, -1, 21, -1, 172,
|
||
36, -1, 69, -1, 174, 36, -1, 123, 244, 124,
|
||
-1, 176, 36, -1, 176, 242, -1, 178, 36, -1,
|
||
123, 103, 124, -1, 123, 182, 124, -1, 180, 36,
|
||
-1, 219, 103, 223, -1, 182, 120, 219, 103, 223,
|
||
-1, 163, -1, 163, 36, -1, 71, -1, 72, -1,
|
||
185, 36, -1, 116, 253, -1, 187, 36, -1, 51,
|
||
36, -1, 51, 36, 189, -1, 189, 184, -1, 189,
|
||
166, -1, 189, 254, -1, 189, 186, -1, 189, 188,
|
||
-1, 189, 168, -1, 189, 170, -1, 189, 173, -1,
|
||
189, 171, -1, 189, 175, -1, 189, 177, -1, 189,
|
||
179, -1, 189, 181, -1, 189, 256, -1, 163, -1,
|
||
185, -1, 187, -1, 166, 191, -1, 186, 191, -1,
|
||
188, 191, -1, 254, 191, -1, 168, 191, -1, 170,
|
||
191, -1, 173, 191, -1, 171, 191, -1, 181, 191,
|
||
-1, 175, 191, -1, 177, 191, -1, 179, 191, -1,
|
||
195, 191, -1, 256, 191, -1, 202, 191, -1, 210,
|
||
191, -1, 213, 191, -1, 184, 191, -1, 189, 191,
|
||
-1, 190, 191, -1, 166, 253, -1, 184, 253, -1,
|
||
186, 253, -1, 188, 253, -1, 254, 253, -1, 189,
|
||
253, -1, 164, 242, -1, 167, 242, -1, 165, 242,
|
||
-1, 169, 242, -1, 250, 242, -1, 172, 242, -1,
|
||
180, 242, -1, 174, 242, -1, 183, 242, -1, 192,
|
||
242, -1, 193, 242, -1, 185, 242, -1, 187, 242,
|
||
-1, 207, 242, -1, 211, 242, -1, 198, 242, -1,
|
||
255, 242, -1, 253, 242, -1, 194, 36, -1, -1,
|
||
163, 121, 197, 203, 122, -1, 196, -1, -1, 185,
|
||
121, 199, 203, 122, -1, -1, 187, 121, 200, 203,
|
||
122, -1, 117, 196, -1, 198, 36, -1, 206, -1,
|
||
203, 120, 206, -1, 223, -1, 205, -1, 117, 163,
|
||
-1, 117, 185, -1, 117, 192, -1, 117, 207, -1,
|
||
117, 194, -1, 102, -1, 204, -1, 225, 125, 208,
|
||
-1, 209, 125, 208, -1, 125, 208, -1, 163, -1,
|
||
185, -1, 187, -1, 121, 117, 163, 122, -1, 207,
|
||
36, -1, -1, 207, 121, 212, 203, 122, -1, 211,
|
||
36, -1, 164, -1, 167, -1, 165, -1, 169, -1,
|
||
250, -1, 172, -1, 174, -1, -1, 174, 215, 142,
|
||
-1, 176, -1, 178, -1, 180, -1, 192, -1, 193,
|
||
-1, 185, -1, 187, -1, 194, -1, 198, -1, -1,
|
||
198, 216, 142, -1, 255, -1, 207, -1, -1, 207,
|
||
217, 142, -1, 211, -1, -1, 211, 218, 142, -1,
|
||
230, -1, 238, -1, 227, -1, 228, -1, 229, -1,
|
||
239, -1, 240, -1, 241, -1, 214, -1, 183, -1,
|
||
253, -1, -1, 183, 220, 142, -1, -1, 253, 221,
|
||
142, -1, 201, -1, 102, -1, 219, -1, -1, 219,
|
||
-1, 163, -1, 192, -1, 185, -1, 187, -1, 207,
|
||
-1, 194, -1, 253, -1, 164, -1, 167, -1, 165,
|
||
-1, 169, -1, 250, -1, 172, -1, 174, -1, 176,
|
||
-1, 178, -1, 180, -1, 192, -1, 193, -1, 185,
|
||
-1, 187, -1, 183, -1, 194, -1, 253, -1, 198,
|
||
-1, 255, -1, 207, -1, 211, -1, 34, -1, 35,
|
||
-1, 225, 226, -1, 34, 219, -1, 35, 219, -1,
|
||
29, 219, -1, 110, 219, -1, 109, 219, -1, 164,
|
||
9, 219, -1, 167, 9, 219, -1, 165, 9, 219,
|
||
-1, 169, 9, 219, -1, 250, 9, 219, -1, 172,
|
||
9, 219, -1, 174, 9, 219, -1, 176, 9, 219,
|
||
-1, 178, 9, 219, -1, 180, 9, 219, -1, 192,
|
||
9, 219, -1, 193, 9, 219, -1, 185, 9, 219,
|
||
-1, 187, 9, 219, -1, 183, 9, 219, -1, 194,
|
||
9, 219, -1, 253, 9, 219, -1, 255, 9, 219,
|
||
-1, 198, 9, 219, -1, 207, 9, 219, -1, 211,
|
||
9, 219, -1, 225, 105, 219, -1, 225, 54, 219,
|
||
-1, 225, 55, 219, -1, 225, 56, 219, -1, 225,
|
||
57, 219, -1, 225, 60, 219, -1, 225, 59, 219,
|
||
-1, 232, -1, 233, -1, 234, -1, 235, -1, 236,
|
||
-1, 237, -1, 219, 109, 219, -1, 219, 110, 219,
|
||
-1, 219, 111, 219, -1, 219, 112, 219, -1, 219,
|
||
113, 219, -1, 219, 58, 219, -1, 219, 27, 219,
|
||
-1, 219, 28, 219, -1, 219, 31, 219, -1, 219,
|
||
106, 219, -1, 219, 107, 219, -1, 219, 49, 219,
|
||
-1, 219, 50, 219, -1, 219, 32, 219, -1, 219,
|
||
33, 219, -1, 219, 108, 219, -1, 219, 105, 219,
|
||
-1, 243, 126, -1, 127, 222, -1, 243, 120, 222,
|
||
-1, 243, 126, 127, 222, -1, 206, -1, 244, 120,
|
||
206, -1, -1, 95, 246, 247, 128, -1, -1, 102,
|
||
-1, 248, -1, 248, 120, 102, -1, 163, 140, -1,
|
||
248, 120, 163, 140, -1, 219, -1, 249, 120, 219,
|
||
-1, 245, 249, 124, -1, -1, 245, 372, 251, 160,
|
||
124, -1, 219, -1, 252, 120, 219, -1, 121, 252,
|
||
122, -1, 253, 36, -1, 13, 121, 219, 120, 204,
|
||
120, 204, 122, -1, 255, 36, -1, -1, 11, 258,
|
||
261, 372, -1, -1, 12, 259, 261, 372, -1, -1,
|
||
53, 260, 276, 372, -1, 264, -1, 261, 120, 264,
|
||
-1, 263, -1, 262, 120, 263, -1, 264, -1, 185,
|
||
140, -1, 185, 140, 9, 219, -1, 185, 268, 141,
|
||
-1, -1, 163, 140, 265, -1, -1, -1, 163, 140,
|
||
266, 9, 267, 219, -1, 163, 268, 141, -1, 269,
|
||
126, -1, 127, 219, -1, 269, 120, 219, -1, 269,
|
||
126, 127, 219, -1, -1, 51, 271, 272, 273, 372,
|
||
-1, 163, 140, -1, 272, 120, 163, 140, -1, -1,
|
||
52, 163, -1, -1, 42, 275, 276, 372, -1, 163,
|
||
140, -1, 276, 120, 163, 140, -1, -1, 82, 163,
|
||
121, 278, 287, 122, 140, 372, -1, -1, 82, 163,
|
||
279, 282, 372, -1, 84, 163, 372, -1, 85, 283,
|
||
372, -1, -1, 85, 123, 140, 280, 281, 124, 372,
|
||
-1, 285, -1, 281, 120, 285, -1, 283, -1, 282,
|
||
283, -1, 285, -1, 282, 285, -1, -1, 163, 121,
|
||
284, 287, 122, 140, -1, -1, 163, 286, 140, -1,
|
||
-1, 290, -1, 291, -1, 290, 120, 291, -1, 289,
|
||
-1, 288, 120, 289, -1, 223, -1, 163, 140, -1,
|
||
117, 163, 140, -1, 117, 163, 121, 288, 122, -1,
|
||
290, 120, 163, 140, -1, 290, 120, 117, 163, 140,
|
||
-1, 290, 120, 117, 163, 121, 288, 122, -1, 83,
|
||
163, 140, -1, 83, 117, 163, 140, -1, 83, 117,
|
||
163, 121, 288, 122, -1, 291, 120, 83, 163, 140,
|
||
-1, 291, 120, 83, 117, 163, 140, -1, 291, 120,
|
||
83, 117, 163, 121, 288, 122, -1, 293, -1, 305,
|
||
-1, 319, -1, 324, -1, 352, -1, 335, -1, 340,
|
||
-1, 370, -1, 294, 304, -1, 294, 297, 304, -1,
|
||
294, 299, 304, -1, 294, 299, 297, 304, -1, -1,
|
||
-1, 14, 219, 295, 372, 296, 160, -1, -1, 15,
|
||
372, 298, 160, -1, -1, -1, 16, 300, 219, 372,
|
||
301, 160, -1, -1, -1, 299, 16, 302, 219, 372,
|
||
303, 160, -1, 18, -1, 17, -1, 309, 310, 306,
|
||
-1, 309, 315, 306, -1, 309, 306, -1, 309, 310,
|
||
315, 306, -1, 40, -1, 17, -1, -1, 37, 308,
|
||
372, -1, 307, -1, 307, 159, -1, -1, -1, 38,
|
||
311, 219, 372, 312, 160, -1, -1, -1, 310, 38,
|
||
313, 219, 372, 314, 160, -1, -1, -1, 39, 316,
|
||
372, 317, 160, -1, -1, 315, 39, 318, 372, 160,
|
||
-1, -1, -1, 322, 219, 372, 320, 160, 321, 323,
|
||
-1, 43, -1, 17, -1, 41, -1, -1, -1, -1,
|
||
45, 224, 328, 219, 325, 47, 219, 329, 326, 372,
|
||
327, 330, -1, 105, -1, 9, -1, -1, 48, 219,
|
||
-1, 160, 46, -1, 160, 46, 163, -1, 160, 17,
|
||
-1, 160, 17, 163, -1, 163, -1, 192, -1, 331,
|
||
-1, 332, 120, 331, -1, 117, 163, -1, 219, -1,
|
||
333, -1, 334, 120, 333, -1, -1, -1, -1, 97,
|
||
332, 52, 334, 336, 339, 337, 372, 338, 330, -1,
|
||
-1, 98, -1, -1, 345, 341, 346, 342, -1, 345,
|
||
342, -1, 17, -1, -1, 99, 344, 219, 372, -1,
|
||
343, -1, 343, 159, -1, -1, 38, 219, 347, 372,
|
||
160, -1, -1, 346, 38, 219, 348, 372, 160, -1,
|
||
349, -1, 346, 349, -1, -1, -1, 39, 350, 372,
|
||
351, 160, -1, -1, -1, -1, -1, 62, 353, 357,
|
||
372, 160, 354, 360, 355, 358, 356, 17, -1, -1,
|
||
68, 219, -1, -1, 359, 372, 160, -1, 66, -1,
|
||
-1, 361, 372, 160, -1, 362, 372, 160, -1, 64,
|
||
-1, 65, 163, -1, 185, -1, 187, -1, -1, 67,
|
||
363, 365, 367, -1, -1, 96, 366, 367, -1, -1,
|
||
68, 368, -1, 120, -1, 120, 369, -1, 369, -1,
|
||
368, 120, -1, 368, 120, 369, -1, 163, -1, 205,
|
||
-1, 201, -1, 214, -1, 253, -1, -1, 100, 219,
|
||
372, 371, 160, 17, -1, 118, -1, 119, -1
|
||
};
|
||
|
||
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
||
static const yytype_uint16 yyrline[] =
|
||
{
|
||
0, 266, 266, 267, 270, 271, 272, 273, 274, 275,
|
||
276, 277, 278, 279, 280, 281, 284, 289, 297, 297,
|
||
298, 298, 299, 299, 300, 300, 303, 304, 305, 306,
|
||
309, 310, 311, 312, 315, 316, 319, 320, 323, 324,
|
||
325, 326, 327, 328, 329, 330, 331, 334, 335, 336,
|
||
337, 338, 339, 340, 341, 342, 345, 346, 354, 355,
|
||
356, 357, 358, 359, 365, 371, 372, 373, 374, 375,
|
||
376, 377, 378, 380, 380, 386, 387, 388, 400, 400,
|
||
423, 425, 423, 429, 431, 429, 435, 436, 437, 438,
|
||
439, 440, 440, 454, 457, 465, 478, 478, 481, 482,
|
||
483, 484, 485, 486, 498, 499, 500, 501, 504, 505,
|
||
506, 507, 510, 511, 514, 515, 518, 519, 522, 523,
|
||
526, 527, 528, 529, 530, 531, 532, 533, 534, 535,
|
||
536, 537, 538, 539, 540, 541, 542, 543, 548, 549,
|
||
552, 555, 556, 561, 564, 569, 575, 580, 585, 586,
|
||
589, 594, 597, 608, 611, 616, 619, 622, 623, 626,
|
||
629, 630, 635, 638, 643, 644, 647, 652, 655, 662,
|
||
663, 668, 669, 670, 671, 672, 673, 674, 675, 676,
|
||
677, 678, 679, 680, 681, 684, 685, 686, 689, 690,
|
||
691, 692, 693, 694, 695, 696, 697, 698, 699, 700,
|
||
701, 702, 703, 704, 705, 706, 707, 708, 717, 718,
|
||
719, 720, 721, 722, 727, 728, 729, 730, 731, 732,
|
||
733, 734, 735, 736, 737, 738, 739, 740, 741, 742,
|
||
743, 744, 747, 750, 750, 753, 754, 754, 755, 755,
|
||
759, 762, 765, 766, 769, 770, 773, 774, 775, 776,
|
||
777, 780, 781, 786, 787, 788, 794, 795, 796, 799,
|
||
802, 807, 807, 810, 819, 820, 821, 822, 823, 824,
|
||
825, 826, 826, 827, 828, 829, 830, 831, 832, 833,
|
||
834, 835, 836, 836, 837, 838, 839, 839, 840, 841,
|
||
841, 842, 843, 844, 845, 846, 847, 848, 849, 852,
|
||
853, 854, 855, 855, 856, 856, 857, 860, 861, 864,
|
||
865, 868, 869, 870, 871, 872, 873, 874, 881, 882,
|
||
883, 884, 885, 886, 887, 888, 889, 890, 891, 892,
|
||
893, 894, 895, 896, 897, 898, 899, 900, 901, 907,
|
||
908, 911, 914, 915, 918, 919, 920, 923, 924, 925,
|
||
926, 927, 928, 929, 930, 931, 932, 933, 934, 935,
|
||
936, 937, 938, 939, 940, 941, 942, 943, 946, 949,
|
||
952, 955, 958, 961, 964, 967, 968, 969, 970, 971,
|
||
972, 975, 976, 977, 978, 979, 980, 983, 984, 987,
|
||
988, 989, 990, 991, 992, 993, 994, 995, 998, 1004,
|
||
1005, 1006, 1009, 1010, 1013, 1013, 1019, 1020, 1021, 1022,
|
||
1025, 1026, 1029, 1030, 1033, 1035, 1034, 1070, 1071, 1073,
|
||
1076, 1085, 1089, 1092, 1092, 1094, 1094, 1096, 1096, 1106,
|
||
1107, 1110, 1111, 1119, 1120, 1122, 1126, 1135, 1135, 1152,
|
||
1155, 1152, 1184, 1190, 1193, 1194, 1195, 1198, 1198, 1206,
|
||
1207, 1210, 1211, 1214, 1214, 1217, 1218, 1221, 1221, 1244,
|
||
1244, 1245, 1246, 1247, 1247, 1250, 1251, 1254, 1255, 1256,
|
||
1257, 1260, 1260, 1282, 1282, 1338, 1339, 1340, 1341, 1344,
|
||
1345, 1348, 1351, 1352, 1353, 1354, 1355, 1356, 1359, 1360,
|
||
1361, 1362, 1363, 1364, 1367, 1368, 1369, 1370, 1371, 1372,
|
||
1373, 1374, 1377, 1378, 1379, 1380, 1384, 1386, 1383, 1391,
|
||
1391, 1395, 1397, 1395, 1405, 1407, 1405, 1416, 1419, 1424,
|
||
1428, 1432, 1435, 1441, 1446, 1453, 1453, 1456, 1457, 1465,
|
||
1466, 1465, 1477, 1478, 1477, 1490, 1490, 1490, 1492, 1492,
|
||
1497, 1502, 1496, 1516, 1519, 1520, 1524, 1536, 1541, 1523,
|
||
1582, 1583, 1586, 1587, 1590, 1593, 1596, 1599, 1604, 1605,
|
||
1608, 1609, 1612, 1613, 1616, 1617, 1622, 1628, 1637, 1621,
|
||
1657, 1658, 1662, 1661, 1674, 1681, 1690, 1689, 1699, 1700,
|
||
1709, 1709, 1712, 1712, 1715, 1717, 1720, 1720, 1720, 1725,
|
||
1733, 1743, 1753, 1724, 1777, 1778, 1786, 1787, 1790, 1798,
|
||
1799, 1800, 1803, 1814, 1832, 1833, 1837, 1836, 1844, 1843,
|
||
1854, 1855, 1858, 1859, 1860, 1861, 1862, 1865, 1866, 1867,
|
||
1868, 1869, 1873, 1872, 1895, 1896
|
||
};
|
||
#endif
|
||
|
||
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
|
||
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
|
||
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
|
||
static const char *const yytname[] =
|
||
{
|
||
"$end", "error", "$undefined", "FUNCTION", "PROCEDURE", "IDENTIFIER",
|
||
"RETURN", "NIL", "NUM_DOUBLE", "INASSIGN", "NUM_LONG", "LOCAL", "STATIC",
|
||
"IIF", "IF", "ELSE", "ELSEIF", "END", "ENDIF", "LITERAL", "TRUEVALUE",
|
||
"FALSEVALUE", "ANNOUNCE", "EXTERN", "DYNAMIC", "INIT", "EXIT", "AND",
|
||
"OR", "NOT", "PUBLIC", "EQ", "NE1", "NE2", "INC", "DEC", "ALIASOP",
|
||
"DOCASE", "CASE", "OTHERWISE", "ENDCASE", "ENDDO", "MEMVAR", "WHILE",
|
||
"LOOP", "FOR", "NEXT", "TO", "STEP", "LE", "GE", "FIELD", "IN",
|
||
"PARAMETERS", "PLUSEQ", "MINUSEQ", "MULTEQ", "DIVEQ", "POWER", "EXPEQ",
|
||
"MODEQ", "PRIVATE", "BEGINSEQ", "BREAK", "RECOVER", "RECOVERUSING",
|
||
"ALWAYS", "DO", "WITH", "SELF", "LINE", "MACROVAR", "MACROTEXT",
|
||
"AS_ARRAY", "AS_BLOCK", "AS_CHARACTER", "AS_CLASS", "AS_DATE",
|
||
"AS_LOGICAL", "AS_NUMERIC", "AS_OBJECT", "AS_VARIANT", "DECLARE",
|
||
"OPTIONAL", "DECLARE_CLASS", "DECLARE_MEMBER", "AS_ARRAY_ARRAY",
|
||
"AS_BLOCK_ARRAY", "AS_CHARACTER_ARRAY", "AS_CLASS_ARRAY",
|
||
"AS_DATE_ARRAY", "AS_LOGICAL_ARRAY", "AS_NUMERIC_ARRAY",
|
||
"AS_OBJECT_ARRAY", "PROCREQ", "CBSTART", "DOIDENT", "FOREACH", "DESCEND",
|
||
"DOSWITCH", "WITHOBJECT", "NUM_DATE", "EPSILON", "HASHOP", "POST", "'='",
|
||
"'<'", "'>'", "'$'", "'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE",
|
||
"'&'", "'@'", "'\\n'", "';'", "','", "'('", "')'", "'{'", "'}'", "':'",
|
||
"']'", "'['", "'|'", "$accept", "Main", "Source", "Line", "Function",
|
||
"@1", "@2", "@3", "@4", "FunScope", "Params", "AsType", "AsArrayType",
|
||
"StrongType", "AsArray", "ParamList", "Statement", "@5", "@6", "@7",
|
||
"@8", "@9", "@10", "@11", "CompTimeStr", "CrlfStmnt", "@12", "LineStat",
|
||
"ControlError", "FunScopeId", "Statements", "EmptyStats", "ExtList",
|
||
"DynList", "IdentName", "NumValue", "DateValue", "NumAlias", "NilValue",
|
||
"NilAlias", "LiteralValue", "LiteralAlias", "CodeBlockAlias", "Logical",
|
||
"LogicalAlias", "SelfValue", "SelfAlias", "Array", "ArrayAlias",
|
||
"ArrayAt", "ArrayAtAlias", "Hash", "HashAlias", "HashList", "Variable",
|
||
"VarAlias", "MacroVar", "MacroVarAlias", "MacroExpr", "MacroExprAlias",
|
||
"FieldAlias", "FieldVarAlias", "AliasId", "AliasVar", "AliasExpr",
|
||
"VariableAt", "VariableAtAlias", "FunIdentCall", "@13", "FunCall", "@14",
|
||
"@15", "FunRef", "FunCallAlias", "ArgList", "Argument", "RefArgument",
|
||
"ExtArgument", "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias",
|
||
"ObjectMethod", "@16", "ObjectMethodAlias", "SimpleExpression", "@17",
|
||
"@18", "@19", "@20", "Expression", "@21", "@22", "ExtExpression",
|
||
"EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp",
|
||
"ExprPreOp", "ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq",
|
||
"ExprMinusEq", "ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq",
|
||
"ExprOperEq", "ExprMath", "ExprBool", "ExprRelation", "ArrayIndex",
|
||
"IndexList", "ElemList", "BlockHead", "@23", "BlockVars", "BlockVarList",
|
||
"BlockExpList", "CodeBlock", "@24", "ExpList", "PareExpList",
|
||
"PareExpListAlias", "IfInline", "IfInlineAlias", "VarDefs", "@25", "@26",
|
||
"@27", "VarList", "ExtVarList", "ExtVarDef", "VarDef", "@28", "@29",
|
||
"@30", "DimList", "DimIndex", "FieldsDef", "@31", "FieldList", "InAlias",
|
||
"MemvarDef", "@32", "MemvarList", "Declaration", "@33", "@34", "@35",
|
||
"DecDataList", "ClassInfo", "DecMethod", "@36", "DecData", "@37",
|
||
"DecList", "DummyArgList", "DummyArgument", "FormalList", "OptList",
|
||
"ExecFlow", "IfEndif", "IfBegin", "@38", "@39", "IfElse", "@40",
|
||
"IfElseIf", "@41", "@42", "@43", "@44", "EndIf", "DoCase", "EndCase",
|
||
"DoCaseStart", "@45", "DoCaseBegin", "Cases", "@46", "@47", "@48", "@49",
|
||
"Otherwise", "@50", "@51", "@52", "DoWhile", "@53", "@54", "WhileBegin",
|
||
"EndWhile", "ForNext", "@55", "@56", "@57", "ForAssign", "StepExpr",
|
||
"ForStatements", "ForVar", "ForList", "ForExpr", "ForArgs", "ForEach",
|
||
"@58", "@59", "@60", "Descend", "DoSwitch", "@61", "EndSwitch",
|
||
"SwitchStart", "@62", "SwitchBegin", "SwitchCases", "@63", "@64",
|
||
"SwitchDefault", "@65", "@66", "BeginSeq", "@67", "@68", "@69", "@70",
|
||
"BlockSeq", "AlwaysSeq", "Always", "RecoverSeq", "RecoverEmpty",
|
||
"RecoverUsing", "DoName", "DoProc", "@71", "@72", "DoArgs", "DoArgList",
|
||
"DoArgument", "WithObject", "@73", "Crlf", 0
|
||
};
|
||
#endif
|
||
|
||
# ifdef YYPRINT
|
||
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
|
||
token YYLEX-NUM. */
|
||
static const yytype_uint16 yytoknum[] =
|
||
{
|
||
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
|
||
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
|
||
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
|
||
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
|
||
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
|
||
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
||
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
||
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
||
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
||
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
||
355, 356, 357, 358, 359, 61, 60, 62, 36, 43,
|
||
45, 42, 47, 37, 360, 361, 38, 64, 10, 59,
|
||
44, 40, 41, 123, 125, 58, 93, 91, 124
|
||
};
|
||
# endif
|
||
|
||
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
||
static const yytype_uint16 yyr1[] =
|
||
{
|
||
0, 129, 130, 130, 131, 131, 131, 131, 131, 131,
|
||
131, 131, 131, 131, 131, 131, 132, 132, 134, 133,
|
||
135, 133, 136, 133, 137, 133, 138, 138, 138, 138,
|
||
139, 139, 139, 139, 140, 140, 141, 141, 142, 142,
|
||
142, 142, 142, 142, 142, 142, 142, 143, 143, 143,
|
||
143, 143, 143, 143, 143, 143, 144, 144, 145, 145,
|
||
145, 145, 145, 145, 145, 145, 145, 145, 145, 145,
|
||
145, 145, 145, 146, 145, 145, 145, 145, 147, 145,
|
||
148, 149, 145, 150, 151, 145, 145, 145, 145, 145,
|
||
145, 152, 145, 145, 153, 153, 155, 154, 156, 156,
|
||
156, 156, 156, 156, 157, 157, 157, 157, 158, 158,
|
||
158, 158, 159, 159, 160, 160, 161, 161, 162, 162,
|
||
163, 163, 163, 163, 163, 163, 163, 163, 163, 163,
|
||
163, 163, 163, 163, 163, 163, 163, 163, 164, 164,
|
||
165, 166, 166, 167, 168, 169, 170, 171, 172, 172,
|
||
173, 174, 175, 176, 177, 178, 179, 180, 180, 181,
|
||
182, 182, 183, 184, 185, 185, 186, 187, 188, 189,
|
||
189, 190, 190, 190, 190, 190, 190, 190, 190, 190,
|
||
190, 190, 190, 190, 190, 191, 191, 191, 192, 192,
|
||
192, 192, 192, 192, 192, 192, 192, 192, 192, 192,
|
||
192, 192, 192, 192, 192, 192, 192, 192, 193, 193,
|
||
193, 193, 193, 193, 194, 194, 194, 194, 194, 194,
|
||
194, 194, 194, 194, 194, 194, 194, 194, 194, 194,
|
||
194, 194, 195, 197, 196, 198, 199, 198, 200, 198,
|
||
201, 202, 203, 203, 204, 204, 205, 205, 205, 205,
|
||
205, 206, 206, 207, 207, 207, 208, 208, 208, 209,
|
||
210, 212, 211, 213, 214, 214, 214, 214, 214, 214,
|
||
214, 215, 214, 214, 214, 214, 214, 214, 214, 214,
|
||
214, 214, 216, 214, 214, 214, 217, 214, 214, 218,
|
||
214, 214, 214, 214, 214, 214, 214, 214, 214, 219,
|
||
219, 219, 220, 219, 221, 219, 219, 222, 222, 223,
|
||
223, 224, 224, 224, 224, 224, 224, 224, 225, 225,
|
||
225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
|
||
225, 225, 225, 225, 225, 225, 225, 225, 225, 226,
|
||
226, 227, 228, 228, 229, 229, 229, 230, 230, 230,
|
||
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
|
||
230, 230, 230, 230, 230, 230, 230, 230, 231, 232,
|
||
233, 234, 235, 236, 237, 238, 238, 238, 238, 238,
|
||
238, 239, 239, 239, 239, 239, 239, 240, 240, 241,
|
||
241, 241, 241, 241, 241, 241, 241, 241, 242, 243,
|
||
243, 243, 244, 244, 246, 245, 247, 247, 247, 247,
|
||
248, 248, 249, 249, 250, 251, 250, 252, 252, 253,
|
||
254, 255, 256, 258, 257, 259, 257, 260, 257, 261,
|
||
261, 262, 262, 263, 263, 263, 263, 265, 264, 266,
|
||
267, 264, 264, 268, 269, 269, 269, 271, 270, 272,
|
||
272, 273, 273, 275, 274, 276, 276, 278, 277, 279,
|
||
277, 277, 277, 280, 277, 281, 281, 282, 282, 282,
|
||
282, 284, 283, 286, 285, 287, 287, 287, 287, 288,
|
||
288, 289, 290, 290, 290, 290, 290, 290, 291, 291,
|
||
291, 291, 291, 291, 292, 292, 292, 292, 292, 292,
|
||
292, 292, 293, 293, 293, 293, 295, 296, 294, 298,
|
||
297, 300, 301, 299, 302, 303, 299, 304, 304, 305,
|
||
305, 305, 305, 306, 306, 308, 307, 309, 309, 311,
|
||
312, 310, 313, 314, 310, 316, 317, 315, 318, 315,
|
||
320, 321, 319, 322, 323, 323, 325, 326, 327, 324,
|
||
328, 328, 329, 329, 330, 330, 330, 330, 331, 331,
|
||
332, 332, 333, 333, 334, 334, 336, 337, 338, 335,
|
||
339, 339, 341, 340, 340, 342, 344, 343, 345, 345,
|
||
347, 346, 348, 346, 346, 346, 350, 351, 349, 353,
|
||
354, 355, 356, 352, 357, 357, 358, 358, 359, 360,
|
||
360, 360, 361, 362, 363, 363, 365, 364, 366, 364,
|
||
367, 367, 368, 368, 368, 368, 368, 369, 369, 369,
|
||
369, 369, 371, 370, 372, 372
|
||
};
|
||
|
||
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
||
static const yytype_uint8 yyr2[] =
|
||
{
|
||
0, 2, 1, 0, 1, 1, 1, 1, 1, 2,
|
||
2, 2, 2, 2, 2, 3, 4, 6, 0, 5,
|
||
0, 5, 0, 8, 0, 8, 0, 1, 1, 1,
|
||
0, 1, 1, 3, 0, 1, 0, 1, 1, 1,
|
||
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 2, 2, 4, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 0, 4, 2, 2, 2, 0, 4,
|
||
0, 0, 5, 0, 0, 5, 1, 1, 1, 3,
|
||
3, 0, 4, 4, 1, 3, 0, 2, 1, 1,
|
||
1, 1, 1, 1, 4, 7, 4, 7, 0, 1,
|
||
1, 1, 1, 2, 0, 1, 1, 3, 1, 3,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 2, 1, 2, 1, 2, 2, 1, 1,
|
||
2, 1, 2, 3, 2, 2, 2, 3, 3, 2,
|
||
3, 5, 1, 2, 1, 1, 2, 2, 2, 2,
|
||
3, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 1, 1, 1, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||
2, 2, 2, 0, 5, 1, 0, 5, 0, 5,
|
||
2, 2, 1, 3, 1, 1, 2, 2, 2, 2,
|
||
2, 1, 1, 3, 3, 2, 1, 1, 1, 4,
|
||
2, 0, 5, 2, 1, 1, 1, 1, 1, 1,
|
||
1, 0, 3, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 0, 3, 1, 1, 0, 3, 1, 0,
|
||
3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 0, 3, 0, 3, 1, 1, 1, 0,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||
1, 2, 2, 2, 2, 2, 2, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 1, 1, 1, 1, 1,
|
||
1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
||
3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
|
||
3, 4, 1, 3, 0, 4, 0, 1, 1, 3,
|
||
2, 4, 1, 3, 3, 0, 5, 1, 3, 3,
|
||
2, 8, 2, 0, 4, 0, 4, 0, 4, 1,
|
||
3, 1, 3, 1, 2, 4, 3, 0, 3, 0,
|
||
0, 6, 3, 2, 2, 3, 4, 0, 5, 2,
|
||
4, 0, 2, 0, 4, 2, 4, 0, 8, 0,
|
||
5, 3, 3, 0, 7, 1, 3, 1, 2, 1,
|
||
2, 0, 6, 0, 3, 0, 1, 1, 3, 1,
|
||
3, 1, 2, 3, 5, 4, 5, 7, 3, 4,
|
||
6, 5, 6, 8, 1, 1, 1, 1, 1, 1,
|
||
1, 1, 2, 3, 3, 4, 0, 0, 6, 0,
|
||
4, 0, 0, 6, 0, 0, 7, 1, 1, 3,
|
||
3, 2, 4, 1, 1, 0, 3, 1, 2, 0,
|
||
0, 6, 0, 0, 7, 0, 0, 5, 0, 5,
|
||
0, 0, 7, 1, 1, 1, 0, 0, 0, 12,
|
||
1, 1, 0, 2, 2, 3, 2, 3, 1, 1,
|
||
1, 3, 2, 1, 1, 3, 0, 0, 0, 10,
|
||
0, 1, 0, 4, 2, 1, 0, 4, 1, 2,
|
||
0, 5, 0, 6, 1, 2, 0, 0, 5, 0,
|
||
0, 0, 0, 11, 0, 2, 0, 3, 1, 0,
|
||
3, 3, 1, 2, 1, 1, 0, 4, 0, 3,
|
||
0, 2, 1, 2, 1, 2, 3, 1, 1, 1,
|
||
1, 1, 0, 6, 1, 1
|
||
};
|
||
|
||
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
|
||
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
|
||
means the default is an error. */
|
||
static const yytype_uint16 yydefact[] =
|
||
{
|
||
0, 0, 120, 78, 143, 138, 139, 423, 425, 0,
|
||
0, 145, 148, 149, 129, 127, 128, 28, 124, 80,
|
||
0, 0, 525, 453, 543, 123, 0, 122, 121, 447,
|
||
125, 427, 83, 589, 73, 0, 151, 0, 164, 165,
|
||
0, 126, 0, 0, 136, 404, 608, 0, 137, 576,
|
||
0, 140, 0, 624, 625, 0, 309, 0, 0, 0,
|
||
8, 6, 0, 7, 162, 318, 320, 0, 319, 0,
|
||
321, 0, 0, 323, 0, 324, 0, 325, 0, 326,
|
||
0, 327, 0, 332, 0, 330, 0, 331, 0, 0,
|
||
0, 328, 329, 333, 0, 235, 335, 0, 337, 0,
|
||
0, 338, 0, 0, 96, 96, 96, 96, 375, 376,
|
||
377, 378, 379, 380, 96, 0, 322, 334, 0, 336,
|
||
0, 86, 87, 88, 5, 96, 494, 0, 495, 0,
|
||
0, 496, 0, 497, 499, 500, 0, 572, 498, 96,
|
||
501, 4, 9, 0, 77, 0, 142, 141, 0, 0,
|
||
0, 130, 132, 129, 127, 128, 124, 0, 134, 131,
|
||
123, 0, 135, 133, 136, 0, 0, 0, 264, 266,
|
||
265, 267, 269, 270, 273, 274, 275, 300, 278, 279,
|
||
276, 277, 280, 281, 306, 285, 288, 299, 506, 0,
|
||
293, 294, 295, 291, 292, 296, 297, 298, 268, 301,
|
||
284, 91, 0, 116, 0, 118, 75, 0, 342, 343,
|
||
0, 0, 76, 162, 318, 320, 319, 321, 323, 324,
|
||
325, 326, 327, 332, 313, 314, 312, 329, 316, 335,
|
||
315, 338, 0, 0, 322, 317, 336, 169, 0, 0,
|
||
0, 594, 0, 72, 604, 605, 606, 0, 459, 0,
|
||
34, 0, 0, 94, 0, 406, 610, 162, 330, 331,
|
||
559, 333, 337, 334, 560, 0, 0, 0, 0, 167,
|
||
0, 417, 0, 251, 0, 0, 0, 252, 245, 402,
|
||
310, 244, 0, 256, 257, 258, 255, 1, 0, 14,
|
||
12, 13, 11, 10, 0, 0, 163, 233, 0, 0,
|
||
214, 0, 0, 216, 185, 186, 187, 188, 208, 0,
|
||
144, 215, 192, 0, 146, 217, 193, 195, 0, 150,
|
||
219, 194, 0, 152, 221, 197, 0, 154, 155, 198,
|
||
0, 156, 199, 0, 159, 220, 196, 0, 222, 205,
|
||
209, 0, 166, 236, 63, 225, 189, 210, 0, 168,
|
||
238, 64, 226, 190, 211, 0, 0, 185, 172, 0,
|
||
176, 0, 177, 179, 0, 178, 0, 180, 0, 181,
|
||
0, 182, 0, 183, 171, 186, 174, 187, 175, 206,
|
||
0, 213, 173, 0, 184, 207, 0, 223, 0, 61,
|
||
224, 0, 232, 200, 0, 241, 60, 229, 202, 0,
|
||
260, 261, 227, 0, 203, 0, 263, 62, 228, 204,
|
||
339, 340, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
341, 67, 66, 70, 69, 68, 412, 0, 415, 0,
|
||
147, 218, 0, 420, 65, 231, 191, 212, 0, 422,
|
||
59, 230, 201, 58, 0, 511, 518, 517, 0, 0,
|
||
502, 103, 425, 110, 124, 101, 99, 112, 102, 0,
|
||
0, 100, 98, 524, 529, 535, 523, 521, 0, 0,
|
||
0, 0, 575, 0, 574, 71, 0, 97, 34, 0,
|
||
429, 0, 0, 344, 346, 345, 0, 240, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 89, 0, 90, 34, 81, 431,
|
||
433, 526, 34, 0, 551, 550, 0, 170, 34, 451,
|
||
0, 84, 0, 0, 0, 610, 0, 457, 0, 461,
|
||
47, 42, 39, 0, 40, 41, 38, 43, 45, 52,
|
||
53, 49, 0, 50, 51, 48, 54, 463, 35, 46,
|
||
471, 462, 0, 0, 407, 34, 0, 408, 0, 609,
|
||
0, 0, 0, 622, 0, 0, 419, 157, 246, 247,
|
||
248, 250, 240, 249, 0, 158, 309, 309, 153, 15,
|
||
18, 20, 309, 347, 307, 308, 399, 0, 398, 349,
|
||
348, 350, 352, 353, 354, 355, 356, 361, 359, 309,
|
||
360, 309, 357, 358, 362, 365, 366, 309, 254, 367,
|
||
369, 370, 371, 372, 374, 373, 368, 253, 0, 414,
|
||
0, 351, 363, 364, 509, 0, 503, 514, 0, 504,
|
||
0, 0, 113, 0, 0, 532, 519, 0, 538, 520,
|
||
540, 0, 586, 0, 584, 79, 0, 437, 36, 0,
|
||
0, 424, 426, 309, 272, 303, 283, 287, 290, 387,
|
||
388, 389, 394, 395, 392, 393, 386, 397, 390, 391,
|
||
396, 381, 382, 383, 384, 385, 507, 305, 92, 117,
|
||
119, 434, 36, 0, 0, 455, 0, 454, 546, 449,
|
||
0, 0, 0, 428, 0, 595, 0, 74, 607, 0,
|
||
16, 475, 473, 0, 467, 469, 44, 55, 0, 475,
|
||
95, 93, 410, 405, 0, 612, 162, 306, 618, 299,
|
||
0, 301, 611, 614, 0, 563, 564, 566, 561, 577,
|
||
0, 259, 418, 0, 310, 160, 403, 0, 0, 0,
|
||
0, 0, 242, 400, 0, 0, 0, 0, 413, 0,
|
||
0, 0, 0, 0, 505, 0, 0, 0, 536, 0,
|
||
522, 0, 0, 580, 0, 0, 573, 585, 444, 438,
|
||
0, 442, 37, 0, 443, 430, 0, 0, 0, 436,
|
||
432, 82, 34, 0, 452, 34, 448, 85, 590, 0,
|
||
126, 0, 34, 0, 476, 477, 34, 468, 470, 460,
|
||
473, 0, 465, 0, 409, 34, 613, 615, 562, 0,
|
||
570, 0, 309, 19, 30, 21, 30, 309, 234, 401,
|
||
237, 239, 262, 416, 510, 512, 0, 30, 104, 30,
|
||
106, 530, 0, 0, 0, 541, 0, 587, 582, 440,
|
||
445, 0, 309, 508, 435, 456, 0, 450, 599, 17,
|
||
0, 34, 34, 482, 34, 0, 0, 474, 0, 0,
|
||
34, 411, 616, 565, 571, 567, 623, 161, 31, 0,
|
||
32, 34, 0, 243, 0, 515, 0, 0, 0, 537,
|
||
533, 539, 0, 0, 0, 0, 0, 446, 0, 552,
|
||
602, 0, 591, 0, 0, 34, 488, 309, 483, 0,
|
||
0, 34, 478, 0, 466, 464, 472, 0, 0, 0,
|
||
56, 0, 513, 0, 0, 0, 531, 0, 544, 545,
|
||
542, 581, 588, 0, 441, 421, 0, 547, 603, 596,
|
||
0, 0, 309, 489, 481, 0, 479, 458, 34, 485,
|
||
0, 34, 568, 23, 33, 34, 25, 516, 105, 107,
|
||
534, 583, 553, 0, 598, 592, 0, 600, 601, 0,
|
||
309, 484, 309, 486, 34, 491, 0, 57, 548, 0,
|
||
0, 490, 480, 0, 309, 492, 0, 569, 0, 593,
|
||
597, 487, 0, 556, 554, 549, 493, 557, 555
|
||
};
|
||
|
||
/* YYDEFGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yydefgoto[] =
|
||
{
|
||
-1, 58, 59, 455, 61, 747, 749, 748, 750, 62,
|
||
879, 557, 781, 558, 559, 880, 456, 242, 143, 207,
|
||
694, 240, 704, 512, 254, 206, 145, 457, 458, 459,
|
||
759, 986, 202, 204, 64, 168, 169, 67, 170, 69,
|
||
171, 71, 72, 172, 74, 173, 76, 174, 78, 175,
|
||
80, 176, 82, 276, 177, 84, 178, 86, 179, 88,
|
||
89, 90, 307, 180, 181, 182, 94, 95, 592, 183,
|
||
609, 611, 184, 97, 751, 277, 278, 752, 185, 286,
|
||
99, 100, 186, 617, 102, 187, 488, 490, 491, 492,
|
||
744, 489, 511, 596, 281, 232, 189, 420, 190, 191,
|
||
192, 193, 107, 108, 109, 110, 111, 112, 113, 194,
|
||
195, 196, 197, 345, 301, 282, 115, 255, 566, 567,
|
||
427, 198, 630, 272, 199, 118, 200, 120, 121, 148,
|
||
149, 239, 479, 518, 519, 520, 779, 780, 896, 658,
|
||
659, 122, 238, 529, 702, 123, 211, 523, 461, 711,
|
||
538, 718, 811, 713, 252, 719, 715, 806, 803, 945,
|
||
946, 804, 805, 125, 126, 127, 510, 787, 448, 761,
|
||
449, 635, 884, 763, 923, 450, 128, 467, 129, 210,
|
||
130, 468, 643, 888, 769, 927, 469, 644, 842, 771,
|
||
131, 772, 892, 132, 930, 133, 793, 963, 988, 526,
|
||
937, 987, 264, 265, 736, 737, 134, 820, 917, 976,
|
||
875, 135, 473, 474, 136, 266, 137, 653, 846, 895,
|
||
654, 774, 894, 138, 241, 858, 939, 979, 533, 965,
|
||
966, 902, 903, 904, 246, 139, 535, 256, 569, 732,
|
||
733, 140, 740, 462
|
||
};
|
||
|
||
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
||
STATE-NUM. */
|
||
#define YYPACT_NINF -900
|
||
static const yytype_int16 yypact[] =
|
||
{
|
||
4401, 223, -900, 368, -900, -3, 9, 194, 57, -85,
|
||
7130, -900, -900, -900, 8338, 8338, 8338, -900, 104, 377,
|
||
7130, 7130, -900, 823, -900, 368, 3350, -900, -900, 41,
|
||
-900, 1414, 1541, -900, 368, 129, -900, 95, -900, -900,
|
||
8338, -900, 8338, 723, 141, -900, -900, 3350, -900, -900,
|
||
7130, -900, 71, -900, -900, 7249, 4269, 8074, 213, 4563,
|
||
-900, -900, 549, -900, 17, 25, 31, 1298, 3, 8074,
|
||
16, 8074, 8074, 18, 8074, 29, 8074, 59, 8074, 22,
|
||
8074, 211, 8074, 39, 1298, 6, 1298, 87, 1298, 7606,
|
||
8074, 40, 21, 47, 8074, -900, 145, 8074, 10, 99,
|
||
8074, 210, 8074, 653, -900, -900, -900, -900, -900, -900,
|
||
-900, -900, -900, -900, -900, 6654, 234, 248, 1298, 252,
|
||
8074, -900, -900, -900, -900, -900, -900, 573, -900, 4811,
|
||
413, -900, 7130, -900, -900, -900, 5426, 220, -900, -900,
|
||
-900, -900, -900, 7130, -900, 223, -900, -900, 8338, 8338,
|
||
7130, -900, -900, -900, -900, -900, -900, 7130, -900, -900,
|
||
-900, 41, -900, -900, -900, 7130, 7130, 8338, 457, 927,
|
||
641, 1548, 1803, 7657, 1885, 578, 2218, 7897, 1581, 1686,
|
||
2008, 2187, 2473, 7717, -900, 4129, 7777, -900, 8379, 471,
|
||
-900, -900, -900, -900, -900, -900, -900, -900, 2330, 7837,
|
||
2390, -900, 546, -900, 551, -900, -900, 8294, -900, -900,
|
||
223, 8338, -900, 303, 100, 100, -12, -8, 85, 155,
|
||
195, 231, 197, 100, 62, 238, 282, 100, 1, 216,
|
||
289, 245, 23, 131, 253, 63, 257, 250, 8338, 8338,
|
||
8294, 243, 7130, -900, -900, -900, -900, 312, 266, 223,
|
||
8499, 273, 223, 260, 278, 8118, 306, 420, 14, 196,
|
||
282, 384, 237, 264, -900, 183, 7130, 3985, 7130, -900,
|
||
8338, 8379, 353, -900, 315, 3350, 269, -900, -900, -900,
|
||
3487, -900, 298, -900, -900, -900, -900, -900, 223, -900,
|
||
-900, -900, -900, -900, 8338, 8338, -900, -900, 7130, 6773,
|
||
-900, -39, 7130, -900, -900, -900, -900, -900, -900, 7130,
|
||
-900, -900, -900, 7130, -900, -900, -900, -900, 7130, -900,
|
||
-900, -900, 7130, -900, -900, -900, 7130, -900, -900, -900,
|
||
7130, -900, -900, 7130, -900, -900, -900, 7130, -900, -900,
|
||
-900, 7130, -900, -900, -900, -900, -900, -900, 7130, -900,
|
||
-900, -900, -900, -900, -900, -3, 9, 432, -900, 474,
|
||
-900, 484, -900, -900, 496, -900, 506, -900, 195, -900,
|
||
231, -900, 530, -900, -900, 534, -900, 545, -900, -900,
|
||
547, 556, -900, 575, -900, -900, 7130, -900, 7130, -900,
|
||
-900, 7130, -900, -900, 7130, -900, -900, -900, -900, 7130,
|
||
-900, -900, -900, 8074, -900, 7130, -900, -900, -900, -900,
|
||
-900, -900, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 8074,
|
||
-900, -900, -900, -900, -900, -900, 8379, 341, -900, 7130,
|
||
-900, -900, 7130, -900, -900, -900, -900, -900, 7130, -900,
|
||
-900, -900, -900, -900, 223, -900, -900, -900, 577, 600,
|
||
-900, -900, 342, -900, 287, -900, -900, -900, -900, 599,
|
||
4934, -900, -900, -900, -900, -900, -900, -900, 521, 418,
|
||
3985, 5549, -900, 567, -900, -900, 3985, -900, 4463, 554,
|
||
-900, 554, 2945, 3191, -900, -900, 328, -900, 8499, 8499,
|
||
8499, 8499, 8499, 7130, 7130, 7130, 7130, 7130, 7130, 7130,
|
||
7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130, 7130,
|
||
223, 8499, 223, 8338, -900, 8338, -900, 4463, 339, -900,
|
||
-900, -900, 8499, 561, -900, -900, 7130, -900, 8499, 189,
|
||
561, 339, 7130, 223, 3985, 306, 566, -900, 8338, -900,
|
||
-900, -900, -900, 8338, -900, -900, -900, -900, -900, -900,
|
||
-900, -900, 8338, -900, -900, -900, -900, -900, -900, -900,
|
||
-900, -900, 488, 223, -900, 8499, 444, 465, 6892, -900,
|
||
7368, 3350, 3985, -900, 602, 7130, -900, -900, 296, 62,
|
||
282, 1, 144, 289, 7130, -900, 7130, 7011, -900, -900,
|
||
476, 499, 7011, 8379, -900, 8379, -900, 6773, 504, 8379,
|
||
8379, 8379, 8379, 8379, 8379, 8379, 8379, 8379, 8379, 7011,
|
||
8379, 7011, 8379, 8379, 8379, 8379, 8379, 7011, -900, 8379,
|
||
8379, 8379, 8379, 8379, 8379, 8379, 8379, -900, 7130, -900,
|
||
6410, 8379, 8379, 8379, -900, 7130, -900, -900, 577, -900,
|
||
8338, 8338, -900, 7130, 223, -900, -900, 418, -900, -900,
|
||
-900, 7130, -900, 343, -900, -900, 7130, 627, 536, 229,
|
||
8338, -900, -900, 7487, -900, -900, -900, -900, -900, 2598,
|
||
8379, 3191, 3191, 3191, 550, 550, 581, 3191, 550, 550,
|
||
550, 438, 438, 222, 222, 222, -900, -900, -900, -900,
|
||
-900, 633, 536, 8294, 223, -900, 8338, -900, 8379, -900,
|
||
8338, 8338, 223, -900, 223, 8379, 5057, -900, -900, 624,
|
||
-900, 3781, 273, 3680, -900, -900, -900, -900, 8338, 3781,
|
||
-900, -900, -900, -900, 8162, 7487, 308, 572, -900, 596,
|
||
8379, 1698, 525, -900, 8338, 8379, -900, 529, -900, -900,
|
||
6535, -900, 8379, 7534, 8379, -900, -900, 223, 532, 223,
|
||
565, 357, -900, -900, 6773, 361, 423, 436, 8379, 4686,
|
||
527, 5918, 3985, 7130, -900, 382, 403, 3985, -900, 7130,
|
||
-900, 223, 6041, 8379, 223, 7130, -900, -900, 8379, -900,
|
||
646, -900, -900, 7130, 541, -900, 574, 5180, 7130, -900,
|
||
-900, -900, 8499, 652, -900, 8499, -900, -900, -900, 223,
|
||
3942, 8338, 8499, 580, 584, 591, 8499, -900, -900, -900,
|
||
-900, 350, -900, 595, -900, 8499, -900, 7487, 328, 7368,
|
||
622, 714, 7130, -900, 8206, -900, 8206, 7011, -900, -900,
|
||
-900, -900, -900, -900, -900, -900, 3985, 8206, -900, 8206,
|
||
-900, -900, 5672, 3985, 5672, -900, 223, -900, 8379, -900,
|
||
8379, 7130, 7487, -900, 8379, -900, 7130, -900, 662, -900,
|
||
8338, 8499, 8372, -900, 8499, 7986, 649, -900, 8338, 223,
|
||
8499, -900, -900, -900, -900, -900, -900, -900, -900, 611,
|
||
617, 8499, 616, -900, 5180, -900, 619, 620, 5303, -900,
|
||
-900, -900, 38, 5795, 5795, 223, 7130, 8379, 621, 8369,
|
||
-900, 8338, -900, 223, 223, 8421, -900, 7130, -900, 223,
|
||
8338, 8499, 591, 8030, -900, -900, -900, 223, 223, 8250,
|
||
-900, 223, -900, 5180, 223, 223, -900, 5303, -900, -900,
|
||
-900, -900, -900, 5795, 8379, -900, 7130, -900, -900, 673,
|
||
6164, 6164, 7130, -900, -900, 442, -900, -900, 8442, -900,
|
||
8338, 8499, -900, -900, -900, 8499, -900, -900, -900, -900,
|
||
-900, -900, 8379, 223, -900, -900, 223, -900, -900, 447,
|
||
7130, -900, 7130, -900, 8478, -900, 6287, -900, -900, 727,
|
||
6535, -900, -900, 453, 7130, -900, 24, -900, 6287, -900,
|
||
-900, -900, 458, 8338, 8338, -900, -900, -900, -900
|
||
};
|
||
|
||
/* YYPGOTO[NTERM-NUM]. */
|
||
static const yytype_int16 yypgoto[] =
|
||
{
|
||
-900, -900, -900, 44, 689, -900, -900, -900, -900, -900,
|
||
-775, -307, 58, -47, -629, -900, 255, -900, -900, -900,
|
||
-900, -900, -900, -900, -900, 191, -900, -455, -900, -900,
|
||
184, -404, -900, -900, 3113, 1189, 1257, 663, 218, 665,
|
||
259, 666, 667, 326, 668, 450, 671, 518, 674, 593,
|
||
675, 736, 680, -900, 1375, 685, 0, 688, 75, 690,
|
||
514, -900, 3247, 1489, 1632, 1700, -900, -166, -900, 1830,
|
||
-900, -900, -557, -900, -163, -656, -555, -54, 1850, -63,
|
||
-900, -900, 1910, -900, -900, -551, -900, -900, -900, -900,
|
||
3740, -900, -900, -575, -580, -900, 2025, -900, 2087, 2155,
|
||
-900, 2224, -900, -900, -900, -900, -900, -900, -900, 2354,
|
||
-900, -900, -900, 3387, -900, -900, -900, -900, -900, -900,
|
||
-900, 938, -900, -900, 150, 693, 1114, 696, -900, -900,
|
||
-900, -900, 639, 552, 97, -145, -900, -900, -900, 274,
|
||
-900, -900, -900, -900, -900, -900, -900, 555, 294, -900,
|
||
-900, -900, -900, -900, -528, -900, -695, -900, 77, -899,
|
||
-172, -900, -66, -900, -900, -900, -900, -900, 351, -900,
|
||
-900, -900, -900, -900, -900, -440, -900, -448, -900, -900,
|
||
-900, -900, -900, -900, -900, -900, 333, -900, -900, -900,
|
||
-900, -900, -900, -900, -900, -900, -900, -900, -900, -900,
|
||
-900, -186, 232, -900, -15, -900, -900, -900, -900, -900,
|
||
-900, -900, -900, 152, -900, -900, -900, -900, -900, -900,
|
||
154, -900, -900, -900, -900, -900, -900, -900, -900, -900,
|
||
-900, -900, -900, -900, -900, -900, -900, -900, 275, -900,
|
||
-711, -900, -900, 3017
|
||
};
|
||
|
||
/* 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 -622
|
||
static const yytype_int16 yytable[] =
|
||
{
|
||
85, 487, 279, 480, 480, 642, 745, 786, 636, 639,
|
||
714, 727, 309, 728, 816, 341, 642, 729, 808, 399,
|
||
646, 649, 753, 812, 310, 313, 224, 318, 314, 782,
|
||
388, 330, 524, 146, 298, 244, 150, 392, 322, 310,
|
||
302, 993, 342, 969, 60, 147, 400, 258, 337, 386,
|
||
342, 882, 314, 296, 319, 928, 391, 284, 331, 85,
|
||
-27, -27, 886, 782, 887, 323, -132, 305, 326, 305,
|
||
994, 305, 305, 983, 305, 87, 305, 237, 305, 929,
|
||
305, 597, 305, 392, 305, 992, 305, 598, 305, 375,
|
||
305, -132, -132, -132, 305, 327, 348, 305, 342, 433,
|
||
305, 225, 305, 289, 487, 247, 872, -29, -29, 582,
|
||
245, -132, -132, -132, -132, 299, -132, -132, 305, 299,
|
||
305, 319, 259, 349, -96, -96, -333, 343, 525, 85,
|
||
299, 401, 285, 299, 87, 343, 85, 299, 297, -96,
|
||
-96, 299, 306, 299, 306, 299, 306, 306, 299, 306,
|
||
117, 306, 299, 306, 394, 306, 299, 306, 299, 306,
|
||
253, 306, -132, 306, 377, 306, 299, 299, 727, 306,
|
||
728, 657, 306, 914, 729, 306, 235, 306, -132, 829,
|
||
-235, 395, -132, 343, -132, 807, 299, -330, -334, 299,
|
||
299, 323, 268, 306, 144, 306, 898, 263, 764, 770,
|
||
38, 39, 269, -130, 87, -96, -96, 517, 350, 117,
|
||
691, 87, 299, 287, 299, 695, 212, 308, 68, 405,
|
||
333, 699, -96, -96, 403, 243, 760, 299, -130, -130,
|
||
-130, 327, 349, 334, 340, 570, 347, 472, 354, 381,
|
||
517, 700, 877, 429, 216, 52, 406, 334, -130, -130,
|
||
-130, -130, 395, -130, -130, 63, 419, 432, 722, 70,
|
||
727, 438, 728, -96, -96, 216, 729, 331, 437, -235,
|
||
430, -235, 299, 400, 349, 579, 344, 68, 351, 117,
|
||
500, 406, 299, 389, 433, 217, 117, 396, 439, 430,
|
||
-111, -111, 407, 439, 124, 421, 422, 423, 424, -130,
|
||
433, 161, 798, 571, 642, 425, 217, 359, 434, 701,
|
||
440, 532, -311, 460, 291, -130, 443, 350, 70, -130,
|
||
471, -130, 299, 299, 299, 400, 73, 944, -96, -96,
|
||
475, 536, 296, 507, 508, 509, 821, 299, 299, 296,
|
||
618, 53, 54, 299, 296, -109, -109, 68, 361, 783,
|
||
259, -132, 218, 292, 68, 784, 627, 834, 401, 350,
|
||
472, 299, 944, -331, 299, 299, -96, -96, 845, 562,
|
||
-96, -96, 299, 218, 568, 299, -132, -132, -132, 299,
|
||
299, 775, 652, 853, 299, 73, -134, 537, 70, 584,
|
||
944, 299, 944, 585, 560, 70, -132, -132, -132, -132,
|
||
563, -132, -132, 284, 944, -96, -96, -328, -311, 299,
|
||
401, -134, -134, -134, -337, 364, 299, 297, 587, 284,
|
||
392, -162, 588, -162, 297, 263, -617, -617, -617, 297,
|
||
463, -134, -134, -134, -134, 463, -134, -134, 889, 577,
|
||
891, 664, 665, 666, 667, 668, 755, -132, 756, 297,
|
||
75, 464, 465, 466, 757, 73, 296, 648, 466, 693,
|
||
85, 628, 73, -132, 687, 629, 298, -132, 296, -132,
|
||
868, 85, -558, 575, 869, 576, 219, 827, 285, 828,
|
||
922, 827, -134, 830, 926, 855, -96, -96, 857, 931,
|
||
932, -318, -318, 216, 285, 863, 500, 219, -134, 867,
|
||
53, 54, -134, 837, -134, 410, 411, 720, 871, 75,
|
||
310, -318, -318, -318, -318, 785, -318, -318, 77, 957,
|
||
314, 53, 54, 960, 839, 412, 413, 414, 415, 961,
|
||
416, 417, 319, 746, 217, 87, 967, 968, 463, 366,
|
||
-558, 297, 323, 827, 220, 831, 87, 505, 506, 507,
|
||
508, 509, 294, 295, 906, 908, 827, 909, 832, 645,
|
||
465, 466, 970, 916, 971, 220, 334, 970, 487, 981,
|
||
342, 258, 723, 970, 920, 991, 990, 77, 970, 75,
|
||
996, 349, -318, 430, 299, 724, 75, 330, 444, 445,
|
||
446, 447, 433, 79, 446, 447, 419, -22, 943, 498,
|
||
499, 218, 640, 641, 949, 651, 652, 368, 500, 540,
|
||
117, 439, -326, -326, 331, 444, 637, 446, 447, 221,
|
||
-24, 117, 549, 550, 551, 552, 553, 554, 555, 556,
|
||
85, 754, -326, -326, -326, -326, -439, -326, -326, 500,
|
||
221, 973, 788, 799, 975, 817, 259, 77, 977, 819,
|
||
309, 833, 79, 824, 77, 849, 502, 503, 504, 505,
|
||
506, 507, 508, 509, 53, 54, 513, 985, 851, 53,
|
||
54, 515, 53, 54, 660, -319, -319, 310, 68, 53,
|
||
54, 696, 370, 709, 53, 54, 826, 410, 411, 68,
|
||
-619, -619, -619, 517, 852, -319, -319, -319, -319, 856,
|
||
-319, -319, 864, -326, 865, 87, 85, 412, 413, 414,
|
||
415, 866, 416, 417, -620, -620, -620, 870, 731, 70,
|
||
874, 263, 79, 297, 741, 219, 900, 901, 2, 79,
|
||
70, 876, 913, 918, 151, 152, 81, 919, 921, 964,
|
||
85, 924, 925, 935, 989, 153, 154, 155, 290, 156,
|
||
789, 527, 358, 158, 360, 362, 363, 365, 418, 85,
|
||
367, 85, 222, 369, 371, 159, -319, 160, 299, 373,
|
||
27, 28, 85, 883, 374, 30, 162, 376, 419, 378,
|
||
117, 87, 382, 222, 163, 384, 73, 85, 481, 216,
|
||
790, 692, 531, 220, 530, 81, 813, 73, 982, 912,
|
||
638, 647, 995, 738, 873, 776, 41, 777, 0, 0,
|
||
708, 0, 0, 0, 0, 87, 0, 164, 0, 0,
|
||
0, 48, 0, 0, 0, 372, 0, 0, 0, 0,
|
||
217, 0, -131, 0, 87, 0, 87, 0, 0, 0,
|
||
0, 0, 85, 0, 85, 0, 250, 87, 68, 0,
|
||
0, 0, 0, 0, 0, 0, 117, -131, -131, -131,
|
||
0, 0, 87, 0, 0, 81, 0, 0, 221, 0,
|
||
0, 0, 81, 0, 0, 731, 0, -131, -131, -131,
|
||
-131, 0, -131, -131, 85, 0, 0, 0, 85, 70,
|
||
117, 0, 0, 85, 85, 0, 0, 218, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 117,
|
||
75, 117, 0, 0, 0, 0, 0, 87, 0, 87,
|
||
0, 75, 117, 85, 68, 0, 0, 85, -131, 0,
|
||
0, 0, 0, 85, 0, 0, 302, 117, 116, 0,
|
||
85, 85, 0, 0, -131, 0, 0, 0, -131, 0,
|
||
-131, 0, 0, 0, 0, 0, 73, 0, 68, 87,
|
||
0, -320, -320, 87, 234, 70, 0, 731, 87, 87,
|
||
0, 0, 0, 0, 0, 0, 85, 68, 77, 68,
|
||
85, -320, -320, -320, -320, 234, -320, -320, 85, 77,
|
||
68, 0, 117, 0, 117, 0, 0, 116, 87, 70,
|
||
0, 0, 87, 0, 0, 68, 0, 0, 87, 0,
|
||
0, 222, 0, 0, 0, 87, 87, 0, 70, 0,
|
||
70, 219, 0, 0, 0, 0, 0, 380, 0, 0,
|
||
0, 70, 73, 0, 117, 0, 0, 0, 117, 0,
|
||
0, 0, 0, 117, 117, 0, 70, 0, 0, 0,
|
||
0, 87, -320, 79, 299, 87, 0, 0, 0, 0,
|
||
68, 0, 68, 87, 79, 0, 73, 116, 0, 0,
|
||
0, 0, 0, 117, 116, 0, 0, 117, 0, 0,
|
||
75, 0, 0, 117, 0, 73, 0, 73, 0, 220,
|
||
117, 117, 0, 0, 0, 0, 0, 0, 73, 0,
|
||
0, 70, 68, 70, 0, 0, 68, 0, 0, 0,
|
||
0, 68, 68, 73, 119, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 117, 0, 0, 0,
|
||
117, 0, 0, 0, 0, 0, 0, 0, 117, 0,
|
||
236, 68, 0, 70, 0, 68, 0, 70, 77, 0,
|
||
0, 68, 70, 70, 0, 0, 75, 0, 68, 68,
|
||
0, 236, 0, 0, 221, 0, 0, 0, 73, 0,
|
||
73, 0, 0, 119, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 70, 0, 0, 0, 70, 0, 0, 65,
|
||
75, 0, 70, 0, 68, 0, 81, 0, 68, 70,
|
||
70, 0, 0, 383, 0, 0, 68, 81, 0, 75,
|
||
73, 75, 0, 234, 73, 214, 0, 0, 0, 73,
|
||
73, 0, 75, 79, 77, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 70, 214, 75, 0, 70,
|
||
0, 0, 0, 119, 0, 0, 0, 70, 65, 73,
|
||
119, 0, 0, 73, 0, 0, 0, 66, 77, 73,
|
||
0, 0, 0, 0, 0, 0, 73, 73, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 77, 0, 77,
|
||
0, 0, 0, 215, 0, 0, 0, 0, 0, 0,
|
||
77, 0, 75, 0, 75, 0, 0, 0, 0, 79,
|
||
0, 0, 73, 2, 215, 77, 73, 222, 0, 151,
|
||
152, 0, 0, 0, 73, 0, 66, 0, 65, 0,
|
||
153, 154, 155, 0, 156, 65, 0, 0, 158, 0,
|
||
0, 0, 0, 79, 75, 0, 0, 0, 75, 0,
|
||
159, 0, 160, 75, 75, 27, 28, 0, 0, 0,
|
||
30, 162, 79, 0, 79, 0, 0, 0, 0, 163,
|
||
77, 0, 77, 0, 0, 79, 81, 0, 0, 38,
|
||
39, 0, 0, 75, 0, 83, 0, 75, 0, 0,
|
||
79, 41, 0, 75, 0, 0, 66, 0, 0, 236,
|
||
75, 75, 164, 66, 0, 0, 48, 0, 116, 0,
|
||
0, 223, 77, 0, 0, 0, 77, 0, 0, 116,
|
||
0, 77, 77, 0, 52, 0, 0, 0, 0, 268,
|
||
0, 0, 223, -135, 0, 0, 75, 0, 0, 0,
|
||
75, 0, 0, 0, 83, 79, 0, 79, 75, 0,
|
||
0, 77, 81, 0, 0, 77, 0, 0, -135, -135,
|
||
-135, 77, 0, 0, 0, 0, 0, 0, 77, 77,
|
||
0, 0, 0, 0, 214, 0, 0, 0, -135, -135,
|
||
-135, -135, 0, -135, -135, 0, 81, 79, 0, 0,
|
||
0, 79, 0, 0, 0, 0, 79, 79, 0, 91,
|
||
0, 0, 0, 0, 77, 81, 0, 81, 77, 0,
|
||
0, 0, 0, 0, 83, 0, 77, 0, 81, 234,
|
||
0, 83, 0, 0, 0, 226, 79, 0, 0, -135,
|
||
79, 0, 0, 81, 0, 0, 79, 0, 0, 0,
|
||
0, 0, 215, 79, 79, -135, 260, 0, 0, -135,
|
||
0, -135, 0, 0, 0, 0, 0, 0, 91, 0,
|
||
-133, 0, 0, 0, 0, 0, 0, 313, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 116, 79,
|
||
0, 0, 0, 79, 119, -133, -133, -133, 81, 0,
|
||
81, 79, -321, -321, 314, 119, 0, 0, 0, 0,
|
||
341, 0, 0, 0, 0, -133, -133, -133, -133, 0,
|
||
-133, -133, -321, -321, -321, -321, 0, -321, -321, 0,
|
||
0, 0, 0, 0, 0, -330, -330, 342, 91, 0,
|
||
81, 0, 0, 0, 81, 91, 0, 0, 0, 81,
|
||
81, 0, 92, 0, 0, -330, -330, -330, -330, 0,
|
||
-330, -330, 0, 0, 116, 0, -133, 0, 0, 65,
|
||
223, 0, 0, 0, 0, 0, 0, 0, 227, 81,
|
||
65, 0, -133, 81, 0, 0, -133, 0, -133, 81,
|
||
0, 0, 0, -321, 0, 299, 81, 81, 116, 227,
|
||
0, 0, 0, 0, 0, 236, 0, 0, 0, 0,
|
||
0, 92, 0, 0, 0, 348, 0, 116, 0, 116,
|
||
93, 0, 343, 0, 0, 0, -330, 432, 299, 0,
|
||
116, 0, 81, 0, 0, 0, 81, 66, 0, 0,
|
||
-331, -331, 349, 0, 81, 116, 228, 0, 66, 0,
|
||
0, 0, -334, -334, 433, 0, 0, 0, 0, 0,
|
||
-331, -331, -331, -331, 119, -331, -331, 261, 0, 0,
|
||
0, 0, -334, -334, -334, -334, 0, -334, -334, 93,
|
||
214, 92, 0, 0, 580, 0, 0, 0, 92, 0,
|
||
0, -304, -304, -304, -304, -304, -304, -304, -304, -304,
|
||
116, 0, 116, 0, -304, -304, -304, -304, -304, -304,
|
||
-304, -304, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 350, 0, 0,
|
||
0, -331, 318, 299, 0, 0, -621, -621, -621, 65,
|
||
119, 0, 116, -334, 0, 299, 116, 0, 215, 93,
|
||
96, 116, 116, 0, 0, 83, 93, -323, -323, 319,
|
||
0, 0, 0, 0, 0, 0, 83, 0, 0, 0,
|
||
98, 0, 0, 0, 119, 0, 229, -323, -323, -323,
|
||
-323, 116, -323, -323, 0, 116, 0, 0, 0, 0,
|
||
0, 116, 0, 119, 0, 119, 230, 229, 116, 116,
|
||
0, 0, 0, 0, 0, 0, 119, 66, 0, 96,
|
||
0, 0, 0, 0, 326, 65, 0, 262, 0, 0,
|
||
0, 119, 0, 0, 0, 0, 0, 227, 0, 98,
|
||
101, 0, 0, 0, 116, 0, 0, 0, 116, -325,
|
||
-325, 327, 0, 0, 0, 0, 116, 0, -323, 65,
|
||
299, 0, 0, 0, 0, 0, 231, 0, 0, -325,
|
||
-325, -325, -325, 0, -325, -325, 223, 0, 65, 91,
|
||
65, 0, 0, 0, 0, 0, 119, 231, 119, 96,
|
||
91, 65, 0, 66, 0, 0, 96, 0, 0, 101,
|
||
0, 0, 0, 0, 0, 581, 65, 0, 0, 98,
|
||
0, 0, 0, 0, 0, 0, 98, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 66, 119, 0,
|
||
0, 0, 119, 0, 0, 83, 0, 119, 119, 0,
|
||
-325, 0, 299, 0, 0, 0, 66, 386, 66, 0,
|
||
0, 0, 0, 0, 0, 103, 0, 0, 0, 66,
|
||
0, 65, 0, 65, 0, 0, 0, 119, 0, 101,
|
||
0, 119, -328, -328, 66, 0, 101, 119, 0, 0,
|
||
0, 233, 0, 0, 119, 119, 0, 0, 0, 0,
|
||
260, 0, -328, -328, -328, -328, 0, -328, -328, 0,
|
||
0, 0, 233, 65, 0, 0, 0, 65, 0, 0,
|
||
0, 83, 65, 65, 103, 0, 0, 104, 0, 0,
|
||
119, 0, 92, 0, 119, 0, 0, 0, 0, 66,
|
||
0, 66, 119, 92, 0, 229, 0, 0, 0, 0,
|
||
0, 0, 65, 0, 0, 83, 65, 0, 0, 91,
|
||
0, 0, 65, 0, 0, 583, 0, 0, 0, 65,
|
||
65, 0, 0, -328, 83, 299, 83, 0, 0, 0,
|
||
0, 66, 0, 0, 0, 66, 104, 83, 0, 0,
|
||
66, 66, 0, 0, 103, 105, 0, 0, 0, 0,
|
||
93, 103, 83, 0, 0, 65, 0, 0, 0, 65,
|
||
0, 93, 0, 0, 0, 0, 0, 65, 0, 0,
|
||
66, 0, 0, 0, 66, 231, 0, 0, 0, 0,
|
||
66, 0, 0, 0, 0, 91, 388, 66, 66, 0,
|
||
0, 0, 0, 227, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 105, 0, 104, 83, 0, 83,
|
||
0, -329, -329, 104, 106, 0, 0, 333, 0, 91,
|
||
0, 0, 0, 66, 0, 0, 0, 66, 0, 0,
|
||
0, -329, -329, -329, -329, 66, -329, -329, 91, 0,
|
||
91, 0, -327, -327, 334, 0, 0, 0, 0, 83,
|
||
0, 91, 92, 83, 0, 0, 0, 0, 83, 83,
|
||
0, 261, -327, -327, -327, -327, 91, -327, -327, 0,
|
||
0, 0, 0, 106, 105, 0, 0, 0, 0, 0,
|
||
96, 105, 0, 0, 0, 0, 0, 0, 83, 0,
|
||
233, 96, 83, 0, 0, 0, 0, 0, 83, 0,
|
||
98, 0, -329, 0, 299, 83, 83, 0, 0, 0,
|
||
0, 98, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
93, 91, 0, 91, 0, 0, 0, 0, 92, 429,
|
||
0, 0, 0, -327, 0, 299, 0, 0, 0, 0,
|
||
0, 83, 0, 106, 114, 83, 0, 0, 0, 0,
|
||
106, 0, 0, 83, -322, -322, 430, 0, 0, 0,
|
||
101, 0, 92, 91, 0, 0, 0, 91, 0, 0,
|
||
0, 101, 91, 91, -322, -322, -322, -322, 0, -322,
|
||
-322, 92, 0, 92, 0, 0, 0, 0, 0, 438,
|
||
0, 229, 0, 0, 92, 0, 93, 0, 0, 0,
|
||
0, 0, 91, 114, 0, 0, 91, 0, 0, 92,
|
||
0, 262, 91, 0, -336, -336, 439, 0, 0, 91,
|
||
91, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
93, 0, 0, 0, -336, -336, -336, -336, 0, -336,
|
||
-336, 0, 0, 0, 0, -322, 0, 299, 0, 93,
|
||
96, 93, 0, 0, 0, 91, 0, 0, 0, 91,
|
||
0, 0, 93, 0, 92, 0, 92, 91, 0, 0,
|
||
98, 231, 391, 114, 0, 103, 0, 93, 0, 0,
|
||
114, 0, 0, 0, 0, 0, 103, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, -333, -333, 392,
|
||
0, 0, 0, 0, 0, -336, 92, 299, 0, 0,
|
||
92, 0, 0, 0, 0, 92, 92, -333, -333, -333,
|
||
-333, 0, -333, -333, 0, 0, 96, 0, 0, 0,
|
||
101, 0, 93, 0, 93, 0, 0, 104, 0, 0,
|
||
0, 0, 0, 0, 0, 92, 98, 0, 104, 92,
|
||
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
|
||
96, 0, 92, 92, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 93, 0, 0, 0, 93, 96,
|
||
98, 96, 0, 93, 93, 0, 233, 0, -333, 0,
|
||
0, 0, 96, 0, 0, 0, 0, 0, 92, 98,
|
||
0, 98, 92, 0, 0, 105, 101, 96, 0, 0,
|
||
92, 0, 98, 93, 0, 493, 105, 93, 0, 495,
|
||
496, 497, 0, 93, 0, 0, 0, 98, 0, 0,
|
||
93, 93, 0, 0, 0, 0, 0, 498, 499, 0,
|
||
101, 0, 0, 0, 0, 103, 500, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 101,
|
||
0, 101, 96, 0, 96, 0, 93, 0, 0, 0,
|
||
93, 0, 101, 0, 106, 0, 0, 0, 93, 0,
|
||
0, 0, 98, 0, 98, 106, 0, 101, 0, 0,
|
||
0, 0, 0, 501, 502, 503, 504, 505, 506, 507,
|
||
508, 509, 0, 0, 96, 0, 0, 104, 96, 0,
|
||
0, 0, 0, 96, 96, 0, 0, 0, 0, 0,
|
||
0, 103, 0, 0, 98, 0, 0, 0, 98, 0,
|
||
0, 0, 0, 98, 98, 0, 0, 0, 0, 0,
|
||
0, 0, 101, 96, 101, 0, 0, 96, 0, 0,
|
||
0, 0, 0, 96, 0, 103, 0, 0, 0, 0,
|
||
96, 96, 0, 98, 0, 0, 0, 98, 0, 0,
|
||
0, 0, 0, 98, 103, 105, 103, 0, 0, 0,
|
||
98, 98, 0, 104, 101, 0, 0, 103, 101, 0,
|
||
0, 0, 0, 101, 101, 0, 96, 0, 0, 0,
|
||
96, 0, 103, 0, 114, 0, 0, 0, 96, 0,
|
||
0, 0, 0, 0, 0, 114, 98, 104, 0, 0,
|
||
98, 0, 0, 101, 0, 0, 0, 101, 98, 0,
|
||
0, 0, 0, 101, 0, 0, 104, 0, 104, 0,
|
||
101, 101, 0, 0, 106, 0, 0, 0, 0, 104,
|
||
0, 105, 0, 0, 0, 0, 0, 103, 0, 103,
|
||
0, 0, 0, 0, 104, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 101, 0, 0, 0,
|
||
101, 0, 0, 0, 0, 105, 0, 0, 101, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 103,
|
||
0, 0, 0, 103, 105, 0, 105, 0, 103, 103,
|
||
0, 0, 0, 0, 0, 0, 0, 105, 0, 104,
|
||
106, 104, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 105, 0, 0, 0, 0, 0, 103, 0,
|
||
0, 0, 103, 0, 0, 0, 0, 0, 103, 0,
|
||
0, 0, 0, 0, 106, 103, 103, 0, 0, 0,
|
||
0, 104, 493, 494, 0, 104, 495, 496, 497, 0,
|
||
104, 104, 0, 106, 114, 106, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 498, 499, 106, 105, 0, 105,
|
||
0, 103, 0, 500, 0, 103, 0, 0, 0, 0,
|
||
104, 106, 0, 103, 104, 0, 0, 141, 142, 0,
|
||
104, 0, 0, 0, 0, 0, 0, 104, 104, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 105,
|
||
0, 0, 0, 105, 0, 0, 0, 0, 105, 105,
|
||
501, 502, 503, 504, 505, 506, 507, 508, 509, 0,
|
||
114, 0, 0, 104, 0, 663, 106, 104, 106, 0,
|
||
0, 0, 0, 0, 0, 104, 293, 0, 105, 0,
|
||
0, 0, 105, 0, 0, 0, 0, 0, 105, 0,
|
||
0, 0, 0, 0, 114, 105, 105, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 106, 0,
|
||
0, 0, 106, 114, 0, 114, 0, 106, 106, 0,
|
||
0, 0, 0, 0, 0, 0, 114, 201, 203, 205,
|
||
0, 105, 428, 0, 0, 105, 0, 0, 0, 213,
|
||
0, 114, 0, 105, 0, 0, 0, 106, 0, 0,
|
||
0, 106, 0, 248, 0, 249, 251, 106, 0, 0,
|
||
257, 0, 477, 0, 106, 106, 0, 0, 0, 0,
|
||
283, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
304, 0, 304, 0, 304, 304, 0, 304, 0, 304,
|
||
0, 304, 0, 304, 0, 304, 114, 304, 114, 304,
|
||
106, 304, 357, 304, 106, 0, 0, 304, 0, 0,
|
||
304, 0, 106, 304, 0, 304, 0, 0, 0, 514,
|
||
0, 516, 495, 496, 497, 0, 0, 521, 0, 0,
|
||
0, 304, 0, 304, 0, 0, 0, 0, 114, 0,
|
||
498, 499, 114, 0, 0, 0, 0, 114, 114, 500,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 478, 478, 0, 0, 0, 539, 0, 0, 561,
|
||
0, 0, 0, 0, 0, 0, 0, 114, 0, 0,
|
||
486, 114, 0, 0, 573, 0, 0, 114, 0, 0,
|
||
0, 0, 0, 0, 114, 114, 501, 502, 503, 504,
|
||
505, 506, 507, 508, 509, 589, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 312, 0, 316, 317,
|
||
478, 321, 0, 325, 522, 329, 0, 332, 0, 336,
|
||
114, 339, 0, 346, 114, 353, 379, 385, 0, 0,
|
||
0, 393, 114, 0, 398, 0, 0, 404, 0, 409,
|
||
0, 528, 522, 478, 0, 2, 0, 4, 5, 0,
|
||
6, 151, 152, 9, 0, 436, 0, 442, 565, 11,
|
||
12, 13, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 0, 0, 574, 0, 0, 0, 0, 578, 0,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
0, 161, 30, 162, 0, 0, 0, 590, 591, 0,
|
||
0, 163, 0, 0, 0, 0, 0, 0, 0, 36,
|
||
0, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 164, 45, 0, 0, 48, 0,
|
||
0, 51, 300, 303, 0, 311, 0, 315, 0, 0,
|
||
320, 634, 324, 0, 328, 0, 52, 0, 335, 0,
|
||
338, 55, 0, 56, 352, 57, 0, 0, 387, 390,
|
||
0, 0, 0, 397, 0, 402, 0, 650, 408, 0,
|
||
0, 0, 0, 655, 0, 0, 661, 0, 662, 0,
|
||
0, 0, 0, 431, 435, 0, 441, 0, 0, 0,
|
||
0, 0, 0, 0, 493, 494, 283, 0, 495, 496,
|
||
497, 0, 0, 0, 0, 0, 0, 686, 0, 688,
|
||
0, 0, 283, 0, 0, 0, 498, 499, 0, 0,
|
||
697, 0, 0, 0, 0, 500, 0, 703, 0, 0,
|
||
706, 707, 0, 710, 0, 300, 303, 311, 315, 320,
|
||
324, 328, 0, 335, 338, 0, 352, 387, 390, 0,
|
||
397, 0, 402, 408, 0, 0, 0, 0, 0, 0,
|
||
721, 0, 0, 0, 0, 431, 435, 441, 0, 739,
|
||
586, 0, 501, 502, 503, 504, 505, 506, 507, 508,
|
||
509, 300, 303, 311, 315, 320, 324, 328, 0, 335,
|
||
338, 0, 352, 387, 390, 0, 397, 402, 408, 0,
|
||
0, 431, 435, 441, 0, 0, 689, 0, 690, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 352, 387, 0, 402,
|
||
435, 712, 0, 0, 0, 0, 716, 0, 0, 0,
|
||
0, 768, 0, 0, 0, 717, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 726, 0, 0, 257, 2, 0, 0, 0, 0,
|
||
0, 151, 152, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 791, 0, 0, 0, 0, 0, 0, 0, 796,
|
||
0, 797, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
809, 0, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
188, 0, 0, 765, 766, 328, 0, 0, 0, 0,
|
||
208, 209, 0, 41, 823, 0, 825, 0, 0, 0,
|
||
0, 0, 0, 478, 164, 0, 0, 0, 48, 835,
|
||
0, 0, 838, 840, 841, 0, 2, 0, 844, 0,
|
||
267, 847, 151, 152, 0, 271, 280, 0, 53, 54,
|
||
0, 0, 0, 153, 154, 155, 478, 156, 0, 792,
|
||
0, 158, 0, 794, 795, 0, 859, 0, 0, 0,
|
||
0, 0, 0, 159, 802, 160, 712, 0, 27, 28,
|
||
0, 810, 802, 30, 162, 0, 0, 815, 726, 0,
|
||
0, 0, 163, 0, 0, 0, 0, 818, 0, 0,
|
||
0, 0, 0, 885, 0, 426, 0, 0, 0, 0,
|
||
890, 0, 0, 893, 800, 0, 0, 0, 0, 0,
|
||
0, 0, 470, 0, 0, 164, 0, 0, 0, 48,
|
||
0, 0, 0, 476, 0, 0, 915, 0, 0, 0,
|
||
482, 0, 0, 0, 0, 0, 0, 483, 801, 0,
|
||
0, 0, 0, 0, 0, 484, 485, 0, 0, 0,
|
||
0, 0, 933, 861, 862, 0, 0, 0, 0, 0,
|
||
940, 941, 0, 0, 0, 0, 947, 0, 0, 0,
|
||
726, 0, 0, 0, 952, 953, 0, 881, 956, 881,
|
||
0, 958, 959, 0, 0, 0, 0, 2, 0, 0,
|
||
881, 0, 881, 151, 152, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 153, 154, 155, 387, 156, 0,
|
||
402, 0, 158, 905, 0, 0, 0, 0, 911, 0,
|
||
978, 810, 534, 980, 159, 0, 160, 0, 0, 27,
|
||
28, 0, 0, 0, 30, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 163, 0, 0, 572, 0, 271, 0,
|
||
0, 0, 493, 494, 938, 0, 495, 496, 497, 0,
|
||
0, 0, 0, 948, 0, 41, 951, 0, 0, 0,
|
||
0, 0, 955, 0, 498, 499, 164, 0, 593, 595,
|
||
48, 0, 599, 500, 0, 0, 0, 0, 0, 600,
|
||
0, 0, 0, 601, 0, 0, 0, 0, 602, 860,
|
||
0, 0, 603, 974, 0, 0, 604, 0, 0, 0,
|
||
605, 0, 0, 606, 0, 0, 0, 607, 0, 0,
|
||
0, 608, 0, 0, 0, 0, 0, 0, 610, 0,
|
||
501, 502, 503, 504, 505, 506, 507, 508, 509, 0,
|
||
0, 0, 0, 53, 54, 0, 997, 998, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 435, 0,
|
||
0, 0, 0, 0, 0, 0, 612, 0, 613, 0,
|
||
0, 614, 0, 0, 615, 0, 0, 0, 399, 616,
|
||
0, 0, 0, 0, 0, 619, 0, 0, 0, 0,
|
||
0, 0, 620, 621, 622, 623, 624, 625, 626, 0,
|
||
0, 0, 0, -337, -337, 400, 0, 0, 0, 631,
|
||
0, 0, 632, 0, 0, 0, 0, 0, 633, 0,
|
||
0, 0, 0, -337, -337, -337, -337, 0, -337, -337,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, -286, -286, -286, -286, -286, -286, -286, -286,
|
||
-286, 0, 0, 0, 0, -286, -286, -286, -286, -286,
|
||
-286, -286, -286, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 669, 670, 671, 672, 673, 674, 675,
|
||
676, 677, 678, 679, 680, 681, 682, 683, 684, 685,
|
||
401, 0, 0, 0, -337, 0, 299, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 698, 0, 0, 0,
|
||
0, 0, 705, 0, 2, 0, 4, 5, 0, 6,
|
||
151, 152, 9, 0, 0, 0, 0, 0, 11, 12,
|
||
13, 153, 154, 155, 0, 156, 0, 0, 157, 158,
|
||
0, 0, 0, 20, 21, 0, 0, 0, 730, 0,
|
||
735, 159, 0, 160, 0, 742, 27, 28, 0, 0,
|
||
161, 30, 162, 0, 743, 0, 0, 0, 0, 0,
|
||
163, 0, 0, 0, 0, 0, 0, 595, 36, 0,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 164, 45, 0, 0, 48, 758, 0,
|
||
51, 273, 274, 0, 0, 762, 0, 0, 165, 166,
|
||
0, 0, 0, 767, 0, 52, 275, 0, 0, 0,
|
||
55, 773, 56, 0, 57, 0, 778, 0, 0, 0,
|
||
0, -3, 1, 0, -26, -26, 2, 3, 4, 5,
|
||
0, 6, 7, 8, 9, 10, 0, 0, 0, 0,
|
||
11, 12, 13, 14, 15, 16, 17, 18, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
|
||
0, 0, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 730, 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, 595, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 836, 0, 0, 0, 0, 0, 843,
|
||
0, 0, 0, 0, 0, 848, 0, 52, 0, 53,
|
||
54, 0, 55, 850, 56, 0, 57, 0, 854, 0,
|
||
0, 0, 0, 0, 0, 0, 540, 541, 542, 543,
|
||
544, 545, 546, 547, 548, 0, 0, 0, 0, 549,
|
||
550, 551, 552, 553, 554, 555, 556, 730, 0, 735,
|
||
0, 0, 0, -2, 288, 0, -26, -26, 2, 3,
|
||
4, 5, 0, 6, 7, 8, 9, 10, 0, 0,
|
||
0, 0, 11, 12, 13, 14, 15, 16, 17, 18,
|
||
656, 897, 0, 19, 0, 0, 899, 20, 21, 0,
|
||
22, 0, 0, 0, 0, 23, 24, 25, 26, 0,
|
||
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
|
||
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
|
||
35, 0, 36, 37, 38, 39, 934, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, 50, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 962, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 451, 57, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 452, 9,
|
||
10, -115, -115, -115, -115, 11, 12, 13, 14, 15,
|
||
16, 453, 454, 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, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 50, 51, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 52, 0, 53, 54, 0, 55, 0, 56,
|
||
-115, 57, 451, 0, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 452, 9, 10, 0, 0, -527, 0,
|
||
11, 12, 13, 14, 15, 16, 453, 454, 0, 0,
|
||
0, 19, 0, 0, 0, 20, 21, 0, 22, -527,
|
||
-527, -527, 0, 23, 24, 25, 26, 0, 27, 28,
|
||
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
|
||
0, 0, 32, 33, 34, 0, 0, 0, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 451, 57, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 452, 9, 10, 0,
|
||
0, -528, 0, 11, 12, 13, 14, 15, 16, 453,
|
||
454, 0, 0, 0, 19, 0, 0, 0, 20, 21,
|
||
0, 22, -528, -528, -528, 0, 23, 24, 25, 26,
|
||
0, 27, 28, 0, 0, 29, 30, 31, 0, 0,
|
||
0, 0, 0, 0, 0, 32, 33, 34, 0, 0,
|
||
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
52, 0, 53, 54, 0, 55, 0, 56, 451, 57,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 452,
|
||
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
|
||
15, 16, 453, 454, 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, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 50, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 451, 57, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 452, 9, 10, -114, -114, -114, -114, 11,
|
||
12, 13, 14, 15, 16, 453, 454, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
50, 51, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 52, 0, 53, 54,
|
||
0, 55, 0, 56, 451, 57, -108, -108, 2, 3,
|
||
4, 5, 0, 6, 7, 452, 9, 10, 0, 0,
|
||
-114, 0, 11, 12, 13, 14, 15, 16, 453, 454,
|
||
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,
|
||
35, 0, 36, 37, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 40, 41, 42, 43, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 44, 45, 46,
|
||
47, 48, 49, 50, 51, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 52,
|
||
0, 53, 54, 0, 55, 0, 56, 451, 57, -108,
|
||
-108, 2, 3, 4, 5, 0, 6, 7, 452, 9,
|
||
10, 0, 0, -578, 0, 11, 12, 13, 14, 15,
|
||
16, 453, 454, 0, 0, 0, 19, 0, 0, 0,
|
||
20, 21, 0, 22, -578, -578, 0, 0, 23, 24,
|
||
25, 26, 0, 27, 28, 0, 0, 29, 30, 31,
|
||
0, 0, 0, 0, 0, 0, 0, 32, 33, 34,
|
||
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
|
||
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
44, 45, 46, 47, 48, 49, 50, 51, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 52, 0, 53, 54, 0, 55, 0, 56,
|
||
451, 57, -108, -108, 2, 3, 4, 5, 0, 6,
|
||
7, 452, 9, 10, 0, 0, -579, 0, 11, 12,
|
||
13, 14, 15, 16, 453, 454, 0, 0, 0, 19,
|
||
0, 0, 0, 20, 21, 0, 22, -579, -579, 0,
|
||
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
|
||
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
|
||
32, 33, 34, 0, 0, 0, 35, 0, 36, 37,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 40, 41, 42, 43, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 44, 45, 46, 47, 48, 49, 50,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 52, 0, 53, 54, 0,
|
||
55, 0, 56, 451, 57, -108, -108, 2, 3, 4,
|
||
5, 0, 6, 7, 452, 9, 10, 0, 0, -114,
|
||
0, 11, 12, 13, 14, 15, 16, 453, 454, 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, 35,
|
||
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
|
||
48, 49, 50, 51, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 52, 0,
|
||
53, 54, 0, 55, 0, 56, 451, 57, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 452, 9, 10,
|
||
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
|
||
453, 454, 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, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 451,
|
||
57, -108, -108, 2, 3, 4, 5, 0, 6, 7,
|
||
452, 9, 10, 0, 0, -114, -114, 11, 12, 13,
|
||
14, 15, 16, 453, 454, 0, 0, 0, 19, 0,
|
||
0, 0, 20, 21, 0, 22, 0, 0, 0, 0,
|
||
23, 24, 25, 26, 0, 27, 28, 0, 0, 29,
|
||
30, 31, 0, 0, 0, 0, 0, 0, 0, 32,
|
||
33, 34, 0, 0, 0, 35, 0, 36, 37, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 44, 45, 46, 47, 48, 49, 50, 51,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 52, 0, 53, 54, 0, 55,
|
||
0, 56, 451, 57, -108, -108, 2, 3, 4, 5,
|
||
0, 6, 7, 452, 9, 10, 0, 0, -114, 0,
|
||
11, 12, 13, 14, 15, 16, 453, 454, 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, 35, 0,
|
||
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 40, 41, 42, 43, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
|
||
49, 50, 51, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 52, 0, 53,
|
||
54, 0, 55, 0, 56, 451, 57, -108, -108, 2,
|
||
3, 4, 5, 0, 6, 7, 452, 9, 10, 0,
|
||
0, -114, 0, 11, 12, 13, 14, 15, 16, 453,
|
||
454, 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, 35, 0, 36, 37, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
|
||
46, 47, 48, 49, 50, 51, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
52, 0, 53, 54, 0, 55, 0, 56, 451, 57,
|
||
-108, -108, 2, 3, 4, 5, 0, 6, 7, 452,
|
||
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
|
||
15, 16, 453, 454, 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, 35, 0, 36, 37, 38, 39,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 40,
|
||
41, 42, 43, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 44, 45, 46, 47, 48, 49, 50, 51, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 52, 0, 53, 54, 0, 55, 0,
|
||
56, 451, 57, -108, -108, 2, 3, 4, 5, 0,
|
||
6, 7, 452, 9, 10, 0, 0, 0, 0, 11,
|
||
12, 13, 14, 15, 16, 453, 454, 0, 0, 0,
|
||
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
|
||
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
|
||
0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
|
||
0, 32, 33, 34, 0, 0, 0, 35, 0, 36,
|
||
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
|
||
50, 51, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 52, 0, 53, 54,
|
||
0, 55, 0, 56, -114, 57, 451, 0, -108, -108,
|
||
2, 3, 4, 5, 0, 6, 7, 452, 9, 10,
|
||
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
|
||
453, 454, 0, 0, 0, 19, 0, 0, 0, 20,
|
||
21, 0, 22, 0, 0, 0, 0, 23, 24, 25,
|
||
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
|
||
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
|
||
0, 0, 35, 0, 36, 37, 38, 39, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 40, 41, 42,
|
||
43, 0, 0, 0, 0, 0, 0, 0, 0, 44,
|
||
45, 46, 47, 48, 49, 50, 51, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 52, 0, 53, 54, 0, 55, 0, 56, 2,
|
||
57, 4, 5, 0, 6, 151, 152, 9, 0, 0,
|
||
0, 0, 0, 11, 12, 13, 153, 154, 155, 0,
|
||
156, 0, 0, 157, 158, 0, 0, 0, 20, 21,
|
||
0, 0, 0, 0, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 0, 0, 161, 30, 162, 0, 0,
|
||
0, 0, 0, 0, 0, 163, 0, 0, 0, 0,
|
||
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 164, 45,
|
||
0, 0, 48, 0, 0, 51, 0, 0, 0, 0,
|
||
0, 0, 0, 165, 166, 0, 0, 0, 0, 0,
|
||
52, 167, 53, 54, 0, 55, 0, 56, 2, 57,
|
||
4, 5, 0, 6, 151, 152, 9, 0, 0, 0,
|
||
0, 0, 11, 12, 13, 153, 154, 155, 0, 156,
|
||
0, 0, 157, 158, 0, 0, 0, 20, 21, 0,
|
||
0, 0, 0, 0, 0, 159, 0, 160, 0, 0,
|
||
27, 28, 0, 0, 161, 30, 162, 0, 0, 0,
|
||
0, 0, 0, 0, 163, 0, 0, 0, 0, 0,
|
||
0, 0, 36, 0, 38, 39, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 41, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 164, 45, 0,
|
||
0, 48, 0, 0, 51, 594, 0, 0, 0, 0,
|
||
0, 0, 165, 166, 0, 0, 0, 0, 0, 52,
|
||
167, 0, 0, 0, 55, 0, 56, 2, 57, 4,
|
||
5, 0, 6, 151, 152, 9, 0, 0, 0, 0,
|
||
0, 11, 12, 13, 153, 154, 155, 0, 156, 0,
|
||
0, 157, 158, 0, 0, 0, 20, 21, 0, 0,
|
||
0, 0, 0, 0, 159, 0, 160, 0, 0, 27,
|
||
28, 0, 0, 161, 30, 162, 0, 0, 0, 0,
|
||
0, 0, 0, 163, 0, 0, 0, 0, 0, 0,
|
||
0, 36, 0, 38, 39, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 164, 45, 0, 0,
|
||
48, 0, 0, 51, 0, 0, 0, 0, 0, 0,
|
||
0, 165, 166, 0, 0, 0, 0, 0, 52, 275,
|
||
0, 0, 725, 55, 0, 56, 2, 57, 4, 5,
|
||
0, 6, 151, 152, 9, 0, 0, 0, 0, 0,
|
||
11, 12, 13, 153, 154, 155, 0, 156, 0, 0,
|
||
157, 158, 0, 0, 0, 20, 21, 0, 0, 0,
|
||
0, 0, 0, 159, 0, 160, 0, 0, 27, 28,
|
||
0, 0, 161, 30, 162, 0, 0, 0, 0, 0,
|
||
0, 0, 163, 0, 0, 0, 0, 0, 0, 0,
|
||
36, 0, 38, 39, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 164, 45, 0, 0, 48,
|
||
0, 0, 51, 273, 0, 0, 0, 0, 0, 0,
|
||
165, 166, 0, 0, 0, 0, 0, 52, 275, 0,
|
||
0, 0, 55, 0, 56, 2, 57, 4, 5, 0,
|
||
6, 151, 152, 9, 0, 0, 0, 0, 0, 11,
|
||
12, 13, 153, 154, 155, 0, 156, 0, 0, 157,
|
||
158, 0, 0, 0, 20, 21, 0, 0, 0, 0,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 0,
|
||
0, 161, 30, 162, 0, 0, 0, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 0, 0, 0, 0, 36,
|
||
0, 38, 39, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 164, 45, 0, 0, 48, 0,
|
||
0, 51, 0, 0, 0, 0, 0, 0, 0, 165,
|
||
166, 0, 0, 0, 0, 0, 52, 167, 0, 0,
|
||
0, 55, 0, 56, 2, 57, 4, 5, 0, 6,
|
||
151, 152, 9, 0, 0, 0, 0, 0, 11, 12,
|
||
13, 153, 154, 155, 0, 156, 0, 0, 157, 158,
|
||
0, 0, 0, 20, 21, 0, 0, 0, 0, 0,
|
||
0, 159, 0, 160, 0, 0, 27, 28, 0, 0,
|
||
161, 30, 162, 0, 0, 0, 0, 0, 0, 0,
|
||
163, 0, 0, 0, 0, 0, 0, 0, 36, 0,
|
||
38, 39, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 41, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 164, 45, 0, 0, 48, 0, 0,
|
||
51, 0, 0, 0, 0, 0, 0, 0, 165, 166,
|
||
0, 0, 0, 0, 0, 52, 270, 0, 0, 0,
|
||
55, 0, 56, 2, 57, 4, 5, 0, 6, 151,
|
||
152, 9, 0, 0, 0, 0, 0, 11, 12, 13,
|
||
153, 154, 155, 0, 156, 0, 0, 157, 158, 0,
|
||
0, 0, 20, 21, 0, 0, 0, 0, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 0, 161,
|
||
30, 162, 0, 0, 0, 0, 0, 0, 0, 163,
|
||
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
|
||
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 164, 45, 0, 0, 48, 0, 0, 51,
|
||
0, 0, 0, 0, 0, 0, 0, 165, 166, 0,
|
||
0, 0, 0, 0, 52, 734, 0, 0, 0, 55,
|
||
0, 56, 2, 57, 4, 5, 0, 6, 151, 152,
|
||
9, 0, 0, 0, 0, 0, 11, 12, 13, 153,
|
||
154, 155, 0, 156, 0, 0, 157, 158, 0, 0,
|
||
0, 20, 21, 0, 0, 0, 0, 0, 0, 159,
|
||
0, 160, 0, 0, 27, 28, 0, 0, 161, 30,
|
||
162, 0, 0, 0, 0, 0, 0, 0, 163, 0,
|
||
0, 0, 0, 0, 0, 0, 36, 0, 38, 39,
|
||
0, 493, 494, 0, 0, 495, 496, 497, 0, 0,
|
||
41, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 164, 45, 498, 499, 48, 0, 0, 51, 0,
|
||
0, 0, 500, 0, 0, 0, 165, 166, 0, 0,
|
||
0, 0, 0, 52, 275, 0, 0, 0, 55, 0,
|
||
56, 2, 57, 4, 355, 0, 356, 151, 152, 9,
|
||
0, 0, 0, 0, 0, 11, 12, 13, 153, 154,
|
||
155, 0, 156, 0, 0, 0, 158, 822, 0, 501,
|
||
502, 503, 504, 505, 506, 507, 508, 509, 159, 0,
|
||
160, 0, 0, 27, 28, 0, 0, 0, 30, 162,
|
||
0, 0, 0, 0, 0, 0, 322, 163, 0, 0,
|
||
0, 0, 0, 0, 0, 36, 0, 38, 39, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, -324, -324, 323, 0, 0, 0, 0, 0, 0,
|
||
164, 45, 0, 0, 48, 0, 0, 0, 0, 0,
|
||
0, -324, -324, -324, -324, 0, -324, -324, 0, 0,
|
||
0, 0, 52, 0, 0, 0, 394, 268, 0, 56,
|
||
-271, -271, -271, -271, -271, -271, -271, -271, -271, 0,
|
||
0, 0, 0, -271, -271, -271, -271, -271, -271, -271,
|
||
-271, -335, -335, 395, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, -335, -335, -335, -335, 0, -335, -335, 0, 0,
|
||
0, 0, -324, 0, 299, 0, 405, 0, 0, 0,
|
||
-282, -282, -282, -282, -282, -282, -282, -282, -282, 0,
|
||
0, 0, 0, -282, -282, -282, -282, -282, -282, -282,
|
||
-282, -338, -338, 406, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, -338, -338, -338, -338, 0, -338, -338, 0, 0,
|
||
0, 0, -335, 0, 299, 0, 432, 0, 0, 0,
|
||
-289, -289, -289, -289, -289, -289, -289, -289, -289, 0,
|
||
0, 0, 0, -289, -289, -289, -289, -289, -289, -289,
|
||
-289, -334, -334, 433, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, -334, -334, -334, -334, 0, -334, -334, 0, 0,
|
||
0, 0, -338, 0, 299, 0, 337, 0, 0, 0,
|
||
-304, -304, -304, -304, -304, -304, -304, -304, -304, 0,
|
||
0, 0, 0, -304, -304, -304, -304, -304, -304, -304,
|
||
-304, -332, -332, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
0, -332, -332, -332, -332, 0, -332, -332, 0, 0,
|
||
0, 0, -334, 0, 299, 0, 0, 0, 0, 0,
|
||
-302, -302, -302, -302, -302, -302, -302, -302, -302, 0,
|
||
0, 0, 0, -302, -302, -302, -302, -302, -302, -302,
|
||
-302, 2, 0, 0, 0, 0, 0, 151, 152, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 0, 153, 154,
|
||
155, 0, 156, 0, 0, 0, 158, 0, 0, 0,
|
||
0, 0, -332, 0, 299, 0, 0, 0, 159, 0,
|
||
160, 0, 0, 27, 28, 2, 0, 0, 30, 162,
|
||
0, 151, 152, 0, 0, 0, 0, 163, 0, 0,
|
||
0, 0, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 0, 0, 0, 0, 0, 0, 0, 0, 800,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 2,
|
||
164, 0, 30, 162, 48, 151, 152, 0, 0, 0,
|
||
0, 163, 0, 0, 0, 0, 153, 154, 155, 0,
|
||
156, 0, 0, 910, 158, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 2, 164, 0, 30, 162, 48, 151,
|
||
152, 0, 0, 0, 0, 163, 0, 0, 0, 0,
|
||
153, 154, 155, 0, 156, 38, 39, 950, 158, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 2, 164, 0,
|
||
30, 162, 48, 151, 152, 0, 0, 0, 0, 163,
|
||
0, 0, 0, 0, 153, 154, 155, 0, 156, 0,
|
||
52, 0, 158, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 41, 0, 0, 159, 0, 160, 0, 0, 27,
|
||
28, 2, 164, 0, 30, 162, 48, 151, 152, 0,
|
||
564, 0, 0, 163, 0, 0, 0, 0, 153, 154,
|
||
155, 0, 156, 0, 0, 0, 158, 0, 0, 0,
|
||
0, 0, 0, 0, 0, 41, 0, 0, 159, 0,
|
||
160, 0, 0, 27, 28, 2, 164, 0, 30, 162,
|
||
48, 151, 152, 0, 814, 0, 0, 163, 0, 0,
|
||
0, 0, 153, 154, 155, 0, 156, 0, 0, 0,
|
||
158, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
||
0, 0, 159, 0, 160, 0, 0, 27, 28, 2,
|
||
164, 0, 30, 162, 48, 151, 152, 0, 878, 0,
|
||
0, 163, 0, 0, 0, 0, 153, 154, 155, 0,
|
||
156, 0, 0, 0, 158, 0, 0, 0, 0, 0,
|
||
0, 0, 0, 41, 0, 0, 159, 0, 160, 0,
|
||
0, 27, 28, 2, 164, 0, 30, 162, 48, 151,
|
||
152, 0, 954, 0, 0, 163, 0, 0, 0, 0,
|
||
153, 154, 155, 0, 156, 38, 39, 0, 158, 0,
|
||
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
|
||
159, 0, 160, 0, 0, 27, 28, 0, 164, 0,
|
||
30, 162, 48, 0, 0, 0, 493, 494, 0, 163,
|
||
495, 496, 497, 0, 0, 0, 493, 494, 0, 0,
|
||
495, 496, 497, 0, 0, 0, 0, 936, 498, 499,
|
||
0, 41, 0, 0, 0, 0, 0, 500, 498, 499,
|
||
0, 0, 164, 0, 0, 0, 48, 500, 0, 0,
|
||
0, 0, 0, 0, 0, 540, 541, 542, 543, 544,
|
||
545, 546, 547, 548, 0, 0, 0, 0, 549, 550,
|
||
551, 552, 553, 554, 555, 556, 0, 0, 0, 0,
|
||
0, 0, 0, 0, 501, 502, 503, 504, 505, 506,
|
||
507, 508, 509, 0, 501, 502, 503, 504, 505, 506,
|
||
507, 508, 509, 907, 540, 541, 542, 543, 544, 545,
|
||
546, 547, 548, 0, 0, 0, 0, 549, 550, 551,
|
||
552, 553, 554, 555, 556, 540, 541, 542, 543, 544,
|
||
545, 546, 547, 548, 0, 0, 0, 0, 549, 550,
|
||
551, 552, 553, 554, 555, 556, 0, 0, 0, 0,
|
||
0, 0, 942, 0, 0, 0, 0, 0, 0, 0,
|
||
0, 540, 541, 542, 543, 544, 545, 546, 547, 548,
|
||
0, 0, 0, 972, 549, 550, 551, 552, 553, 554,
|
||
555, 556, 540, 541, 542, 543, 544, 545, 546, 547,
|
||
548, 0, 0, 0, 0, 549, 550, 551, 552, 553,
|
||
554, 555, 556, 0, 0, 0, 0, 0, 0, 984
|
||
};
|
||
|
||
static const yytype_int16 yycheck[] =
|
||
{
|
||
0, 167, 56, 148, 149, 460, 586, 663, 448, 449,
|
||
538, 568, 9, 568, 725, 9, 471, 568, 713, 9,
|
||
468, 469, 597, 718, 36, 9, 26, 9, 36, 658,
|
||
9, 9, 9, 36, 9, 35, 121, 36, 9, 36,
|
||
9, 17, 36, 942, 0, 36, 36, 47, 9, 9,
|
||
36, 826, 36, 36, 36, 17, 9, 57, 36, 59,
|
||
3, 4, 837, 692, 839, 36, 9, 67, 9, 69,
|
||
46, 71, 72, 972, 74, 0, 76, 36, 78, 41,
|
||
80, 120, 82, 36, 84, 984, 86, 126, 88, 89,
|
||
90, 34, 35, 36, 94, 36, 9, 97, 36, 36,
|
||
100, 26, 102, 59, 270, 10, 817, 3, 4, 275,
|
||
35, 54, 55, 56, 57, 127, 59, 60, 118, 127,
|
||
120, 36, 47, 36, 118, 119, 125, 121, 105, 129,
|
||
127, 121, 57, 127, 59, 121, 136, 127, 121, 118,
|
||
119, 127, 67, 127, 69, 127, 71, 72, 127, 74,
|
||
0, 76, 127, 78, 9, 80, 127, 82, 127, 84,
|
||
19, 86, 105, 88, 89, 90, 127, 127, 725, 94,
|
||
725, 478, 97, 868, 725, 100, 26, 102, 121, 754,
|
||
36, 36, 125, 121, 127, 713, 127, 125, 125, 127,
|
||
127, 36, 121, 118, 3, 120, 852, 47, 638, 647,
|
||
71, 72, 52, 9, 129, 118, 119, 207, 121, 59,
|
||
517, 136, 127, 0, 127, 522, 25, 67, 0, 9,
|
||
9, 528, 118, 119, 125, 34, 630, 127, 34, 35,
|
||
36, 36, 36, 36, 84, 52, 86, 17, 88, 89,
|
||
240, 52, 822, 9, 26, 116, 36, 36, 54, 55,
|
||
56, 57, 36, 59, 60, 0, 125, 9, 565, 0,
|
||
817, 9, 817, 118, 119, 47, 817, 36, 118, 125,
|
||
36, 127, 127, 36, 36, 275, 85, 59, 87, 129,
|
||
58, 36, 127, 92, 36, 26, 136, 96, 36, 36,
|
||
3, 4, 101, 36, 0, 104, 105, 106, 107, 105,
|
||
36, 51, 706, 120, 759, 114, 47, 89, 117, 120,
|
||
119, 68, 9, 129, 59, 121, 125, 121, 59, 125,
|
||
136, 127, 127, 127, 127, 36, 0, 907, 118, 119,
|
||
139, 19, 36, 111, 112, 113, 740, 127, 127, 36,
|
||
403, 118, 119, 127, 36, 3, 4, 129, 89, 120,
|
||
275, 9, 26, 59, 136, 126, 419, 761, 121, 121,
|
||
17, 127, 942, 125, 127, 127, 118, 119, 772, 109,
|
||
118, 119, 127, 47, 68, 127, 34, 35, 36, 127,
|
||
127, 38, 39, 787, 127, 59, 9, 121, 129, 120,
|
||
970, 127, 972, 124, 121, 136, 54, 55, 56, 57,
|
||
122, 59, 60, 403, 984, 118, 119, 125, 105, 127,
|
||
121, 34, 35, 36, 125, 89, 127, 121, 120, 419,
|
||
36, 125, 124, 127, 121, 275, 118, 119, 120, 121,
|
||
17, 54, 55, 56, 57, 17, 59, 60, 842, 124,
|
||
844, 488, 489, 490, 491, 492, 609, 105, 611, 121,
|
||
0, 38, 39, 40, 617, 129, 36, 39, 40, 120,
|
||
460, 120, 136, 121, 511, 124, 9, 125, 36, 127,
|
||
120, 471, 52, 120, 124, 122, 26, 120, 403, 122,
|
||
884, 120, 105, 122, 888, 792, 118, 119, 795, 893,
|
||
894, 34, 35, 275, 419, 802, 58, 47, 121, 806,
|
||
118, 119, 125, 121, 127, 34, 35, 19, 815, 59,
|
||
36, 54, 55, 56, 57, 660, 59, 60, 0, 923,
|
||
36, 118, 119, 927, 121, 54, 55, 56, 57, 933,
|
||
59, 60, 36, 587, 275, 460, 940, 941, 17, 89,
|
||
120, 121, 36, 120, 26, 122, 471, 109, 110, 111,
|
||
112, 113, 3, 4, 861, 862, 120, 864, 122, 38,
|
||
39, 40, 120, 870, 122, 47, 36, 120, 734, 122,
|
||
36, 571, 128, 120, 881, 122, 980, 59, 120, 129,
|
||
122, 36, 125, 36, 127, 120, 136, 9, 15, 16,
|
||
17, 18, 36, 0, 17, 18, 125, 121, 905, 49,
|
||
50, 275, 3, 4, 911, 38, 39, 89, 58, 73,
|
||
460, 36, 34, 35, 36, 15, 16, 17, 18, 26,
|
||
121, 471, 86, 87, 88, 89, 90, 91, 92, 93,
|
||
630, 127, 54, 55, 56, 57, 9, 59, 60, 58,
|
||
47, 948, 9, 19, 951, 120, 571, 129, 955, 120,
|
||
9, 124, 59, 121, 136, 9, 106, 107, 108, 109,
|
||
110, 111, 112, 113, 118, 119, 120, 974, 127, 118,
|
||
119, 120, 118, 119, 120, 34, 35, 36, 460, 118,
|
||
119, 120, 89, 117, 118, 119, 121, 34, 35, 471,
|
||
118, 119, 120, 693, 120, 54, 55, 56, 57, 47,
|
||
59, 60, 122, 125, 120, 630, 706, 54, 55, 56,
|
||
57, 120, 59, 60, 118, 119, 120, 122, 568, 460,
|
||
98, 571, 129, 121, 122, 275, 64, 65, 5, 136,
|
||
471, 17, 83, 122, 11, 12, 0, 120, 122, 66,
|
||
740, 122, 122, 122, 17, 22, 23, 24, 59, 26,
|
||
692, 237, 89, 30, 89, 89, 89, 89, 105, 759,
|
||
89, 761, 26, 89, 89, 42, 125, 44, 127, 89,
|
||
47, 48, 772, 827, 89, 52, 53, 89, 125, 89,
|
||
630, 706, 89, 47, 61, 89, 460, 787, 149, 571,
|
||
693, 517, 240, 275, 239, 59, 719, 471, 970, 865,
|
||
449, 468, 988, 571, 819, 653, 83, 653, -1, -1,
|
||
535, -1, -1, -1, -1, 740, -1, 94, -1, -1,
|
||
-1, 98, -1, -1, -1, 89, -1, -1, -1, -1,
|
||
571, -1, 9, -1, 759, -1, 761, -1, -1, -1,
|
||
-1, -1, 842, -1, 844, -1, 123, 772, 630, -1,
|
||
-1, -1, -1, -1, -1, -1, 706, 34, 35, 36,
|
||
-1, -1, 787, -1, -1, 129, -1, -1, 275, -1,
|
||
-1, -1, 136, -1, -1, 725, -1, 54, 55, 56,
|
||
57, -1, 59, 60, 884, -1, -1, -1, 888, 630,
|
||
740, -1, -1, 893, 894, -1, -1, 571, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 759,
|
||
460, 761, -1, -1, -1, -1, -1, 842, -1, 844,
|
||
-1, 471, 772, 923, 706, -1, -1, 927, 105, -1,
|
||
-1, -1, -1, 933, -1, -1, 9, 787, 0, -1,
|
||
940, 941, -1, -1, 121, -1, -1, -1, 125, -1,
|
||
127, -1, -1, -1, -1, -1, 630, -1, 740, 884,
|
||
-1, 34, 35, 888, 26, 706, -1, 817, 893, 894,
|
||
-1, -1, -1, -1, -1, -1, 976, 759, 460, 761,
|
||
980, 54, 55, 56, 57, 47, 59, 60, 988, 471,
|
||
772, -1, 842, -1, 844, -1, -1, 59, 923, 740,
|
||
-1, -1, 927, -1, -1, 787, -1, -1, 933, -1,
|
||
-1, 275, -1, -1, -1, 940, 941, -1, 759, -1,
|
||
761, 571, -1, -1, -1, -1, -1, 89, -1, -1,
|
||
-1, 772, 706, -1, 884, -1, -1, -1, 888, -1,
|
||
-1, -1, -1, 893, 894, -1, 787, -1, -1, -1,
|
||
-1, 976, 125, 460, 127, 980, -1, -1, -1, -1,
|
||
842, -1, 844, 988, 471, -1, 740, 129, -1, -1,
|
||
-1, -1, -1, 923, 136, -1, -1, 927, -1, -1,
|
||
630, -1, -1, 933, -1, 759, -1, 761, -1, 571,
|
||
940, 941, -1, -1, -1, -1, -1, -1, 772, -1,
|
||
-1, 842, 884, 844, -1, -1, 888, -1, -1, -1,
|
||
-1, 893, 894, 787, 0, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 976, -1, -1, -1,
|
||
980, -1, -1, -1, -1, -1, -1, -1, 988, -1,
|
||
26, 923, -1, 884, -1, 927, -1, 888, 630, -1,
|
||
-1, 933, 893, 894, -1, -1, 706, -1, 940, 941,
|
||
-1, 47, -1, -1, 571, -1, -1, -1, 842, -1,
|
||
844, -1, -1, 59, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 923, -1, -1, -1, 927, -1, -1, 0,
|
||
740, -1, 933, -1, 976, -1, 460, -1, 980, 940,
|
||
941, -1, -1, 89, -1, -1, 988, 471, -1, 759,
|
||
884, 761, -1, 275, 888, 26, -1, -1, -1, 893,
|
||
894, -1, 772, 630, 706, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 976, 47, 787, -1, 980,
|
||
-1, -1, -1, 129, -1, -1, -1, 988, 59, 923,
|
||
136, -1, -1, 927, -1, -1, -1, 0, 740, 933,
|
||
-1, -1, -1, -1, -1, -1, 940, 941, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 759, -1, 761,
|
||
-1, -1, -1, 26, -1, -1, -1, -1, -1, -1,
|
||
772, -1, 842, -1, 844, -1, -1, -1, -1, 706,
|
||
-1, -1, 976, 5, 47, 787, 980, 571, -1, 11,
|
||
12, -1, -1, -1, 988, -1, 59, -1, 129, -1,
|
||
22, 23, 24, -1, 26, 136, -1, -1, 30, -1,
|
||
-1, -1, -1, 740, 884, -1, -1, -1, 888, -1,
|
||
42, -1, 44, 893, 894, 47, 48, -1, -1, -1,
|
||
52, 53, 759, -1, 761, -1, -1, -1, -1, 61,
|
||
842, -1, 844, -1, -1, 772, 630, -1, -1, 71,
|
||
72, -1, -1, 923, -1, 0, -1, 927, -1, -1,
|
||
787, 83, -1, 933, -1, -1, 129, -1, -1, 275,
|
||
940, 941, 94, 136, -1, -1, 98, -1, 460, -1,
|
||
-1, 26, 884, -1, -1, -1, 888, -1, -1, 471,
|
||
-1, 893, 894, -1, 116, -1, -1, -1, -1, 121,
|
||
-1, -1, 47, 9, -1, -1, 976, -1, -1, -1,
|
||
980, -1, -1, -1, 59, 842, -1, 844, 988, -1,
|
||
-1, 923, 706, -1, -1, 927, -1, -1, 34, 35,
|
||
36, 933, -1, -1, -1, -1, -1, -1, 940, 941,
|
||
-1, -1, -1, -1, 275, -1, -1, -1, 54, 55,
|
||
56, 57, -1, 59, 60, -1, 740, 884, -1, -1,
|
||
-1, 888, -1, -1, -1, -1, 893, 894, -1, 0,
|
||
-1, -1, -1, -1, 976, 759, -1, 761, 980, -1,
|
||
-1, -1, -1, -1, 129, -1, 988, -1, 772, 571,
|
||
-1, 136, -1, -1, -1, 26, 923, -1, -1, 105,
|
||
927, -1, -1, 787, -1, -1, 933, -1, -1, -1,
|
||
-1, -1, 275, 940, 941, 121, 47, -1, -1, 125,
|
||
-1, 127, -1, -1, -1, -1, -1, -1, 59, -1,
|
||
9, -1, -1, -1, -1, -1, -1, 9, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 630, 976,
|
||
-1, -1, -1, 980, 460, 34, 35, 36, 842, -1,
|
||
844, 988, 34, 35, 36, 471, -1, -1, -1, -1,
|
||
9, -1, -1, -1, -1, 54, 55, 56, 57, -1,
|
||
59, 60, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, -1, -1, -1, 34, 35, 36, 129, -1,
|
||
884, -1, -1, -1, 888, 136, -1, -1, -1, 893,
|
||
894, -1, 0, -1, -1, 54, 55, 56, 57, -1,
|
||
59, 60, -1, -1, 706, -1, 105, -1, -1, 460,
|
||
275, -1, -1, -1, -1, -1, -1, -1, 26, 923,
|
||
471, -1, 121, 927, -1, -1, 125, -1, 127, 933,
|
||
-1, -1, -1, 125, -1, 127, 940, 941, 740, 47,
|
||
-1, -1, -1, -1, -1, 571, -1, -1, -1, -1,
|
||
-1, 59, -1, -1, -1, 9, -1, 759, -1, 761,
|
||
0, -1, 121, -1, -1, -1, 125, 9, 127, -1,
|
||
772, -1, 976, -1, -1, -1, 980, 460, -1, -1,
|
||
34, 35, 36, -1, 988, 787, 26, -1, 471, -1,
|
||
-1, -1, 34, 35, 36, -1, -1, -1, -1, -1,
|
||
54, 55, 56, 57, 630, 59, 60, 47, -1, -1,
|
||
-1, -1, 54, 55, 56, 57, -1, 59, 60, 59,
|
||
571, 129, -1, -1, 275, -1, -1, -1, 136, -1,
|
||
-1, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
842, -1, 844, -1, 86, 87, 88, 89, 90, 91,
|
||
92, 93, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 121, -1, -1,
|
||
-1, 125, 9, 127, -1, -1, 118, 119, 120, 630,
|
||
706, -1, 884, 125, -1, 127, 888, -1, 571, 129,
|
||
0, 893, 894, -1, -1, 460, 136, 34, 35, 36,
|
||
-1, -1, -1, -1, -1, -1, 471, -1, -1, -1,
|
||
0, -1, -1, -1, 740, -1, 26, 54, 55, 56,
|
||
57, 923, 59, 60, -1, 927, -1, -1, -1, -1,
|
||
-1, 933, -1, 759, -1, 761, 26, 47, 940, 941,
|
||
-1, -1, -1, -1, -1, -1, 772, 630, -1, 59,
|
||
-1, -1, -1, -1, 9, 706, -1, 47, -1, -1,
|
||
-1, 787, -1, -1, -1, -1, -1, 275, -1, 59,
|
||
0, -1, -1, -1, 976, -1, -1, -1, 980, 34,
|
||
35, 36, -1, -1, -1, -1, 988, -1, 125, 740,
|
||
127, -1, -1, -1, -1, -1, 26, -1, -1, 54,
|
||
55, 56, 57, -1, 59, 60, 571, -1, 759, 460,
|
||
761, -1, -1, -1, -1, -1, 842, 47, 844, 129,
|
||
471, 772, -1, 706, -1, -1, 136, -1, -1, 59,
|
||
-1, -1, -1, -1, -1, 275, 787, -1, -1, 129,
|
||
-1, -1, -1, -1, -1, -1, 136, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 740, 884, -1,
|
||
-1, -1, 888, -1, -1, 630, -1, 893, 894, -1,
|
||
125, -1, 127, -1, -1, -1, 759, 9, 761, -1,
|
||
-1, -1, -1, -1, -1, 0, -1, -1, -1, 772,
|
||
-1, 842, -1, 844, -1, -1, -1, 923, -1, 129,
|
||
-1, 927, 34, 35, 787, -1, 136, 933, -1, -1,
|
||
-1, 26, -1, -1, 940, 941, -1, -1, -1, -1,
|
||
571, -1, 54, 55, 56, 57, -1, 59, 60, -1,
|
||
-1, -1, 47, 884, -1, -1, -1, 888, -1, -1,
|
||
-1, 706, 893, 894, 59, -1, -1, 0, -1, -1,
|
||
976, -1, 460, -1, 980, -1, -1, -1, -1, 842,
|
||
-1, 844, 988, 471, -1, 275, -1, -1, -1, -1,
|
||
-1, -1, 923, -1, -1, 740, 927, -1, -1, 630,
|
||
-1, -1, 933, -1, -1, 275, -1, -1, -1, 940,
|
||
941, -1, -1, 125, 759, 127, 761, -1, -1, -1,
|
||
-1, 884, -1, -1, -1, 888, 59, 772, -1, -1,
|
||
893, 894, -1, -1, 129, 0, -1, -1, -1, -1,
|
||
460, 136, 787, -1, -1, 976, -1, -1, -1, 980,
|
||
-1, 471, -1, -1, -1, -1, -1, 988, -1, -1,
|
||
923, -1, -1, -1, 927, 275, -1, -1, -1, -1,
|
||
933, -1, -1, -1, -1, 706, 9, 940, 941, -1,
|
||
-1, -1, -1, 571, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 59, -1, 129, 842, -1, 844,
|
||
-1, 34, 35, 136, 0, -1, -1, 9, -1, 740,
|
||
-1, -1, -1, 976, -1, -1, -1, 980, -1, -1,
|
||
-1, 54, 55, 56, 57, 988, 59, 60, 759, -1,
|
||
761, -1, 34, 35, 36, -1, -1, -1, -1, 884,
|
||
-1, 772, 630, 888, -1, -1, -1, -1, 893, 894,
|
||
-1, 571, 54, 55, 56, 57, 787, 59, 60, -1,
|
||
-1, -1, -1, 59, 129, -1, -1, -1, -1, -1,
|
||
460, 136, -1, -1, -1, -1, -1, -1, 923, -1,
|
||
275, 471, 927, -1, -1, -1, -1, -1, 933, -1,
|
||
460, -1, 125, -1, 127, 940, 941, -1, -1, -1,
|
||
-1, 471, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
630, 842, -1, 844, -1, -1, -1, -1, 706, 9,
|
||
-1, -1, -1, 125, -1, 127, -1, -1, -1, -1,
|
||
-1, 976, -1, 129, 0, 980, -1, -1, -1, -1,
|
||
136, -1, -1, 988, 34, 35, 36, -1, -1, -1,
|
||
460, -1, 740, 884, -1, -1, -1, 888, -1, -1,
|
||
-1, 471, 893, 894, 54, 55, 56, 57, -1, 59,
|
||
60, 759, -1, 761, -1, -1, -1, -1, -1, 9,
|
||
-1, 571, -1, -1, 772, -1, 706, -1, -1, -1,
|
||
-1, -1, 923, 59, -1, -1, 927, -1, -1, 787,
|
||
-1, 571, 933, -1, 34, 35, 36, -1, -1, 940,
|
||
941, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
740, -1, -1, -1, 54, 55, 56, 57, -1, 59,
|
||
60, -1, -1, -1, -1, 125, -1, 127, -1, 759,
|
||
630, 761, -1, -1, -1, 976, -1, -1, -1, 980,
|
||
-1, -1, 772, -1, 842, -1, 844, 988, -1, -1,
|
||
630, 571, 9, 129, -1, 460, -1, 787, -1, -1,
|
||
136, -1, -1, -1, -1, -1, 471, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 34, 35, 36,
|
||
-1, -1, -1, -1, -1, 125, 884, 127, -1, -1,
|
||
888, -1, -1, -1, -1, 893, 894, 54, 55, 56,
|
||
57, -1, 59, 60, -1, -1, 706, -1, -1, -1,
|
||
630, -1, 842, -1, 844, -1, -1, 460, -1, -1,
|
||
-1, -1, -1, -1, -1, 923, 706, -1, 471, 927,
|
||
-1, -1, -1, -1, -1, 933, -1, -1, -1, -1,
|
||
740, -1, 940, 941, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 884, -1, -1, -1, 888, 759,
|
||
740, 761, -1, 893, 894, -1, 571, -1, 125, -1,
|
||
-1, -1, 772, -1, -1, -1, -1, -1, 976, 759,
|
||
-1, 761, 980, -1, -1, 460, 706, 787, -1, -1,
|
||
988, -1, 772, 923, -1, 27, 471, 927, -1, 31,
|
||
32, 33, -1, 933, -1, -1, -1, 787, -1, -1,
|
||
940, 941, -1, -1, -1, -1, -1, 49, 50, -1,
|
||
740, -1, -1, -1, -1, 630, 58, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 759,
|
||
-1, 761, 842, -1, 844, -1, 976, -1, -1, -1,
|
||
980, -1, 772, -1, 460, -1, -1, -1, 988, -1,
|
||
-1, -1, 842, -1, 844, 471, -1, 787, -1, -1,
|
||
-1, -1, -1, 105, 106, 107, 108, 109, 110, 111,
|
||
112, 113, -1, -1, 884, -1, -1, 630, 888, -1,
|
||
-1, -1, -1, 893, 894, -1, -1, -1, -1, -1,
|
||
-1, 706, -1, -1, 884, -1, -1, -1, 888, -1,
|
||
-1, -1, -1, 893, 894, -1, -1, -1, -1, -1,
|
||
-1, -1, 842, 923, 844, -1, -1, 927, -1, -1,
|
||
-1, -1, -1, 933, -1, 740, -1, -1, -1, -1,
|
||
940, 941, -1, 923, -1, -1, -1, 927, -1, -1,
|
||
-1, -1, -1, 933, 759, 630, 761, -1, -1, -1,
|
||
940, 941, -1, 706, 884, -1, -1, 772, 888, -1,
|
||
-1, -1, -1, 893, 894, -1, 976, -1, -1, -1,
|
||
980, -1, 787, -1, 460, -1, -1, -1, 988, -1,
|
||
-1, -1, -1, -1, -1, 471, 976, 740, -1, -1,
|
||
980, -1, -1, 923, -1, -1, -1, 927, 988, -1,
|
||
-1, -1, -1, 933, -1, -1, 759, -1, 761, -1,
|
||
940, 941, -1, -1, 630, -1, -1, -1, -1, 772,
|
||
-1, 706, -1, -1, -1, -1, -1, 842, -1, 844,
|
||
-1, -1, -1, -1, 787, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 976, -1, -1, -1,
|
||
980, -1, -1, -1, -1, 740, -1, -1, 988, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 884,
|
||
-1, -1, -1, 888, 759, -1, 761, -1, 893, 894,
|
||
-1, -1, -1, -1, -1, -1, -1, 772, -1, 842,
|
||
706, 844, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 787, -1, -1, -1, -1, -1, 923, -1,
|
||
-1, -1, 927, -1, -1, -1, -1, -1, 933, -1,
|
||
-1, -1, -1, -1, 740, 940, 941, -1, -1, -1,
|
||
-1, 884, 27, 28, -1, 888, 31, 32, 33, -1,
|
||
893, 894, -1, 759, 630, 761, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 49, 50, 772, 842, -1, 844,
|
||
-1, 976, -1, 58, -1, 980, -1, -1, -1, -1,
|
||
923, 787, -1, 988, 927, -1, -1, 0, 1, -1,
|
||
933, -1, -1, -1, -1, -1, -1, 940, 941, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 884,
|
||
-1, -1, -1, 888, -1, -1, -1, -1, 893, 894,
|
||
105, 106, 107, 108, 109, 110, 111, 112, 113, -1,
|
||
706, -1, -1, 976, -1, 120, 842, 980, 844, -1,
|
||
-1, -1, -1, -1, -1, 988, 59, -1, 923, -1,
|
||
-1, -1, 927, -1, -1, -1, -1, -1, 933, -1,
|
||
-1, -1, -1, -1, 740, 940, 941, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 884, -1,
|
||
-1, -1, 888, 759, -1, 761, -1, 893, 894, -1,
|
||
-1, -1, -1, -1, -1, -1, 772, 14, 15, 16,
|
||
-1, 976, 115, -1, -1, 980, -1, -1, -1, 26,
|
||
-1, 787, -1, 988, -1, -1, -1, 923, -1, -1,
|
||
-1, 927, -1, 40, -1, 42, 43, 933, -1, -1,
|
||
47, -1, 145, -1, 940, 941, -1, -1, -1, -1,
|
||
57, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
67, -1, 69, -1, 71, 72, -1, 74, -1, 76,
|
||
-1, 78, -1, 80, -1, 82, 842, 84, 844, 86,
|
||
976, 88, 89, 90, 980, -1, -1, 94, -1, -1,
|
||
97, -1, 988, 100, -1, 102, -1, -1, -1, 202,
|
||
-1, 204, 31, 32, 33, -1, -1, 210, -1, -1,
|
||
-1, 118, -1, 120, -1, -1, -1, -1, 884, -1,
|
||
49, 50, 888, -1, -1, -1, -1, 893, 894, 58,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 148, 149, -1, -1, -1, 249, -1, -1, 252,
|
||
-1, -1, -1, -1, -1, -1, -1, 923, -1, -1,
|
||
167, 927, -1, -1, 267, -1, -1, 933, -1, -1,
|
||
-1, -1, -1, -1, 940, 941, 105, 106, 107, 108,
|
||
109, 110, 111, 112, 113, 288, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 69, -1, 71, 72,
|
||
207, 74, -1, 76, 211, 78, -1, 80, -1, 82,
|
||
976, 84, -1, 86, 980, 88, 89, 90, -1, -1,
|
||
-1, 94, 988, -1, 97, -1, -1, 100, -1, 102,
|
||
-1, 238, 239, 240, -1, 5, -1, 7, 8, -1,
|
||
10, 11, 12, 13, -1, 118, -1, 120, 255, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, 270, -1, -1, -1, -1, 275, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, 294, 295, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, 69,
|
||
-1, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, -1, -1, 98, -1,
|
||
-1, 101, 65, 66, -1, 68, -1, 70, -1, -1,
|
||
73, 444, 75, -1, 77, -1, 116, -1, 81, -1,
|
||
83, 121, -1, 123, 87, 125, -1, -1, 91, 92,
|
||
-1, -1, -1, 96, -1, 98, -1, 470, 101, -1,
|
||
-1, -1, -1, 476, -1, -1, 479, -1, 481, -1,
|
||
-1, -1, -1, 116, 117, -1, 119, -1, -1, -1,
|
||
-1, -1, -1, -1, 27, 28, 403, -1, 31, 32,
|
||
33, -1, -1, -1, -1, -1, -1, 510, -1, 512,
|
||
-1, -1, 419, -1, -1, -1, 49, 50, -1, -1,
|
||
523, -1, -1, -1, -1, 58, -1, 530, -1, -1,
|
||
533, 534, -1, 536, -1, 168, 169, 170, 171, 172,
|
||
173, 174, -1, 176, 177, -1, 179, 180, 181, -1,
|
||
183, -1, 185, 186, -1, -1, -1, -1, -1, -1,
|
||
563, -1, -1, -1, -1, 198, 199, 200, -1, 572,
|
||
103, -1, 105, 106, 107, 108, 109, 110, 111, 112,
|
||
113, 214, 215, 216, 217, 218, 219, 220, -1, 222,
|
||
223, -1, 225, 226, 227, -1, 229, 230, 231, -1,
|
||
-1, 234, 235, 236, -1, -1, 513, -1, 515, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 259, 260, -1, 262,
|
||
263, 538, -1, -1, -1, -1, 543, -1, -1, -1,
|
||
-1, 644, -1, -1, -1, 552, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 568, -1, -1, 571, 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, 694, -1, -1, -1, -1, -1, -1, -1, 702,
|
||
-1, 704, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
713, -1, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
10, -1, -1, 640, 641, 368, -1, -1, -1, -1,
|
||
20, 21, -1, 83, 747, -1, 749, -1, -1, -1,
|
||
-1, -1, -1, 660, 94, -1, -1, -1, 98, 762,
|
||
-1, -1, 765, 766, 767, -1, 5, -1, 771, -1,
|
||
50, 774, 11, 12, -1, 55, 56, -1, 118, 119,
|
||
-1, -1, -1, 22, 23, 24, 693, 26, -1, 696,
|
||
-1, 30, -1, 700, 701, -1, 799, -1, -1, -1,
|
||
-1, -1, -1, 42, 711, 44, 713, -1, 47, 48,
|
||
-1, 718, 719, 52, 53, -1, -1, 724, 725, -1,
|
||
-1, -1, 61, -1, -1, -1, -1, 734, -1, -1,
|
||
-1, -1, -1, 836, -1, 115, -1, -1, -1, -1,
|
||
843, -1, -1, 846, 83, -1, -1, -1, -1, -1,
|
||
-1, -1, 132, -1, -1, 94, -1, -1, -1, 98,
|
||
-1, -1, -1, 143, -1, -1, 869, -1, -1, -1,
|
||
150, -1, -1, -1, -1, -1, -1, 157, 117, -1,
|
||
-1, -1, -1, -1, -1, 165, 166, -1, -1, -1,
|
||
-1, -1, 895, 800, 801, -1, -1, -1, -1, -1,
|
||
903, 904, -1, -1, -1, -1, 909, -1, -1, -1,
|
||
817, -1, -1, -1, 917, 918, -1, 824, 921, 826,
|
||
-1, 924, 925, -1, -1, -1, -1, 5, -1, -1,
|
||
837, -1, 839, 11, 12, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 22, 23, 24, 580, 26, -1,
|
||
583, -1, 30, 860, -1, -1, -1, -1, 865, -1,
|
||
963, 868, 242, 966, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, -1, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, -1, -1, 266, -1, 268, -1,
|
||
-1, -1, 27, 28, 901, -1, 31, 32, 33, -1,
|
||
-1, -1, -1, 910, -1, 83, 913, -1, -1, -1,
|
||
-1, -1, 919, -1, 49, 50, 94, -1, 298, 299,
|
||
98, -1, 302, 58, -1, -1, -1, -1, -1, 309,
|
||
-1, -1, -1, 313, -1, -1, -1, -1, 318, 117,
|
||
-1, -1, 322, 950, -1, -1, 326, -1, -1, -1,
|
||
330, -1, -1, 333, -1, -1, -1, 337, -1, -1,
|
||
-1, 341, -1, -1, -1, -1, -1, -1, 348, -1,
|
||
105, 106, 107, 108, 109, 110, 111, 112, 113, -1,
|
||
-1, -1, -1, 118, 119, -1, 993, 994, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 731, -1,
|
||
-1, -1, -1, -1, -1, -1, 386, -1, 388, -1,
|
||
-1, 391, -1, -1, 394, -1, -1, -1, 9, 399,
|
||
-1, -1, -1, -1, -1, 405, -1, -1, -1, -1,
|
||
-1, -1, 412, 413, 414, 415, 416, 417, 418, -1,
|
||
-1, -1, -1, 34, 35, 36, -1, -1, -1, 429,
|
||
-1, -1, 432, -1, -1, -1, -1, -1, 438, -1,
|
||
-1, -1, -1, 54, 55, 56, 57, -1, 59, 60,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 73, 74, 75, 76, 77, 78, 79, 80,
|
||
81, -1, -1, -1, -1, 86, 87, 88, 89, 90,
|
||
91, 92, 93, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 493, 494, 495, 496, 497, 498, 499,
|
||
500, 501, 502, 503, 504, 505, 506, 507, 508, 509,
|
||
121, -1, -1, -1, 125, -1, 127, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 526, -1, -1, -1,
|
||
-1, -1, 532, -1, 5, -1, 7, 8, -1, 10,
|
||
11, 12, 13, -1, -1, -1, -1, -1, 19, 20,
|
||
21, 22, 23, 24, -1, 26, -1, -1, 29, 30,
|
||
-1, -1, -1, 34, 35, -1, -1, -1, 568, -1,
|
||
570, 42, -1, 44, -1, 575, 47, 48, -1, -1,
|
||
51, 52, 53, -1, 584, -1, -1, -1, -1, -1,
|
||
61, -1, -1, -1, -1, -1, -1, 597, 69, -1,
|
||
71, 72, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, -1, -1, 98, 628, -1,
|
||
101, 102, 103, -1, -1, 635, -1, -1, 109, 110,
|
||
-1, -1, -1, 643, -1, 116, 117, -1, -1, -1,
|
||
121, 651, 123, -1, 125, -1, 656, -1, -1, -1,
|
||
-1, 0, 1, -1, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, -1, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, 725, -1, -1, 67, -1,
|
||
69, 70, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 84, 85, -1, -1, -1,
|
||
-1, -1, -1, -1, 754, 94, 95, 96, 97, 98,
|
||
99, 100, 101, 763, -1, -1, -1, -1, -1, 769,
|
||
-1, -1, -1, -1, -1, 775, -1, 116, -1, 118,
|
||
119, -1, 121, 783, 123, -1, 125, -1, 788, -1,
|
||
-1, -1, -1, -1, -1, -1, 73, 74, 75, 76,
|
||
77, 78, 79, 80, 81, -1, -1, -1, -1, 86,
|
||
87, 88, 89, 90, 91, 92, 93, 817, -1, 819,
|
||
-1, -1, -1, 0, 1, -1, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
127, 851, -1, 30, -1, -1, 856, 34, 35, -1,
|
||
37, -1, -1, -1, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
67, -1, 69, 70, 71, 72, 896, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 82, 83, 84, 85, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 95, 96,
|
||
97, 98, 99, 100, 101, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 936, -1, -1, 116,
|
||
-1, 118, 119, -1, 121, -1, 123, 1, 125, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, 38, 39, 40, 41, 42, 43,
|
||
44, 45, 46, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
64, 65, 66, 67, -1, 69, 70, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 82, 83,
|
||
84, 85, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
94, 95, 96, 97, 98, 99, 100, 101, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 116, -1, 118, 119, -1, 121, -1, 123,
|
||
124, 125, 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, 38,
|
||
39, 40, -1, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, 67, -1,
|
||
69, 70, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 84, 85, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 94, 95, 96, 97, 98,
|
||
99, 100, 101, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 116, -1, 118,
|
||
119, -1, 121, -1, 123, 1, 125, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, 38, 39, 40, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
-1, 67, -1, 69, 70, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 82, 83, 84, 85,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
96, 97, 98, 99, 100, 101, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
116, -1, 118, 119, -1, 121, -1, 123, 1, 125,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
|
||
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, 64, 65, 66, 67, -1, 69, 70, 71, 72,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 82,
|
||
83, 84, 85, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, 96, 97, 98, 99, 100, 101, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 116, -1, 118, 119, -1, 121, -1,
|
||
123, 1, 125, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
|
||
20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
|
||
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
|
||
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, 62, 63, -1, -1, -1, 67, -1, 69,
|
||
70, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, 84, 85, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, 96, 97, 98, 99,
|
||
100, 101, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 116, -1, 118, 119,
|
||
-1, 121, -1, 123, 1, 125, 3, 4, 5, 6,
|
||
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
|
||
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
|
||
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
|
||
37, 38, 39, 40, -1, 42, 43, 44, 45, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
|
||
67, -1, 69, 70, 71, 72, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 82, 83, 84, 85, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 95, 96,
|
||
97, 98, 99, 100, 101, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 116,
|
||
-1, 118, 119, -1, 121, -1, 123, 1, 125, 3,
|
||
4, 5, 6, 7, 8, -1, 10, 11, 12, 13,
|
||
14, -1, -1, 17, -1, 19, 20, 21, 22, 23,
|
||
24, 25, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
34, 35, -1, 37, 38, 39, -1, -1, 42, 43,
|
||
44, 45, -1, 47, 48, -1, -1, 51, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, -1, 61, 62, 63,
|
||
-1, -1, -1, 67, -1, 69, 70, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 82, 83,
|
||
84, 85, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
94, 95, 96, 97, 98, 99, 100, 101, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 116, -1, 118, 119, -1, 121, -1, 123,
|
||
1, 125, 3, 4, 5, 6, 7, 8, -1, 10,
|
||
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
|
||
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
|
||
-1, -1, -1, 34, 35, -1, 37, 38, 39, -1,
|
||
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, 62, 63, -1, -1, -1, 67, -1, 69, 70,
|
||
71, 72, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 82, 83, 84, 85, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, 96, 97, 98, 99, 100,
|
||
101, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 116, -1, 118, 119, -1,
|
||
121, -1, 123, 1, 125, 3, 4, 5, 6, 7,
|
||
8, -1, 10, 11, 12, 13, 14, -1, -1, 17,
|
||
-1, 19, 20, 21, 22, 23, 24, 25, 26, -1,
|
||
-1, -1, 30, -1, -1, -1, 34, 35, -1, 37,
|
||
-1, 39, 40, -1, 42, 43, 44, 45, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, 62, 63, -1, -1, -1, 67,
|
||
-1, 69, 70, 71, 72, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 82, 83, 84, 85, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 94, 95, 96, 97,
|
||
98, 99, 100, 101, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 116, -1,
|
||
118, 119, -1, 121, -1, 123, 1, 125, 3, 4,
|
||
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
|
||
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
|
||
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
|
||
35, -1, 37, 38, 39, -1, -1, 42, 43, 44,
|
||
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
|
||
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
|
||
-1, -1, 67, -1, 69, 70, 71, 72, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 82, 83, 84,
|
||
85, -1, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, 96, 97, 98, 99, 100, 101, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 116, -1, 118, 119, -1, 121, -1, 123, 1,
|
||
125, 3, 4, 5, 6, 7, 8, -1, 10, 11,
|
||
12, 13, 14, -1, -1, 17, 18, 19, 20, 21,
|
||
22, 23, 24, 25, 26, -1, -1, -1, 30, -1,
|
||
-1, -1, 34, 35, -1, 37, -1, -1, -1, -1,
|
||
42, 43, 44, 45, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
62, 63, -1, -1, -1, 67, -1, 69, 70, 71,
|
||
72, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
82, 83, 84, 85, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 95, 96, 97, 98, 99, 100, 101,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 116, -1, 118, 119, -1, 121,
|
||
-1, 123, 1, 125, 3, 4, 5, 6, 7, 8,
|
||
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
|
||
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
|
||
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
|
||
-1, -1, 41, 42, 43, 44, 45, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, 62, 63, -1, -1, -1, 67, -1,
|
||
69, 70, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 82, 83, 84, 85, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 94, 95, 96, 97, 98,
|
||
99, 100, 101, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 116, -1, 118,
|
||
119, -1, 121, -1, 123, 1, 125, 3, 4, 5,
|
||
6, 7, 8, -1, 10, 11, 12, 13, 14, -1,
|
||
-1, 17, -1, 19, 20, 21, 22, 23, 24, 25,
|
||
26, -1, -1, -1, 30, -1, -1, -1, 34, 35,
|
||
-1, 37, -1, -1, -1, -1, 42, 43, 44, 45,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, 62, 63, -1, -1,
|
||
66, 67, -1, 69, 70, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 82, 83, 84, 85,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
96, 97, 98, 99, 100, 101, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
116, -1, 118, 119, -1, 121, -1, 123, 1, 125,
|
||
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
|
||
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
|
||
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
|
||
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
|
||
43, 44, 45, 46, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
|
||
63, -1, -1, -1, 67, -1, 69, 70, 71, 72,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 82,
|
||
83, 84, 85, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, 96, 97, 98, 99, 100, 101, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 116, -1, 118, 119, -1, 121, -1,
|
||
123, 1, 125, 3, 4, 5, 6, 7, 8, -1,
|
||
10, 11, 12, 13, 14, -1, -1, -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, 67, -1, 69,
|
||
70, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 82, 83, 84, 85, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, 96, 97, 98, 99,
|
||
100, 101, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 116, -1, 118, 119,
|
||
-1, 121, -1, 123, 124, 125, 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, -1,
|
||
-1, -1, 67, -1, 69, 70, 71, 72, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 82, 83, 84,
|
||
85, -1, -1, -1, -1, -1, -1, -1, -1, 94,
|
||
95, 96, 97, 98, 99, 100, 101, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 116, -1, 118, 119, -1, 121, -1, 123, 5,
|
||
125, 7, 8, -1, 10, 11, 12, 13, -1, -1,
|
||
-1, -1, -1, 19, 20, 21, 22, 23, 24, -1,
|
||
26, -1, -1, 29, 30, -1, -1, -1, 34, 35,
|
||
-1, -1, -1, -1, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, -1, -1, 51, 52, 53, -1, -1,
|
||
-1, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
-1, -1, -1, 69, -1, 71, 72, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
|
||
-1, -1, 98, -1, -1, 101, -1, -1, -1, -1,
|
||
-1, -1, -1, 109, 110, -1, -1, -1, -1, -1,
|
||
116, 117, 118, 119, -1, 121, -1, 123, 5, 125,
|
||
7, 8, -1, 10, 11, 12, 13, -1, -1, -1,
|
||
-1, -1, 19, 20, 21, 22, 23, 24, -1, 26,
|
||
-1, -1, 29, 30, -1, -1, -1, 34, 35, -1,
|
||
-1, -1, -1, -1, -1, 42, -1, 44, -1, -1,
|
||
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
|
||
-1, -1, -1, -1, 61, -1, -1, -1, -1, -1,
|
||
-1, -1, 69, -1, 71, 72, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 83, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 94, 95, -1,
|
||
-1, 98, -1, -1, 101, 102, -1, -1, -1, -1,
|
||
-1, -1, 109, 110, -1, -1, -1, -1, -1, 116,
|
||
117, -1, -1, -1, 121, -1, 123, 5, 125, 7,
|
||
8, -1, 10, 11, 12, 13, -1, -1, -1, -1,
|
||
-1, 19, 20, 21, 22, 23, 24, -1, 26, -1,
|
||
-1, 29, 30, -1, -1, -1, 34, 35, -1, -1,
|
||
-1, -1, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
|
||
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
|
||
-1, 69, -1, 71, 72, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, 94, 95, -1, -1,
|
||
98, -1, -1, 101, -1, -1, -1, -1, -1, -1,
|
||
-1, 109, 110, -1, -1, -1, -1, -1, 116, 117,
|
||
-1, -1, 120, 121, -1, 123, 5, 125, 7, 8,
|
||
-1, 10, 11, 12, 13, -1, -1, -1, -1, -1,
|
||
19, 20, 21, 22, 23, 24, -1, 26, -1, -1,
|
||
29, 30, -1, -1, -1, 34, 35, -1, -1, -1,
|
||
-1, -1, -1, 42, -1, 44, -1, -1, 47, 48,
|
||
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
|
||
-1, -1, 61, -1, -1, -1, -1, -1, -1, -1,
|
||
69, -1, 71, 72, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 83, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 94, 95, -1, -1, 98,
|
||
-1, -1, 101, 102, -1, -1, -1, -1, -1, -1,
|
||
109, 110, -1, -1, -1, -1, -1, 116, 117, -1,
|
||
-1, -1, 121, -1, 123, 5, 125, 7, 8, -1,
|
||
10, 11, 12, 13, -1, -1, -1, -1, -1, 19,
|
||
20, 21, 22, 23, 24, -1, 26, -1, -1, 29,
|
||
30, -1, -1, -1, 34, 35, -1, -1, -1, -1,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, -1,
|
||
-1, 51, 52, 53, -1, -1, -1, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, -1, -1, -1, 69,
|
||
-1, 71, 72, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 94, 95, -1, -1, 98, -1,
|
||
-1, 101, -1, -1, -1, -1, -1, -1, -1, 109,
|
||
110, -1, -1, -1, -1, -1, 116, 117, -1, -1,
|
||
-1, 121, -1, 123, 5, 125, 7, 8, -1, 10,
|
||
11, 12, 13, -1, -1, -1, -1, -1, 19, 20,
|
||
21, 22, 23, 24, -1, 26, -1, -1, 29, 30,
|
||
-1, -1, -1, 34, 35, -1, -1, -1, -1, -1,
|
||
-1, 42, -1, 44, -1, -1, 47, 48, -1, -1,
|
||
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
|
||
61, -1, -1, -1, -1, -1, -1, -1, 69, -1,
|
||
71, 72, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 83, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 94, 95, -1, -1, 98, -1, -1,
|
||
101, -1, -1, -1, -1, -1, -1, -1, 109, 110,
|
||
-1, -1, -1, -1, -1, 116, 117, -1, -1, -1,
|
||
121, -1, 123, 5, 125, 7, 8, -1, 10, 11,
|
||
12, 13, -1, -1, -1, -1, -1, 19, 20, 21,
|
||
22, 23, 24, -1, 26, -1, -1, 29, 30, -1,
|
||
-1, -1, 34, 35, -1, -1, -1, -1, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, -1, 51,
|
||
52, 53, -1, -1, -1, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, -1, -1, -1, 69, -1, 71,
|
||
72, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, 94, 95, -1, -1, 98, -1, -1, 101,
|
||
-1, -1, -1, -1, -1, -1, -1, 109, 110, -1,
|
||
-1, -1, -1, -1, 116, 117, -1, -1, -1, 121,
|
||
-1, 123, 5, 125, 7, 8, -1, 10, 11, 12,
|
||
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
|
||
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
|
||
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
|
||
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
|
||
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
|
||
-1, -1, -1, -1, -1, -1, 69, -1, 71, 72,
|
||
-1, 27, 28, -1, -1, 31, 32, 33, -1, -1,
|
||
83, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 94, 95, 49, 50, 98, -1, -1, 101, -1,
|
||
-1, -1, 58, -1, -1, -1, 109, 110, -1, -1,
|
||
-1, -1, -1, 116, 117, -1, -1, -1, 121, -1,
|
||
123, 5, 125, 7, 8, -1, 10, 11, 12, 13,
|
||
-1, -1, -1, -1, -1, 19, 20, 21, 22, 23,
|
||
24, -1, 26, -1, -1, -1, 30, 103, -1, 105,
|
||
106, 107, 108, 109, 110, 111, 112, 113, 42, -1,
|
||
44, -1, -1, 47, 48, -1, -1, -1, 52, 53,
|
||
-1, -1, -1, -1, -1, -1, 9, 61, -1, -1,
|
||
-1, -1, -1, -1, -1, 69, -1, 71, 72, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
-1, 34, 35, 36, -1, -1, -1, -1, -1, -1,
|
||
94, 95, -1, -1, 98, -1, -1, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, 116, -1, -1, -1, 9, 121, -1, 123,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
-1, -1, -1, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 34, 35, 36, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, 9, -1, -1, -1,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
-1, -1, -1, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 34, 35, 36, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, 9, -1, -1, -1,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
-1, -1, -1, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 34, 35, 36, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, 9, -1, -1, -1,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
-1, -1, -1, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 34, 35, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, -1, -1, -1, -1,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, -1,
|
||
-1, -1, -1, 86, 87, 88, 89, 90, 91, 92,
|
||
93, 5, -1, -1, -1, -1, -1, 11, 12, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, -1, 22, 23,
|
||
24, -1, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
-1, -1, 125, -1, 127, -1, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, 5, -1, -1, 52, 53,
|
||
-1, 11, 12, -1, -1, -1, -1, 61, -1, -1,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, 5,
|
||
94, -1, 52, 53, 98, 11, 12, -1, -1, -1,
|
||
-1, 61, -1, -1, -1, -1, 22, 23, 24, -1,
|
||
26, -1, -1, 117, 30, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, 5, 94, -1, 52, 53, 98, 11,
|
||
12, -1, -1, -1, -1, 61, -1, -1, -1, -1,
|
||
22, 23, 24, -1, 26, 71, 72, 117, 30, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, 5, 94, -1,
|
||
52, 53, 98, 11, 12, -1, -1, -1, -1, 61,
|
||
-1, -1, -1, -1, 22, 23, 24, -1, 26, -1,
|
||
116, -1, 30, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 83, -1, -1, 42, -1, 44, -1, -1, 47,
|
||
48, 5, 94, -1, 52, 53, 98, 11, 12, -1,
|
||
102, -1, -1, 61, -1, -1, -1, -1, 22, 23,
|
||
24, -1, 26, -1, -1, -1, 30, -1, -1, -1,
|
||
-1, -1, -1, -1, -1, 83, -1, -1, 42, -1,
|
||
44, -1, -1, 47, 48, 5, 94, -1, 52, 53,
|
||
98, 11, 12, -1, 102, -1, -1, 61, -1, -1,
|
||
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
|
||
30, -1, -1, -1, -1, -1, -1, -1, -1, 83,
|
||
-1, -1, 42, -1, 44, -1, -1, 47, 48, 5,
|
||
94, -1, 52, 53, 98, 11, 12, -1, 102, -1,
|
||
-1, 61, -1, -1, -1, -1, 22, 23, 24, -1,
|
||
26, -1, -1, -1, 30, -1, -1, -1, -1, -1,
|
||
-1, -1, -1, 83, -1, -1, 42, -1, 44, -1,
|
||
-1, 47, 48, 5, 94, -1, 52, 53, 98, 11,
|
||
12, -1, 102, -1, -1, 61, -1, -1, -1, -1,
|
||
22, 23, 24, -1, 26, 71, 72, -1, 30, -1,
|
||
-1, -1, -1, -1, -1, -1, -1, 83, -1, -1,
|
||
42, -1, 44, -1, -1, 47, 48, -1, 94, -1,
|
||
52, 53, 98, -1, -1, -1, 27, 28, -1, 61,
|
||
31, 32, 33, -1, -1, -1, 27, 28, -1, -1,
|
||
31, 32, 33, -1, -1, -1, -1, 48, 49, 50,
|
||
-1, 83, -1, -1, -1, -1, -1, 58, 49, 50,
|
||
-1, -1, 94, -1, -1, -1, 98, 58, -1, -1,
|
||
-1, -1, -1, -1, -1, 73, 74, 75, 76, 77,
|
||
78, 79, 80, 81, -1, -1, -1, -1, 86, 87,
|
||
88, 89, 90, 91, 92, 93, -1, -1, -1, -1,
|
||
-1, -1, -1, -1, 105, 106, 107, 108, 109, 110,
|
||
111, 112, 113, -1, 105, 106, 107, 108, 109, 110,
|
||
111, 112, 113, 121, 73, 74, 75, 76, 77, 78,
|
||
79, 80, 81, -1, -1, -1, -1, 86, 87, 88,
|
||
89, 90, 91, 92, 93, 73, 74, 75, 76, 77,
|
||
78, 79, 80, 81, -1, -1, -1, -1, 86, 87,
|
||
88, 89, 90, 91, 92, 93, -1, -1, -1, -1,
|
||
-1, -1, 121, -1, -1, -1, -1, -1, -1, -1,
|
||
-1, 73, 74, 75, 76, 77, 78, 79, 80, 81,
|
||
-1, -1, -1, 121, 86, 87, 88, 89, 90, 91,
|
||
92, 93, 73, 74, 75, 76, 77, 78, 79, 80,
|
||
81, -1, -1, -1, -1, 86, 87, 88, 89, 90,
|
||
91, 92, 93, -1, -1, -1, -1, -1, -1, 121
|
||
};
|
||
|
||
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
||
symbol of state STATE-NUM. */
|
||
static const yytype_uint16 yystos[] =
|
||
{
|
||
0, 1, 5, 6, 7, 8, 10, 11, 12, 13,
|
||
14, 19, 20, 21, 22, 23, 24, 25, 26, 30,
|
||
34, 35, 37, 42, 43, 44, 45, 47, 48, 51,
|
||
52, 53, 61, 62, 63, 67, 69, 70, 71, 72,
|
||
82, 83, 84, 85, 94, 95, 96, 97, 98, 99,
|
||
100, 101, 116, 118, 119, 121, 123, 125, 130, 131,
|
||
132, 133, 138, 145, 163, 164, 165, 166, 167, 168,
|
||
169, 170, 171, 172, 173, 174, 175, 176, 177, 178,
|
||
179, 180, 181, 183, 184, 185, 186, 187, 188, 189,
|
||
190, 192, 193, 194, 195, 196, 198, 202, 207, 209,
|
||
210, 211, 213, 225, 227, 228, 230, 231, 232, 233,
|
||
234, 235, 236, 237, 238, 245, 250, 253, 254, 255,
|
||
256, 257, 270, 274, 277, 292, 293, 294, 305, 307,
|
||
309, 319, 322, 324, 335, 340, 343, 345, 352, 364,
|
||
370, 372, 372, 147, 154, 155, 36, 36, 258, 259,
|
||
121, 11, 12, 22, 23, 24, 26, 29, 30, 42,
|
||
44, 51, 53, 61, 94, 109, 110, 117, 164, 165,
|
||
167, 169, 172, 174, 176, 178, 180, 183, 185, 187,
|
||
192, 193, 194, 198, 201, 207, 211, 214, 219, 225,
|
||
227, 228, 229, 230, 238, 239, 240, 241, 250, 253,
|
||
255, 163, 161, 163, 162, 163, 154, 148, 219, 219,
|
||
308, 275, 154, 163, 164, 165, 167, 169, 172, 174,
|
||
176, 178, 180, 183, 185, 187, 192, 193, 194, 198,
|
||
207, 211, 224, 225, 250, 253, 255, 36, 271, 260,
|
||
150, 353, 146, 154, 185, 187, 363, 10, 163, 163,
|
||
123, 163, 283, 19, 153, 246, 366, 163, 185, 187,
|
||
192, 194, 207, 253, 331, 332, 344, 219, 121, 253,
|
||
117, 219, 252, 102, 103, 117, 182, 204, 205, 206,
|
||
219, 223, 244, 163, 185, 187, 208, 0, 1, 132,
|
||
133, 145, 277, 372, 3, 4, 36, 121, 9, 127,
|
||
242, 243, 9, 242, 163, 185, 187, 191, 253, 9,
|
||
36, 242, 191, 9, 36, 242, 191, 191, 9, 36,
|
||
242, 191, 9, 36, 242, 191, 9, 36, 242, 191,
|
||
9, 36, 191, 9, 36, 242, 191, 9, 242, 191,
|
||
253, 9, 36, 121, 154, 242, 191, 253, 9, 36,
|
||
121, 154, 242, 191, 253, 8, 10, 163, 166, 167,
|
||
168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
|
||
178, 179, 180, 181, 184, 185, 186, 187, 188, 191,
|
||
250, 253, 254, 255, 256, 191, 9, 242, 9, 154,
|
||
242, 9, 36, 191, 9, 36, 154, 242, 191, 9,
|
||
36, 121, 242, 125, 191, 9, 36, 154, 242, 191,
|
||
34, 35, 54, 55, 56, 57, 59, 60, 105, 125,
|
||
226, 154, 154, 154, 154, 154, 219, 249, 372, 9,
|
||
36, 242, 9, 36, 154, 242, 191, 253, 9, 36,
|
||
154, 242, 191, 154, 15, 16, 17, 18, 297, 299,
|
||
304, 1, 12, 25, 26, 132, 145, 156, 157, 158,
|
||
159, 277, 372, 17, 38, 39, 40, 306, 310, 315,
|
||
219, 159, 17, 341, 342, 154, 219, 372, 163, 261,
|
||
264, 261, 219, 219, 219, 219, 163, 196, 215, 220,
|
||
216, 217, 218, 27, 28, 31, 32, 33, 49, 50,
|
||
58, 105, 106, 107, 108, 109, 110, 111, 112, 113,
|
||
295, 221, 152, 120, 372, 120, 372, 185, 262, 263,
|
||
264, 372, 163, 276, 9, 105, 328, 189, 163, 272,
|
||
276, 262, 68, 357, 219, 365, 19, 121, 279, 372,
|
||
73, 74, 75, 76, 77, 78, 79, 80, 81, 86,
|
||
87, 88, 89, 90, 91, 92, 93, 140, 142, 143,
|
||
121, 372, 109, 122, 102, 163, 247, 248, 68, 367,
|
||
52, 120, 219, 372, 163, 120, 122, 124, 163, 185,
|
||
192, 194, 196, 207, 120, 124, 103, 120, 124, 372,
|
||
163, 163, 197, 219, 102, 219, 222, 120, 126, 219,
|
||
219, 219, 219, 219, 219, 219, 219, 219, 219, 199,
|
||
219, 200, 219, 219, 219, 219, 219, 212, 208, 219,
|
||
219, 219, 219, 219, 219, 219, 219, 208, 120, 124,
|
||
251, 219, 219, 219, 372, 300, 304, 16, 297, 304,
|
||
3, 4, 156, 311, 316, 38, 306, 315, 39, 306,
|
||
372, 38, 39, 346, 349, 372, 127, 140, 268, 269,
|
||
120, 372, 372, 120, 142, 142, 142, 142, 142, 219,
|
||
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
||
219, 219, 219, 219, 219, 219, 372, 142, 372, 163,
|
||
163, 140, 268, 120, 149, 140, 120, 372, 219, 140,
|
||
52, 120, 273, 372, 151, 219, 372, 372, 367, 117,
|
||
372, 278, 163, 282, 283, 285, 163, 163, 280, 284,
|
||
19, 372, 140, 128, 120, 120, 163, 201, 205, 214,
|
||
219, 253, 368, 369, 117, 219, 333, 334, 331, 372,
|
||
371, 122, 219, 219, 219, 223, 206, 134, 136, 135,
|
||
137, 203, 206, 222, 127, 203, 203, 203, 219, 159,
|
||
160, 298, 219, 302, 304, 163, 163, 219, 372, 313,
|
||
306, 318, 320, 219, 350, 38, 342, 349, 219, 265,
|
||
266, 141, 143, 120, 126, 264, 204, 296, 9, 141,
|
||
263, 372, 163, 325, 163, 163, 372, 372, 160, 19,
|
||
83, 117, 163, 287, 290, 291, 286, 283, 285, 372,
|
||
163, 281, 285, 287, 102, 163, 369, 120, 163, 120,
|
||
336, 160, 103, 372, 121, 372, 121, 120, 122, 222,
|
||
122, 122, 122, 124, 160, 372, 219, 121, 372, 121,
|
||
372, 372, 317, 219, 372, 160, 347, 372, 219, 9,
|
||
219, 127, 120, 160, 219, 140, 47, 140, 354, 372,
|
||
117, 163, 163, 140, 122, 120, 120, 140, 120, 124,
|
||
122, 140, 369, 333, 98, 339, 17, 223, 102, 139,
|
||
144, 163, 139, 206, 301, 372, 139, 139, 312, 160,
|
||
372, 160, 321, 372, 351, 348, 267, 219, 204, 219,
|
||
64, 65, 360, 361, 362, 163, 140, 121, 140, 140,
|
||
117, 163, 291, 83, 285, 372, 140, 337, 122, 120,
|
||
140, 122, 160, 303, 122, 122, 160, 314, 17, 41,
|
||
323, 160, 160, 372, 219, 122, 48, 329, 163, 355,
|
||
372, 372, 121, 140, 223, 288, 289, 372, 163, 140,
|
||
117, 163, 372, 372, 102, 163, 372, 160, 372, 372,
|
||
160, 160, 219, 326, 66, 358, 359, 160, 160, 288,
|
||
120, 122, 121, 140, 163, 140, 338, 140, 372, 356,
|
||
372, 122, 289, 288, 121, 140, 160, 330, 327, 17,
|
||
160, 122, 288, 17, 46, 330, 122, 163, 163
|
||
};
|
||
|
||
#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 262 "harbour.y"
|
||
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
|
||
#line 3931 "harboury.c"
|
||
break;
|
||
case 95: /* "CBSTART" */
|
||
#line 261 "harbour.y"
|
||
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
|
||
#line 3936 "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 275 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 15:
|
||
#line 281 "harbour.y"
|
||
{ yyclearin; yyerrok; ;}
|
||
break;
|
||
|
||
case 16:
|
||
#line 285 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = (yyvsp[(2) - (4)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (4)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (4)].valChar).string ); (yyvsp[(3) - (4)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 17:
|
||
#line 290 "harbour.y"
|
||
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
|
||
HB_COMP_PARAM->currLine = (yyvsp[(2) - (6)].valLong).lNumber;
|
||
HB_COMP_PARAM->pLex->fEol = FALSE;
|
||
if( (yyvsp[(3) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (6)].valChar).string ); (yyvsp[(3) - (6)].valChar).dealloc = FALSE; }
|
||
if( (yyvsp[(5) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(5) - (6)].valChar).string ); (yyvsp[(5) - (6)].valChar).dealloc = FALSE; } ;}
|
||
break;
|
||
|
||
case 18:
|
||
#line 297 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;}
|
||
break;
|
||
|
||
case 20:
|
||
#line 298 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;}
|
||
break;
|
||
|
||
case 22:
|
||
#line 299 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;}
|
||
break;
|
||
|
||
case 24:
|
||
#line 300 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;}
|
||
break;
|
||
|
||
case 26:
|
||
#line 303 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 27:
|
||
#line 304 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_STATIC; ;}
|
||
break;
|
||
|
||
case 28:
|
||
#line 305 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_INIT; ;}
|
||
break;
|
||
|
||
case 29:
|
||
#line 306 "harbour.y"
|
||
{ (yyval.iNumber) = HB_FS_EXIT; ;}
|
||
break;
|
||
|
||
case 30:
|
||
#line 309 "harbour.y"
|
||
{ (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 31:
|
||
#line 310 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
|
||
break;
|
||
|
||
case 33:
|
||
#line 312 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
|
||
break;
|
||
|
||
case 34:
|
||
#line 315 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 36:
|
||
#line 319 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 38:
|
||
#line 323 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'N'; ;}
|
||
break;
|
||
|
||
case 39:
|
||
#line 324 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'C'; ;}
|
||
break;
|
||
|
||
case 40:
|
||
#line 325 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'D'; ;}
|
||
break;
|
||
|
||
case 41:
|
||
#line 326 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'L'; ;}
|
||
break;
|
||
|
||
case 42:
|
||
#line 327 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'B'; ;}
|
||
break;
|
||
|
||
case 43:
|
||
#line 328 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'O'; ;}
|
||
break;
|
||
|
||
case 44:
|
||
#line 329 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 45:
|
||
#line 330 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 47:
|
||
#line 334 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'A'; ;}
|
||
break;
|
||
|
||
case 48:
|
||
#line 335 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'n'; ;}
|
||
break;
|
||
|
||
case 49:
|
||
#line 336 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'c'; ;}
|
||
break;
|
||
|
||
case 50:
|
||
#line 337 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'd'; ;}
|
||
break;
|
||
|
||
case 51:
|
||
#line 338 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'l'; ;}
|
||
break;
|
||
|
||
case 52:
|
||
#line 339 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'a'; ;}
|
||
break;
|
||
|
||
case 53:
|
||
#line 340 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'b'; ;}
|
||
break;
|
||
|
||
case 54:
|
||
#line 341 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 'o'; ;}
|
||
break;
|
||
|
||
case 55:
|
||
#line 342 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 56:
|
||
#line 345 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 57:
|
||
#line 346 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 59:
|
||
#line 355 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 60:
|
||
#line 356 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 61:
|
||
#line 357 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 62:
|
||
#line 358 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 63:
|
||
#line 359 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 64:
|
||
#line 365 "harbour.y"
|
||
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 65:
|
||
#line 371 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 66:
|
||
#line 372 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 67:
|
||
#line 373 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 68:
|
||
#line 374 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 69:
|
||
#line 375 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 70:
|
||
#line 376 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 71:
|
||
#line 377 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 72:
|
||
#line 378 "harbour.y"
|
||
{ hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 73:
|
||
#line 380 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 74:
|
||
#line 381 "harbour.y"
|
||
{
|
||
hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 75:
|
||
#line 386 "harbour.y"
|
||
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 76:
|
||
#line 387 "harbour.y"
|
||
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 77:
|
||
#line 388 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( (HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE) == 0 )
|
||
{ /* return from a function without a return value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 78:
|
||
#line 400 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 79:
|
||
#line 402 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
|
||
}
|
||
/* TODO: check if return value agree with declared value */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK )
|
||
/* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */
|
||
hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE )
|
||
{ /* procedure returns a value */
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL );
|
||
}
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
|
||
;}
|
||
break;
|
||
|
||
case 80:
|
||
#line 423 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
|
||
break;
|
||
|
||
case 81:
|
||
#line 425 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 83:
|
||
#line 429 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
|
||
break;
|
||
|
||
case 84:
|
||
#line 431 "harbour.y"
|
||
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" );
|
||
HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 91:
|
||
#line 440 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->szAnnounce == NULL )
|
||
{
|
||
/* check for reserved name
|
||
* NOTE: Clipper doesn't check for it
|
||
*/
|
||
char * szFunction = hb_compReservedName( (yyvsp[(2) - (2)].string) );
|
||
if( szFunction )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, (yyvsp[(2) - (2)].string) );
|
||
HB_COMP_PARAM->szAnnounce = (yyvsp[(2) - (2)].string);
|
||
}
|
||
else
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, (yyvsp[(2) - (2)].string), NULL );
|
||
;}
|
||
break;
|
||
|
||
case 93:
|
||
#line 454 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;}
|
||
break;
|
||
|
||
case 94:
|
||
#line 457 "harbour.y"
|
||
{
|
||
if( (yyvsp[(1) - (1)].valChar).dealloc )
|
||
{
|
||
(yyvsp[(1) - (1)].valChar).string = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string, HB_IDENT_FREE );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
}
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string );
|
||
;}
|
||
break;
|
||
|
||
case 95:
|
||
#line 465 "harbour.y"
|
||
{
|
||
{
|
||
char szFileName[ _POSIX_PATH_MAX + 1 ];
|
||
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, _POSIX_PATH_MAX ), (yyvsp[(3) - (3)].valChar).string, _POSIX_PATH_MAX );
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, szFileName, HB_IDENT_COPY ) );
|
||
if( (yyvsp[(1) - (3)].valChar).dealloc )
|
||
hb_xfree( (yyvsp[(1) - (3)].valChar).string );
|
||
if( (yyvsp[(3) - (3)].valChar).dealloc )
|
||
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 96:
|
||
#line 478 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 98:
|
||
#line 481 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 99:
|
||
#line 482 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 100:
|
||
#line 483 "harbour.y"
|
||
{ (yyval.lNumber) = 1; ;}
|
||
break;
|
||
|
||
case 101:
|
||
#line 484 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 102:
|
||
#line 485 "harbour.y"
|
||
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 103:
|
||
#line 486 "harbour.y"
|
||
{ if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine )
|
||
{
|
||
yyclearin;
|
||
}
|
||
else
|
||
{
|
||
yyerrok;
|
||
HB_COMP_PARAM->ilastLineErr = HB_COMP_PARAM->currLine;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 113:
|
||
#line 511 "harbour.y"
|
||
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
|
||
break;
|
||
|
||
case 114:
|
||
#line 514 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 116:
|
||
#line 518 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 117:
|
||
#line 519 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
|
||
break;
|
||
|
||
case 118:
|
||
#line 522 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 119:
|
||
#line 523 "harbour.y"
|
||
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
|
||
break;
|
||
|
||
case 121:
|
||
#line 527 "harbour.y"
|
||
{ (yyval.string) = "STEP"; ;}
|
||
break;
|
||
|
||
case 122:
|
||
#line 528 "harbour.y"
|
||
{ (yyval.string) = "TO"; ;}
|
||
break;
|
||
|
||
case 123:
|
||
#line 529 "harbour.y"
|
||
{ (yyval.string) = "LOOP"; ;}
|
||
break;
|
||
|
||
case 124:
|
||
#line 530 "harbour.y"
|
||
{ (yyval.string) = "EXIT"; ;}
|
||
break;
|
||
|
||
case 125:
|
||
#line 531 "harbour.y"
|
||
{ (yyval.string) = "IN"; ;}
|
||
break;
|
||
|
||
case 126:
|
||
#line 532 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 127:
|
||
#line 533 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 128:
|
||
#line 534 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 129:
|
||
#line 535 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 130:
|
||
#line 536 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 131:
|
||
#line 537 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 132:
|
||
#line 538 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 133:
|
||
#line 539 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 134:
|
||
#line 540 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 135:
|
||
#line 541 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 136:
|
||
#line 542 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 137:
|
||
#line 543 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
|
||
break;
|
||
|
||
case 138:
|
||
#line 548 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 139:
|
||
#line 549 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 140:
|
||
#line 552 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewDate( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 141:
|
||
#line 555 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 142:
|
||
#line 556 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, hb_compExprNewDouble( (yyvsp[(1) - (2)].valDouble).dNumber, (yyvsp[(1) - (2)].valDouble).bWidth, (yyvsp[(1) - (2)].valDouble).bDec, HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 143:
|
||
#line 561 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 145:
|
||
#line 569 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, (yyvsp[(1) - (1)].valChar).dealloc, HB_COMP_PARAM );
|
||
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
|
||
;}
|
||
break;
|
||
|
||
case 148:
|
||
#line 585 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 149:
|
||
#line 586 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 151:
|
||
#line 594 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 153:
|
||
#line 608 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 155:
|
||
#line 616 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 157:
|
||
#line 622 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 158:
|
||
#line 623 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 160:
|
||
#line 629 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 161:
|
||
#line 630 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 162:
|
||
#line 635 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 163:
|
||
#line 638 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 164:
|
||
#line 643 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 165:
|
||
#line 644 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 167:
|
||
#line 652 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 169:
|
||
#line 662 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 170:
|
||
#line 663 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 171:
|
||
#line 668 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 172:
|
||
#line 669 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 173:
|
||
#line 670 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 174:
|
||
#line 671 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 175:
|
||
#line 672 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 176:
|
||
#line 673 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 177:
|
||
#line 674 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 178:
|
||
#line 675 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 179:
|
||
#line 676 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 180:
|
||
#line 677 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 181:
|
||
#line 678 "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 679 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 183:
|
||
#line 680 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 184:
|
||
#line 681 "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 684 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 188:
|
||
#line 689 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 189:
|
||
#line 690 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 190:
|
||
#line 691 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 191:
|
||
#line 692 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 192:
|
||
#line 693 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 193:
|
||
#line 694 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 194:
|
||
#line 695 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 195:
|
||
#line 696 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 196:
|
||
#line 697 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 197:
|
||
#line 698 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 198:
|
||
#line 699 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 199:
|
||
#line 700 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 200:
|
||
#line 701 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 201:
|
||
#line 702 "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 703 "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 704 "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 705 "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 706 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 206:
|
||
#line 707 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 207:
|
||
#line 708 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 208:
|
||
#line 717 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 209:
|
||
#line 718 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 210:
|
||
#line 719 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 211:
|
||
#line 720 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 212:
|
||
#line 721 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 213:
|
||
#line 722 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 214:
|
||
#line 727 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 215:
|
||
#line 728 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 216:
|
||
#line 729 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 217:
|
||
#line 730 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 218:
|
||
#line 731 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 219:
|
||
#line 732 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 220:
|
||
#line 733 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 221:
|
||
#line 734 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 222:
|
||
#line 735 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 223:
|
||
#line 736 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 224:
|
||
#line 737 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 225:
|
||
#line 738 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 226:
|
||
#line 739 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 227:
|
||
#line 740 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 228:
|
||
#line 741 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 229:
|
||
#line 742 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 230:
|
||
#line 743 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 231:
|
||
#line 744 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 233:
|
||
#line 750 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 234:
|
||
#line 750 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 236:
|
||
#line 754 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 237:
|
||
#line 754 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 238:
|
||
#line 755 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 239:
|
||
#line 755 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 240:
|
||
#line 759 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 242:
|
||
#line 765 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 243:
|
||
#line 766 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 246:
|
||
#line 773 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 247:
|
||
#line 774 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 248:
|
||
#line 775 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 249:
|
||
#line 776 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 250:
|
||
#line 777 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
|
||
break;
|
||
|
||
case 251:
|
||
#line 780 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 253:
|
||
#line 786 "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 787 "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 788 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wWithObjectCnt == 0 )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL );
|
||
(yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM ));
|
||
;}
|
||
break;
|
||
|
||
case 256:
|
||
#line 794 "harbour.y"
|
||
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
|
||
break;
|
||
|
||
case 257:
|
||
#line 795 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 258:
|
||
#line 796 "harbour.y"
|
||
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
|
||
break;
|
||
|
||
case 259:
|
||
#line 799 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 261:
|
||
#line 807 "harbour.y"
|
||
{(yyval.bTrue)=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;}
|
||
break;
|
||
|
||
case 262:
|
||
#line 807 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr) ); HB_COMP_PARAM->iPassByRef=(yyvsp[(3) - (5)].bTrue); ;}
|
||
break;
|
||
|
||
case 271:
|
||
#line 826 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 272:
|
||
#line 826 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 282:
|
||
#line 836 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 283:
|
||
#line 836 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 286:
|
||
#line 839 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 287:
|
||
#line 839 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 289:
|
||
#line 841 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 290:
|
||
#line 841 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 302:
|
||
#line 855 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 303:
|
||
#line 855 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 304:
|
||
#line 856 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 305:
|
||
#line 856 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;}
|
||
break;
|
||
|
||
case 307:
|
||
#line 860 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 309:
|
||
#line 864 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 311:
|
||
#line 868 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 317:
|
||
#line 874 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), NULL ); ;}
|
||
break;
|
||
|
||
case 339:
|
||
#line 907 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 340:
|
||
#line 908 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 341:
|
||
#line 911 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 342:
|
||
#line 914 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 343:
|
||
#line 915 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 344:
|
||
#line 918 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 345:
|
||
#line 919 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 346:
|
||
#line 920 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 347:
|
||
#line 923 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 348:
|
||
#line 924 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 349:
|
||
#line 925 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 350:
|
||
#line 926 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 351:
|
||
#line 927 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 352:
|
||
#line 928 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 353:
|
||
#line 929 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 354:
|
||
#line 930 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 355:
|
||
#line 931 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 356:
|
||
#line 932 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 357:
|
||
#line 933 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 358:
|
||
#line 934 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 359:
|
||
#line 935 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 360:
|
||
#line 936 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 361:
|
||
#line 937 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 362:
|
||
#line 938 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 363:
|
||
#line 939 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 364:
|
||
#line 940 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 365:
|
||
#line 941 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 366:
|
||
#line 942 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType; HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 367:
|
||
#line 943 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 368:
|
||
#line 946 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 369:
|
||
#line 949 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 370:
|
||
#line 952 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 371:
|
||
#line 955 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 372:
|
||
#line 958 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 373:
|
||
#line 961 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 374:
|
||
#line 964 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 381:
|
||
#line 975 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 382:
|
||
#line 976 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 383:
|
||
#line 977 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 384:
|
||
#line 978 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 385:
|
||
#line 979 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 386:
|
||
#line 980 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 387:
|
||
#line 983 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 388:
|
||
#line 984 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 389:
|
||
#line 987 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 390:
|
||
#line 988 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 391:
|
||
#line 989 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 392:
|
||
#line 990 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 393:
|
||
#line 991 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 394:
|
||
#line 992 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 395:
|
||
#line 993 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 396:
|
||
#line 994 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 397:
|
||
#line 995 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 399:
|
||
#line 1004 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 400:
|
||
#line 1005 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 401:
|
||
#line 1006 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 402:
|
||
#line 1009 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 403:
|
||
#line 1010 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 404:
|
||
#line 1013 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;}
|
||
break;
|
||
|
||
case 405:
|
||
#line 1014 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;}
|
||
break;
|
||
|
||
case 406:
|
||
#line 1019 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 407:
|
||
#line 1020 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 408:
|
||
#line 1021 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
|
||
break;
|
||
|
||
case 409:
|
||
#line 1022 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
|
||
break;
|
||
|
||
case 410:
|
||
#line 1025 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 411:
|
||
#line 1026 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 412:
|
||
#line 1029 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 413:
|
||
#line 1030 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(0) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 415:
|
||
#line 1035 "harbour.y"
|
||
{ /* 3 */
|
||
HB_CBVAR_PTR pVar;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compCodeBlockStart( HB_COMP_PARAM, TRUE );
|
||
HB_COMP_PARAM->functions.pLast->bFlags |= FUN_EXTBLOCK;
|
||
HB_COMP_PARAM->functions.pLast->fVParams =
|
||
( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0;
|
||
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_EXT;
|
||
if( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string )
|
||
{
|
||
hb_xfree( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string );
|
||
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string = NULL;
|
||
(yyvsp[(1) - (2)].asExpr)->ulLength = 0;
|
||
}
|
||
|
||
HB_COMP_PARAM->iVarScope = VS_PARAMETER;
|
||
pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals;
|
||
while( pVar )
|
||
{
|
||
hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType );
|
||
pVar =pVar->pNext;
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 416:
|
||
#line 1060 "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 - (yyvsp[(3) - (5)].lNumber) );
|
||
HB_COMP_PARAM->functions.pLast->lPCodePos = (yyvsp[(3) - (5)].lNumber);
|
||
HB_COMP_PARAM->lastLinePos = 0;
|
||
;}
|
||
break;
|
||
|
||
case 417:
|
||
#line 1070 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 418:
|
||
#line 1071 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 419:
|
||
#line 1073 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
|
||
break;
|
||
|
||
case 421:
|
||
#line 1086 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;}
|
||
break;
|
||
|
||
case 423:
|
||
#line 1092 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 424:
|
||
#line 1093 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 425:
|
||
#line 1094 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 426:
|
||
#line 1095 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 427:
|
||
#line 1096 "harbour.y"
|
||
{ if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL );
|
||
else
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->wParamNum = 0;
|
||
HB_COMP_PARAM->iVarScope = ( VS_PRIVATE | VS_PARAMETER );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 428:
|
||
#line 1103 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 429:
|
||
#line 1106 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 430:
|
||
#line 1107 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 431:
|
||
#line 1110 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 432:
|
||
#line 1111 "harbour.y"
|
||
{ (yyval.iNumber)++; ;}
|
||
break;
|
||
|
||
case 434:
|
||
#line 1121 "harbour.y"
|
||
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
|
||
break;
|
||
|
||
case 435:
|
||
#line 1123 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 436:
|
||
#line 1127 "harbour.y"
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( (yyvsp[(2) - (3)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
|
||
;}
|
||
break;
|
||
|
||
case 437:
|
||
#line 1135 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 438:
|
||
#line 1136 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (3)].string), NULL, HB_COMP_PARAM ), FALSE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 439:
|
||
#line 1152 "harbour.y"
|
||
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
|
||
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType );
|
||
;}
|
||
break;
|
||
|
||
case 440:
|
||
#line 1155 "harbour.y"
|
||
{HB_COMP_PARAM->cVarType = ' ';;}
|
||
break;
|
||
|
||
case 441:
|
||
#line 1156 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->cCastType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (6)].string) );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (6)].string), NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber);
|
||
;}
|
||
break;
|
||
|
||
case 442:
|
||
#line 1184 "harbour.y"
|
||
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 444:
|
||
#line 1193 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 445:
|
||
#line 1194 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 446:
|
||
#line 1195 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 447:
|
||
#line 1198 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
|
||
break;
|
||
|
||
case 448:
|
||
#line 1200 "harbour.y"
|
||
{
|
||
if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) );
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 449:
|
||
#line 1206 "harbour.y"
|
||
{ (yyval.iNumber)=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 450:
|
||
#line 1207 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 451:
|
||
#line 1210 "harbour.y"
|
||
{ (yyval.string) = NULL; ;}
|
||
break;
|
||
|
||
case 452:
|
||
#line 1211 "harbour.y"
|
||
{ (yyval.string) = (yyvsp[(2) - (2)].string); ;}
|
||
break;
|
||
|
||
case 453:
|
||
#line 1214 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
|
||
break;
|
||
|
||
case 454:
|
||
#line 1214 "harbour.y"
|
||
{ HB_COMP_PARAM->cVarType = ' '; ;}
|
||
break;
|
||
|
||
case 455:
|
||
#line 1217 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 456:
|
||
#line 1218 "harbour.y"
|
||
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 457:
|
||
#line 1221 "harbour.y"
|
||
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
|
||
break;
|
||
|
||
case 458:
|
||
#line 1222 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastDeclared )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->cType = HB_COMP_PARAM->cVarType;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastDeclared->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastDeclared->szName );
|
||
HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( int ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
/* Resetting */
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->szDeclaredFun = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
HB_COMP_PARAM->iVarScope = VS_NONE;
|
||
;}
|
||
break;
|
||
|
||
case 459:
|
||
#line 1244 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 460:
|
||
#line 1244 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 461:
|
||
#line 1245 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 462:
|
||
#line 1246 "harbour.y"
|
||
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 463:
|
||
#line 1247 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; ;}
|
||
break;
|
||
|
||
case 464:
|
||
#line 1247 "harbour.y"
|
||
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
|
||
break;
|
||
|
||
case 471:
|
||
#line 1260 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
|
||
break;
|
||
|
||
case 472:
|
||
#line 1261 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( int ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' );
|
||
}
|
||
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 473:
|
||
#line 1282 "harbour.y"
|
||
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
|
||
break;
|
||
|
||
case 474:
|
||
#line 1283 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->pLastMethod )
|
||
{
|
||
PCOMCLASS pClass;
|
||
char szSetData[ HB_SYMBOL_NAME_LEN + 1 ];
|
||
int iLen;
|
||
|
||
/* List Type overrides if exists. */
|
||
if( HB_COMP_PARAM->cDataListType ) HB_COMP_PARAM->cVarType = HB_COMP_PARAM->cDataListType;
|
||
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass );
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
if( ! HB_COMP_PARAM->pLastMethod->pClass )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
|
||
HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( int ) HB_COMP_PARAM->cVarType ) ? 'O' :'o' );
|
||
}
|
||
}
|
||
else
|
||
pClass = NULL;
|
||
|
||
iLen = strlen( (yyvsp[(1) - (3)].string) );
|
||
if( iLen >= HB_SYMBOL_NAME_LEN )
|
||
iLen = HB_SYMBOL_NAME_LEN - 1;
|
||
szSetData[ 0 ] = '_';
|
||
memcpy( szSetData + 1, (yyvsp[(1) - (3)].string), iLen );
|
||
szSetData[ iLen + 1 ] = '\0';
|
||
|
||
HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass,
|
||
hb_compIdentifierNew( HB_COMP_PARAM, szSetData, HB_IDENT_COPY ) );
|
||
HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->iParamCount = 1;
|
||
|
||
/* TOFIX: these allocations causes memory leaks */
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes = ( BYTE * ) hb_xgrab( 1 );
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( COMCLASS ) );
|
||
|
||
HB_COMP_PARAM->pLastMethod->cParamTypes[0] = HB_COMP_PARAM->cVarType;
|
||
HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass;
|
||
|
||
if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' )
|
||
{
|
||
HB_COMP_PARAM->pLastMethod->pClass = pClass;
|
||
HB_COMP_PARAM->szFromClass = NULL;
|
||
}
|
||
}
|
||
|
||
HB_COMP_PARAM->pLastMethod = NULL;
|
||
HB_COMP_PARAM->cVarType = ' ';
|
||
;}
|
||
break;
|
||
|
||
case 481:
|
||
#line 1348 "harbour.y"
|
||
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 482:
|
||
#line 1351 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 483:
|
||
#line 1352 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 484:
|
||
#line 1353 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), 'F' ); ;}
|
||
break;
|
||
|
||
case 485:
|
||
#line 1354 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;}
|
||
break;
|
||
|
||
case 486:
|
||
#line 1355 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 487:
|
||
#line 1356 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), 'F' ); ;}
|
||
break;
|
||
|
||
case 488:
|
||
#line 1359 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ); ;}
|
||
break;
|
||
|
||
case 489:
|
||
#line 1360 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 490:
|
||
#line 1361 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 491:
|
||
#line 1362 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ); ;}
|
||
break;
|
||
|
||
case 492:
|
||
#line 1363 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 493:
|
||
#line 1364 "harbour.y"
|
||
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ); ;}
|
||
break;
|
||
|
||
case 502:
|
||
#line 1377 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 503:
|
||
#line 1378 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 504:
|
||
#line 1379 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 505:
|
||
#line 1380 "harbour.y"
|
||
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 506:
|
||
#line 1384 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 507:
|
||
#line 1386 "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 508:
|
||
#line 1388 "harbour.y"
|
||
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 509:
|
||
#line 1391 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 511:
|
||
#line 1395 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 512:
|
||
#line 1397 "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 513:
|
||
#line 1401 "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 514:
|
||
#line 1405 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 515:
|
||
#line 1407 "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 516:
|
||
#line 1411 "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 517:
|
||
#line 1416 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wIfCounter )
|
||
--HB_COMP_PARAM->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;}
|
||
break;
|
||
|
||
case 518:
|
||
#line 1419 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wIfCounter )
|
||
--HB_COMP_PARAM->wIfCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;}
|
||
break;
|
||
|
||
case 519:
|
||
#line 1426 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 522:
|
||
#line 1438 "harbour.y"
|
||
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
|
||
break;
|
||
|
||
case 523:
|
||
#line 1442 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wCaseCounter )
|
||
--HB_COMP_PARAM->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 524:
|
||
#line 1447 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wCaseCounter )
|
||
--HB_COMP_PARAM->wCaseCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 525:
|
||
#line 1453 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
|
||
break;
|
||
|
||
case 528:
|
||
#line 1457 "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 529:
|
||
#line 1465 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 530:
|
||
#line 1466 "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 531:
|
||
#line 1471 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 532:
|
||
#line 1477 "harbour.y"
|
||
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 533:
|
||
#line 1478 "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 534:
|
||
#line 1483 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 535:
|
||
#line 1490 "harbour.y"
|
||
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 536:
|
||
#line 1490 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 538:
|
||
#line 1492 "harbour.y"
|
||
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
|
||
break;
|
||
|
||
case 540:
|
||
#line 1497 "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 541:
|
||
#line 1502 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compGenJump( (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 542:
|
||
#line 1507 "harbour.y"
|
||
{
|
||
hb_compGenJumpHere( (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wWhileCounter )
|
||
--HB_COMP_PARAM->wWhileCounter;
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN;
|
||
;}
|
||
break;
|
||
|
||
case 543:
|
||
#line 1516 "harbour.y"
|
||
{ (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compLinePushIfInside( HB_COMP_PARAM ); ++HB_COMP_PARAM->wWhileCounter; hb_compLoopStart( HB_COMP_PARAM, TRUE ); ;}
|
||
break;
|
||
|
||
case 544:
|
||
#line 1519 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 545:
|
||
#line 1520 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 546:
|
||
#line 1524 "harbour.y"
|
||
{ /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
|
||
hb_compDebugStart();
|
||
++HB_COMP_PARAM->wForCounter;
|
||
(yyval.asExpr) = hb_compExprGenPush( hb_compExprAssign( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ) )
|
||
{
|
||
hb_compForStart( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ), FALSE );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 547:
|
||
#line 1536 "harbour.y"
|
||
{ /* 9 */
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 548:
|
||
#line 1541 "harbour.y"
|
||
{ /* 11 */
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 549:
|
||
#line 1545 "harbour.y"
|
||
{
|
||
int iSign, iLine;
|
||
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
|
||
iLine = HB_COMP_PARAM->currLine;
|
||
HB_COMP_PARAM->currLine = (yyvsp[(1) - (12)].lNumber);
|
||
hb_compLinePush( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->currLine = iLine;
|
||
|
||
iSign = (yyvsp[(8) - (12)].asExpr) ? hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) ) : 1;
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
hb_compGenJumpHere( (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
|
||
hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ); /* end */
|
||
if( iSign )
|
||
hb_compGenPCode1( iSign > 0 ? HB_P_GREATER : HB_P_LESS, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ); /* step */
|
||
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
|
||
}
|
||
|
||
hb_compGenJumpFalse( (yyvsp[(11) - (12)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) )
|
||
hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(7) - (12)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
|
||
if( (yyvsp[(8) - (12)].asExpr) )
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 552:
|
||
#line 1586 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 553:
|
||
#line 1587 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 554:
|
||
#line 1590 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 555:
|
||
#line 1593 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 556:
|
||
#line 1596 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 557:
|
||
#line 1599 "harbour.y"
|
||
{ hb_compLinePush( HB_COMP_PARAM );
|
||
if( HB_COMP_PARAM->wForCounter )
|
||
--HB_COMP_PARAM->wForCounter; ;}
|
||
break;
|
||
|
||
case 558:
|
||
#line 1604 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 559:
|
||
#line 1605 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 560:
|
||
#line 1608 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 561:
|
||
#line 1609 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 562:
|
||
#line 1612 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 564:
|
||
#line 1616 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 565:
|
||
#line 1617 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 566:
|
||
#line 1622 "harbour.y"
|
||
{
|
||
++HB_COMP_PARAM->wForCounter; /* 5 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compDebugStart();
|
||
;}
|
||
break;
|
||
|
||
case 567:
|
||
#line 1628 "harbour.y"
|
||
{
|
||
/* 7
|
||
*/
|
||
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
|
||
|
||
hb_compLoopStart( HB_COMP_PARAM, TRUE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
;}
|
||
break;
|
||
|
||
case 568:
|
||
#line 1637 "harbour.y"
|
||
{
|
||
/* 9
|
||
*/
|
||
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 569:
|
||
#line 1643 "harbour.y"
|
||
{
|
||
hb_compLoopHere( HB_COMP_PARAM );
|
||
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
|
||
hb_compGenJump( (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
hb_compEnumEnd( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(2) - (10)].asExpr) );
|
||
HB_COMP_EXPR_DELETE( (yyvsp[(4) - (10)].asExpr) );
|
||
;}
|
||
break;
|
||
|
||
case 570:
|
||
#line 1657 "harbour.y"
|
||
{ (yyval.iNumber) = 1; ;}
|
||
break;
|
||
|
||
case 571:
|
||
#line 1658 "harbour.y"
|
||
{ (yyval.iNumber) = -1; ;}
|
||
break;
|
||
|
||
case 572:
|
||
#line 1662 "harbour.y"
|
||
{
|
||
hb_compLoopStart( HB_COMP_PARAM, FALSE );
|
||
hb_compSwitchStart( HB_COMP_PARAM );
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 573:
|
||
#line 1669 "harbour.y"
|
||
{
|
||
hb_compSwitchEnd( HB_COMP_PARAM );
|
||
hb_compLoopEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 574:
|
||
#line 1676 "harbour.y"
|
||
{
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 575:
|
||
#line 1682 "harbour.y"
|
||
{
|
||
if( HB_COMP_PARAM->wSwitchCounter )
|
||
--HB_COMP_PARAM->wSwitchCounter;
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
;}
|
||
break;
|
||
|
||
case 576:
|
||
#line 1690 "harbour.y"
|
||
{ ++HB_COMP_PARAM->wSwitchCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 577:
|
||
#line 1694 "harbour.y"
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
|
||
;}
|
||
break;
|
||
|
||
case 579:
|
||
#line 1701 "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 580:
|
||
#line 1709 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 582:
|
||
#line 1712 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 586:
|
||
#line 1720 "harbour.y"
|
||
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 587:
|
||
#line 1720 "harbour.y"
|
||
{ HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 589:
|
||
#line 1725 "harbour.y"
|
||
{ /* 2 */
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
++HB_COMP_PARAM->wSeqCounter;
|
||
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 590:
|
||
#line 1733 "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( (yyvsp[(2) - (5)].lNumber), HB_COMP_PARAM );
|
||
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 591:
|
||
#line 1743 "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( (yyvsp[(2) - (7)].lNumber), (yyvsp[(7) - (7)].lNumber), HB_COMP_PARAM );
|
||
else if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->wSeqCounter;
|
||
;}
|
||
break;
|
||
|
||
case 592:
|
||
#line 1753 "harbour.y"
|
||
{ /* 10 */
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
if( (yyvsp[(9) - (9)].lNumber) )
|
||
{
|
||
/* replace END address with ALWAYS address in
|
||
HB_P_SEQEND opcode */
|
||
hb_compGenJumpThere( (yyvsp[(6) - (9)].lNumber), (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
|
||
hb_compGenJumpThere( (yyvsp[(2) - (9)].lNumber) - 4, (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
|
||
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
|
||
hb_compGenJumpHere( (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( (yyvsp[(6) - (9)].lNumber), HB_COMP_PARAM );
|
||
}
|
||
hb_compSequenceFinish( HB_COMP_PARAM, (yyvsp[(2) - (9)].lNumber), (yyvsp[(6) - (9)].lNumber), (yyvsp[(9) - (9)].lNumber),
|
||
(yyvsp[(5) - (9)].lNumber) != 0, (yyvsp[(7) - (9)].lNumber) != 0 );
|
||
;}
|
||
break;
|
||
|
||
case 594:
|
||
#line 1777 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 595:
|
||
#line 1779 "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 596:
|
||
#line 1786 "harbour.y"
|
||
{ (yyval.lNumber) = 0; ;}
|
||
break;
|
||
|
||
case 598:
|
||
#line 1791 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compSequenceAlways( HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 599:
|
||
#line 1798 "harbour.y"
|
||
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;}
|
||
break;
|
||
|
||
case 602:
|
||
#line 1804 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 603:
|
||
#line 1815 "harbour.y"
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE;
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
if( HB_COMP_PARAM->wSeqCounter )
|
||
--HB_COMP_PARAM->wSeqCounter;
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
hb_compGenPCode1( HB_P_SEQRECOVER, HB_COMP_PARAM );
|
||
hb_compGenPopVar( (yyvsp[(2) - (2)].string), HB_COMP_PARAM );
|
||
;}
|
||
break;
|
||
|
||
case 606:
|
||
#line 1837 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 607:
|
||
#line 1839 "harbour.y"
|
||
{
|
||
(yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (4)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 608:
|
||
#line 1844 "harbour.y"
|
||
{ (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;}
|
||
break;
|
||
|
||
case 609:
|
||
#line 1846 "harbour.y"
|
||
{
|
||
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) );
|
||
/* DOIDENT is the only one identifier which can be returned in lower letters */
|
||
(yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (3)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->iPassByRef = (yyvsp[(2) - (3)].bTrue);
|
||
;}
|
||
break;
|
||
|
||
case 610:
|
||
#line 1854 "harbour.y"
|
||
{ (yyval.asExpr) = NULL; ;}
|
||
break;
|
||
|
||
case 611:
|
||
#line 1855 "harbour.y"
|
||
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
|
||
break;
|
||
|
||
case 612:
|
||
#line 1858 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 613:
|
||
#line 1859 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 614:
|
||
#line 1860 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 615:
|
||
#line 1861 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
|
||
break;
|
||
|
||
case 616:
|
||
#line 1862 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
|
||
break;
|
||
|
||
case 617:
|
||
#line 1865 "harbour.y"
|
||
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
|
||
break;
|
||
|
||
case 622:
|
||
#line 1873 "harbour.y"
|
||
{
|
||
hb_compLinePushIfInside( HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
|
||
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
hb_compGenPCode1( HB_P_WITHOBJECTSTART, HB_COMP_PARAM );
|
||
HB_COMP_PARAM->wWithObjectCnt++;
|
||
;}
|
||
break;
|
||
|
||
case 623:
|
||
#line 1882 "harbour.y"
|
||
{ if( HB_COMP_PARAM->wWithObjectCnt )
|
||
--HB_COMP_PARAM->wWithObjectCnt;
|
||
if( (yyvsp[(5) - (6)].lNumber) )
|
||
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
|
||
else
|
||
{
|
||
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
|
||
(yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
|
||
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
|
||
}
|
||
;}
|
||
break;
|
||
|
||
case 624:
|
||
#line 1895 "harbour.y"
|
||
{ HB_COMP_PARAM->fError = FALSE; ;}
|
||
break;
|
||
|
||
|
||
/* Line 1268 of yacc.c. */
|
||
#line 6998 "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. |
|
||
`---------------------------------------------------*/
|
||
#if 0
|
||
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
|
||
|
||
|
||
/*-------------------------------------------------------------.
|
||
| 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 1899 "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 ) );
|
||
|
||
if( HB_COMP_PARAM->pLoops )
|
||
{
|
||
HB_LOOPEXIT_PTR pLast = HB_COMP_PARAM->pLoops;
|
||
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pLoop;
|
||
}
|
||
else
|
||
HB_COMP_PARAM->pLoops = pLoop;
|
||
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the start position */
|
||
pLoop->fCanLoop = fCanLoop; /* can we use LOOP inside */
|
||
pLoop->wSeqCounter = HB_COMP_PARAM->wSeqCounter; /* store current SEQUENCE counter */
|
||
pLoop->pExitList = NULL;
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->pNext = NULL;
|
||
}
|
||
|
||
/*
|
||
* 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;
|
||
|
||
pLoop = HB_COMP_PARAM->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 != HB_COMP_PARAM->wSeqCounter )
|
||
{
|
||
/* Attempt to LOOP from BEGIN/END sequence
|
||
* Current SEQUENCE counter is different then at the beginning of loop
|
||
* Notice that LOOP is allowed in RECOVER code.
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
|
||
}
|
||
else
|
||
{
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
|
||
pLoop->pLoopList = NULL;
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the position to fix */
|
||
|
||
while( pLast->pLoopList )
|
||
pLast = pLast->pLoopList;
|
||
|
||
pLast->pLoopList = pLoop;
|
||
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Stores the position of EXIT statement to fix it later at the end of loop
|
||
*/
|
||
static void hb_compLoopExit( HB_COMP_DECL )
|
||
{
|
||
if( ! HB_COMP_PARAM->pLoops )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_LOOPEXIT_PTR pLast, pLoop;
|
||
|
||
pLast = HB_COMP_PARAM->pLoops;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
|
||
if( pLast->wSeqCounter != HB_COMP_PARAM->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.
|
||
*/
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
|
||
}
|
||
else
|
||
{
|
||
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
|
||
|
||
pLoop->pExitList = NULL;
|
||
pLoop->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos; /* store the position to fix */
|
||
|
||
while( pLast->pExitList )
|
||
pLast = pLast->pExitList;
|
||
|
||
pLast->pExitList = pLoop;
|
||
|
||
hb_compGenJump( 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the LOOP statement
|
||
*/
|
||
static void hb_compLoopHere( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop = HB_COMP_PARAM->pLoops, pFree, pLast;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
pLoop = pLoop->pNext;
|
||
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
while( pLoop )
|
||
{
|
||
hb_compGenJumpHere( pLoop->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pLoop;
|
||
pLoop = pLoop->pLoopList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
pLast->pLoopList = NULL;
|
||
}
|
||
}
|
||
|
||
/*
|
||
* Fixes the EXIT statements and releases memory allocated for current loop
|
||
*/
|
||
static void hb_compLoopEnd( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pExit, pLoop = HB_COMP_PARAM->pLoops, pLast = HB_COMP_PARAM->pLoops, pFree;
|
||
|
||
if( pLoop )
|
||
{
|
||
while( pLoop->pNext )
|
||
{
|
||
pLast = pLoop;
|
||
pLoop = pLoop->pNext;
|
||
}
|
||
|
||
pExit = pLoop->pExitList;
|
||
while( pExit )
|
||
{
|
||
hb_compGenJumpHere( pExit->ulOffset + 1, HB_COMP_PARAM );
|
||
pFree = pExit;
|
||
pExit = pExit->pExitList;
|
||
hb_xfree( ( void * ) pFree );
|
||
}
|
||
|
||
pLast->pNext = NULL;
|
||
if( pLoop == HB_COMP_PARAM->pLoops )
|
||
HB_COMP_PARAM->pLoops = NULL;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
void hb_compLoopKill( HB_COMP_DECL )
|
||
{
|
||
HB_LOOPEXIT_PTR pLoop, pFree;
|
||
|
||
while( HB_COMP_PARAM->pLoops )
|
||
{
|
||
pLoop = HB_COMP_PARAM->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 );
|
||
}
|
||
HB_COMP_PARAM->pLoops = pLoop->pNext;
|
||
hb_xfree( ( void * ) pLoop );
|
||
}
|
||
}
|
||
|
||
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirst, ULONG ulOffset )
|
||
{
|
||
HB_ELSEIF_PTR pElseIf = ( HB_ELSEIF_PTR ) hb_xgrab( sizeof( HB_ELSEIF ) ), pLast;
|
||
|
||
pElseIf->ulOffset = ulOffset;
|
||
pElseIf->pPrev = NULL;
|
||
pElseIf->pElseif = NULL;
|
||
|
||
if( pFirst )
|
||
{
|
||
pLast = ( HB_ELSEIF_PTR ) pFirst;
|
||
while( pLast->pElseif )
|
||
pLast = pLast->pElseif;
|
||
pLast->pElseif = pElseIf;
|
||
}
|
||
else
|
||
{
|
||
if( HB_COMP_PARAM->elseif )
|
||
{
|
||
pElseIf->pPrev = HB_COMP_PARAM->elseif;
|
||
}
|
||
pFirst = pElseIf;
|
||
HB_COMP_PARAM->elseif = pElseIf;
|
||
}
|
||
return pFirst;
|
||
}
|
||
|
||
|
||
static void hb_compElseIfFix( HB_COMP_DECL, void * pFixElseIfs )
|
||
{
|
||
HB_ELSEIF_PTR pFix = ( HB_ELSEIF_PTR ) pFixElseIfs;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
HB_COMP_PARAM->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
|
||
void hb_compElseIfKill( HB_COMP_DECL )
|
||
{
|
||
HB_ELSEIF_PTR pFix;
|
||
HB_ELSEIF_PTR pDel;
|
||
|
||
while( HB_COMP_PARAM->elseif )
|
||
{
|
||
pFix = HB_COMP_PARAM->elseif;
|
||
HB_COMP_PARAM->elseif = pFix->pPrev;
|
||
while( pFix )
|
||
{
|
||
pDel = pFix;
|
||
pFix = pFix->pElseif;
|
||
hb_xfree( pDel );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR pVar, BOOL bPopInitValue )
|
||
{
|
||
HB_RTVAR_PTR pRTvar = ( HB_RTVAR_PTR ) hb_xgrab( sizeof( HB_RTVAR ) );
|
||
|
||
pRTvar->pVar = pVar;
|
||
pRTvar->bPopValue = bPopInitValue;
|
||
pRTvar->pNext = NULL;
|
||
pRTvar->pPrev = NULL;
|
||
|
||
if( HB_COMP_PARAM->rtvars )
|
||
{
|
||
HB_RTVAR_PTR pLast = HB_COMP_PARAM->rtvars;
|
||
while( pLast->pNext )
|
||
pLast = pLast->pNext;
|
||
pLast->pNext = pRTvar;
|
||
pRTvar->pPrev = pLast;
|
||
}
|
||
else
|
||
HB_COMP_PARAM->rtvars = pRTvar;
|
||
}
|
||
|
||
static void hb_compRTVariableGen( HB_COMP_DECL, char * szCreateFun )
|
||
{
|
||
USHORT usCount = 0;
|
||
HB_RTVAR_PTR pVar = HB_COMP_PARAM->rtvars;
|
||
HB_RTVAR_PTR pDel;
|
||
|
||
/* generate the function call frame */
|
||
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
|
||
|
||
/* push variable names to create */
|
||
while( pVar->pNext )
|
||
{
|
||
hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
pVar = pVar->pNext;
|
||
++usCount;
|
||
}
|
||
hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
|
||
++usCount;
|
||
|
||
/* call function that will create either PUBLIC or PRIVATE variables */
|
||
if( usCount > 255 )
|
||
hb_compGenPCode3( HB_P_DO, HB_LOBYTE( usCount ), HB_HIBYTE( usCount ), HB_COMP_PARAM );
|
||
else
|
||
hb_compGenPCode2( HB_P_DOSHORT, ( BYTE ) usCount, HB_COMP_PARAM );
|
||
|
||
/* pop initial values */
|
||
while( pVar )
|
||
{
|
||
if( pVar->bPopValue )
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( pVar->pVar, HB_COMP_PARAM ) );
|
||
else
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
pDel = pVar;
|
||
pVar = pVar->pPrev;
|
||
hb_xfree( pDel );
|
||
}
|
||
HB_COMP_PARAM->rtvars = NULL;
|
||
}
|
||
|
||
void hb_compRTVariableKill( HB_COMP_DECL )
|
||
{
|
||
HB_RTVAR_PTR pVar;
|
||
|
||
while( HB_COMP_PARAM->rtvars )
|
||
{
|
||
pVar = HB_COMP_PARAM->rtvars;
|
||
|
||
HB_COMP_EXPR_DELETE( pVar->pVar );
|
||
HB_COMP_PARAM->rtvars = pVar->pPrev;
|
||
hb_xfree( pVar );
|
||
}
|
||
HB_COMP_PARAM->rtvars = NULL;
|
||
}
|
||
|
||
static void hb_compVariableDim( char * szName, HB_EXPR_PTR pInitValue, HB_COMP_DECL )
|
||
{
|
||
if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
|
||
}
|
||
else if( HB_COMP_PARAM->iVarScope == VS_STATIC )
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
HB_EXPR_PTR pVar = hb_compExprNewVar( szName, HB_COMP_PARAM );
|
||
HB_EXPR_PTR pAssign;
|
||
|
||
/* create a static variable */
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
|
||
/* create an array */
|
||
hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
/* check if valid initializers were used but don't generate any code */
|
||
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
|
||
/* now pop an array */
|
||
hb_compExprGenPop( pVar, HB_COMP_PARAM );
|
||
/* delete all used expressions */
|
||
HB_COMP_EXPR_DELETE( pAssign );
|
||
hb_compStaticDefEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
else
|
||
{
|
||
USHORT uCount = (USHORT) hb_compExprListLen( pInitValue );
|
||
|
||
hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' );
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pInitValue, HB_COMP_PARAM ) );
|
||
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
|
||
|
||
if( HB_COMP_PARAM->iVarScope != VS_LOCAL ||
|
||
!( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) );
|
||
}
|
||
}
|
||
}
|
||
|
||
static void hb_compForStart( HB_COMP_DECL, char *szVarName, BOOL bForEach )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar == NULL )
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->pEnum = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof(HB_ENUMERATOR) );
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
}
|
||
else
|
||
{
|
||
BOOL bWarn = TRUE;
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
/* Enumerator variable exists already - throw warning */
|
||
if( bWarn == TRUE )
|
||
{
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FORVAR_DUPL, szVarName, NULL );
|
||
bWarn = FALSE;
|
||
}
|
||
}
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
pLast->pNext = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof( HB_ENUMERATOR ) );
|
||
pEnumVar = pLast->pNext;
|
||
}
|
||
pEnumVar->szName = szVarName;
|
||
pEnumVar->bForEach = bForEach;
|
||
pEnumVar->pNext = NULL;
|
||
}
|
||
|
||
BOOL hb_compForEachVarError( HB_COMP_DECL, char *szVarName )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar )
|
||
{
|
||
while( pEnumVar )
|
||
{
|
||
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
|
||
{
|
||
if( pEnumVar->bForEach )
|
||
{
|
||
/* only if it is FOR EACH enumerator
|
||
* generate warning if it is FOR/NEXT loop
|
||
*/
|
||
return FALSE;
|
||
}
|
||
}
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
}
|
||
|
||
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_ENUM_INVALID, szVarName, NULL );
|
||
return TRUE;
|
||
}
|
||
|
||
static void hb_compForEnd( HB_COMP_DECL, char *szVar )
|
||
{
|
||
HB_ENUMERATOR_PTR pEnumVar;
|
||
|
||
HB_SYMBOL_UNUSED( szVar );
|
||
|
||
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
|
||
if( pEnumVar->pNext )
|
||
{
|
||
HB_ENUMERATOR_PTR pLast = pEnumVar;
|
||
|
||
while( pEnumVar->pNext )
|
||
{
|
||
pLast = pEnumVar;
|
||
pEnumVar = pEnumVar->pNext;
|
||
}
|
||
hb_xfree( pEnumVar );
|
||
pLast->pNext = NULL;
|
||
}
|
||
else
|
||
{
|
||
hb_xfree( pEnumVar );
|
||
HB_COMP_PARAM->functions.pLast->pEnum = NULL;
|
||
}
|
||
}
|
||
|
||
static HB_CARGO2_FUNC( hb_compEnumEvalStart )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( (HB_EXPR_PTR)cargo );
|
||
if( szName )
|
||
hb_compForStart( HB_COMP_PARAM, szName, TRUE );
|
||
|
||
hb_compExprGenPush( (HB_EXPR_PTR)dummy, HB_COMP_PARAM ); /* expression */
|
||
hb_compExprGenPush( (HB_EXPR_PTR)cargo, HB_COMP_PARAM ); /* variable */
|
||
}
|
||
|
||
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend )
|
||
{
|
||
ULONG ulLen;
|
||
|
||
if( hb_compExprListLen(pVars) != hb_compExprListLen(pExprs) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_DIFF, NULL, NULL );
|
||
}
|
||
|
||
ulLen = hb_compExprListEval2( HB_COMP_PARAM, pVars, pExprs, hb_compEnumEvalStart );
|
||
|
||
if( ulLen > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_TOOMANY, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
BYTE Len;
|
||
Len = (BYTE) (ulLen & 0xFF);
|
||
hb_compGenPCode3( HB_P_ENUMSTART, Len, descend > 0 ? 1 : 0, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend )
|
||
{
|
||
HB_SYMBOL_UNUSED( pExpr );
|
||
if( descend > 0 )
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMNEXT, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
hb_compGenPCode1( HB_P_ENUMPREV, HB_COMP_PARAM );
|
||
}
|
||
}
|
||
|
||
static HB_CARGO_FUNC( hb_compEnumEvalEnd )
|
||
{
|
||
char * szName = hb_compExprAsSymbol( (HB_EXPR_PTR)cargo );
|
||
|
||
if( szName )
|
||
hb_compForEnd( HB_COMP_PARAM, szName );
|
||
}
|
||
|
||
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
hb_compExprListEval( HB_COMP_PARAM, pExpr, hb_compEnumEvalEnd );
|
||
hb_compGenPCode1( HB_P_ENUMEND, HB_COMP_PARAM );
|
||
}
|
||
|
||
static void hb_compSwitchStart( HB_COMP_DECL )
|
||
{
|
||
HB_SWITCHCMD_PTR pSwitch = (HB_SWITCHCMD_PTR) hb_xgrab( sizeof( HB_SWITCHCMD ) );
|
||
|
||
pSwitch->pCases = NULL;
|
||
pSwitch->pLast = NULL;
|
||
pSwitch->ulDefault = 0;
|
||
pSwitch->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
pSwitch->iCount = 0;
|
||
pSwitch->pPrev = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->pSwitch = pSwitch;
|
||
}
|
||
|
||
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~FUN_BREAK_CODE;
|
||
|
||
if( pExpr )
|
||
{
|
||
/* normal CASE */
|
||
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
|
||
pCase->ulOffset = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
pCase->pNext = NULL;
|
||
pExpr = hb_compExprReduce( pExpr, HB_COMP_PARAM );
|
||
if( !(hb_compExprIsLong(pExpr) || hb_compExprIsString(pExpr)) )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_NOT_LITERAL_CASE, NULL, NULL );
|
||
}
|
||
pCase->pExpr = pExpr;
|
||
|
||
if( HB_COMP_PARAM->pSwitch->pLast )
|
||
{
|
||
HB_COMP_PARAM->pSwitch->pLast->pNext = pCase;
|
||
HB_COMP_PARAM->pSwitch->pLast = pCase;
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_PARAM->pSwitch->pCases = HB_COMP_PARAM->pSwitch->pLast = pCase;
|
||
}
|
||
HB_COMP_PARAM->pSwitch->iCount++;
|
||
if( hb_compExprIsString( pExpr ) && hb_compExprAsStringLen(pExpr) > 255 )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_STR, NULL, NULL );
|
||
}
|
||
}
|
||
else
|
||
{
|
||
/* DEFAULT */
|
||
if( HB_COMP_PARAM->pSwitch->ulDefault )
|
||
{
|
||
/* more than one default clause */
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_PARAM->pSwitch->ulDefault = HB_COMP_PARAM->functions.pLast->lPCodePos;
|
||
HB_COMP_PARAM->pSwitch->iCount++;
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
static void hb_compSwitchEnd( HB_COMP_DECL )
|
||
{
|
||
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
|
||
BOOL fTextSubst = HB_COMP_PARAM->fTextSubst;
|
||
HB_SWITCHCASE_PTR pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
HB_SWITCHCASE_PTR pTmp;
|
||
HB_SWITCHCMD_PTR pTmpSw;
|
||
ULONG ulExitPos;
|
||
|
||
/* skip switch pcode if there was no EXIT in the last CASE
|
||
* or in the DEFAULT case
|
||
*/
|
||
ulExitPos = hb_compGenJump( 0, HB_COMP_PARAM );
|
||
|
||
hb_compGenJumpHere( HB_COMP_PARAM->pSwitch->ulOffset + 1, HB_COMP_PARAM );
|
||
hb_compGenPCode3( HB_P_SWITCH, HB_LOBYTE(HB_COMP_PARAM->pSwitch->iCount), HB_HIBYTE(HB_COMP_PARAM->pSwitch->iCount), HB_COMP_PARAM );
|
||
HB_COMP_PARAM->fLongOptimize = FALSE;
|
||
HB_COMP_PARAM->fTextSubst = FALSE;
|
||
while( pCase )
|
||
{
|
||
if( pCase->pExpr )
|
||
{
|
||
if( hb_compExprIsLong( pCase->pExpr ) || hb_compExprIsString( pCase->pExpr ) )
|
||
{
|
||
HB_COMP_EXPR_DELETE( hb_compExprGenPush( pCase->pExpr, HB_COMP_PARAM ) );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ), pCase->ulOffset, HB_COMP_PARAM );
|
||
}
|
||
else
|
||
{
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
}
|
||
}
|
||
pCase = pCase->pNext;
|
||
}
|
||
|
||
if( HB_COMP_PARAM->pSwitch->ulDefault )
|
||
{
|
||
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM );
|
||
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
|
||
HB_COMP_PARAM->pSwitch->ulDefault, HB_COMP_PARAM );
|
||
}
|
||
|
||
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
|
||
HB_COMP_PARAM->fTextSubst = fTextSubst;
|
||
|
||
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
|
||
|
||
pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
while( pCase )
|
||
{
|
||
pTmp = pCase->pNext;
|
||
hb_xfree( (void *)pCase );
|
||
pCase = pTmp;
|
||
}
|
||
pTmpSw = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->pSwitch = HB_COMP_PARAM->pSwitch->pPrev;
|
||
hb_xfree( pTmpSw );
|
||
}
|
||
|
||
/* Release all switch statements
|
||
*/
|
||
void hb_compSwitchKill( HB_COMP_DECL )
|
||
{
|
||
HB_SWITCHCASE_PTR pCase;
|
||
HB_SWITCHCMD_PTR pSwitch;
|
||
|
||
while( HB_COMP_PARAM->pSwitch )
|
||
{
|
||
while( HB_COMP_PARAM->pSwitch->pCases )
|
||
{
|
||
pCase = HB_COMP_PARAM->pSwitch->pCases;
|
||
HB_COMP_EXPR_DELETE( pCase->pExpr );
|
||
HB_COMP_PARAM->pSwitch->pCases = pCase->pNext;
|
||
hb_xfree( (void *) pCase );
|
||
}
|
||
pSwitch = HB_COMP_PARAM->pSwitch;
|
||
HB_COMP_PARAM->pSwitch = pSwitch->pPrev;
|
||
hb_xfree( (void *) pSwitch );
|
||
}
|
||
}
|
||
|
||
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr )
|
||
{
|
||
if( pExpr->ExprType == HB_ET_FUNCALL )
|
||
{
|
||
if( hb_compExprParamListLen( pExpr->value.asFunCall.pParms ) == 0 )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
if( pExpr->value.asFunCall.pFunName->ExprType == HB_ET_MACRO )
|
||
{
|
||
pExpr = pExpr->value.asFunCall.pFunName;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
else
|
||
{
|
||
pExpr = hb_compExprNewFunRef( hb_compExprAsSymbol( pExpr ), HB_COMP_PARAM );
|
||
HB_COMP_EXPR_DELETE( pDelExpr );
|
||
}
|
||
return pExpr;
|
||
}
|
||
}
|
||
#if 0
|
||
else if( !( HB_COMP_PARAM->iPassByRef & ( HB_PASSBYREF_FUNCALL | HB_PASSBYREF_ARRAY ) ) )
|
||
{
|
||
const char * szDesc;
|
||
if( pExpr->ExprType == HB_ET_REFERENCE )
|
||
{
|
||
HB_EXPR_PTR pDelExpr = pExpr;
|
||
pExpr = pExpr->value.asReference;
|
||
HB_COMP_EXPR_CLEAR( pDelExpr );
|
||
}
|
||
|
||
szDesc = hb_compExprAsSymbol( pExpr );
|
||
if( ! szDesc )
|
||
szDesc = hb_compExprDescription( pExpr );
|
||
|
||
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
|
||
}
|
||
#endif
|
||
return pExpr;
|
||
}
|
||
|
||
/* ************************************************************************* */
|
||
|
||
BOOL hb_compCheckUnclosedStru( HB_COMP_DECL )
|
||
{
|
||
BOOL fUnclosed = TRUE;
|
||
|
||
if( HB_COMP_PARAM->wIfCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
|
||
HB_COMP_PARAM->wIfCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wForCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
|
||
HB_COMP_PARAM->wForCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wWhileCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
|
||
HB_COMP_PARAM->wWhileCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wCaseCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
|
||
HB_COMP_PARAM->wCaseCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wSwitchCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
|
||
HB_COMP_PARAM->wSwitchCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wWithObjectCnt )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
|
||
HB_COMP_PARAM->wWithObjectCnt = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->wSeqCounter )
|
||
{
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
|
||
HB_COMP_PARAM->wSeqCounter = 0;
|
||
}
|
||
else if( HB_COMP_PARAM->functions.pLast &&
|
||
( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) )
|
||
{
|
||
HB_COMP_PARAM->functions.pLast->bFlags &= ~FUN_EXTBLOCK;
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL );
|
||
}
|
||
else
|
||
fUnclosed = FALSE;
|
||
|
||
return fUnclosed;
|
||
}
|
||
|
||
void yyerror( HB_COMP_DECL, char * s )
|
||
{
|
||
if( !HB_COMP_PARAM->pLex->lasttok || HB_COMP_PARAM->pLex->lasttok[ 0 ] == '\n' )
|
||
{
|
||
if( ! hb_pp_eof( HB_COMP_PARAM->pLex->pPP ) )
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INCOMPLETE_STMT, NULL, NULL );
|
||
}
|
||
else
|
||
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok );
|
||
}
|
||
|