summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/Grammar.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-12-01 17:36:19 +0100
committerJose <jose@zeroc.com>2015-12-01 17:36:19 +0100
commit2029ff368e49fae489b8ec8fc12f7d126b182dfb (patch)
tree6075d652b7851831c39e6f22004d8720864f1a60 /cpp/src/Slice/Grammar.cpp
parentThe default LMDB map size for IceGrid and IceStorm is now 10MB (Windows) (diff)
downloadice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.tar.bz2
ice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.tar.xz
ice-2029ff368e49fae489b8ec8fc12f7d126b182dfb.zip
C++11 mapping initial commit
Diffstat (limited to 'cpp/src/Slice/Grammar.cpp')
-rw-r--r--cpp/src/Slice/Grammar.cpp4354
1 files changed, 2011 insertions, 2343 deletions
diff --git a/cpp/src/Slice/Grammar.cpp b/cpp/src/Slice/Grammar.cpp
index 6e998481aae..6dbff21edc6 100644
--- a/cpp/src/Slice/Grammar.cpp
+++ b/cpp/src/Slice/Grammar.cpp
@@ -1,21 +1,19 @@
+/* A Bison parser, made by GNU Bison 3.0.2. */
-/* A Bison parser, made by GNU Bison 2.4.1. */
+/* Bison implementation for Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
-/* Skeleton implementation for Bison's Yacc-like parsers in C
-
- Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
- Free Software Foundation, Inc.
-
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
@@ -28,7 +26,7 @@
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. */
@@ -46,7 +44,7 @@
#define YYBISON 1
/* Bison version. */
-#define YYBISON_VERSION "2.4.1"
+#define YYBISON_VERSION "3.0.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
@@ -60,23 +58,17 @@
/* Pull parsers. */
#define YYPULL 1
-/* Using locations. */
-#define YYLSP_NEEDED 0
/* Substitute the variable and function names. */
#define yyparse slice_parse
#define yylex slice_lex
#define yyerror slice_error
-#define yylval slice_lval
-#define yychar slice_char
#define yydebug slice_debug
#define yynerrs slice_nerrs
/* Copy the first part of user declarations. */
-
-/* Line 189 of yacc.c */
-#line 1 "../Slice/Grammar.y"
+#line 1 "../Slice/Grammar.y" /* yacc.c:339 */
// **********************************************************************
@@ -119,23 +111,24 @@ slice_error(const char* s)
if (strcmp(s, "parse error") == 0)
{
- unit->error("syntax error");
+ unit->error("syntax error");
}
else
{
- unit->error(s);
+ unit->error(s);
}
}
+#line 124 "Grammar.tab.c" /* yacc.c:339 */
-/* Line 189 of yacc.c */
-#line 134 "Grammar.tab.c"
-
-/* Enabling traces. */
-#ifndef YYDEBUG
-# define YYDEBUG 1
-#endif
+# ifndef YY_NULLPTR
+# if defined __cplusplus && 201103L <= __cplusplus
+# define YY_NULLPTR nullptr
+# else
+# define YY_NULLPTR 0
+# endif
+# endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
@@ -145,78 +138,85 @@ slice_error(const char* s)
# define YYERROR_VERBOSE 0
#endif
-/* Enabling the token table. */
-#ifndef YYTOKEN_TABLE
-# define YYTOKEN_TABLE 0
+/* In a future release of Bison, this section will be replaced
+ by #include "Grammar.tab.h". */
+#ifndef YY_SLICE_GRAMMAR_TAB_H_INCLUDED
+# define YY_SLICE_GRAMMAR_TAB_H_INCLUDED
+/* Debug traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 1
+#endif
+#if YYDEBUG
+extern int slice_debug;
#endif
-
-/* Tokens. */
+/* Token type. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
- /* Put the tokens into the symbol table, so that GDB and other debuggers
- know about them. */
- enum yytokentype {
- ICE_MODULE = 258,
- ICE_CLASS = 259,
- ICE_INTERFACE = 260,
- ICE_EXCEPTION = 261,
- ICE_STRUCT = 262,
- ICE_SEQUENCE = 263,
- ICE_DICTIONARY = 264,
- ICE_ENUM = 265,
- ICE_OUT = 266,
- ICE_EXTENDS = 267,
- ICE_IMPLEMENTS = 268,
- ICE_THROWS = 269,
- ICE_VOID = 270,
- ICE_BYTE = 271,
- ICE_BOOL = 272,
- ICE_SHORT = 273,
- ICE_INT = 274,
- ICE_LONG = 275,
- ICE_FLOAT = 276,
- ICE_DOUBLE = 277,
- ICE_STRING = 278,
- ICE_OBJECT = 279,
- ICE_LOCAL_OBJECT = 280,
- ICE_LOCAL = 281,
- ICE_CONST = 282,
- ICE_FALSE = 283,
- ICE_TRUE = 284,
- ICE_IDEMPOTENT = 285,
- ICE_OPTIONAL = 286,
- ICE_SCOPE_DELIMITER = 287,
- ICE_IDENTIFIER = 288,
- ICE_STRING_LITERAL = 289,
- ICE_INTEGER_LITERAL = 290,
- ICE_FLOATING_POINT_LITERAL = 291,
- ICE_IDENT_OP = 292,
- ICE_KEYWORD_OP = 293,
- ICE_OPTIONAL_OP = 294,
- ICE_METADATA_OPEN = 295,
- ICE_METADATA_CLOSE = 296,
- ICE_GLOBAL_METADATA_OPEN = 297,
- ICE_GLOBAL_METADATA_CLOSE = 298,
- BAD_CHAR = 299
- };
+ enum yytokentype
+ {
+ ICE_MODULE = 258,
+ ICE_CLASS = 259,
+ ICE_INTERFACE = 260,
+ ICE_EXCEPTION = 261,
+ ICE_STRUCT = 262,
+ ICE_SEQUENCE = 263,
+ ICE_DICTIONARY = 264,
+ ICE_ENUM = 265,
+ ICE_OUT = 266,
+ ICE_EXTENDS = 267,
+ ICE_IMPLEMENTS = 268,
+ ICE_THROWS = 269,
+ ICE_VOID = 270,
+ ICE_BYTE = 271,
+ ICE_BOOL = 272,
+ ICE_SHORT = 273,
+ ICE_INT = 274,
+ ICE_LONG = 275,
+ ICE_FLOAT = 276,
+ ICE_DOUBLE = 277,
+ ICE_STRING = 278,
+ ICE_OBJECT = 279,
+ ICE_LOCAL_OBJECT = 280,
+ ICE_LOCAL = 281,
+ ICE_CONST = 282,
+ ICE_FALSE = 283,
+ ICE_TRUE = 284,
+ ICE_IDEMPOTENT = 285,
+ ICE_OPTIONAL = 286,
+ ICE_VALUE = 287,
+ ICE_SCOPE_DELIMITER = 288,
+ ICE_IDENTIFIER = 289,
+ ICE_STRING_LITERAL = 290,
+ ICE_INTEGER_LITERAL = 291,
+ ICE_FLOATING_POINT_LITERAL = 292,
+ ICE_IDENT_OP = 293,
+ ICE_KEYWORD_OP = 294,
+ ICE_OPTIONAL_OP = 295,
+ ICE_METADATA_OPEN = 296,
+ ICE_METADATA_CLOSE = 297,
+ ICE_GLOBAL_METADATA_OPEN = 298,
+ ICE_GLOBAL_METADATA_CLOSE = 299,
+ BAD_CHAR = 300
+ };
#endif
-
-
+/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
-# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif
-/* Copy the second part of user declarations. */
+int slice_parse (void);
-/* Line 264 of yacc.c */
-#line 220 "Grammar.tab.c"
+#endif /* !YY_SLICE_GRAMMAR_TAB_H_INCLUDED */
+
+/* Copy the second part of user declarations. */
+
+#line 220 "Grammar.tab.c" /* yacc.c:358 */
#ifdef short
# undef short
@@ -230,11 +230,8 @@ typedef unsigned char yytype_uint8;
#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;
+typedef signed char yytype_int8;
#endif
#ifdef YYTYPE_UINT16
@@ -254,8 +251,7 @@ typedef short int yytype_int16;
# 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)
+# elif ! defined YYSIZE_T
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
@@ -266,42 +262,71 @@ typedef short int yytype_int16;
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
-# if YYENABLE_NLS
+# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
-# define YY_(msgid) dgettext ("bison-runtime", msgid)
+# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
-# define YY_(msgid) msgid
+# define YY_(Msgid) Msgid
+# endif
+#endif
+
+#ifndef YY_ATTRIBUTE
+# if (defined __GNUC__ \
+ && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
+ || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
+# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
+# else
+# define YY_ATTRIBUTE(Spec) /* empty */
+# endif
+#endif
+
+#ifndef YY_ATTRIBUTE_PURE
+# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
+#endif
+
+#ifndef YY_ATTRIBUTE_UNUSED
+# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
+#endif
+
+#if !defined _Noreturn \
+ && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
+# if defined _MSC_VER && 1200 <= _MSC_VER
+# define _Noreturn __declspec (noreturn)
+# else
+# define _Noreturn YY_ATTRIBUTE ((__noreturn__))
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
-# define YYUSE(e) ((void) (e))
+# define YYUSE(E) ((void) (E))
#else
-# define YYUSE(e) /* empty */
+# define YYUSE(E) /* empty */
#endif
-/* Identity function, used to suppress warnings about constant conditions. */
-#ifndef lint
-# define YYID(n) (n)
+#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
+/* Suppress an incorrect diagnostic about yylval being uninitialized. */
+# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
+ _Pragma ("GCC diagnostic push") \
+ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
+ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
+# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
+ _Pragma ("GCC diagnostic pop")
#else
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
-static int
-YYID (int yyi)
-#else
-static int
-YYID (yyi)
- int yyi;
+# define YY_INITIAL_VALUE(Value) Value
#endif
-{
- return yyi;
-}
+#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+# define YY_IGNORE_MAYBE_UNINITIALIZED_END
+#endif
+#ifndef YY_INITIAL_VALUE
+# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
+
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
@@ -319,11 +344,11 @@ YYID (yyi)
# 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)
+# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
-# ifndef _STDLIB_H
-# define _STDLIB_H 1
+ /* Use EXIT_SUCCESS as a witness for stdlib.h. */
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
# endif
# endif
# endif
@@ -331,8 +356,8 @@ YYID (yyi)
# endif
# ifdef YYSTACK_ALLOC
- /* Pacify GCC's `empty if-body' warning. */
-# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
+ /* Pacify GCC's 'empty if-body' warning. */
+# define YYSTACK_FREE(Ptr) do { /* empty */; } while (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
@@ -346,25 +371,23 @@ YYID (yyi)
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
-# if (defined __cplusplus && ! defined _STDLIB_H \
+# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
- && (defined YYFREE || defined free)))
+ && (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
-# ifndef _STDLIB_H
-# define _STDLIB_H 1
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
-# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
+# if ! defined malloc && ! defined EXIT_SUCCESS
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)
+# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
@@ -374,7 +397,7 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
- || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
@@ -392,79 +415,85 @@ union yyalloc
((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
+# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
-# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
- do \
- { \
- YYSIZE_T yynewbytes; \
- YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
- Stack = &yyptr->Stack_alloc; \
- yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
- yyptr += yynewbytes / sizeof (*yyptr); \
- } \
- while (YYID (0))
+# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
+ Stack = &yyptr->Stack_alloc; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (0)
#endif
+#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
+/* Copy COUNT objects from SRC to DST. The source and destination do
+ not overlap. */
+# ifndef YYCOPY
+# if defined __GNUC__ && 1 < __GNUC__
+# define YYCOPY(Dst, Src, Count) \
+ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
+# else
+# define YYCOPY(Dst, Src, Count) \
+ do \
+ { \
+ YYSIZE_T yyi; \
+ for (yyi = 0; yyi < (Count); yyi++) \
+ (Dst)[yyi] = (Src)[yyi]; \
+ } \
+ while (0)
+# endif
+# endif
+#endif /* !YYCOPY_NEEDED */
+
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 13
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 886
+#define YYLAST 920
/* YYNTOKENS -- Number of terminals. */
-#define YYNTOKENS 54
+#define YYNTOKENS 55
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 72
/* YYNRULES -- Number of rules. */
-#define YYNRULES 202
-/* YYNRULES -- Number of states. */
-#define YYNSTATES 301
+#define YYNRULES 205
+/* YYNSTATES -- Number of states. */
+#define YYNSTATES 304
-/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
+/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
+ by yylex, with out-of-bounds checking. */
#define YYUNDEFTOK 2
-#define YYMAXUTOK 299
+#define YYMAXUTOK 300
-#define YYTRANSLATE(YYX) \
+#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
-/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
+/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
+ as returned by yylex, without out-of-bounds checking. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 48, 53, 2, 50, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 45,
- 51, 49, 52, 2, 2, 2, 2, 2, 2, 2,
+ 2, 49, 54, 2, 51, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 46,
+ 52, 50, 53, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 46, 2, 47, 2, 2, 2, 2,
+ 2, 2, 2, 47, 2, 48, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
@@ -481,129 +510,39 @@ static const yytype_uint8 yytranslate[] =
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
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45
};
#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, 9, 13, 14, 15, 19, 20,
- 26, 27, 32, 35, 36, 38, 40, 42, 44, 46,
- 48, 50, 52, 54, 56, 58, 60, 62, 63, 70,
- 73, 76, 79, 80, 88, 91, 92, 97, 101, 104,
- 105, 108, 112, 116, 119, 121, 124, 126, 128, 131,
- 134, 137, 138, 145, 150, 154, 157, 158, 160, 163,
- 166, 171, 176, 178, 181, 182, 191, 194, 195, 198,
- 199, 204, 208, 211, 212, 214, 218, 221, 223, 225,
- 229, 232, 237, 240, 242, 245, 247, 249, 252, 256,
- 259, 263, 264, 270, 271, 277, 279, 281, 284, 287,
- 290, 291, 299, 303, 305, 307, 310, 311, 316, 320,
- 323, 324, 326, 330, 332, 334, 336, 344, 352, 363,
- 374, 377, 380, 381, 388, 394, 398, 400, 402, 406,
- 408, 409, 411, 413, 415, 416, 417, 421, 427, 432,
- 439, 443, 449, 452, 453, 455, 458, 462, 464, 466,
- 468, 470, 472, 474, 476, 478, 480, 483, 485, 487,
- 490, 493, 495, 499, 501, 503, 504, 506, 508, 510,
- 512, 514, 516, 523, 529, 531, 533, 535, 537, 539,
- 541, 543, 545, 547, 549, 551, 553, 555, 557, 559,
- 561, 563, 565, 567, 569, 571, 573, 575, 577, 579,
- 581, 583, 585
-};
-
-/* YYRHS -- A `-1'-separated list of the rules' RHS. */
-static const yytype_int8 yyrhs[] =
-{
- 55, 0, -1, 58, -1, 42, 121, 43, -1, 40,
- 121, 41, -1, -1, -1, 56, 59, 58, -1, -1,
- 57, 62, 60, 45, 58, -1, -1, 1, 45, 61,
- 58, -1, 57, 62, -1, -1, 63, -1, 83, -1,
- 84, -1, 98, -1, 99, -1, 66, -1, 67, -1,
- 76, -1, 77, -1, 107, -1, 108, -1, 110, -1,
- 124, -1, -1, 3, 33, 64, 46, 58, 47, -1,
- 6, 33, -1, 6, 125, -1, 122, 65, -1, -1,
- 122, 65, 69, 68, 46, 70, 47, -1, 12, 118,
- -1, -1, 57, 74, 45, 70, -1, 1, 45, 70,
- -1, 57, 74, -1, -1, 119, 33, -1, 39, 35,
- 48, -1, 39, 118, 48, -1, 39, 48, -1, 31,
- -1, 72, 71, -1, 71, -1, 89, -1, 7, 33,
- -1, 7, 125, -1, 122, 75, -1, -1, 122, 75,
- 78, 46, 79, 47, -1, 57, 80, 45, 79, -1,
- 1, 45, 79, -1, 57, 80, -1, -1, 90, -1,
- 4, 33, -1, 4, 125, -1, 4, 37, 35, 48,
- -1, 4, 37, 118, 48, -1, 81, -1, 122, 81,
- -1, -1, 122, 82, 86, 87, 85, 46, 88, 47,
- -1, 12, 118, -1, -1, 13, 101, -1, -1, 57,
- 96, 45, 88, -1, 1, 45, 88, -1, 57, 96,
- -1, -1, 73, -1, 73, 49, 123, -1, 119, 125,
- -1, 119, -1, 71, -1, 71, 49, 123, -1, 72,
- 71, -1, 72, 71, 49, 123, -1, 119, 125, -1,
- 119, -1, 72, 119, -1, 119, -1, 15, -1, 91,
- 37, -1, 30, 91, 37, -1, 91, 38, -1, 30,
- 91, 38, -1, -1, 92, 116, 48, 94, 117, -1,
- -1, 92, 1, 48, 95, 117, -1, 89, -1, 93,
- -1, 5, 33, -1, 5, 125, -1, 122, 97, -1,
- -1, 122, 97, 102, 100, 46, 103, 47, -1, 118,
- 50, 101, -1, 118, -1, 24, -1, 12, 101, -1,
- -1, 57, 104, 45, 103, -1, 1, 45, 103, -1,
- 57, 104, -1, -1, 93, -1, 106, 50, 105, -1,
- 106, -1, 118, -1, 125, -1, 122, 8, 51, 57,
- 119, 52, 33, -1, 122, 8, 51, 57, 119, 52,
- 125, -1, 122, 9, 51, 57, 119, 50, 57, 119,
- 52, 33, -1, 122, 9, 51, 57, 119, 50, 57,
- 119, 52, 125, -1, 10, 33, -1, 10, 125, -1,
- -1, 122, 109, 111, 46, 112, 47, -1, 122, 10,
- 46, 112, 47, -1, 113, 50, 112, -1, 113, -1,
- 33, -1, 33, 49, 114, -1, 125, -1, -1, 35,
- -1, 118, -1, 11, -1, -1, -1, 115, 57, 73,
- -1, 116, 50, 115, 57, 73, -1, 115, 57, 119,
- 125, -1, 116, 50, 115, 57, 119, 125, -1, 115,
- 57, 119, -1, 116, 50, 115, 57, 119, -1, 14,
- 105, -1, -1, 33, -1, 32, 33, -1, 118, 32,
- 33, -1, 16, -1, 17, -1, 18, -1, 19, -1,
- 20, -1, 21, -1, 22, -1, 23, -1, 24, -1,
- 24, 53, -1, 25, -1, 118, -1, 118, 53, -1,
- 34, 120, -1, 34, -1, 121, 50, 120, -1, 120,
- -1, 26, -1, -1, 35, -1, 36, -1, 118, -1,
- 34, -1, 28, -1, 29, -1, 27, 57, 119, 33,
- 49, 123, -1, 27, 57, 119, 49, 123, -1, 3,
- -1, 4, -1, 5, -1, 6, -1, 7, -1, 8,
- -1, 9, -1, 10, -1, 11, -1, 12, -1, 13,
- -1, 14, -1, 15, -1, 16, -1, 17, -1, 18,
- -1, 19, -1, 20, -1, 21, -1, 22, -1, 23,
- -1, 24, -1, 25, -1, 26, -1, 27, -1, 28,
- -1, 29, -1, 30, -1, 31, -1
-};
-
-/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
+ /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
- 0, 114, 114, 122, 131, 136, 145, 144, 154, 153,
- 164, 163, 168, 173, 180, 184, 188, 192, 196, 200,
- 204, 208, 212, 216, 220, 224, 228, 238, 237, 271,
- 275, 286, 297, 296, 323, 332, 340, 349, 352, 357,
- 364, 377, 397, 453, 461, 474, 482, 497, 503, 507,
- 518, 529, 528, 570, 579, 582, 587, 594, 600, 604,
- 615, 640, 705, 717, 731, 730, 770, 805, 813, 818,
- 826, 835, 838, 843, 850, 872, 899, 921, 947, 956,
- 967, 976, 985, 995, 1009, 1015, 1023, 1035, 1059, 1084,
- 1108, 1139, 1138, 1161, 1160, 1183, 1184, 1190, 1194, 1205,
- 1220, 1219, 1254, 1289, 1324, 1334, 1339, 1347, 1356, 1359,
- 1364, 1371, 1377, 1384, 1396, 1408, 1419, 1428, 1443, 1454,
- 1471, 1475, 1487, 1486, 1510, 1525, 1531, 1539, 1551, 1574,
- 1582, 1591, 1595, 1634, 1641, 1652, 1654, 1670, 1686, 1698,
- 1710, 1721, 1737, 1742, 1750, 1753, 1759, 1772, 1776, 1780,
- 1784, 1788, 1792, 1796, 1800, 1804, 1808, 1812, 1816, 1835,
- 1876, 1882, 1890, 1897, 1909, 1916, 1926, 1939, 1952, 1998,
- 2009, 2020, 2036, 2045, 2059, 2062, 2065, 2068, 2071, 2074,
- 2077, 2080, 2083, 2086, 2089, 2092, 2095, 2098, 2101, 2104,
- 2107, 2110, 2113, 2116, 2119, 2122, 2125, 2128, 2131, 2134,
- 2137, 2140, 2143
+ 0, 115, 115, 123, 132, 137, 146, 145, 155, 154,
+ 165, 164, 169, 174, 181, 185, 189, 193, 197, 201,
+ 205, 209, 213, 217, 221, 225, 229, 239, 238, 272,
+ 276, 287, 298, 297, 324, 333, 341, 350, 353, 358,
+ 365, 378, 398, 454, 462, 475, 483, 498, 504, 508,
+ 519, 530, 529, 571, 580, 583, 588, 595, 601, 605,
+ 616, 641, 706, 718, 732, 731, 771, 806, 814, 819,
+ 827, 836, 839, 844, 851, 873, 900, 922, 948, 957,
+ 968, 977, 986, 996, 1010, 1016, 1024, 1036, 1060, 1085,
+ 1109, 1140, 1139, 1162, 1161, 1184, 1185, 1191, 1195, 1206,
+ 1221, 1220, 1255, 1290, 1325, 1330, 1340, 1345, 1353, 1362,
+ 1365, 1370, 1377, 1383, 1390, 1402, 1414, 1425, 1434, 1449,
+ 1460, 1477, 1481, 1493, 1492, 1516, 1531, 1537, 1545, 1557,
+ 1580, 1588, 1597, 1601, 1640, 1647, 1658, 1660, 1676, 1692,
+ 1704, 1716, 1727, 1743, 1748, 1756, 1759, 1765, 1778, 1782,
+ 1786, 1790, 1794, 1798, 1802, 1806, 1810, 1814, 1818, 1822,
+ 1826, 1845, 1886, 1892, 1900, 1907, 1919, 1926, 1936, 1949,
+ 1962, 2008, 2019, 2030, 2046, 2055, 2069, 2072, 2075, 2078,
+ 2081, 2084, 2087, 2090, 2093, 2096, 2099, 2102, 2105, 2108,
+ 2111, 2114, 2117, 2120, 2123, 2126, 2129, 2132, 2135, 2138,
+ 2141, 2144, 2147, 2150, 2153, 2156
};
#endif
-#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
+#if YYDEBUG || YYERROR_VERBOSE || 0
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
@@ -614,7 +553,7 @@ static const char *const yytname[] =
"ICE_THROWS", "ICE_VOID", "ICE_BYTE", "ICE_BOOL", "ICE_SHORT", "ICE_INT",
"ICE_LONG", "ICE_FLOAT", "ICE_DOUBLE", "ICE_STRING", "ICE_OBJECT",
"ICE_LOCAL_OBJECT", "ICE_LOCAL", "ICE_CONST", "ICE_FALSE", "ICE_TRUE",
- "ICE_IDEMPOTENT", "ICE_OPTIONAL", "ICE_SCOPE_DELIMITER",
+ "ICE_IDEMPOTENT", "ICE_OPTIONAL", "ICE_VALUE", "ICE_SCOPE_DELIMITER",
"ICE_IDENTIFIER", "ICE_STRING_LITERAL", "ICE_INTEGER_LITERAL",
"ICE_FLOATING_POINT_LITERAL", "ICE_IDENT_OP", "ICE_KEYWORD_OP",
"ICE_OPTIONAL_OP", "ICE_METADATA_OPEN", "ICE_METADATA_CLOSE",
@@ -635,495 +574,456 @@ static const char *const yytname[] =
"dictionary_def", "enum_id", "enum_def", "@11", "enumerator_list",
"enumerator", "enumerator_initializer", "out_qualifier", "parameters",
"throws", "scoped_name", "type", "string_literal", "string_list",
- "local_qualifier", "const_initializer", "const_def", "keyword", 0
+ "local_qualifier", "const_initializer", "const_def", "keyword", YY_NULLPTR
};
#endif
# ifdef YYPRINT
-/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
- token YYLEX-NUM. */
+/* YYTOKNUM[NUM] -- (External) token number corresponding to the
+ (internal) symbol number NUM (which must be that of a token). */
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, 59, 123, 125, 41, 61,
- 44, 60, 62, 42
+ 295, 296, 297, 298, 299, 300, 59, 123, 125, 41,
+ 61, 44, 60, 62, 42
};
# endif
-/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
-static const yytype_uint8 yyr1[] =
-{
- 0, 54, 55, 56, 57, 57, 59, 58, 60, 58,
- 61, 58, 58, 58, 62, 62, 62, 62, 62, 62,
- 62, 62, 62, 62, 62, 62, 62, 64, 63, 65,
- 65, 66, 68, 67, 69, 69, 70, 70, 70, 70,
- 71, 72, 72, 72, 72, 73, 73, 74, 75, 75,
- 76, 78, 77, 79, 79, 79, 79, 80, 81, 81,
- 82, 82, 82, 83, 85, 84, 86, 86, 87, 87,
- 88, 88, 88, 88, 89, 89, 89, 89, 90, 90,
- 90, 90, 90, 90, 91, 91, 91, 92, 92, 92,
- 92, 94, 93, 95, 93, 96, 96, 97, 97, 98,
- 100, 99, 101, 101, 101, 102, 102, 103, 103, 103,
- 103, 104, 105, 105, 106, 106, 107, 107, 108, 108,
- 109, 109, 111, 110, 110, 112, 112, 113, 113, 113,
- 113, 114, 114, 115, 115, 116, 116, 116, 116, 116,
- 116, 116, 117, 117, 118, 118, 118, 119, 119, 119,
- 119, 119, 119, 119, 119, 119, 119, 119, 119, 119,
- 120, 120, 121, 121, 122, 122, 123, 123, 123, 123,
- 123, 123, 124, 124, 125, 125, 125, 125, 125, 125,
- 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
- 125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
- 125, 125, 125
-};
+#define YYPACT_NINF -221
-/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
-static const yytype_uint8 yyr2[] =
+#define yypact_value_is_default(Yystate) \
+ (!!((Yystate) == (-221)))
+
+#define YYTABLE_NINF -137
+
+#define yytable_value_is_error(Yytable_value) \
+ 0
+
+ /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
+ STATE-NUM. */
+static const yytype_int16 yypact[] =
{
- 0, 2, 1, 3, 3, 0, 0, 3, 0, 5,
- 0, 4, 2, 0, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 0, 6, 2,
- 2, 2, 0, 7, 2, 0, 4, 3, 2, 0,
- 2, 3, 3, 2, 1, 2, 1, 1, 2, 2,
- 2, 0, 6, 4, 3, 2, 0, 1, 2, 2,
- 4, 4, 1, 2, 0, 8, 2, 0, 2, 0,
- 4, 3, 2, 0, 1, 3, 2, 1, 1, 3,
- 2, 4, 2, 1, 2, 1, 1, 2, 3, 2,
- 3, 0, 5, 0, 5, 1, 1, 2, 2, 2,
- 0, 7, 3, 1, 1, 2, 0, 4, 3, 2,
- 0, 1, 3, 1, 1, 1, 7, 7, 10, 10,
- 2, 2, 0, 6, 5, 3, 1, 1, 3, 1,
- 0, 1, 1, 1, 0, 0, 3, 5, 4, 6,
- 3, 5, 2, 0, 1, 2, 3, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 2, 1, 1, 2,
- 2, 1, 3, 1, 1, 0, 1, 1, 1, 1,
- 1, 1, 6, 5, 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
+ 523, -16, 2, 2, 34, -221, 19, -221, -221, 2,
+ -221, 24, -15, -221, 115, 43, -221, 40, 39, -221,
+ -221, -221, -221, -221, -221, -221, -221, -221, -221, -221,
+ -221, 124, -221, 115, -221, -221, 2, -221, -221, -221,
+ 221, 65, 601, 669, 701, 733, 60, 61, 488, 3,
+ 79, 9, 123, 4, -221, -221, -221, 89, -221, -221,
+ -221, -221, -221, -221, -221, -221, 83, -221, -221, 104,
+ -221, 6, -10, 115, -221, -221, -221, -221, -221, -221,
+ -221, -221, -221, -221, -221, -221, -221, -221, -221, -221,
+ -221, -221, -221, -221, -221, -221, -221, -221, -221, -221,
+ -221, -221, -221, -221, -221, -1, -221, -221, -221, -221,
+ -221, -221, -221, 40, 40, -221, 765, -221, 46, -221,
+ 93, 46, 130, 59, -221, 100, 442, -221, -221, 114,
+ -221, 99, 66, -221, 101, 10, 221, 221, 102, 103,
+ 106, -221, 120, 108, 362, 120, 59, -221, -221, -221,
+ -221, -7, 112, 765, 116, -221, 66, -221, -221, -221,
+ -221, -221, 120, -221, -221, -221, 117, 118, 54, -221,
+ 765, 396, 119, 880, 125, -221, 121, 59, 294, 127,
+ -221, -221, 797, 40, -221, -221, 120, -221, 126, 880,
+ 131, 362, -221, 35, 128, 221, 134, -221, 829, -221,
+ 328, -221, 136, 440, 137, -221, -221, -221, 221, 396,
+ -221, 221, 138, 141, -221, 829, -221, -221, 122, -221,
+ 29, 66, 139, 133, 362, -221, -221, 144, 440, 143,
+ 294, -221, 521, 221, 67, 257, -221, 147, -221, -221,
+ 142, -221, -221, 66, 396, -221, -221, -221, -221, 66,
+ -221, 328, 221, -221, -221, 148, 564, -221, -221, 69,
+ -221, -221, -221, 135, -221, 40, 23, 294, 861, -221,
+ -221, -221, -221, 133, 328, -221, -221, -221, 880, -221,
+ 185, -221, -221, -221, -221, 184, -221, 829, 184, 40,
+ 637, -221, -221, -221, 880, -221, 149, 120, -221, -221,
+ 829, 637, -221, -221
};
-/* 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. */
+ /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
+ Performed when YYTABLE does not specify something else to do. Zero
+ means the default is an error. */
static const yytype_uint8 yydefact[] =
{
- 0, 0, 0, 0, 0, 6, 165, 2, 10, 161,
- 163, 0, 0, 1, 0, 0, 164, 5, 12, 14,
+ 0, 0, 0, 0, 0, 6, 167, 2, 10, 163,
+ 165, 0, 0, 1, 0, 0, 166, 5, 12, 14,
19, 20, 21, 22, 15, 16, 17, 18, 23, 24,
- 25, 0, 26, 0, 160, 4, 0, 3, 7, 27,
+ 25, 0, 26, 0, 162, 4, 0, 3, 7, 27,
0, 0, 0, 0, 0, 0, 0, 0, 0, 31,
- 50, 62, 67, 99, 122, 11, 162, 0, 147, 148,
- 149, 150, 151, 152, 153, 154, 155, 157, 0, 144,
- 158, 0, 0, 174, 175, 176, 177, 178, 179, 180,
- 181, 182, 183, 184, 185, 186, 187, 188, 189, 190,
- 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
- 201, 202, 58, 0, 59, 97, 98, 29, 30, 48,
- 49, 5, 5, 120, 130, 121, 0, 32, 0, 0,
- 69, 0, 100, 0, 0, 156, 145, 0, 159, 0,
- 0, 9, 0, 0, 0, 0, 127, 0, 126, 129,
- 34, 0, 0, 66, 0, 64, 104, 105, 103, 0,
- 130, 0, 146, 0, 170, 171, 169, 166, 167, 168,
- 173, 60, 61, 0, 0, 0, 124, 130, 0, 0,
- 0, 0, 68, 0, 0, 0, 0, 28, 172, 0,
- 5, 131, 128, 132, 125, 0, 0, 0, 0, 44,
- 0, 78, 0, 55, 57, 83, 52, 0, 102, 0,
- 0, 0, 123, 116, 117, 0, 0, 46, 0, 74,
- 38, 47, 77, 33, 54, 0, 43, 0, 0, 80,
- 0, 0, 40, 82, 0, 0, 0, 0, 86, 0,
- 0, 0, 0, 111, 109, 85, 101, 0, 37, 45,
- 0, 0, 76, 41, 42, 79, 0, 53, 0, 0,
- 95, 96, 72, 77, 65, 108, 0, 84, 87, 89,
- 0, 133, 5, 0, 0, 0, 75, 36, 81, 71,
- 84, 0, 88, 90, 93, 0, 91, 134, 107, 118,
- 119, 70, 143, 136, 140, 143, 5, 0, 94, 138,
- 92, 0, 142, 113, 114, 115, 137, 141, 0, 139,
- 112
-};
-
-/* YYDEFGOTO[NTERM-NUM]. */
-static const yytype_int16 yydefgoto[] =
-{
- -1, 4, 5, 6, 7, 14, 41, 33, 18, 19,
- 57, 49, 20, 21, 141, 117, 187, 207, 208, 209,
- 210, 50, 22, 23, 118, 171, 193, 51, 52, 24,
- 25, 173, 120, 145, 226, 211, 194, 231, 232, 233,
- 285, 282, 252, 53, 26, 27, 149, 147, 122, 201,
- 234, 292, 293, 28, 29, 54, 30, 123, 137, 138,
- 182, 262, 263, 288, 70, 220, 10, 11, 31, 160,
- 32, 139
+ 50, 62, 67, 99, 123, 11, 164, 0, 148, 149,
+ 150, 151, 152, 153, 154, 155, 156, 158, 159, 0,
+ 145, 160, 0, 0, 176, 177, 178, 179, 180, 181,
+ 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
+ 192, 193, 194, 195, 196, 197, 198, 199, 200, 201,
+ 202, 203, 204, 205, 58, 0, 59, 97, 98, 29,
+ 30, 48, 49, 5, 5, 121, 131, 122, 0, 32,
+ 0, 0, 69, 0, 100, 0, 0, 157, 146, 0,
+ 161, 0, 0, 9, 0, 0, 0, 0, 128, 0,
+ 127, 130, 34, 0, 0, 66, 0, 64, 104, 105,
+ 106, 103, 0, 131, 0, 147, 0, 172, 173, 171,
+ 168, 169, 170, 175, 60, 61, 0, 0, 0, 125,
+ 131, 0, 0, 0, 0, 68, 0, 0, 0, 0,
+ 28, 174, 0, 5, 132, 129, 133, 126, 0, 0,
+ 0, 0, 44, 0, 78, 0, 55, 57, 83, 52,
+ 0, 102, 0, 0, 0, 124, 117, 118, 0, 0,
+ 46, 0, 74, 38, 47, 77, 33, 54, 0, 43,
+ 0, 0, 80, 0, 0, 40, 82, 0, 0, 0,
+ 0, 86, 0, 0, 0, 0, 112, 110, 85, 101,
+ 0, 37, 45, 0, 0, 76, 41, 42, 79, 0,
+ 53, 0, 0, 95, 96, 72, 77, 65, 109, 0,
+ 84, 87, 89, 0, 134, 5, 0, 0, 0, 75,
+ 36, 81, 71, 84, 0, 88, 90, 93, 0, 91,
+ 135, 108, 119, 120, 70, 144, 137, 141, 144, 5,
+ 0, 94, 139, 92, 0, 143, 114, 115, 116, 138,
+ 142, 0, 140, 113
};
-/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
- STATE-NUM. */
-#define YYPACT_NINF -227
-static const yytype_int16 yypact[] =
+ /* YYPGOTO[NTERM-NUM]. */
+static const yytype_int16 yypgoto[] =
{
- 126, -16, 4, 4, 65, -227, 21, -227, -227, 4,
- -227, -10, -11, -227, 73, 38, -227, 46, 58, -227,
- -227, -227, -227, -227, -227, -227, -227, -227, -227, -227,
- -227, 291, -227, 73, -227, -227, 4, -227, -227, -227,
- 853, 61, 559, 625, 656, 687, 59, 63, 479, 6,
- 77, 9, 99, 11, -227, -227, -227, 82, -227, -227,
- -227, -227, -227, -227, -227, -227, 84, -227, 106, -227,
- 5, 26, 73, -227, -227, -227, -227, -227, -227, -227,
- -227, -227, -227, -227, -227, -227, -227, -227, -227, -227,
- -227, -227, -227, -227, -227, -227, -227, -227, -227, -227,
- -227, -227, -227, 29, -227, -227, -227, -227, -227, -227,
- -227, 46, 46, -227, 718, -227, 1, -227, 94, 1,
- 129, 3, -227, 100, 434, -227, -227, 112, -227, 98,
- 158, -227, 101, 37, 853, 853, 105, 103, 110, -227,
- 116, 109, 356, 116, 3, -227, -227, -227, -6, 115,
- 718, 117, -227, 158, -227, -227, -227, -227, -227, 116,
- -227, -227, -227, 104, 119, 86, -227, 718, 389, 120,
- 829, 123, -227, 121, 3, 290, 125, -227, -227, 749,
- 46, -227, -227, 116, -227, 130, 829, 132, 356, -227,
- 69, 113, 853, 131, -227, 780, -227, 323, -227, 136,
- 432, 135, -227, -227, -227, 853, 389, -227, 853, 128,
- 138, -227, 780, -227, -227, 140, -227, 57, 158, 146,
- 151, 356, -227, -227, 152, 432, 153, 290, -227, 219,
- 853, 54, 254, -227, 154, -227, -227, 149, -227, -227,
- 158, 389, -227, -227, -227, -227, 158, -227, 323, 853,
- -227, -227, 160, 523, -227, -227, 60, -227, -227, -227,
- 159, -227, 46, 74, 290, 811, -227, -227, -227, -227,
- 151, 323, -227, -227, -227, 829, -227, 195, -227, -227,
- -227, -227, 194, -227, 780, 194, 46, 594, -227, -227,
- -227, 829, -227, 161, 116, -227, -227, 780, 594, -227,
- -227
+ -221, -221, -221, -17, -12, -221, -221, -221, -221, -221,
+ -221, -221, -221, -221, -221, -221, -191, -170, -165, -208,
+ -221, -221, -221, -221, -221, -168, -221, -221, -221, -221,
+ -221, -221, -221, -221, -220, -29, -221, -30, -221, -25,
+ -221, -221, -221, -221, -221, -221, -221, -119, -221, -218,
+ -221, -97, -221, -221, -221, -221, -221, -221, -105, -221,
+ -221, -72, -221, -79, -104, -27, 11, 207, -221, -145,
+ -221, -38
};
-/* YYPGOTO[NTERM-NUM]. */
-static const yytype_int16 yypgoto[] =
+ /* YYDEFGOTO[NTERM-NUM]. */
+static const yytype_int16 yydefgoto[] =
{
- -227, -227, -227, -17, -12, -227, -227, -227, -227, -227,
- -227, -227, -227, -227, -227, -227, -191, -162, -159, -182,
- -227, -227, -227, -227, -227, -168, -227, -227, -227, -227,
- -227, -227, -227, -227, -226, -13, -227, -20, -227, -9,
- -227, -227, -227, -227, -227, -227, -227, -119, -227, -215,
- -227, -85, -227, -227, -227, -227, -227, -227, -83, -227,
- -227, -63, -227, -68, -102, -27, 7, 215, -227, -150,
- -227, -38
+ -1, 4, 5, 6, 7, 14, 41, 33, 18, 19,
+ 57, 49, 20, 21, 143, 119, 190, 210, 211, 212,
+ 213, 50, 22, 23, 120, 174, 196, 51, 52, 24,
+ 25, 176, 122, 147, 229, 214, 197, 234, 235, 236,
+ 288, 285, 255, 53, 26, 27, 152, 150, 124, 204,
+ 237, 295, 296, 28, 29, 54, 30, 125, 139, 140,
+ 185, 265, 266, 291, 71, 223, 10, 11, 31, 163,
+ 32, 141
};
-/* 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 -136
+ /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
+ positive, shift that token. If negative, reduce the rule whose
+ number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
- 40, 133, 38, 178, 104, 106, 108, 110, 191, -63,
- 115, 192, 255, 71, 140, 238, 34, 143, 116, 148,
- 214, 55, 269, 121, 15, 172, 127, 146, 159, 8,
- 219, 35, 37, 68, 69, 68, 69, 127, 9, 36,
- 36, 230, 148, 56, 174, 281, 239, 16, 17, 278,
- 267, 159, -35, 247, -63, 198, -63, -106, 128, 129,
- 131, 68, 69, 183, 132, 13, 249, 176, 245, 127,
- 230, 39, 148, -13, 1, 130, -5, -5, -5, -5,
- -5, -5, -5, -5, 184, 162, 2, 239, 217, 127,
- 266, 258, 259, 283, 134, 135, 268, 272, 273, -5,
- -5, 68, 69, -8, 215, 244, 72, 163, 164, 296,
- 111, 119, 151, 2, 112, 3, 159, 216, 68, 69,
- -13, 181, 276, -51, 277, 170, -13, 1, 124, -5,
- -5, -5, -5, -5, -5, -5, -5, 125, 159, 126,
- 142, 204, 144, 195, 159, 152, 150, 153, 127, 161,
- 166, 186, -5, -5, 165, 168, 179, 223, 200, 212,
- 167, 175, 218, 205, 177, 188, 2, 197, 3, 180,
- 196, 170, 202, 235, 242, 206, 221, 240, 237, 213,
- 225, 227, 236, 241, 222, 294, 154, 155, 243, 186,
- 68, 69, 156, 157, 158, 246, 294, 248, 253, 264,
- 254, 265, 235, 257, 170, 271, 261, 274, 287, 256,
- 200, 298, 250, 300, 286, 242, 251, 290, 12, 0,
- 0, 0, 270, 0, 186, 0, 0, 280, 0, 0,
- 0, 225, 0, 0, 228, 58, 59, 60, 61, 62,
- 63, 64, 65, 66, 67, 275, 289, 200, 284, 295,
- 189, 68, 69, 0, 225, 260, 0, 0, 190, 299,
- 295, 0, 0, 0, 297, 261, 0, 0, 0, 291,
- -134, -134, -134, -134, -134, -134, -134, -134, -134, -134,
- 0, 0, 0, 0, 0, -134, -134, -134, 0, 0,
- 0, 199, 0, -134, -134, 42, 43, 44, 45, 46,
- 47, 48, -135, 0, -135, -5, -5, -5, -5, -5,
- -5, -5, -5, -5, -5, -5, 0, 0, 0, 0,
- -5, -5, -5, -5, 224, 0, 0, 0, 0, -5,
- 2, 0, 0, 0, 0, 0, 0, -110, -5, -5,
- -5, -5, -5, -5, -5, -5, -5, -5, -5, 0,
- 0, 0, 0, -5, -5, -5, -5, 169, 0, 0,
+ 40, 135, 38, 194, 106, 108, 110, 112, 195, -63,
+ 117, 181, 258, 72, 142, 118, 123, 145, 241, 151,
+ 34, 55, 15, 217, 131, 222, 129, 175, 162, 37,
+ 8, 272, 69, 70, 13, 134, 36, 9, 233, 129,
+ 132, 242, 151, 129, 177, 16, 17, 56, 179, 281,
+ -35, -107, 162, 270, 284, -63, 250, -63, 201, 165,
+ 130, 133, 129, 252, 186, 187, 35, 233, 69, 70,
+ 286, 218, 279, 151, 280, 36, 248, 39, 247, 69,
+ 70, 2, 242, 148, 219, -8, 299, 69, 70, 220,
+ 184, 149, 69, 70, 157, 158, 136, 137, 269, 69,
+ 70, 159, 160, 161, 271, 261, 262, 275, 276, 166,
+ 167, 73, 113, 114, 154, -13, 1, 162, -5, -5,
+ -5, -5, -5, -5, -5, -5, -51, 173, 42, 43,
+ 44, 45, 46, 47, 48, 121, 126, 127, 128, 162,
+ 144, -5, -5, 146, 207, 162, 198, 153, 155, 156,
+ 164, 169, 168, 129, 189, 171, 2, 170, 3, 178,
+ 226, 203, 215, -13, 180, 191, 208, 225, 200, 183,
+ 182, 246, 209, 199, 173, 205, 238, 245, 221, 216,
+ 224, 240, 230, 228, 277, 239, 297, 244, 243, 249,
+ 251, 257, 189, 267, 274, 268, 264, 297, 290, 253,
+ 301, 256, 259, 254, 303, 238, 260, 173, 289, 293,
+ 12, 0, 0, 203, 0, 0, 0, 0, 245, 0,
+ 0, 0, 0, 0, 0, 273, 0, 189, 0, 0,
+ 283, 0, 0, 0, 228, 0, 0, 58, 59, 60,
+ 61, 62, 63, 64, 65, 66, 67, 0, 278, 292,
+ 203, 287, 298, 68, 69, 70, 0, 228, 263, 0,
+ 0, 0, 302, 298, 0, 0, 0, 300, 264, 0,
+ 0, 0, 294, -135, -135, -135, -135, -135, -135, -135,
+ -135, -135, -135, 0, 0, 0, 0, 0, -135, -135,
+ -135, -135, 0, 0, 0, 202, 0, -135, -135, 0,
+ 0, 0, 0, 0, 0, 0, -136, 0, -136, -5,
+ -5, -5, -5, -5, -5, -5, -5, -5, -5, -5,
+ 0, 0, 0, 0, -5, -5, -5, -5, -5, 227,
+ 0, 0, 0, 0, -5, 2, 0, 0, 0, 0,
+ 0, 0, -111, -5, -5, -5, -5, -5, -5, -5,
+ -5, -5, -5, -5, 0, 0, 0, 0, -5, -5,
+ -5, -5, -5, 172, 0, 0, 0, 0, -5, 2,
+ 0, 0, 0, 0, 0, 0, -73, 0, -5, -5,
+ -5, -5, -5, -5, -5, -5, -5, -5, 0, 0,
+ 0, 0, 0, -5, -5, -5, -5, 188, 0, 0,
0, 0, -5, 2, 0, 0, 0, 0, 0, 0,
- -73, 0, -5, -5, -5, -5, -5, -5, -5, -5,
+ -56, 0, -5, -5, -5, -5, -5, -5, -5, -5,
-5, -5, 0, 0, 0, 0, 0, -5, -5, -5,
- 185, 0, 0, 0, 0, -5, 2, 0, 0, 0,
- 0, 0, 0, -56, 0, -5, -5, -5, -5, -5,
- -5, -5, -5, -5, -5, 0, 0, 0, 0, 0,
- -5, -5, -5, 0, 0, 0, 0, 0, -5, 2,
- 0, 0, 0, 0, 0, 1, -39, -5, -5, -5,
- -5, -5, -5, -5, -5, 0, 0, 228, 58, 59,
- 60, 61, 62, 63, 64, 65, 66, 67, 0, 0,
- -5, -5, 229, 189, 68, 69, 0, 0, 0, 0,
- 0, 190, 0, 0, 2, 0, 3, 0, 0, 0,
- 0, -13, 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, 0, 113, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 114, 73, 74, 75, 76,
+ -5, 0, 0, 0, 0, 0, -5, 2, 0, 0,
+ 0, 0, 0, 1, -39, -5, -5, -5, -5, -5,
+ -5, -5, -5, 0, 0, 231, 58, 59, 60, 61,
+ 62, 63, 64, 65, 66, 67, 0, 0, -5, -5,
+ 232, 192, 68, 69, 70, 0, 0, 0, 0, 0,
+ 193, 0, 0, 2, 0, 3, 0, 0, 0, 0,
+ -13, 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, 0, 115, -13, 1, 0, -5, -5, -5, -5,
+ -5, -5, -5, -5, 0, 116, 231, 58, 59, 60,
+ 61, 62, 63, 64, 65, 66, 67, 0, 0, -5,
+ -5, 0, 192, 68, 69, 70, 0, 0, 0, 0,
+ 0, 193, 0, 0, 2, 0, 3, 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, 0, 222, 0, 0, 0,
- -85, -85, 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, 0, 102, 0, 0, 0, 103, 73, 74, 75,
+ 97, 98, 99, 100, 101, 102, 103, 0, 225, 0,
+ 0, 0, -85, -85, 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, 0, 104, 0, 0, 0, 105,
+ 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,
+ 69, 70, 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, 0, 107, 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, 0, 109, 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, 0, 111, 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, 68, 69, 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, 0, 105, 73,
+ 96, 97, 98, 99, 100, 101, 102, 103, 0, 138,
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, 0, 107,
- 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, 0,
- 109, 73, 74, 75, 76, 77, 78, 79, 80, 81,
+ 94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
+ 0, 206, 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,
- 0, 136, 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, 0, 203, 73, 74, 75, 76, 77, 78, 79,
+ 102, 103, 0, 225, 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, 0, 222, 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, 0, 279, 58, 59, 60, 61, 62,
- 63, 64, 65, 66, 67, 0, 0, 0, 0, 0,
- 189, 68, 69, 0, 0, 0, 0, 0, 190, 58,
- 59, 60, 61, 62, 63, 64, 65, 66, 67, 0,
- 0, 0, 0, 0, 0, 68, 69
+ 100, 101, 102, 103, 0, 282, 58, 59, 60, 61,
+ 62, 63, 64, 65, 66, 67, 0, 0, 0, 0,
+ 0, 192, 68, 69, 70, 0, 0, 0, 0, 0,
+ 193
};
static const yytype_int16 yycheck[] =
{
- 17, 103, 14, 153, 42, 43, 44, 45, 170, 0,
- 48, 170, 227, 40, 116, 206, 9, 119, 12, 121,
- 188, 33, 248, 12, 3, 144, 32, 24, 130, 45,
- 192, 41, 43, 32, 33, 32, 33, 32, 34, 50,
- 50, 200, 144, 36, 50, 271, 208, 26, 27, 264,
- 241, 153, 46, 221, 45, 174, 47, 46, 53, 33,
- 72, 32, 33, 165, 35, 0, 225, 150, 218, 32,
- 229, 33, 174, 0, 1, 49, 3, 4, 5, 6,
- 7, 8, 9, 10, 167, 48, 40, 249, 190, 32,
- 240, 37, 38, 275, 111, 112, 246, 37, 38, 26,
- 27, 32, 33, 45, 35, 48, 45, 134, 135, 291,
- 51, 12, 124, 40, 51, 42, 218, 48, 32, 33,
- 47, 35, 48, 46, 50, 142, 0, 1, 46, 3,
- 4, 5, 6, 7, 8, 9, 10, 53, 240, 33,
- 46, 179, 13, 170, 246, 33, 46, 49, 32, 48,
- 47, 168, 26, 27, 49, 46, 52, 195, 175, 186,
- 50, 46, 49, 180, 47, 45, 40, 46, 42, 50,
- 47, 188, 47, 200, 212, 45, 45, 49, 205, 47,
- 197, 45, 47, 45, 33, 287, 28, 29, 48, 206,
- 32, 33, 34, 35, 36, 49, 298, 45, 225, 45,
- 47, 52, 229, 230, 221, 45, 11, 48, 14, 229,
- 227, 50, 225, 298, 277, 253, 225, 285, 3, -1,
- -1, -1, 249, -1, 241, -1, -1, 265, -1, -1,
- -1, 248, -1, -1, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 262, 284, 264, 275, 287,
- 31, 32, 33, -1, 271, 1, -1, -1, 39, 297,
- 298, -1, -1, -1, 291, 11, -1, -1, -1, 286,
+ 17, 105, 14, 173, 42, 43, 44, 45, 173, 0,
+ 48, 156, 230, 40, 118, 12, 12, 121, 209, 123,
+ 9, 33, 3, 191, 34, 195, 33, 146, 132, 44,
+ 46, 251, 33, 34, 0, 36, 51, 35, 203, 33,
+ 50, 211, 146, 33, 51, 26, 27, 36, 153, 267,
+ 47, 47, 156, 244, 274, 46, 224, 48, 177, 49,
+ 54, 73, 33, 228, 168, 170, 42, 232, 33, 34,
+ 278, 36, 49, 177, 51, 51, 221, 34, 49, 33,
+ 34, 41, 252, 24, 49, 46, 294, 33, 34, 193,
+ 36, 32, 33, 34, 28, 29, 113, 114, 243, 33,
+ 34, 35, 36, 37, 249, 38, 39, 38, 39, 136,
+ 137, 46, 52, 52, 126, 0, 1, 221, 3, 4,
+ 5, 6, 7, 8, 9, 10, 47, 144, 4, 5,
+ 6, 7, 8, 9, 10, 12, 47, 54, 34, 243,
+ 47, 26, 27, 13, 182, 249, 173, 47, 34, 50,
+ 49, 48, 50, 33, 171, 47, 41, 51, 43, 47,
+ 198, 178, 189, 48, 48, 46, 183, 34, 47, 51,
+ 53, 49, 46, 48, 191, 48, 203, 215, 50, 48,
+ 46, 208, 46, 200, 49, 48, 290, 46, 50, 50,
+ 46, 48, 209, 46, 46, 53, 11, 301, 14, 228,
+ 51, 228, 232, 228, 301, 232, 233, 224, 280, 288,
+ 3, -1, -1, 230, -1, -1, -1, -1, 256, -1,
+ -1, -1, -1, -1, -1, 252, -1, 244, -1, -1,
+ 268, -1, -1, -1, 251, -1, -1, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, -1, 265, 287,
+ 267, 278, 290, 32, 33, 34, -1, 274, 1, -1,
+ -1, -1, 300, 301, -1, -1, -1, 294, 11, -1,
+ -1, -1, 289, 16, 17, 18, 19, 20, 21, 22,
+ 23, 24, 25, -1, -1, -1, -1, -1, 31, 32,
+ 33, 34, -1, -1, -1, 1, -1, 40, 41, -1,
+ -1, -1, -1, -1, -1, -1, 49, -1, 51, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- -1, -1, -1, -1, -1, 31, 32, 33, -1, -1,
- -1, 1, -1, 39, 40, 4, 5, 6, 7, 8,
- 9, 10, 48, -1, 50, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, -1, -1, -1, -1,
- 30, 31, 32, 33, 1, -1, -1, -1, -1, 39,
- 40, -1, -1, -1, -1, -1, -1, 47, 15, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, -1,
- -1, -1, -1, 30, 31, 32, 33, 1, -1, -1,
- -1, -1, 39, 40, -1, -1, -1, -1, -1, -1,
- 47, -1, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, -1, -1, -1, -1, -1, 31, 32, 33,
- 1, -1, -1, -1, -1, 39, 40, -1, -1, -1,
- -1, -1, -1, 47, -1, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
- 31, 32, 33, -1, -1, -1, -1, -1, 39, 40,
- -1, -1, -1, -1, -1, 1, 47, 3, 4, 5,
- 6, 7, 8, 9, 10, -1, -1, 15, 16, 17,
+ -1, -1, -1, -1, 30, 31, 32, 33, 34, 1,
+ -1, -1, -1, -1, 40, 41, -1, -1, -1, -1,
+ -1, -1, 48, 15, 16, 17, 18, 19, 20, 21,
+ 22, 23, 24, 25, -1, -1, -1, -1, 30, 31,
+ 32, 33, 34, 1, -1, -1, -1, -1, 40, 41,
+ -1, -1, -1, -1, -1, -1, 48, -1, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
- 26, 27, 30, 31, 32, 33, -1, -1, -1, -1,
- -1, 39, -1, -1, 40, -1, 42, -1, -1, -1,
- -1, 47, 3, 4, 5, 6, 7, 8, 9, 10,
+ -1, -1, -1, 31, 32, 33, 34, 1, -1, -1,
+ -1, -1, 40, 41, -1, -1, -1, -1, -1, -1,
+ 48, -1, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, -1, -1, -1, -1, -1, 31, 32, 33,
+ 34, -1, -1, -1, -1, -1, 40, 41, -1, -1,
+ -1, -1, -1, 1, 48, 3, 4, 5, 6, 7,
+ 8, 9, 10, -1, -1, 15, 16, 17, 18, 19,
+ 20, 21, 22, 23, 24, 25, -1, -1, 26, 27,
+ 30, 31, 32, 33, 34, -1, -1, -1, -1, -1,
+ 40, -1, -1, 41, -1, 43, -1, -1, -1, -1,
+ 48, 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, -1, 34, 0, 1, -1, 3, 4, 5, 6,
+ 7, 8, 9, 10, -1, 47, 15, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, -1, -1, 26,
+ 27, -1, 31, 32, 33, 34, -1, -1, -1, -1,
+ -1, 40, -1, -1, 41, -1, 43, 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, -1, 34, -1,
+ -1, -1, 38, 39, 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, -1, 34, -1, -1, -1, 38,
+ 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, 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, -1, 33, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 46, 3, 4, 5, 6,
+ 31, 32, -1, 34, 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, -1, 34, 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, -1, 33, -1, -1, -1,
- 37, 38, 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, -1, 33, -1, -1, -1, 37, 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, 3, 4,
+ 27, 28, 29, 30, 31, 32, -1, 34, 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, -1, 33, 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, -1, 33,
+ 25, 26, 27, 28, 29, 30, 31, 32, -1, 34,
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, -1,
- 33, 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,
- -1, 33, 3, 4, 5, 6, 7, 8, 9, 10,
+ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
+ -1, 34, 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, -1, 33, 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, -1, 33, 3, 4, 5, 6, 7, 8,
+ 31, 32, -1, 34, 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, -1, 33, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
- 31, 32, 33, -1, -1, -1, -1, -1, 39, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, -1,
- -1, -1, -1, -1, -1, 32, 33
+ 29, 30, 31, 32, -1, 34, 16, 17, 18, 19,
+ 20, 21, 22, 23, 24, 25, -1, -1, -1, -1,
+ -1, 31, 32, 33, 34, -1, -1, -1, -1, -1,
+ 40
};
-/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
- symbol of state STATE-NUM. */
+ /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
+ symbol of state STATE-NUM. */
static const yytype_uint8 yystos[] =
{
- 0, 1, 40, 42, 55, 56, 57, 58, 45, 34,
- 120, 121, 121, 0, 59, 3, 26, 27, 62, 63,
- 66, 67, 76, 77, 83, 84, 98, 99, 107, 108,
- 110, 122, 124, 61, 120, 41, 50, 43, 58, 33,
- 57, 60, 4, 5, 6, 7, 8, 9, 10, 65,
- 75, 81, 82, 97, 109, 58, 120, 64, 16, 17,
+ 0, 1, 41, 43, 56, 57, 58, 59, 46, 35,
+ 121, 122, 122, 0, 60, 3, 26, 27, 63, 64,
+ 67, 68, 77, 78, 84, 85, 99, 100, 108, 109,
+ 111, 123, 125, 62, 121, 42, 51, 44, 59, 34,
+ 58, 61, 4, 5, 6, 7, 8, 9, 10, 66,
+ 76, 82, 83, 98, 110, 59, 121, 65, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 32, 33,
- 118, 119, 45, 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, 33, 37, 125, 33, 125, 33, 125, 33,
- 125, 51, 51, 33, 46, 125, 12, 69, 78, 12,
- 86, 12, 102, 111, 46, 53, 33, 32, 53, 33,
- 49, 58, 35, 118, 57, 57, 33, 112, 113, 125,
- 118, 68, 46, 118, 13, 87, 24, 101, 118, 100,
- 46, 58, 33, 49, 28, 29, 34, 35, 36, 118,
- 123, 48, 48, 119, 119, 49, 47, 50, 46, 1,
- 57, 79, 101, 85, 50, 46, 112, 47, 123, 52,
- 50, 35, 114, 118, 112, 1, 57, 70, 45, 31,
- 39, 71, 72, 80, 90, 119, 47, 46, 101, 1,
- 57, 103, 47, 33, 125, 57, 45, 71, 72, 73,
- 74, 89, 119, 47, 79, 35, 48, 118, 49, 71,
- 119, 45, 33, 125, 1, 57, 88, 45, 15, 30,
- 72, 91, 92, 93, 104, 119, 47, 119, 70, 71,
- 49, 45, 125, 48, 48, 123, 49, 79, 45, 72,
- 89, 93, 96, 119, 47, 103, 91, 119, 37, 38,
- 1, 11, 115, 116, 45, 52, 123, 70, 123, 88,
- 119, 45, 37, 38, 48, 57, 48, 50, 103, 33,
- 125, 88, 95, 73, 119, 94, 115, 14, 117, 125,
- 117, 57, 105, 106, 118, 125, 73, 119, 50, 125,
- 105
+ 34, 119, 120, 46, 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, 34, 38, 126, 34, 126, 34,
+ 126, 34, 126, 52, 52, 34, 47, 126, 12, 70,
+ 79, 12, 87, 12, 103, 112, 47, 54, 34, 33,
+ 54, 34, 50, 59, 36, 119, 58, 58, 34, 113,
+ 114, 126, 119, 69, 47, 119, 13, 88, 24, 32,
+ 102, 119, 101, 47, 59, 34, 50, 28, 29, 35,
+ 36, 37, 119, 124, 49, 49, 120, 120, 50, 48,
+ 51, 47, 1, 58, 80, 102, 86, 51, 47, 113,
+ 48, 124, 53, 51, 36, 115, 119, 113, 1, 58,
+ 71, 46, 31, 40, 72, 73, 81, 91, 120, 48,
+ 47, 102, 1, 58, 104, 48, 34, 126, 58, 46,
+ 72, 73, 74, 75, 90, 120, 48, 80, 36, 49,
+ 119, 50, 72, 120, 46, 34, 126, 1, 58, 89,
+ 46, 15, 30, 73, 92, 93, 94, 105, 120, 48,
+ 120, 71, 72, 50, 46, 126, 49, 49, 124, 50,
+ 80, 46, 73, 90, 94, 97, 120, 48, 104, 92,
+ 120, 38, 39, 1, 11, 116, 117, 46, 53, 124,
+ 71, 124, 89, 120, 46, 38, 39, 49, 58, 49,
+ 51, 104, 34, 126, 89, 96, 74, 120, 95, 116,
+ 14, 118, 126, 118, 58, 106, 107, 119, 126, 74,
+ 120, 51, 126, 106
+};
+
+ /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
+static const yytype_uint8 yyr1[] =
+{
+ 0, 55, 56, 57, 58, 58, 60, 59, 61, 59,
+ 62, 59, 59, 59, 63, 63, 63, 63, 63, 63,
+ 63, 63, 63, 63, 63, 63, 63, 65, 64, 66,
+ 66, 67, 69, 68, 70, 70, 71, 71, 71, 71,
+ 72, 73, 73, 73, 73, 74, 74, 75, 76, 76,
+ 77, 79, 78, 80, 80, 80, 80, 81, 82, 82,
+ 83, 83, 83, 84, 86, 85, 87, 87, 88, 88,
+ 89, 89, 89, 89, 90, 90, 90, 90, 91, 91,
+ 91, 91, 91, 91, 92, 92, 92, 93, 93, 93,
+ 93, 95, 94, 96, 94, 97, 97, 98, 98, 99,
+ 101, 100, 102, 102, 102, 102, 103, 103, 104, 104,
+ 104, 104, 105, 106, 106, 107, 107, 108, 108, 109,
+ 109, 110, 110, 112, 111, 111, 113, 113, 114, 114,
+ 114, 114, 115, 115, 116, 116, 117, 117, 117, 117,
+ 117, 117, 117, 118, 118, 119, 119, 119, 120, 120,
+ 120, 120, 120, 120, 120, 120, 120, 120, 120, 120,
+ 120, 120, 121, 121, 122, 122, 123, 123, 124, 124,
+ 124, 124, 124, 124, 125, 125, 126, 126, 126, 126,
+ 126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
+ 126, 126, 126, 126, 126, 126, 126, 126, 126, 126,
+ 126, 126, 126, 126, 126, 126
};
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY (-2)
-#define YYEOF 0
+ /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 1, 3, 3, 0, 0, 3, 0, 5,
+ 0, 4, 2, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 0, 6, 2,
+ 2, 2, 0, 7, 2, 0, 4, 3, 2, 0,
+ 2, 3, 3, 2, 1, 2, 1, 1, 2, 2,
+ 2, 0, 6, 4, 3, 2, 0, 1, 2, 2,
+ 4, 4, 1, 2, 0, 8, 2, 0, 2, 0,
+ 4, 3, 2, 0, 1, 3, 2, 1, 1, 3,
+ 2, 4, 2, 1, 2, 1, 1, 2, 3, 2,
+ 3, 0, 5, 0, 5, 1, 1, 2, 2, 2,
+ 0, 7, 3, 1, 1, 1, 2, 0, 4, 3,
+ 2, 0, 1, 3, 1, 1, 1, 7, 7, 10,
+ 10, 2, 2, 0, 6, 5, 3, 1, 1, 3,
+ 1, 0, 1, 1, 1, 0, 0, 3, 5, 4,
+ 6, 3, 5, 2, 0, 1, 2, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 2, 1, 1,
+ 1, 2, 2, 1, 3, 1, 1, 0, 1, 1,
+ 1, 1, 1, 1, 6, 5, 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
+};
-#define YYACCEPT goto yyacceptlab
-#define YYABORT goto yyabortlab
-#define YYERROR goto yyerrorlab
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY (-2)
+#define YYEOF 0
-/* 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 YYACCEPT goto yyacceptlab
+#define YYABORT goto yyabortlab
+#define YYERROR goto yyerrorlab
-#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 \
- { \
+#define YYBACKUP(Token, Value) \
+do \
+ if (yychar == YYEMPTY) \
+ { \
+ yychar = (Token); \
+ yylval = (Value); \
+ YYPOPSTACK (yylen); \
+ yystate = *yyssp; \
+ goto yybackup; \
+ } \
+ else \
+ { \
yyerror (YY_("syntax error: cannot back up")); \
- YYERROR; \
- } \
-while (YYID (0))
-
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-
-/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
- If N is 0, then set CURRENT to the empty location which ends
- the previous symbol: RHS[0] (always defined). */
-
-#define YYRHSLOC(Rhs, K) ((Rhs)[K])
-#ifndef YYLLOC_DEFAULT
-# define YYLLOC_DEFAULT(Current, Rhs, N) \
- do \
- if (YYID (N)) \
- { \
- (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
- (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
- (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
- (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
- } \
- else \
- { \
- (Current).first_line = (Current).last_line = \
- YYRHSLOC (Rhs, 0).last_line; \
- (Current).first_column = (Current).last_column = \
- YYRHSLOC (Rhs, 0).last_column; \
- } \
- while (YYID (0))
-#endif
+ YYERROR; \
+ } \
+while (0)
+/* Error token number */
+#define YYTERROR 1
+#define YYERRCODE 256
-/* 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)
-#endif
/* Enable debugging if requested. */
#if YYDEBUG
@@ -1133,54 +1033,46 @@ while (YYID (0))
# define YYFPRINTF fprintf
# endif
-# define YYDPRINTF(Args) \
-do { \
- if (yydebug) \
- YYFPRINTF Args; \
-} while (YYID (0))
+# define YYDPRINTF(Args) \
+do { \
+ if (yydebug) \
+ YYFPRINTF Args; \
+} while (0)
-# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
-do { \
- if (yydebug) \
- { \
- YYFPRINTF (stderr, "%s ", Title); \
- yy_symbol_print (stderr, \
- Type, Value); \
- YYFPRINTF (stderr, "\n"); \
- } \
-} while (YYID (0))
+/* This macro is provided for backward compatibility. */
+#ifndef YY_LOCATION_PRINT
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+#endif
-/*--------------------------------.
-| Print this symbol on YYOUTPUT. |
-`--------------------------------*/
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+do { \
+ if (yydebug) \
+ { \
+ YYFPRINTF (stderr, "%s ", Title); \
+ yy_symbol_print (stderr, \
+ Type, Value); \
+ YYFPRINTF (stderr, "\n"); \
+ } \
+} while (0)
+
+
+/*----------------------------------------.
+| Print this symbol's value on YYOUTPUT. |
+`----------------------------------------*/
-/*ARGSUSED*/
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
-#else
-static void
-yy_symbol_value_print (yyoutput, yytype, yyvaluep)
- FILE *yyoutput;
- int yytype;
- YYSTYPE const * const yyvaluep;
-#endif
{
+ FILE *yyo = yyoutput;
+ YYUSE (yyo);
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
-# else
- YYUSE (yyoutput);
# endif
- switch (yytype)
- {
- default:
- break;
- }
+ YYUSE (yytype);
}
@@ -1188,22 +1080,11 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep)
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
-#else
-static void
-yy_symbol_print (yyoutput, yytype, yyvaluep)
- FILE *yyoutput;
- int yytype;
- YYSTYPE const * const yyvaluep;
-#endif
{
- if (yytype < YYNTOKENS)
- YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
- else
- YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+ YYFPRINTF (yyoutput, "%s %s (",
+ yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep);
YYFPRINTF (yyoutput, ")");
@@ -1214,16 +1095,8 @@ yy_symbol_print (yyoutput, yytype, yyvaluep)
| TOP (included). |
`------------------------------------------------------------------*/
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
-#else
-static void
-yy_stack_print (yybottom, yytop)
- yytype_int16 *yybottom;
- yytype_int16 *yytop;
-#endif
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
@@ -1234,49 +1107,42 @@ yy_stack_print (yybottom, yytop)
YYFPRINTF (stderr, "\n");
}
-# define YY_STACK_PRINT(Bottom, Top) \
-do { \
- if (yydebug) \
- yy_stack_print ((Bottom), (Top)); \
-} while (YYID (0))
+# define YY_STACK_PRINT(Bottom, Top) \
+do { \
+ if (yydebug) \
+ yy_stack_print ((Bottom), (Top)); \
+} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
static void
-yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
-#else
-static void
-yy_reduce_print (yyvsp, yyrule)
- YYSTYPE *yyvsp;
- int yyrule;
-#endif
+yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)
{
+ unsigned long int yylno = yyrline[yyrule];
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);
+ yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
- yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
- &(yyvsp[(yyi + 1) - (yynrhs)])
- );
+ yy_symbol_print (stderr,
+ yystos[yyssp[yyi + 1 - yynrhs]],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ );
YYFPRINTF (stderr, "\n");
}
}
-# define YY_REDUCE_PRINT(Rule) \
-do { \
- if (yydebug) \
- yy_reduce_print (yyvsp, Rule); \
-} while (YYID (0))
+# define YY_REDUCE_PRINT(Rule) \
+do { \
+ if (yydebug) \
+ yy_reduce_print (yyssp, yyvsp, Rule); \
+} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
@@ -1290,7 +1156,7 @@ int yydebug;
/* YYINITDEPTH -- initial size of the parser's stacks. */
-#ifndef YYINITDEPTH
+#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
@@ -1305,7 +1171,6 @@ int yydebug;
# define YYMAXDEPTH 10000
#endif
-
#if YYERROR_VERBOSE
@@ -1314,15 +1179,8 @@ int yydebug;
# 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++)
@@ -1338,16 +1196,8 @@ yystrlen (yystr)
# 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;
@@ -1377,27 +1227,27 @@ yytnamerr (char *yyres, const char *yystr)
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;
- }
+ 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: ;
}
@@ -1408,197 +1258,178 @@ yytnamerr (char *yyres, const char *yystr)
}
# 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)
+/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
+ about the unexpected token YYTOKEN for the state stack whose top is
+ YYSSP.
+
+ Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
+ not large enough to hold the message. In that case, also set
+ *YYMSG_ALLOC to the required number of bytes. Return 2 if the
+ required number of bytes is too large to store. */
+static int
+yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
+ yytype_int16 *yyssp, int yytoken)
{
- int yyn = yypact[yystate];
+ YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]);
+ YYSIZE_T yysize = yysize0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ /* Internationalized format string. */
+ const char *yyformat = YY_NULLPTR;
+ /* Arguments of yyformat. */
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ /* Number of reported tokens (one for the "unexpected", one per
+ "expected"). */
+ int yycount = 0;
+
+ /* There are many possibilities here to consider:
+ - If this state is a consistent state with a default action, then
+ the only way this function was invoked is if the default action
+ is an error action. In that case, don't check for expected
+ tokens because there are none.
+ - The only way there can be no lookahead present (in yychar) is if
+ this state is a consistent state with a default action. Thus,
+ detecting the absence of a lookahead is sufficient to determine
+ that there is no unexpected or expected token to report. In that
+ case, just report a simple "syntax error".
+ - Don't assume there isn't a lookahead just because this state is a
+ consistent state with a default action. There might have been a
+ previous inconsistent state, consistent state with a non-default
+ action, or user semantic action that manipulated yychar.
+ - Of course, the expected token list depends on states to have
+ correct lookahead information, and it depends on the parser not
+ to perform extra reductions after fetching a lookahead from the
+ scanner and before detecting a syntax error. Thus, state merging
+ (from LALR or IELR) and default reductions corrupt the expected
+ token list. However, the list is correct for canonical LR with
+ one exception: it will still contain any token that will not be
+ accepted due to an error action in a later state.
+ */
+ if (yytoken != YYEMPTY)
+ {
+ int yyn = yypact[*yyssp];
+ yyarg[yycount++] = yytname[yytoken];
+ if (!yypact_value_is_default (yyn))
+ {
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. In other words, skip the first -YYN actions for
+ this state because they are default actions. */
+ 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 yyx;
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
+ && !yytable_value_is_error (yytable[yyx + yyn]))
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ {
+ YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]);
+ if (! (yysize <= yysize1
+ && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+ }
+ }
+ }
- if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
- return 0;
- else
+ switch (yycount)
+ {
+# define YYCASE_(N, S) \
+ case N: \
+ yyformat = S; \
+ break
+ YYCASE_(0, YY_("syntax error"));
+ YYCASE_(1, YY_("syntax error, unexpected %s"));
+ YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
+ YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
+ YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
+ YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
+# undef YYCASE_
+ }
+
+ {
+ YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
+ if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+
+ if (*yymsg_alloc < yysize)
{
- 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;
+ *yymsg_alloc = 2 * yysize;
+ if (! (yysize <= *yymsg_alloc
+ && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
+ *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
+ return 1;
}
+
+ /* 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 = *yymsg;
+ int yyi = 0;
+ while ((*yyp = *yyformat) != '\0')
+ if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyformat += 2;
+ }
+ else
+ {
+ yyp++;
+ yyformat++;
+ }
+ }
+ return 0;
}
#endif /* YYERROR_VERBOSE */
-
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
-/*ARGSUSED*/
-#if (defined __STDC__ || defined __C99__FUNC__ \
- || defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
-#else
-static void
-yydestruct (yymsg, yytype, yyvaluep)
- const char *yymsg;
- int yytype;
- YYSTYPE *yyvaluep;
-#endif
{
YYUSE (yyvaluep);
-
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
- switch (yytype)
- {
-
- default:
- break;
- }
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ YYUSE (yytype);
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
}
-/* Prevent warnings from -Wmissing-prototypes. */
-#ifdef YYPARSE_PARAM
-#if defined __STDC__ || defined __cplusplus
-int yyparse (void *YYPARSE_PARAM);
-#else
-int yyparse ();
-#endif
-#else /* ! YYPARSE_PARAM */
-#if defined __STDC__ || defined __cplusplus
-int yyparse (void);
-#else
-int yyparse ();
-#endif
-#endif /* ! YYPARSE_PARAM */
-
-
-/*-------------------------.
-| yyparse or yypush_parse. |
-`-------------------------*/
+/*----------.
+| 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 (void)
-#else
-int
-yyparse ()
-
-#endif
-#endif
{
/* The lookahead symbol. */
int yychar;
+
/* The semantic value of the lookahead symbol. */
-YYSTYPE yylval;
+/* Default value used for initialization, for pacifying older GCCs
+ or non-GCC compilers. */
+YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
+YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
/* Number of syntax errors so far. */
int yynerrs;
@@ -1608,10 +1439,10 @@ YYSTYPE yylval;
int yyerrstatus;
/* The stacks and their tools:
- `yyss': related to states.
- `yyvs': related to semantic values.
+ 'yyss': related to states.
+ 'yyvs': related to semantic values.
- Refer to the stacks thru separate pointers, to allow yyoverflow
+ Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
@@ -1629,7 +1460,7 @@ YYSTYPE yylval;
int yyn;
int yyresult;
/* Lookahead token as an internal (translated) token number. */
- int yytoken;
+ int yytoken = 0;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
@@ -1647,9 +1478,8 @@ YYSTYPE yylval;
Keep to zero when no symbol should be popped. */
int yylen = 0;
- yytoken = 0;
- yyss = yyssa;
- yyvs = yyvsa;
+ yyssp = yyss = yyssa;
+ yyvsp = yyvs = yyvsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n"));
@@ -1658,14 +1488,6 @@ YYSTYPE yylval;
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;
/*------------------------------------------------------------.
@@ -1686,23 +1508,23 @@ YYSTYPE yylval;
#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;
+ /* 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
@@ -1710,22 +1532,22 @@ YYSTYPE yylval;
# else
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
- goto yyexhaustedlab;
+ goto yyexhaustedlab;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
- yystacksize = YYMAXDEPTH;
+ yystacksize = YYMAXDEPTH;
{
- yytype_int16 *yyss1 = yyss;
- union yyalloc *yyptr =
- (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
- if (! yyptr)
- goto yyexhaustedlab;
- YYSTACK_RELOCATE (yyss_alloc, yyss);
- YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
- if (yyss1 != yyssa)
- YYSTACK_FREE (yyss1);
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
}
# endif
#endif /* no yyoverflow */
@@ -1734,10 +1556,10 @@ YYSTYPE yylval;
yyvsp = yyvs + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
- (unsigned long int) yystacksize));
+ (unsigned long int) yystacksize));
if (yyss + yystacksize - 1 <= yyssp)
- YYABORT;
+ YYABORT;
}
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
@@ -1757,7 +1579,7 @@ yybackup:
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
- if (yyn == YYPACT_NINF)
+ if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
@@ -1766,7 +1588,7 @@ yybackup:
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
- yychar = YYLEX;
+ yychar = yylex (&yylval);
}
if (yychar <= YYEOF)
@@ -1788,8 +1610,8 @@ yybackup:
yyn = yytable[yyn];
if (yyn <= 0)
{
- if (yyn == 0 || yyn == YYTABLE_NINF)
- goto yyerrlab;
+ if (yytable_value_is_error (yyn))
+ goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
@@ -1806,7 +1628,9 @@ yybackup:
yychar = YYEMPTY;
yystate = yyn;
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
goto yynewstate;
@@ -1829,7 +1653,7 @@ yyreduce:
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
- `$$ = $1'.
+ '$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
@@ -1843,391 +1667,353 @@ yyreduce:
switch (yyn)
{
case 2:
-
-/* Line 1455 of yacc.c */
-#line 115 "../Slice/Grammar.y"
+#line 116 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 1674 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 3:
-
-/* Line 1455 of yacc.c */
-#line 123 "../Slice/Grammar.y"
+#line 124 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (3)]);
-;}
+ (yyval) = (yyvsp[-1]);
+}
+#line 1682 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 4:
-
-/* Line 1455 of yacc.c */
-#line 132 "../Slice/Grammar.y"
+#line 133 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (3)]);
-;}
+ (yyval) = (yyvsp[-1]);
+}
+#line 1690 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 5:
-
-/* Line 1455 of yacc.c */
-#line 136 "../Slice/Grammar.y"
+#line 137 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = new StringListTok;
-;}
+}
+#line 1698 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 6:
-
-/* Line 1455 of yacc.c */
-#line 145 "../Slice/Grammar.y"
+#line 146 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[0]));
if(!metaData->v.empty())
{
unit->addGlobalMetaData(metaData->v);
}
-;}
+}
+#line 1710 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 8:
-
-/* Line 1455 of yacc.c */
-#line 154 "../Slice/Grammar.y"
+#line 155 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-1]));
+ ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[0]));
if(contained && !metaData->v.empty())
{
- contained->setMetaData(metaData->v);
+ contained->setMetaData(metaData->v);
}
-;}
+}
+#line 1723 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 10:
-
-/* Line 1455 of yacc.c */
-#line 164 "../Slice/Grammar.y"
+#line 165 "../Slice/Grammar.y" /* yacc.c:1646 */
{
yyerrok;
-;}
+}
+#line 1731 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 12:
-
-/* Line 1455 of yacc.c */
-#line 169 "../Slice/Grammar.y"
+#line 170 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("`;' missing after definition");
-;}
+}
+#line 1739 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 13:
-
-/* Line 1455 of yacc.c */
-#line 173 "../Slice/Grammar.y"
+#line 174 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 1746 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 14:
-
-/* Line 1455 of yacc.c */
-#line 181 "../Slice/Grammar.y"
+#line 182 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ModulePtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ModulePtr::dynamicCast((yyvsp[0])));
+}
+#line 1754 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 15:
-
-/* Line 1455 of yacc.c */
-#line 185 "../Slice/Grammar.y"
+#line 186 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[0])));
+}
+#line 1762 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 16:
-
-/* Line 1455 of yacc.c */
-#line 189 "../Slice/Grammar.y"
+#line 190 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ClassDefPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ClassDefPtr::dynamicCast((yyvsp[0])));
+}
+#line 1770 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 17:
-
-/* Line 1455 of yacc.c */
-#line 193 "../Slice/Grammar.y"
+#line 194 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ClassDeclPtr::dynamicCast((yyvsp[0])));
+}
+#line 1778 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 18:
-
-/* Line 1455 of yacc.c */
-#line 197 "../Slice/Grammar.y"
+#line 198 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ClassDefPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ClassDefPtr::dynamicCast((yyvsp[0])));
+}
+#line 1786 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 19:
-
-/* Line 1455 of yacc.c */
-#line 201 "../Slice/Grammar.y"
+#line 202 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0);
-;}
+ assert((yyvsp[0]) == 0);
+}
+#line 1794 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 20:
-
-/* Line 1455 of yacc.c */
-#line 205 "../Slice/Grammar.y"
+#line 206 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ExceptionPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ExceptionPtr::dynamicCast((yyvsp[0])));
+}
+#line 1802 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 21:
-
-/* Line 1455 of yacc.c */
-#line 209 "../Slice/Grammar.y"
+#line 210 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0);
-;}
+ assert((yyvsp[0]) == 0);
+}
+#line 1810 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 22:
-
-/* Line 1455 of yacc.c */
-#line 213 "../Slice/Grammar.y"
+#line 214 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || StructPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || StructPtr::dynamicCast((yyvsp[0])));
+}
+#line 1818 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 23:
-
-/* Line 1455 of yacc.c */
-#line 217 "../Slice/Grammar.y"
+#line 218 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || SequencePtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || SequencePtr::dynamicCast((yyvsp[0])));
+}
+#line 1826 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 24:
-
-/* Line 1455 of yacc.c */
-#line 221 "../Slice/Grammar.y"
+#line 222 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || DictionaryPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || DictionaryPtr::dynamicCast((yyvsp[0])));
+}
+#line 1834 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 25:
-
-/* Line 1455 of yacc.c */
-#line 225 "../Slice/Grammar.y"
+#line 226 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || EnumPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || EnumPtr::dynamicCast((yyvsp[0])));
+}
+#line 1842 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 26:
-
-/* Line 1455 of yacc.c */
-#line 229 "../Slice/Grammar.y"
+#line 230 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- assert((yyvsp[(1) - (1)]) == 0 || ConstPtr::dynamicCast((yyvsp[(1) - (1)])));
-;}
+ assert((yyvsp[0]) == 0 || ConstPtr::dynamicCast((yyvsp[0])));
+}
+#line 1850 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 27:
-
-/* Line 1455 of yacc.c */
-#line 238 "../Slice/Grammar.y"
+#line 239 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->setSeenDefinition();
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ModulePtr module = cont->createModule(ident->v);
if(module)
{
- cont->checkIntroduced(ident->v, module);
- unit->pushContainer(module);
- (yyval) = module;
+ cont->checkIntroduced(ident->v, module);
+ unit->pushContainer(module);
+ (yyval) = module;
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 1871 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 28:
-
-/* Line 1455 of yacc.c */
-#line 255 "../Slice/Grammar.y"
+#line 256 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(3) - (6)]))
+ if((yyvsp[-3]))
{
- unit->popContainer();
- (yyval) = (yyvsp[(3) - (6)]);
+ unit->popContainer();
+ (yyval) = (yyvsp[-3]);
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 1887 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 29:
-
-/* Line 1455 of yacc.c */
-#line 272 "../Slice/Grammar.y"
+#line 273 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 1895 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 30:
-
-/* Line 1455 of yacc.c */
-#line 276 "../Slice/Grammar.y"
+#line 277 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as exception name");
- (yyval) = (yyvsp[(2) - (2)]); // Dummy
-;}
+ (yyval) = (yyvsp[0]); // Dummy
+}
+#line 1905 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 31:
-
-/* Line 1455 of yacc.c */
-#line 287 "../Slice/Grammar.y"
+#line 288 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("exceptions cannot be forward declared");
(yyval) = 0;
-;}
+}
+#line 1914 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 32:
-
-/* Line 1455 of yacc.c */
-#line 297 "../Slice/Grammar.y"
+#line 298 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
- ExceptionPtr base = ExceptionPtr::dynamicCast((yyvsp[(3) - (3)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[-1]));
+ ExceptionPtr base = ExceptionPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ExceptionPtr ex = cont->createException(ident->v, base, local->v);
if(ex)
{
- cont->checkIntroduced(ident->v, ex);
- unit->pushContainer(ex);
+ cont->checkIntroduced(ident->v, ex);
+ unit->pushContainer(ex);
}
(yyval) = ex;
-;}
+}
+#line 1932 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 33:
-
-/* Line 1455 of yacc.c */
-#line 311 "../Slice/Grammar.y"
+#line 312 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(4) - (7)]))
+ if((yyvsp[-3]))
{
- unit->popContainer();
+ unit->popContainer();
}
- (yyval) = (yyvsp[(4) - (7)]);
-;}
+ (yyval) = (yyvsp[-3]);
+}
+#line 1944 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 34:
-
-/* Line 1455 of yacc.c */
-#line 324 "../Slice/Grammar.y"
+#line 325 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ContainedPtr contained = cont->lookupException(scoped->v);
cont->checkIntroduced(scoped->v);
(yyval) = contained;
-;}
+}
+#line 1956 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 35:
-
-/* Line 1455 of yacc.c */
-#line 332 "../Slice/Grammar.y"
+#line 333 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = 0;
-;}
+}
+#line 1964 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 36:
-
-/* Line 1455 of yacc.c */
-#line 341 "../Slice/Grammar.y"
+#line 342 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[-2]));
if(contained && !metaData->v.empty())
{
- contained->setMetaData(metaData->v);
+ contained->setMetaData(metaData->v);
}
-;}
+}
+#line 1977 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 37:
-
-/* Line 1455 of yacc.c */
-#line 350 "../Slice/Grammar.y"
+#line 351 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 1984 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 38:
-
-/* Line 1455 of yacc.c */
-#line 353 "../Slice/Grammar.y"
+#line 354 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("`;' missing after definition");
-;}
+}
+#line 1992 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 39:
-
-/* Line 1455 of yacc.c */
-#line 357 "../Slice/Grammar.y"
+#line 358 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 1999 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 40:
-
-/* Line 1455 of yacc.c */
-#line 365 "../Slice/Grammar.y"
+#line 366 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
TypeStringTokPtr typestring = new TypeStringTok;
typestring->v = make_pair(type, ident->v);
(yyval) = typestring;
-;}
+}
+#line 2011 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 41:
-
-/* Line 1455 of yacc.c */
-#line 378 "../Slice/Grammar.y"
+#line 379 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- IntegerTokPtr i = IntegerTokPtr::dynamicCast((yyvsp[(2) - (3)]));
+ IntegerTokPtr i = IntegerTokPtr::dynamicCast((yyvsp[-1]));
int tag;
if(i->v < 0 || i->v > Int32Max)
@@ -2244,15 +2030,14 @@ yyreduce:
m->v.optional = tag >= 0;
m->v.tag = tag;
(yyval) = m;
-;}
+}
+#line 2035 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 42:
-
-/* Line 1455 of yacc.c */
-#line 398 "../Slice/Grammar.y"
+#line 399 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[-1]));
ContainerPtr cont = unit->currentContainer();
assert(cont);
@@ -2305,106 +2090,98 @@ yyreduce:
m->v.optional = tag >= 0;
m->v.tag = tag;
(yyval) = m;
-;}
+}
+#line 2095 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 43:
-
-/* Line 1455 of yacc.c */
-#line 454 "../Slice/Grammar.y"
+#line 455 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("missing tag for optional");
OptionalDefTokPtr m = new OptionalDefTok; // Dummy
m->v.optional = false;
m->v.tag = -1;
(yyval) = m;
-;}
+}
+#line 2107 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 44:
-
-/* Line 1455 of yacc.c */
-#line 462 "../Slice/Grammar.y"
+#line 463 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("missing tag for optional");
OptionalDefTokPtr m = new OptionalDefTok; // Dummy
m->v.optional = false;
m->v.tag = -1;
(yyval) = m;
-;}
+}
+#line 2119 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 45:
-
-/* Line 1455 of yacc.c */
-#line 475 "../Slice/Grammar.y"
+#line 476 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[0]));
m->v.type = ts->v.first;
m->v.name = ts->v.second;
(yyval) = m;
-;}
+}
+#line 2131 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 46:
-
-/* Line 1455 of yacc.c */
-#line 483 "../Slice/Grammar.y"
+#line 484 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[0]));
OptionalDefTokPtr m = new OptionalDefTok;
m->v.type = ts->v.first;
m->v.name = ts->v.second;
m->v.optional = false;
m->v.tag = -1;
(yyval) = m;
-;}
+}
+#line 2145 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 48:
-
-/* Line 1455 of yacc.c */
-#line 504 "../Slice/Grammar.y"
+#line 505 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 2153 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 49:
-
-/* Line 1455 of yacc.c */
-#line 508 "../Slice/Grammar.y"
+#line 509 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as struct name");
- (yyval) = (yyvsp[(2) - (2)]); // Dummy
-;}
+ (yyval) = (yyvsp[0]); // Dummy
+}
+#line 2163 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 50:
-
-/* Line 1455 of yacc.c */
-#line 519 "../Slice/Grammar.y"
+#line 520 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("structs cannot be forward declared");
(yyval) = 0; // Dummy
-;}
+}
+#line 2172 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 51:
-
-/* Line 1455 of yacc.c */
-#line 529 "../Slice/Grammar.y"
+#line 530 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
StructPtr st = cont->createStruct(ident->v, local->v);
if(st)
{
- cont->checkIntroduced(ident->v, st);
- unit->pushContainer(st);
+ cont->checkIntroduced(ident->v, st);
+ unit->pushContainer(st);
}
else
{
@@ -2413,19 +2190,18 @@ yyreduce:
unit->pushContainer(st);
}
(yyval) = st;
-;}
+}
+#line 2195 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 52:
-
-/* Line 1455 of yacc.c */
-#line 548 "../Slice/Grammar.y"
+#line 549 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(3) - (6)]))
+ if((yyvsp[-3]))
{
- unit->popContainer();
+ unit->popContainer();
}
- (yyval) = (yyvsp[(3) - (6)]);
+ (yyval) = (yyvsp[-3]);
//
// Empty structures are not allowed
@@ -2434,76 +2210,69 @@ yyreduce:
assert(st);
if(st->dataMembers().empty())
{
- unit->error("struct `" + st->name() + "' must have at least one member"); // $$ is a dummy
+ unit->error("struct `" + st->name() + "' must have at least one member"); // $$ is a dummy
}
-;}
+}
+#line 2217 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 53:
-
-/* Line 1455 of yacc.c */
-#line 571 "../Slice/Grammar.y"
+#line 572 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[-2]));
if(contained && !metaData->v.empty())
{
- contained->setMetaData(metaData->v);
+ contained->setMetaData(metaData->v);
}
-;}
+}
+#line 2230 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 54:
-
-/* Line 1455 of yacc.c */
-#line 580 "../Slice/Grammar.y"
+#line 581 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 2237 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 55:
-
-/* Line 1455 of yacc.c */
-#line 583 "../Slice/Grammar.y"
+#line 584 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("`;' missing after definition");
-;}
+}
+#line 2245 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 56:
-
-/* Line 1455 of yacc.c */
-#line 587 "../Slice/Grammar.y"
+#line 588 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 2252 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 58:
-
-/* Line 1455 of yacc.c */
-#line 601 "../Slice/Grammar.y"
+#line 602 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 2260 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 59:
-
-/* Line 1455 of yacc.c */
-#line 605 "../Slice/Grammar.y"
+#line 606 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as class name");
- (yyval) = (yyvsp[(2) - (2)]); // Dummy
-;}
+ (yyval) = (yyvsp[0]); // Dummy
+}
+#line 2270 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 60:
-
-/* Line 1455 of yacc.c */
-#line 616 "../Slice/Grammar.y"
+#line 617 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- IceUtil::Int64 id = IntegerTokPtr::dynamicCast((yyvsp[(3) - (4)]))->v;
+ IceUtil::Int64 id = IntegerTokPtr::dynamicCast((yyvsp[-1]))->v;
if(id < 0)
{
unit->error("invalid compact id for class: id must be a positive integer");
@@ -2522,18 +2291,17 @@ yyreduce:
}
ClassIdTokPtr classId = new ClassIdTok();
- classId->v = StringTokPtr::dynamicCast((yyvsp[(2) - (4)]))->v;
+ classId->v = StringTokPtr::dynamicCast((yyvsp[-2]))->v;
classId->t = static_cast<int>(id);
(yyval) = classId;
-;}
+}
+#line 2299 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 61:
-
-/* Line 1455 of yacc.c */
-#line 641 "../Slice/Grammar.y"
+#line 642 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(3) - (4)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[-1]));
ContainerPtr cont = unit->currentContainer();
assert(cont);
@@ -2591,194 +2359,181 @@ yyreduce:
}
ClassIdTokPtr classId = new ClassIdTok();
- classId->v = StringTokPtr::dynamicCast((yyvsp[(2) - (4)]))->v;
+ classId->v = StringTokPtr::dynamicCast((yyvsp[-2]))->v;
classId->t = id;
(yyval) = classId;
-;}
+}
+#line 2368 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 62:
-
-/* Line 1455 of yacc.c */
-#line 706 "../Slice/Grammar.y"
+#line 707 "../Slice/Grammar.y" /* yacc.c:1646 */
{
ClassIdTokPtr classId = new ClassIdTok();
- classId->v = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]))->v;
+ classId->v = StringTokPtr::dynamicCast((yyvsp[0]))->v;
classId->t = -1;
(yyval) = classId;
-;}
+}
+#line 2379 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 63:
-
-/* Line 1455 of yacc.c */
-#line 718 "../Slice/Grammar.y"
+#line 719 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ClassDeclPtr cl = cont->createClassDecl(ident->v, false, local->v);
(yyval) = cl;
-;}
+}
+#line 2391 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 64:
-
-/* Line 1455 of yacc.c */
-#line 731 "../Slice/Grammar.y"
+#line 732 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- ClassIdTokPtr ident = ClassIdTokPtr::dynamicCast((yyvsp[(2) - (4)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-3]));
+ ClassIdTokPtr ident = ClassIdTokPtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
- ClassDefPtr base = ClassDefPtr::dynamicCast((yyvsp[(3) - (4)]));
- ClassListTokPtr bases = ClassListTokPtr::dynamicCast((yyvsp[(4) - (4)]));
+ ClassDefPtr base = ClassDefPtr::dynamicCast((yyvsp[-1]));
+ ClassListTokPtr bases = ClassListTokPtr::dynamicCast((yyvsp[0]));
if(base)
{
- bases->v.push_front(base);
+ bases->v.push_front(base);
}
ClassDefPtr cl = cont->createClassDef(ident->v, ident->t, false, bases->v, local->v);
if(cl)
{
- cont->checkIntroduced(ident->v, cl);
- unit->pushContainer(cl);
- (yyval) = cl;
+ cont->checkIntroduced(ident->v, cl);
+ unit->pushContainer(cl);
+ (yyval) = cl;
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2418 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 65:
-
-/* Line 1455 of yacc.c */
-#line 754 "../Slice/Grammar.y"
+#line 755 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(5) - (8)]))
+ if((yyvsp[-3]))
{
- unit->popContainer();
- (yyval) = (yyvsp[(5) - (8)]);
+ unit->popContainer();
+ (yyval) = (yyvsp[-3]);
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2434 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 66:
-
-/* Line 1455 of yacc.c */
-#line 771 "../Slice/Grammar.y"
+#line 772 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
TypeList types = cont->lookupType(scoped->v);
(yyval) = 0;
if(!types.empty())
{
- ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
- if(!cl || cl->isInterface())
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' is not a class";
- unit->error(msg);
- }
- else
- {
- ClassDefPtr def = cl->definition();
- if(!def)
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' has been declared but not defined";
- unit->error(msg);
- }
- else
- {
- cont->checkIntroduced(scoped->v);
- (yyval) = def;
- }
- }
+ ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
+ if(!cl || cl->isInterface())
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' is not a class";
+ unit->error(msg);
+ }
+ else
+ {
+ ClassDefPtr def = cl->definition();
+ if(!def)
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' has been declared but not defined";
+ unit->error(msg);
+ }
+ else
+ {
+ cont->checkIntroduced(scoped->v);
+ (yyval) = def;
+ }
+ }
}
-;}
+}
+#line 2472 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 67:
-
-/* Line 1455 of yacc.c */
-#line 805 "../Slice/Grammar.y"
+#line 806 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = 0;
-;}
+}
+#line 2480 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 68:
-
-/* Line 1455 of yacc.c */
-#line 814 "../Slice/Grammar.y"
+#line 815 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 2488 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 69:
-
-/* Line 1455 of yacc.c */
-#line 818 "../Slice/Grammar.y"
+#line 819 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = new ClassListTok;
-;}
+}
+#line 2496 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 70:
-
-/* Line 1455 of yacc.c */
-#line 827 "../Slice/Grammar.y"
+#line 828 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[-2]));
if(contained && !metaData->v.empty())
{
- contained->setMetaData(metaData->v);
+ contained->setMetaData(metaData->v);
}
-;}
+}
+#line 2509 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 71:
-
-/* Line 1455 of yacc.c */
-#line 836 "../Slice/Grammar.y"
+#line 837 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 2516 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 72:
-
-/* Line 1455 of yacc.c */
-#line 839 "../Slice/Grammar.y"
+#line 840 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("`;' missing after definition");
-;}
+}
+#line 2524 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 73:
-
-/* Line 1455 of yacc.c */
-#line 843 "../Slice/Grammar.y"
+#line 844 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 2531 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 74:
-
-/* Line 1455 of yacc.c */
-#line 851 "../Slice/Grammar.y"
+#line 852 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[0]));
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
DataMemberPtr dm;
if(cl)
@@ -2797,16 +2552,15 @@ yyreduce:
}
unit->currentContainer()->checkIntroduced(def->v.name, dm);
(yyval) = dm;
-;}
+}
+#line 2557 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 75:
-
-/* Line 1455 of yacc.c */
-#line 873 "../Slice/Grammar.y"
+#line 874 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ OptionalDefTokPtr def = OptionalDefTokPtr::dynamicCast((yyvsp[-2]));
+ ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[0]));
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
DataMemberPtr dm;
@@ -2829,16 +2583,15 @@ yyreduce:
}
unit->currentContainer()->checkIntroduced(def->v.name, dm);
(yyval) = dm;
-;}
+}
+#line 2588 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 76:
-
-/* Line 1455 of yacc.c */
-#line 900 "../Slice/Grammar.y"
+#line 901 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
@@ -2856,15 +2609,14 @@ yyreduce:
}
assert((yyval));
unit->error("keyword `" + name + "' cannot be used as data member name");
-;}
+}
+#line 2614 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 77:
-
-/* Line 1455 of yacc.c */
-#line 922 "../Slice/Grammar.y"
+#line 923 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[0]));
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
@@ -2882,758 +2634,719 @@ yyreduce:
}
assert((yyval));
unit->error("missing data member name");
-;}
+}
+#line 2639 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 78:
-
-/* Line 1455 of yacc.c */
-#line 948 "../Slice/Grammar.y"
+#line 949 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[0]));
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
DataMemberPtr dm = st->createDataMember(ts->v.second, ts->v.first, false, -1, 0, "", "");
unit->currentContainer()->checkIntroduced(ts->v.second, dm);
(yyval) = dm;
-;}
+}
+#line 2652 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 79:
-
-/* Line 1455 of yacc.c */
-#line 957 "../Slice/Grammar.y"
+#line 958 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[-2]));
+ ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[0]));
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
DataMemberPtr dm = st->createDataMember(ts->v.second, ts->v.first, false, -1, value->v.value,
value->v.valueAsString, value->v.valueAsLiteral);
unit->currentContainer()->checkIntroduced(ts->v.second, dm);
(yyval) = dm;
-;}
+}
+#line 2667 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 80:
-
-/* Line 1455 of yacc.c */
-#line 968 "../Slice/Grammar.y"
+#line 969 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[0]));
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
(yyval) = st->createDataMember(ts->v.second, ts->v.first, false, 0, 0, "", ""); // Dummy
assert((yyval));
unit->error("optional data members not supported in struct");
-;}
+}
+#line 2680 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 81:
-
-/* Line 1455 of yacc.c */
-#line 977 "../Slice/Grammar.y"
+#line 978 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[(2) - (4)]));
+ TypeStringTokPtr ts = TypeStringTokPtr::dynamicCast((yyvsp[-2]));
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
(yyval) = st->createDataMember(ts->v.second, ts->v.first, false, 0, 0, "", ""); // Dummy
assert((yyval));
unit->error("optional data members not supported in struct");
-;}
+}
+#line 2693 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 82:
-
-/* Line 1455 of yacc.c */
-#line 986 "../Slice/Grammar.y"
+#line 987 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (2)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
(yyval) = st->createDataMember(name, type, false, 0, 0, "", ""); // Dummy
assert((yyval));
unit->error("keyword `" + name + "' cannot be used as data member name");
-;}
+}
+#line 2707 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 83:
-
-/* Line 1455 of yacc.c */
-#line 996 "../Slice/Grammar.y"
+#line 997 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- TypePtr type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[0]));
StructPtr st = StructPtr::dynamicCast(unit->currentContainer());
assert(st);
(yyval) = st->createDataMember(IceUtil::generateUUID(), type, false, 0, 0, "", ""); // Dummy
assert((yyval));
unit->error("missing data member name");
-;}
+}
+#line 2720 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 84:
-
-/* Line 1455 of yacc.c */
-#line 1010 "../Slice/Grammar.y"
+#line 1011 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- m->v.type = TypePtr::dynamicCast((yyvsp[(2) - (2)]));
+ OptionalDefTokPtr m = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ m->v.type = TypePtr::dynamicCast((yyvsp[0]));
(yyval) = m;
-;}
+}
+#line 2730 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 85:
-
-/* Line 1455 of yacc.c */
-#line 1016 "../Slice/Grammar.y"
+#line 1017 "../Slice/Grammar.y" /* yacc.c:1646 */
{
OptionalDefTokPtr m = new OptionalDefTok();
- m->v.type = TypePtr::dynamicCast((yyvsp[(1) - (1)]));
+ m->v.type = TypePtr::dynamicCast((yyvsp[0]));
m->v.optional = false;
m->v.tag = -1;
(yyval) = m;
-;}
+}
+#line 2742 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 86:
-
-/* Line 1455 of yacc.c */
-#line 1024 "../Slice/Grammar.y"
+#line 1025 "../Slice/Grammar.y" /* yacc.c:1646 */
{
OptionalDefTokPtr m = new OptionalDefTok;
m->v.optional = false;
m->v.tag = -1;
(yyval) = m;
-;}
+}
+#line 2753 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 87:
-
-/* Line 1455 of yacc.c */
-#line 1036 "../Slice/Grammar.y"
+#line 1037 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
+ OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
- OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag);
- if(op)
- {
- cl->checkIntroduced(name, op);
- unit->pushContainer(op);
- (yyval) = op;
- }
- else
- {
- (yyval) = 0;
- }
+ OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag);
+ if(op)
+ {
+ cl->checkIntroduced(name, op);
+ unit->pushContainer(op);
+ (yyval) = op;
+ }
+ else
+ {
+ (yyval) = 0;
+ }
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2781 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 88:
-
-/* Line 1455 of yacc.c */
-#line 1060 "../Slice/Grammar.y"
+#line 1061 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(2) - (3)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v;
+ OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
- OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag,
- Operation::Idempotent);
- if(op)
- {
- cl->checkIntroduced(name, op);
- unit->pushContainer(op);
- (yyval) = op;
- }
- else
- {
- (yyval) = 0;
- }
+ OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag,
+ Operation::Idempotent);
+ if(op)
+ {
+ cl->checkIntroduced(name, op);
+ unit->pushContainer(op);
+ (yyval) = op;
+ }
+ else
+ {
+ (yyval) = 0;
+ }
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2810 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 89:
-
-/* Line 1455 of yacc.c */
-#line 1085 "../Slice/Grammar.y"
+#line 1086 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]))->v;
+ OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
- OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag);
- if(op)
- {
- unit->pushContainer(op);
- unit->error("keyword `" + name + "' cannot be used as operation name");
- (yyval) = op; // Dummy
- }
- else
- {
- (yyval) = 0;
- }
+ OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag);
+ if(op)
+ {
+ unit->pushContainer(op);
+ unit->error("keyword `" + name + "' cannot be used as operation name");
+ (yyval) = op; // Dummy
+ }
+ else
+ {
+ (yyval) = 0;
+ }
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2838 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 90:
-
-/* Line 1455 of yacc.c */
-#line 1109 "../Slice/Grammar.y"
+#line 1110 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[(2) - (3)]));
- string name = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v;
+ OptionalDefTokPtr returnType = OptionalDefTokPtr::dynamicCast((yyvsp[-1]));
+ string name = StringTokPtr::dynamicCast((yyvsp[0]))->v;
ClassDefPtr cl = ClassDefPtr::dynamicCast(unit->currentContainer());
if(cl)
{
- OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag,
- Operation::Idempotent);
- if(op)
- {
- unit->pushContainer(op);
- unit->error("keyword `" + name + "' cannot be used as operation name");
- (yyval) = op; // Dummy
- }
- else
- {
- return 0;
- }
+ OperationPtr op = cl->createOperation(name, returnType->v.type, returnType->v.optional, returnType->v.tag,
+ Operation::Idempotent);
+ if(op)
+ {
+ unit->pushContainer(op);
+ unit->error("keyword `" + name + "' cannot be used as operation name");
+ (yyval) = op; // Dummy
+ }
+ else
+ {
+ return 0;
+ }
}
else
{
- (yyval) = 0;
+ (yyval) = 0;
}
-;}
+}
+#line 2867 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 91:
-
-/* Line 1455 of yacc.c */
-#line 1139 "../Slice/Grammar.y"
+#line 1140 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(1) - (3)]))
+ if((yyvsp[-2]))
{
- unit->popContainer();
- (yyval) = (yyvsp[(1) - (3)]);
+ unit->popContainer();
+ (yyval) = (yyvsp[-2]);
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2883 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 92:
-
-/* Line 1455 of yacc.c */
-#line 1151 "../Slice/Grammar.y"
+#line 1152 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OperationPtr op = OperationPtr::dynamicCast((yyvsp[(4) - (5)]));
- ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[(5) - (5)]));
+ OperationPtr op = OperationPtr::dynamicCast((yyvsp[-1]));
+ ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[0]));
assert(el);
if(op)
{
op->setExceptionList(el->v);
}
-;}
+}
+#line 2897 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 93:
-
-/* Line 1455 of yacc.c */
-#line 1161 "../Slice/Grammar.y"
+#line 1162 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(1) - (3)]))
+ if((yyvsp[-2]))
{
- unit->popContainer();
+ unit->popContainer();
}
yyerrok;
-;}
+}
+#line 2909 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 94:
-
-/* Line 1455 of yacc.c */
-#line 1169 "../Slice/Grammar.y"
+#line 1170 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- OperationPtr op = OperationPtr::dynamicCast((yyvsp[(4) - (5)]));
- ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[(5) - (5)]));
+ OperationPtr op = OperationPtr::dynamicCast((yyvsp[-1]));
+ ExceptionListTokPtr el = ExceptionListTokPtr::dynamicCast((yyvsp[0]));
assert(el);
if(op)
{
op->setExceptionList(el->v); // Dummy
}
-;}
+}
+#line 2923 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 97:
-
-/* Line 1455 of yacc.c */
-#line 1191 "../Slice/Grammar.y"
+#line 1192 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 2931 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 98:
-
-/* Line 1455 of yacc.c */
-#line 1195 "../Slice/Grammar.y"
+#line 1196 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as interface name");
- (yyval) = (yyvsp[(2) - (2)]); // Dummy
-;}
+ (yyval) = (yyvsp[0]); // Dummy
+}
+#line 2941 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 99:
-
-/* Line 1455 of yacc.c */
-#line 1206 "../Slice/Grammar.y"
+#line 1207 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ClassDeclPtr cl = cont->createClassDecl(ident->v, true, local->v);
cont->checkIntroduced(ident->v, cl);
(yyval) = cl;
-;}
+}
+#line 2954 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 100:
-
-/* Line 1455 of yacc.c */
-#line 1220 "../Slice/Grammar.y"
+#line 1221 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (3)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[-1]));
ContainerPtr cont = unit->currentContainer();
- ClassListTokPtr bases = ClassListTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ ClassListTokPtr bases = ClassListTokPtr::dynamicCast((yyvsp[0]));
ClassDefPtr cl = cont->createClassDef(ident->v, -1, true, bases->v, local->v);
if(cl)
{
- cont->checkIntroduced(ident->v, cl);
- unit->pushContainer(cl);
- (yyval) = cl;
+ cont->checkIntroduced(ident->v, cl);
+ unit->pushContainer(cl);
+ (yyval) = cl;
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 2976 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 101:
-
-/* Line 1455 of yacc.c */
-#line 1238 "../Slice/Grammar.y"
+#line 1239 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- if((yyvsp[(4) - (7)]))
+ if((yyvsp[-3]))
{
- unit->popContainer();
- (yyval) = (yyvsp[(4) - (7)]);
+ unit->popContainer();
+ (yyval) = (yyvsp[-3]);
}
else
{
- (yyval) = 0;
+ (yyval) = 0;
}
-;}
+}
+#line 2992 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 102:
-
-/* Line 1455 of yacc.c */
-#line 1255 "../Slice/Grammar.y"
+#line 1256 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- ClassListTokPtr intfs = ClassListTokPtr::dynamicCast((yyvsp[(3) - (3)]));
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
+ ClassListTokPtr intfs = ClassListTokPtr::dynamicCast((yyvsp[0]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
TypeList types = cont->lookupType(scoped->v);
if(!types.empty())
{
- ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
- if(!cl || !cl->isInterface())
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' is not an interface";
- unit->error(msg);
- }
- else
- {
- ClassDefPtr def = cl->definition();
- if(!def)
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' has been declared but not defined";
- unit->error(msg);
- }
- else
- {
- cont->checkIntroduced(scoped->v);
- intfs->v.push_front(def);
- }
- }
+ ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
+ if(!cl || !cl->isInterface())
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' is not an interface";
+ unit->error(msg);
+ }
+ else
+ {
+ ClassDefPtr def = cl->definition();
+ if(!def)
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' has been declared but not defined";
+ unit->error(msg);
+ }
+ else
+ {
+ cont->checkIntroduced(scoped->v);
+ intfs->v.push_front(def);
+ }
+ }
}
(yyval) = intfs;
-;}
+}
+#line 3031 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 103:
-
-/* Line 1455 of yacc.c */
-#line 1290 "../Slice/Grammar.y"
+#line 1291 "../Slice/Grammar.y" /* yacc.c:1646 */
{
ClassListTokPtr intfs = new ClassListTok;
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
TypeList types = cont->lookupType(scoped->v);
if(!types.empty())
{
- ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
- if(!cl || !cl->isInterface())
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' is not an interface";
- unit->error(msg); // $$ is a dummy
- }
- else
- {
- ClassDefPtr def = cl->definition();
- if(!def)
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' has been declared but not defined";
- unit->error(msg); // $$ is a dummy
- }
- else
- {
- cont->checkIntroduced(scoped->v);
- intfs->v.push_front(def);
- }
- }
+ ClassDeclPtr cl = ClassDeclPtr::dynamicCast(types.front());
+ if(!cl || !cl->isInterface())
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' is not an interface";
+ unit->error(msg); // $$ is a dummy
+ }
+ else
+ {
+ ClassDefPtr def = cl->definition();
+ if(!def)
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' has been declared but not defined";
+ unit->error(msg); // $$ is a dummy
+ }
+ else
+ {
+ cont->checkIntroduced(scoped->v);
+ intfs->v.push_front(def);
+ }
+ }
}
(yyval) = intfs;
-;}
+}
+#line 3070 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 104:
-
-/* Line 1455 of yacc.c */
-#line 1325 "../Slice/Grammar.y"
+#line 1326 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("illegal inheritance from type Object");
(yyval) = new ClassListTok; // Dummy
-;}
+}
+#line 3079 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 105:
-
-/* Line 1455 of yacc.c */
-#line 1335 "../Slice/Grammar.y"
+#line 1331 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ unit->error("illegal inheritance from type Value");
+ (yyval) = new ClassListTok; // Dummy
+}
+#line 3088 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 106:
-
-/* Line 1455 of yacc.c */
-#line 1339 "../Slice/Grammar.y"
+#line 1341 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = new ClassListTok;
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 3096 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 107:
+#line 1345 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+ (yyval) = new ClassListTok;
+}
+#line 3104 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
-/* Line 1455 of yacc.c */
-#line 1348 "../Slice/Grammar.y"
+ case 108:
+#line 1354 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[(2) - (4)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ ContainedPtr contained = ContainedPtr::dynamicCast((yyvsp[-2]));
if(contained && !metaData->v.empty())
{
- contained->setMetaData(metaData->v);
+ contained->setMetaData(metaData->v);
}
-;}
+}
+#line 3117 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 108:
-
-/* Line 1455 of yacc.c */
-#line 1357 "../Slice/Grammar.y"
+ case 109:
+#line 1363 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3124 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 109:
-
-/* Line 1455 of yacc.c */
-#line 1360 "../Slice/Grammar.y"
+ case 110:
+#line 1366 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("`;' missing after definition");
-;}
+}
+#line 3132 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 110:
-
-/* Line 1455 of yacc.c */
-#line 1364 "../Slice/Grammar.y"
+ case 111:
+#line 1370 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3139 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 112:
-
-/* Line 1455 of yacc.c */
-#line 1378 "../Slice/Grammar.y"
+ case 113:
+#line 1384 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[(1) - (3)]));
- ExceptionListTokPtr exceptionList = ExceptionListTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[-2]));
+ ExceptionListTokPtr exceptionList = ExceptionListTokPtr::dynamicCast((yyvsp[0]));
exceptionList->v.push_front(exception);
(yyval) = exceptionList;
-;}
+}
+#line 3150 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 113:
-
-/* Line 1455 of yacc.c */
-#line 1385 "../Slice/Grammar.y"
+ case 114:
+#line 1391 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[(1) - (1)]));
+ ExceptionPtr exception = ExceptionPtr::dynamicCast((yyvsp[0]));
ExceptionListTokPtr exceptionList = new ExceptionListTok;
exceptionList->v.push_front(exception);
(yyval) = exceptionList;
-;}
+}
+#line 3161 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 114:
-
-/* Line 1455 of yacc.c */
-#line 1397 "../Slice/Grammar.y"
+ case 115:
+#line 1403 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
ExceptionPtr exception = cont->lookupException(scoped->v);
if(!exception)
{
- exception = cont->createException(IceUtil::generateUUID(), 0, false, Dummy); // Dummy
+ exception = cont->createException(IceUtil::generateUUID(), 0, false, Dummy); // Dummy
}
cont->checkIntroduced(scoped->v, exception);
(yyval) = exception;
-;}
+}
+#line 3177 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 115:
-
-/* Line 1455 of yacc.c */
-#line 1409 "../Slice/Grammar.y"
+ case 116:
+#line 1415 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as exception name");
(yyval) = unit->currentContainer()->createException(IceUtil::generateUUID(), 0, false, Dummy); // Dummy
-;}
+}
+#line 3187 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 116:
-
-/* Line 1455 of yacc.c */
-#line 1420 "../Slice/Grammar.y"
+ case 117:
+#line 1426 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (7)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(7) - (7)]));
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(4) - (7)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (7)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-6]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
(yyval) = cont->createSequence(ident->v, type, metaData->v, local->v);
-;}
+}
+#line 3200 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 117:
-
-/* Line 1455 of yacc.c */
-#line 1429 "../Slice/Grammar.y"
+ case 118:
+#line 1435 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (7)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(7) - (7)]));
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(4) - (7)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (7)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-6]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
(yyval) = cont->createSequence(ident->v, type, metaData->v, local->v); // Dummy
unit->error("keyword `" + ident->v + "' cannot be used as sequence name");
-;}
+}
+#line 3214 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 118:
-
-/* Line 1455 of yacc.c */
-#line 1444 "../Slice/Grammar.y"
- {
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (10)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(10) - (10)]));
- StringListTokPtr keyMetaData = StringListTokPtr::dynamicCast((yyvsp[(4) - (10)]));
- TypePtr keyType = TypePtr::dynamicCast((yyvsp[(5) - (10)]));
- StringListTokPtr valueMetaData = StringListTokPtr::dynamicCast((yyvsp[(7) - (10)]));
- TypePtr valueType = TypePtr::dynamicCast((yyvsp[(8) - (10)]));
+ case 119:
+#line 1450 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-9]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
+ StringListTokPtr keyMetaData = StringListTokPtr::dynamicCast((yyvsp[-6]));
+ TypePtr keyType = TypePtr::dynamicCast((yyvsp[-5]));
+ StringListTokPtr valueMetaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr valueType = TypePtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
(yyval) = cont->createDictionary(ident->v, keyType, keyMetaData->v, valueType, valueMetaData->v, local->v);
-;}
+}
+#line 3229 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 119:
-
-/* Line 1455 of yacc.c */
-#line 1455 "../Slice/Grammar.y"
- {
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (10)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(10) - (10)]));
- StringListTokPtr keyMetaData = StringListTokPtr::dynamicCast((yyvsp[(4) - (10)]));
- TypePtr keyType = TypePtr::dynamicCast((yyvsp[(5) - (10)]));
- StringListTokPtr valueMetaData = StringListTokPtr::dynamicCast((yyvsp[(7) - (10)]));
- TypePtr valueType = TypePtr::dynamicCast((yyvsp[(8) - (10)]));
+ case 120:
+#line 1461 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-9]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
+ StringListTokPtr keyMetaData = StringListTokPtr::dynamicCast((yyvsp[-6]));
+ TypePtr keyType = TypePtr::dynamicCast((yyvsp[-5]));
+ StringListTokPtr valueMetaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr valueType = TypePtr::dynamicCast((yyvsp[-2]));
ContainerPtr cont = unit->currentContainer();
(yyval) = cont->createDictionary(ident->v, keyType, keyMetaData->v, valueType, valueMetaData->v, local->v); // Dummy
unit->error("keyword `" + ident->v + "' cannot be used as dictionary name");
-;}
+}
+#line 3245 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 120:
-
-/* Line 1455 of yacc.c */
-#line 1472 "../Slice/Grammar.y"
+ case 121:
+#line 1478 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 3253 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 121:
-
-/* Line 1455 of yacc.c */
-#line 1476 "../Slice/Grammar.y"
+ case 122:
+#line 1482 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as enumeration name");
- (yyval) = (yyvsp[(2) - (2)]); // Dummy
-;}
+ (yyval) = (yyvsp[0]); // Dummy
+}
+#line 3263 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 122:
-
-/* Line 1455 of yacc.c */
-#line 1487 "../Slice/Grammar.y"
+ case 123:
+#line 1493 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
EnumPtr en = cont->createEnum(ident->v, local->v);
cont->checkIntroduced(ident->v, en);
(yyval) = en;
-;}
+}
+#line 3276 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 123:
-
-/* Line 1455 of yacc.c */
-#line 1496 "../Slice/Grammar.y"
+ case 124:
+#line 1502 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- EnumPtr en = EnumPtr::dynamicCast((yyvsp[(3) - (6)]));
+ EnumPtr en = EnumPtr::dynamicCast((yyvsp[-3]));
if(en)
{
- EnumeratorListTokPtr enumerators = EnumeratorListTokPtr::dynamicCast((yyvsp[(5) - (6)]));
- if(enumerators->v.empty())
- {
- unit->error("enum `" + en->name() + "' must have at least one enumerator");
- }
- en->setEnumerators(enumerators->v); // Dummy
+ EnumeratorListTokPtr enumerators = EnumeratorListTokPtr::dynamicCast((yyvsp[-1]));
+ if(enumerators->v.empty())
+ {
+ unit->error("enum `" + en->name() + "' must have at least one enumerator");
}
- (yyval) = (yyvsp[(3) - (6)]);
-;}
+ en->setEnumerators(enumerators->v); // Dummy
+ }
+ (yyval) = (yyvsp[-3]);
+}
+#line 3294 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 124:
-
-/* Line 1455 of yacc.c */
-#line 1511 "../Slice/Grammar.y"
+ case 125:
+#line 1517 "../Slice/Grammar.y" /* yacc.c:1646 */
{
unit->error("missing enumeration name");
- BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[(1) - (5)]));
+ BoolTokPtr local = BoolTokPtr::dynamicCast((yyvsp[-4]));
ContainerPtr cont = unit->currentContainer();
EnumPtr en = cont->createEnum(IceUtil::generateUUID(), local->v, Dummy); // Dummy
- EnumeratorListTokPtr enumerators = EnumeratorListTokPtr::dynamicCast((yyvsp[(4) - (5)]));
+ EnumeratorListTokPtr enumerators = EnumeratorListTokPtr::dynamicCast((yyvsp[-1]));
en->setEnumerators(enumerators->v); // Dummy
(yyval) = en;
-;}
+}
+#line 3308 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 125:
-
-/* Line 1455 of yacc.c */
-#line 1526 "../Slice/Grammar.y"
+ case 126:
+#line 1532 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- EnumeratorListTokPtr ens = EnumeratorListTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- ens->v.splice(ens->v.end(), EnumeratorListTokPtr::dynamicCast((yyvsp[(3) - (3)]))->v);
+ EnumeratorListTokPtr ens = EnumeratorListTokPtr::dynamicCast((yyvsp[-2]));
+ ens->v.splice(ens->v.end(), EnumeratorListTokPtr::dynamicCast((yyvsp[0]))->v);
(yyval) = ens;
-;}
+}
+#line 3318 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 126:
-
-/* Line 1455 of yacc.c */
-#line 1532 "../Slice/Grammar.y"
+ case 127:
+#line 1538 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3325 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 127:
-
-/* Line 1455 of yacc.c */
-#line 1540 "../Slice/Grammar.y"
+ case 128:
+#line 1546 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
EnumeratorListTokPtr ens = new EnumeratorListTok;
ContainerPtr cont = unit->currentContainer();
EnumeratorPtr en = cont->createEnumerator(ident->v);
if(en)
{
- ens->v.push_front(en);
+ ens->v.push_front(en);
}
(yyval) = ens;
-;}
+}
+#line 3341 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 128:
-
-/* Line 1455 of yacc.c */
-#line 1552 "../Slice/Grammar.y"
+ case 129:
+#line 1558 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[-2]));
EnumeratorListTokPtr ens = new EnumeratorListTok;
ContainerPtr cont = unit->currentContainer();
- IntegerTokPtr intVal = IntegerTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ IntegerTokPtr intVal = IntegerTokPtr::dynamicCast((yyvsp[0]));
if(intVal)
{
if(intVal->v < 0 || intVal->v > Int32Max)
@@ -3650,46 +3363,42 @@ yyreduce:
}
}
(yyval) = ens;
-;}
+}
+#line 3368 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 129:
-
-/* Line 1455 of yacc.c */
-#line 1575 "../Slice/Grammar.y"
+ case 130:
+#line 1581 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
unit->error("keyword `" + ident->v + "' cannot be used as enumerator");
EnumeratorListTokPtr ens = new EnumeratorListTok; // Dummy
(yyval) = ens;
-;}
+}
+#line 3379 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 130:
-
-/* Line 1455 of yacc.c */
-#line 1582 "../Slice/Grammar.y"
+ case 131:
+#line 1588 "../Slice/Grammar.y" /* yacc.c:1646 */
{
EnumeratorListTokPtr ens = new EnumeratorListTok;
(yyval) = ens; // Dummy
-;}
+}
+#line 3388 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 131:
-
-/* Line 1455 of yacc.c */
-#line 1592 "../Slice/Grammar.y"
+ case 132:
+#line 1598 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(1) - (1)]);
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 3396 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 132:
-
-/* Line 1455 of yacc.c */
-#line 1596 "../Slice/Grammar.y"
+ case 133:
+#line 1602 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainedList cl = unit->currentContainer()->lookupContained(scoped->v);
IntegerTokPtr tok;
if(!cl.empty())
@@ -3720,433 +3429,407 @@ yyreduce:
}
(yyval) = tok;
-;}
+}
+#line 3434 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 133:
-
-/* Line 1455 of yacc.c */
-#line 1635 "../Slice/Grammar.y"
+ case 134:
+#line 1641 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BoolTokPtr out = new BoolTok;
out->v = true;
(yyval) = out;
-;}
+}
+#line 3444 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 134:
-
-/* Line 1455 of yacc.c */
-#line 1641 "../Slice/Grammar.y"
+ case 135:
+#line 1647 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BoolTokPtr out = new BoolTok;
out->v = false;
(yyval) = out;
-;}
+}
+#line 3454 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 135:
-
-/* Line 1455 of yacc.c */
-#line 1652 "../Slice/Grammar.y"
+ case 136:
+#line 1658 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3461 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 136:
-
-/* Line 1455 of yacc.c */
-#line 1655 "../Slice/Grammar.y"
+ case 137:
+#line 1661 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[0]));
OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
if(op)
{
- ParamDeclPtr pd = op->createParamDecl(tsp->v.name, tsp->v.type, isOutParam->v, tsp->v.optional, tsp->v.tag);
- unit->currentContainer()->checkIntroduced(tsp->v.name, pd);
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(2) - (3)]));
+ ParamDeclPtr pd = op->createParamDecl(tsp->v.name, tsp->v.type, isOutParam->v, tsp->v.optional, tsp->v.tag);
+ unit->currentContainer()->checkIntroduced(tsp->v.name, pd);
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-1]));
if(!metaData->v.empty())
{
pd->setMetaData(metaData->v);
}
}
-;}
+}
+#line 3481 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 137:
-
-/* Line 1455 of yacc.c */
-#line 1671 "../Slice/Grammar.y"
+ case 138:
+#line 1677 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (5)]));
- OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[(5) - (5)]));
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ OptionalDefTokPtr tsp = OptionalDefTokPtr::dynamicCast((yyvsp[0]));
OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
if(op)
{
- ParamDeclPtr pd = op->createParamDecl(tsp->v.name, tsp->v.type, isOutParam->v, tsp->v.optional, tsp->v.tag);
- unit->currentContainer()->checkIntroduced(tsp->v.name, pd);
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(4) - (5)]));
+ ParamDeclPtr pd = op->createParamDecl(tsp->v.name, tsp->v.type, isOutParam->v, tsp->v.optional, tsp->v.tag);
+ unit->currentContainer()->checkIntroduced(tsp->v.name, pd);
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-1]));
if(!metaData->v.empty())
{
pd->setMetaData(metaData->v);
}
}
-;}
- break;
-
- case 138:
-
-/* Line 1455 of yacc.c */
-#line 1687 "../Slice/Grammar.y"
- {
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (4)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(3) - (4)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(4) - (4)]));
- OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
- if(op)
- {
- op->createParamDecl(ident->v, type, isOutParam->v, false, 0); // Dummy
- unit->error("keyword `" + ident->v + "' cannot be used as parameter name");
- }
-;}
+}
+#line 3501 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 139:
-
-/* Line 1455 of yacc.c */
-#line 1699 "../Slice/Grammar.y"
+#line 1693 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (6)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (6)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(6) - (6)]));
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
if(op)
{
- op->createParamDecl(ident->v, type, isOutParam->v, false, 0); // Dummy
- unit->error("keyword `" + ident->v + "' cannot be used as parameter name");
+ op->createParamDecl(ident->v, type, isOutParam->v, false, 0); // Dummy
+ unit->error("keyword `" + ident->v + "' cannot be used as parameter name");
}
-;}
+}
+#line 3517 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 140:
-
-/* Line 1455 of yacc.c */
-#line 1711 "../Slice/Grammar.y"
+#line 1705 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(3) - (3)]));
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
if(op)
{
- op->createParamDecl(IceUtil::generateUUID(), type, isOutParam->v, false, 0); // Dummy
- unit->error("missing parameter name");
+ op->createParamDecl(ident->v, type, isOutParam->v, false, 0); // Dummy
+ unit->error("keyword `" + ident->v + "' cannot be used as parameter name");
}
-;}
+}
+#line 3533 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 141:
-
-/* Line 1455 of yacc.c */
-#line 1722 "../Slice/Grammar.y"
+#line 1717 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[(3) - (5)]));
- TypePtr type = TypePtr::dynamicCast((yyvsp[(5) - (5)]));
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[0]));
OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
if(op)
{
- op->createParamDecl(IceUtil::generateUUID(), type, isOutParam->v, false, 0); // Dummy
- unit->error("missing parameter name");
+ op->createParamDecl(IceUtil::generateUUID(), type, isOutParam->v, false, 0); // Dummy
+ unit->error("missing parameter name");
}
-;}
+}
+#line 3548 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 142:
-
-/* Line 1455 of yacc.c */
-#line 1738 "../Slice/Grammar.y"
+#line 1728 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = (yyvsp[(2) - (2)]);
-;}
+ BoolTokPtr isOutParam = BoolTokPtr::dynamicCast((yyvsp[-2]));
+ TypePtr type = TypePtr::dynamicCast((yyvsp[0]));
+ OperationPtr op = OperationPtr::dynamicCast(unit->currentContainer());
+ if(op)
+ {
+ op->createParamDecl(IceUtil::generateUUID(), type, isOutParam->v, false, 0); // Dummy
+ unit->error("missing parameter name");
+ }
+}
+#line 3563 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 143:
-
-/* Line 1455 of yacc.c */
-#line 1742 "../Slice/Grammar.y"
+#line 1744 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- (yyval) = new ExceptionListTok;
-;}
+ (yyval) = (yyvsp[0]);
+}
+#line 3571 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 144:
-
-/* Line 1455 of yacc.c */
-#line 1751 "../Slice/Grammar.y"
+#line 1748 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+ (yyval) = new ExceptionListTok;
+}
+#line 3579 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 145:
+#line 1757 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+}
+#line 3586 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
-/* Line 1455 of yacc.c */
-#line 1754 "../Slice/Grammar.y"
+ case 146:
+#line 1760 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
ident->v = "::" + ident->v;
(yyval) = ident;
-;}
+}
+#line 3596 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 146:
-
-/* Line 1455 of yacc.c */
-#line 1760 "../Slice/Grammar.y"
+ case 147:
+#line 1766 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (3)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[-2]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[0]));
scoped->v += "::";
scoped->v += ident->v;
(yyval) = scoped;
-;}
+}
+#line 3608 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 147:
-
-/* Line 1455 of yacc.c */
-#line 1773 "../Slice/Grammar.y"
+ case 148:
+#line 1779 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindByte);
-;}
+}
+#line 3616 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 148:
-
-/* Line 1455 of yacc.c */
-#line 1777 "../Slice/Grammar.y"
+ case 149:
+#line 1783 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindBool);
-;}
+}
+#line 3624 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 149:
-
-/* Line 1455 of yacc.c */
-#line 1781 "../Slice/Grammar.y"
+ case 150:
+#line 1787 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindShort);
-;}
+}
+#line 3632 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 150:
-
-/* Line 1455 of yacc.c */
-#line 1785 "../Slice/Grammar.y"
+ case 151:
+#line 1791 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindInt);
-;}
+}
+#line 3640 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 151:
-
-/* Line 1455 of yacc.c */
-#line 1789 "../Slice/Grammar.y"
+ case 152:
+#line 1795 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindLong);
-;}
+}
+#line 3648 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 152:
-
-/* Line 1455 of yacc.c */
-#line 1793 "../Slice/Grammar.y"
+ case 153:
+#line 1799 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindFloat);
-;}
+}
+#line 3656 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 153:
-
-/* Line 1455 of yacc.c */
-#line 1797 "../Slice/Grammar.y"
+ case 154:
+#line 1803 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindDouble);
-;}
+}
+#line 3664 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 154:
-
-/* Line 1455 of yacc.c */
-#line 1801 "../Slice/Grammar.y"
+ case 155:
+#line 1807 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindString);
-;}
+}
+#line 3672 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 155:
-
-/* Line 1455 of yacc.c */
-#line 1805 "../Slice/Grammar.y"
+ case 156:
+#line 1811 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindObject);
-;}
+}
+#line 3680 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 156:
-
-/* Line 1455 of yacc.c */
-#line 1809 "../Slice/Grammar.y"
+ case 157:
+#line 1815 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindObjectProxy);
-;}
+}
+#line 3688 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 157:
-
-/* Line 1455 of yacc.c */
-#line 1813 "../Slice/Grammar.y"
+ case 158:
+#line 1819 "../Slice/Grammar.y" /* yacc.c:1646 */
{
(yyval) = unit->builtin(Builtin::KindLocalObject);
-;}
+}
+#line 3696 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 158:
+ case 159:
+#line 1823 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+ (yyval) = unit->builtin(Builtin::KindValue);
+}
+#line 3704 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
-/* Line 1455 of yacc.c */
-#line 1817 "../Slice/Grammar.y"
+ case 160:
+#line 1827 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ContainerPtr cont = unit->currentContainer();
if(cont)
{
- TypeList types = cont->lookupType(scoped->v);
- if(types.empty())
- {
- YYERROR; // Can't continue, jump to next yyerrok
- }
- cont->checkIntroduced(scoped->v);
- (yyval) = types.front();
+ TypeList types = cont->lookupType(scoped->v);
+ if(types.empty())
+ {
+ YYERROR; // Can't continue, jump to next yyerrok
+ }
+ cont->checkIntroduced(scoped->v);
+ (yyval) = types.front();
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 3727 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 159:
-
-/* Line 1455 of yacc.c */
-#line 1836 "../Slice/Grammar.y"
+ case 161:
+#line 1846 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (2)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[-1]));
ContainerPtr cont = unit->currentContainer();
if(cont)
{
- TypeList types = cont->lookupType(scoped->v);
- if(types.empty())
- {
- YYERROR; // Can't continue, jump to next yyerrok
- }
- for(TypeList::iterator p = types.begin(); p != types.end(); ++p)
- {
- ClassDeclPtr cl = ClassDeclPtr::dynamicCast(*p);
- if(!cl)
- {
- string msg = "`";
- msg += scoped->v;
- msg += "' must be class or interface";
- unit->error(msg);
- YYERROR; // Can't continue, jump to next yyerrok
- }
- cont->checkIntroduced(scoped->v);
- if(cl->isLocal())
- {
- unit->error("cannot create proxy for " + cl->kindOf() + " `" + cl->name() + "'"); // $$ is dummy
- }
- *p = new Proxy(cl);
- }
- (yyval) = types.front();
+ TypeList types = cont->lookupType(scoped->v);
+ if(types.empty())
+ {
+ YYERROR; // Can't continue, jump to next yyerrok
+ }
+ for(TypeList::iterator p = types.begin(); p != types.end(); ++p)
+ {
+ ClassDeclPtr cl = ClassDeclPtr::dynamicCast(*p);
+ if(!cl)
+ {
+ string msg = "`";
+ msg += scoped->v;
+ msg += "' must be class or interface";
+ unit->error(msg);
+ YYERROR; // Can't continue, jump to next yyerrok
+ }
+ cont->checkIntroduced(scoped->v);
+ if(cl->isLocal())
+ {
+ unit->error("cannot create proxy for " + cl->kindOf() + " `" + cl->name() + "'"); // $$ is dummy
+ }
+ *p = new Proxy(cl);
+ }
+ (yyval) = types.front();
}
else
{
(yyval) = 0;
}
-;}
+}
+#line 3767 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 160:
-
-/* Line 1455 of yacc.c */
-#line 1877 "../Slice/Grammar.y"
+ case 162:
+#line 1887 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr str1 = StringTokPtr::dynamicCast((yyvsp[(1) - (2)]));
- StringTokPtr str2 = StringTokPtr::dynamicCast((yyvsp[(2) - (2)]));
+ StringTokPtr str1 = StringTokPtr::dynamicCast((yyvsp[-1]));
+ StringTokPtr str2 = StringTokPtr::dynamicCast((yyvsp[0]));
str1->v += str2->v;
-;}
+}
+#line 3777 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 161:
-
-/* Line 1455 of yacc.c */
-#line 1883 "../Slice/Grammar.y"
+ case 163:
+#line 1893 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3784 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 162:
-
-/* Line 1455 of yacc.c */
-#line 1891 "../Slice/Grammar.y"
+ case 164:
+#line 1901 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[(3) - (3)]));
- StringListTokPtr stringList = StringListTokPtr::dynamicCast((yyvsp[(1) - (3)]));
+ StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[0]));
+ StringListTokPtr stringList = StringListTokPtr::dynamicCast((yyvsp[-2]));
stringList->v.push_back(str->v);
(yyval) = stringList;
-;}
+}
+#line 3795 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 163:
-
-/* Line 1455 of yacc.c */
-#line 1898 "../Slice/Grammar.y"
+ case 165:
+#line 1908 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr str = StringTokPtr::dynamicCast((yyvsp[0]));
StringListTokPtr stringList = new StringListTok;
stringList->v.push_back(str->v);
(yyval) = stringList;
-;}
+}
+#line 3806 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 164:
-
-/* Line 1455 of yacc.c */
-#line 1910 "../Slice/Grammar.y"
+ case 166:
+#line 1920 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BoolTokPtr local = new BoolTok;
local->v = true;
(yyval) = local;
-;}
+}
+#line 3816 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 165:
-
-/* Line 1455 of yacc.c */
-#line 1916 "../Slice/Grammar.y"
+ case 167:
+#line 1926 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BoolTokPtr local = new BoolTok;
local->v = false;
(yyval) = local;
-;}
+}
+#line 3826 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 166:
-
-/* Line 1455 of yacc.c */
-#line 1927 "../Slice/Grammar.y"
+ case 168:
+#line 1937 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BuiltinPtr type = unit->builtin(Builtin::KindLong);
- IntegerTokPtr intVal = IntegerTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ IntegerTokPtr intVal = IntegerTokPtr::dynamicCast((yyvsp[0]));
ostringstream sstr;
sstr << intVal->v;
ConstDefTokPtr def = new ConstDefTok;
@@ -4155,16 +3838,15 @@ yyreduce:
def->v.valueAsString = sstr.str();
def->v.valueAsLiteral = intVal->literal;
(yyval) = def;
-;}
+}
+#line 3843 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 167:
-
-/* Line 1455 of yacc.c */
-#line 1940 "../Slice/Grammar.y"
+ case 169:
+#line 1950 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BuiltinPtr type = unit->builtin(Builtin::KindDouble);
- FloatingTokPtr floatVal = FloatingTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ FloatingTokPtr floatVal = FloatingTokPtr::dynamicCast((yyvsp[0]));
ostringstream sstr;
sstr << floatVal->v;
ConstDefTokPtr def = new ConstDefTok;
@@ -4173,15 +3855,14 @@ yyreduce:
def->v.valueAsString = sstr.str();
def->v.valueAsLiteral = floatVal->literal;
(yyval) = def;
-;}
+}
+#line 3860 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 168:
-
-/* Line 1455 of yacc.c */
-#line 1953 "../Slice/Grammar.y"
+ case 170:
+#line 1963 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr scoped = StringTokPtr::dynamicCast((yyvsp[0]));
ConstDefTokPtr def = new ConstDefTok;
ContainedList cl = unit->currentContainer()->lookupContained(scoped->v);
if(cl.empty())
@@ -4193,9 +3874,9 @@ yyreduce:
}
else
{
- EnumeratorPtr enumerator = EnumeratorPtr::dynamicCast(cl.front());
+ EnumeratorPtr enumerator = EnumeratorPtr::dynamicCast(cl.front());
ConstPtr constant = ConstPtr::dynamicCast(cl.front());
- if(enumerator)
+ if(enumerator)
{
unit->currentContainer()->checkIntroduced(scoped->v, enumerator);
def->v.type = enumerator->type();
@@ -4211,336 +3892,319 @@ yyreduce:
def->v.valueAsLiteral = constant->value();
}
else
- {
- string msg = "illegal initializer: `" + scoped->v + "' is a";
- static const string vowels = "aeiou";
- string kindOf = cl.front()->kindOf();
- if(vowels.find_first_of(kindOf[0]) != string::npos)
- {
- msg += "n";
- }
- msg += " " + kindOf;
- unit->error(msg); // $$ is dummy
- }
+ {
+ string msg = "illegal initializer: `" + scoped->v + "' is a";
+ static const string vowels = "aeiou";
+ string kindOf = cl.front()->kindOf();
+ if(vowels.find_first_of(kindOf[0]) != string::npos)
+ {
+ msg += "n";
+ }
+ msg += " " + kindOf;
+ unit->error(msg); // $$ is dummy
+ }
}
(yyval) = def;
-;}
+}
+#line 3910 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 169:
-
-/* Line 1455 of yacc.c */
-#line 1999 "../Slice/Grammar.y"
+ case 171:
+#line 2009 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BuiltinPtr type = unit->builtin(Builtin::KindString);
- StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[0]));
ConstDefTokPtr def = new ConstDefTok;
def->v.type = type;
def->v.value = type;
def->v.valueAsString = literal->v;
def->v.valueAsLiteral = literal->literal;
(yyval) = def;
-;}
+}
+#line 3925 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 170:
-
-/* Line 1455 of yacc.c */
-#line 2010 "../Slice/Grammar.y"
+ case 172:
+#line 2020 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BuiltinPtr type = unit->builtin(Builtin::KindBool);
- StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[0]));
ConstDefTokPtr def = new ConstDefTok;
def->v.type = type;
def->v.value = type;
def->v.valueAsString = "false";
def->v.valueAsLiteral = "false";
(yyval) = def;
-;}
+}
+#line 3940 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 171:
-
-/* Line 1455 of yacc.c */
-#line 2021 "../Slice/Grammar.y"
+ case 173:
+#line 2031 "../Slice/Grammar.y" /* yacc.c:1646 */
{
BuiltinPtr type = unit->builtin(Builtin::KindBool);
- StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[(1) - (1)]));
+ StringTokPtr literal = StringTokPtr::dynamicCast((yyvsp[0]));
ConstDefTokPtr def = new ConstDefTok;
def->v.type = type;
def->v.value = type;
def->v.valueAsString = "true";
def->v.valueAsLiteral = "true";
(yyval) = def;
-;}
+}
+#line 3955 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 172:
-
-/* Line 1455 of yacc.c */
-#line 2037 "../Slice/Grammar.y"
+ case 174:
+#line 2047 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(2) - (6)]));
- TypePtr const_type = TypePtr::dynamicCast((yyvsp[(3) - (6)]));
- StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[(4) - (6)]));
- ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(6) - (6)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-4]));
+ TypePtr const_type = TypePtr::dynamicCast((yyvsp[-3]));
+ StringTokPtr ident = StringTokPtr::dynamicCast((yyvsp[-2]));
+ ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[0]));
(yyval) = unit->currentContainer()->createConst(ident->v, const_type, metaData->v, value->v.value,
value->v.valueAsString, value->v.valueAsLiteral);
-;}
+}
+#line 3968 "Grammar.tab.c" /* yacc.c:1646 */
break;
- case 173:
-
-/* Line 1455 of yacc.c */
-#line 2046 "../Slice/Grammar.y"
+ case 175:
+#line 2056 "../Slice/Grammar.y" /* yacc.c:1646 */
{
- StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[(2) - (5)]));
- TypePtr const_type = TypePtr::dynamicCast((yyvsp[(3) - (5)]));
- ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[(5) - (5)]));
+ StringListTokPtr metaData = StringListTokPtr::dynamicCast((yyvsp[-3]));
+ TypePtr const_type = TypePtr::dynamicCast((yyvsp[-2]));
+ ConstDefTokPtr value = ConstDefTokPtr::dynamicCast((yyvsp[0]));
unit->error("missing constant name");
(yyval) = unit->currentContainer()->createConst(IceUtil::generateUUID(), const_type, metaData->v, value->v.value,
value->v.valueAsString, value->v.valueAsLiteral, Dummy); // Dummy
-;}
- break;
-
- case 174:
-
-/* Line 1455 of yacc.c */
-#line 2060 "../Slice/Grammar.y"
- {
-;}
- break;
-
- case 175:
-
-/* Line 1455 of yacc.c */
-#line 2063 "../Slice/Grammar.y"
- {
-;}
+}
+#line 3981 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 176:
-
-/* Line 1455 of yacc.c */
-#line 2066 "../Slice/Grammar.y"
+#line 2070 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3988 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 177:
-
-/* Line 1455 of yacc.c */
-#line 2069 "../Slice/Grammar.y"
+#line 2073 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 3995 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 178:
-
-/* Line 1455 of yacc.c */
-#line 2072 "../Slice/Grammar.y"
+#line 2076 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4002 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 179:
-
-/* Line 1455 of yacc.c */
-#line 2075 "../Slice/Grammar.y"
+#line 2079 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4009 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 180:
-
-/* Line 1455 of yacc.c */
-#line 2078 "../Slice/Grammar.y"
+#line 2082 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4016 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 181:
-
-/* Line 1455 of yacc.c */
-#line 2081 "../Slice/Grammar.y"
+#line 2085 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4023 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 182:
-
-/* Line 1455 of yacc.c */
-#line 2084 "../Slice/Grammar.y"
+#line 2088 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4030 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 183:
-
-/* Line 1455 of yacc.c */
-#line 2087 "../Slice/Grammar.y"
+#line 2091 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4037 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 184:
-
-/* Line 1455 of yacc.c */
-#line 2090 "../Slice/Grammar.y"
+#line 2094 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4044 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 185:
-
-/* Line 1455 of yacc.c */
-#line 2093 "../Slice/Grammar.y"
+#line 2097 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4051 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 186:
-
-/* Line 1455 of yacc.c */
-#line 2096 "../Slice/Grammar.y"
+#line 2100 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4058 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 187:
-
-/* Line 1455 of yacc.c */
-#line 2099 "../Slice/Grammar.y"
+#line 2103 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4065 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 188:
-
-/* Line 1455 of yacc.c */
-#line 2102 "../Slice/Grammar.y"
+#line 2106 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4072 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 189:
-
-/* Line 1455 of yacc.c */
-#line 2105 "../Slice/Grammar.y"
+#line 2109 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4079 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 190:
-
-/* Line 1455 of yacc.c */
-#line 2108 "../Slice/Grammar.y"
+#line 2112 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4086 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 191:
-
-/* Line 1455 of yacc.c */
-#line 2111 "../Slice/Grammar.y"
+#line 2115 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4093 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 192:
-
-/* Line 1455 of yacc.c */
-#line 2114 "../Slice/Grammar.y"
+#line 2118 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4100 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 193:
-
-/* Line 1455 of yacc.c */
-#line 2117 "../Slice/Grammar.y"
+#line 2121 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4107 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 194:
-
-/* Line 1455 of yacc.c */
-#line 2120 "../Slice/Grammar.y"
+#line 2124 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4114 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 195:
-
-/* Line 1455 of yacc.c */
-#line 2123 "../Slice/Grammar.y"
+#line 2127 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4121 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 196:
-
-/* Line 1455 of yacc.c */
-#line 2126 "../Slice/Grammar.y"
+#line 2130 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4128 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 197:
-
-/* Line 1455 of yacc.c */
-#line 2129 "../Slice/Grammar.y"
+#line 2133 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4135 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 198:
-
-/* Line 1455 of yacc.c */
-#line 2132 "../Slice/Grammar.y"
+#line 2136 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4142 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 199:
-
-/* Line 1455 of yacc.c */
-#line 2135 "../Slice/Grammar.y"
+#line 2139 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4149 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 200:
-
-/* Line 1455 of yacc.c */
-#line 2138 "../Slice/Grammar.y"
+#line 2142 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4156 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 201:
-
-/* Line 1455 of yacc.c */
-#line 2141 "../Slice/Grammar.y"
+#line 2145 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4163 "Grammar.tab.c" /* yacc.c:1646 */
break;
case 202:
+#line 2148 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+}
+#line 4170 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
-/* Line 1455 of yacc.c */
-#line 2144 "../Slice/Grammar.y"
+ case 203:
+#line 2151 "../Slice/Grammar.y" /* yacc.c:1646 */
{
-;}
+}
+#line 4177 "Grammar.tab.c" /* yacc.c:1646 */
break;
+ case 204:
+#line 2154 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+}
+#line 4184 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
+
+ case 205:
+#line 2157 "../Slice/Grammar.y" /* yacc.c:1646 */
+ {
+}
+#line 4191 "Grammar.tab.c" /* yacc.c:1646 */
+ break;
-/* Line 1455 of yacc.c */
-#line 4542 "Grammar.tab.c"
+#line 4195 "Grammar.tab.c" /* yacc.c:1646 */
default: break;
}
+ /* User semantic actions sometimes alter yychar, and that requires
+ that yytoken be updated with the new translation. We take the
+ approach of translating immediately before every use of yytoken.
+ One alternative is translating here after every semantic action,
+ but that translation would be missed if the semantic action invokes
+ YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
+ if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
+ incorrect destructor might then be invoked immediately. In the
+ case of YYERROR or YYBACKUP, subsequent parser actions might lead
+ to an incorrect destructor call or verbose syntax error message
+ before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
@@ -4549,7 +4213,7 @@ yyreduce:
*++yyvsp = yyval;
- /* Now `shift' the result of the reduction. Determine what state
+ /* 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. */
@@ -4564,10 +4228,14 @@ yyreduce:
goto yynewstate;
-/*------------------------------------.
-| yyerrlab -- here on detecting error |
-`------------------------------------*/
+/*--------------------------------------.
+| yyerrlab -- here on detecting error. |
+`--------------------------------------*/
yyerrlab:
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
+
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
@@ -4575,37 +4243,36 @@ yyerrlab:
#if ! YYERROR_VERBOSE
yyerror (YY_("syntax error"));
#else
+# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
+ yyssp, yytoken)
{
- YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
- if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
- {
- YYSIZE_T yyalloc = 2 * yysize;
- if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
- yyalloc = YYSTACK_ALLOC_MAXIMUM;
- if (yymsg != yymsgbuf)
- YYSTACK_FREE (yymsg);
- yymsg = (char *) YYSTACK_ALLOC (yyalloc);
- if (yymsg)
- yymsg_alloc = yyalloc;
- else
- {
- yymsg = yymsgbuf;
- yymsg_alloc = sizeof yymsgbuf;
- }
- }
-
- if (0 < yysize && yysize <= yymsg_alloc)
- {
- (void) yysyntax_error (yymsg, yystate, yychar);
- yyerror (yymsg);
- }
- else
- {
- yyerror (YY_("syntax error"));
- if (yysize != 0)
- goto yyexhaustedlab;
- }
+ char const *yymsgp = YY_("syntax error");
+ int yysyntax_error_status;
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ if (yysyntax_error_status == 0)
+ yymsgp = yymsg;
+ else if (yysyntax_error_status == 1)
+ {
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
+ if (!yymsg)
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ yysyntax_error_status = 2;
+ }
+ else
+ {
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ yymsgp = yymsg;
+ }
+ }
+ yyerror (yymsgp);
+ if (yysyntax_error_status == 2)
+ goto yyexhaustedlab;
}
+# undef YYSYNTAX_ERROR
#endif
}
@@ -4614,20 +4281,20 @@ yyerrlab:
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
- error, discard it. */
+ error, discard it. */
if (yychar <= YYEOF)
- {
- /* Return failure if at end of input. */
- if (yychar == YYEOF)
- YYABORT;
- }
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
else
- {
- yydestruct ("Error: discarding",
- yytoken, &yylval);
- yychar = YYEMPTY;
- }
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval);
+ yychar = YYEMPTY;
+ }
}
/* Else will try to reuse lookahead token after shifting the error
@@ -4646,7 +4313,7 @@ yyerrorlab:
if (/*CONSTCOND*/ 0)
goto yyerrorlab;
- /* Do not reclaim the symbols of the rule which action triggered
+ /* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
@@ -4659,35 +4326,37 @@ yyerrorlab:
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
- yyerrstatus = 3; /* Each real token shifted decrements this. */
+ 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;
- }
- }
+ if (!yypact_value_is_default (yyn))
+ {
+ 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;
+ YYABORT;
yydestruct ("Error: popping",
- yystos[yystate], yyvsp);
+ yystos[yystate], yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Shift the error token. */
@@ -4711,7 +4380,7 @@ yyabortlab:
yyresult = 1;
goto yyreturn;
-#if !defined(yyoverflow) || YYERROR_VERBOSE
+#if !defined yyoverflow || YYERROR_VERBOSE
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
@@ -4723,16 +4392,21 @@ yyexhaustedlab:
yyreturn:
if (yychar != YYEMPTY)
- yydestruct ("Cleanup: discarding lookahead",
- yytoken, &yylval);
- /* Do not reclaim the symbols of the rule which action triggered
+ {
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = YYTRANSLATE (yychar);
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval);
+ }
+ /* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
- yystos[*yyssp], yyvsp);
+ yystos[*yyssp], yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
@@ -4743,13 +4417,7 @@ yyreturn:
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
- /* Make sure YYID is used. */
- return YYID (yyresult);
+ return yyresult;
}
-
-
-
-/* Line 1675 of yacc.c */
-#line 2148 "../Slice/Grammar.y"
-
+#line 2161 "../Slice/Grammar.y" /* yacc.c:1906 */