52#define YYBISON_VERSION "3.8.2"
55#define YYSKELETON_NAME "yacc.c"
72# error needs pure parser
75#define YYERROR_VERBOSE 1
76#define YYSTACK_USE_ALLOCA 0
80# include RUBY_EXTCONF_H
83#include "ruby/internal/config.h"
87#ifdef UNIVERSAL_PARSER
89#include "internal/ruby_parser.h"
90#include "parser_node.h"
91#include "universal_parser.c"
94#define STATIC_ID2SYM p->config->static_id2sym
95#define rb_str_coderange_scan_restartable p->config->str_coderange_scan_restartable
101#include "internal/compile.h"
102#include "internal/compilers.h"
103#include "internal/complex.h"
104#include "internal/encoding.h"
105#include "internal/error.h"
106#include "internal/hash.h"
107#include "internal/io.h"
108#include "internal/numeric.h"
109#include "internal/parse.h"
110#include "internal/rational.h"
111#include "internal/re.h"
112#include "internal/ruby_parser.h"
113#include "internal/symbol.h"
114#include "internal/thread.h"
115#include "internal/variable.h"
117#include "parser_node.h"
121#include "ruby/regex.h"
130syntax_error_new(
void)
138#define compile_callback rb_suppress_tracing
141#define NODE_SPECIAL_EMPTY_ARGS ((NODE *)-1)
142#define NODE_EMPTY_ARGS_P(node) ((node) == NODE_SPECIAL_EMPTY_ARGS)
153 return (n1->minus != n2->minus ||
154 n1->base != n2->base ||
155 strcmp(n1->val, n2->val));
161 return (n1->minus != n2->minus ||
162 strcmp(n1->val, n2->val));
168 return (n1->minus != n2->minus ||
169 n1->base != n2->base ||
170 n1->seen_point != n2->seen_point ||
171 strcmp(n1->val, n2->val));
177 return (n1->minus != n2->minus ||
178 n1->base != n2->base ||
179 n1->seen_point != n2->seen_point ||
180 n1->type != n2->type ||
181 strcmp(n1->val, n2->val));
187 return (n1->options != n2->options ||
188 rb_parser_string_hash_cmp(n1->string, n2->string));
192static st_index_t rb_char_p_hash(
const char *c);
195literal_cmp(st_data_t val, st_data_t lit)
197 if (val == lit)
return 0;
199 NODE *node_val = RNODE(val);
200 NODE *node_lit = RNODE(lit);
201 enum node_type type_val = nd_type(node_val);
202 enum node_type type_lit = nd_type(node_lit);
204 if (type_val != type_lit) {
210 return node_integer_cmp(RNODE_INTEGER(node_val), RNODE_INTEGER(node_lit));
212 return node_float_cmp(RNODE_FLOAT(node_val), RNODE_FLOAT(node_lit));
214 return node_rational_cmp(RNODE_RATIONAL(node_val), RNODE_RATIONAL(node_lit));
216 return node_imaginary_cmp(RNODE_IMAGINARY(node_val), RNODE_IMAGINARY(node_lit));
218 return rb_parser_string_hash_cmp(RNODE_STR(node_val)->
string, RNODE_STR(node_lit)->
string);
220 return rb_parser_string_hash_cmp(RNODE_SYM(node_val)->
string, RNODE_SYM(node_lit)->
string);
222 return rb_parser_regx_hash_cmp(RNODE_REGX(node_val), RNODE_REGX(node_lit));
224 return node_val->nd_loc.beg_pos.lineno != node_lit->nd_loc.beg_pos.lineno;
226 return rb_parser_string_hash_cmp(RNODE_FILE(node_val)->path, RNODE_FILE(node_lit)->path);
228 return RNODE_ENCODING(node_val)->enc != RNODE_ENCODING(node_lit)->enc;
230#ifdef UNIVERSAL_PARSER
233 rb_bug(
"unexpected node: %s, %s", ruby_node_name(type_val), ruby_node_name(type_lit));
239literal_hash(st_data_t a)
242 enum node_type
type = nd_type(node);
246 return rb_char_p_hash(RNODE_INTEGER(node)->val);
248 return rb_char_p_hash(RNODE_FLOAT(node)->val);
250 return rb_char_p_hash(RNODE_RATIONAL(node)->val);
252 return rb_char_p_hash(RNODE_IMAGINARY(node)->val);
254 return rb_parser_str_hash(RNODE_STR(node)->
string);
256 return rb_parser_str_hash(RNODE_SYM(node)->
string);
258 return rb_parser_str_hash(RNODE_REGX(node)->
string);
260 return (st_index_t)node->nd_loc.beg_pos.lineno;
262 return rb_parser_str_hash(RNODE_FILE(node)->path);
264 return (st_index_t)RNODE_ENCODING(node)->enc;
266#ifdef UNIVERSAL_PARSER
269 rb_bug(
"unexpected node: %s", ruby_node_name(
type));
277 return '\0' <= c && c <=
'\x7f';
281#define ISASCII parse_isascii
286 return c ==
' ' || (
'\t' <= c && c <=
'\r');
290#define ISSPACE parse_isspace
295 return (
'\0' <= c && c <
' ') || c ==
'\x7f';
299#define ISCNTRL(c) parse_iscntrl(c)
304 return 'A' <= c && c <=
'Z';
310 return 'a' <= c && c <=
'z';
316 return parse_isupper(c) || parse_islower(c);
320#define ISALPHA(c) parse_isalpha(c)
325 return '0' <= c && c <=
'9';
329#define ISDIGIT(c) parse_isdigit(c)
338#define ISALNUM(c) parse_isalnum(c)
343 return ISDIGIT(c) || (
'A' <= c && c <=
'F') || (
'a' <= c && c <=
'f');
347#define ISXDIGIT(c) parse_isxdigit(c)
349#include "parser_st.h"
352#define STRCASECMP rb_parser_st_locale_insensitive_strcasecmp
355#define STRNCASECMP rb_parser_st_locale_insensitive_strncasecmp
358#include "ripper_init.h"
369 unsigned int in_defined: 1;
370 unsigned int in_kwarg: 1;
371 unsigned int in_argdef: 1;
372 unsigned int in_def: 1;
373 unsigned int in_class: 1;
374 BITFIELD(
enum rb_parser_shareability, shareable_constant_value, 2);
375 BITFIELD(
enum rescue_context, in_rescue, 2);
376 unsigned int cant_return: 1;
381#if defined(__GNUC__) && !defined(__clang__)
393#define NO_LEX_CTXT (struct lex_context){0}
395#ifndef WARN_PAST_SCOPE
396# define WARN_PAST_SCOPE 0
401#define yydebug (p->debug)
403#define YYFPRINTF(out, ...) rb_parser_printf(p, __VA_ARGS__)
404#define YY_LOCATION_PRINT(File, loc, p) \
405 rb_parser_printf(p, "%d.%d-%d.%d", \
406 (loc).beg_pos.lineno, (loc).beg_pos.column,\
407 (loc).end_pos.lineno, (loc).end_pos.column)
408#define YYLLOC_DEFAULT(Current, Rhs, N) \
412 (Current).beg_pos = YYRHSLOC(Rhs, 1).beg_pos; \
413 (Current).end_pos = YYRHSLOC(Rhs, N).end_pos; \
417 (Current).beg_pos = YYRHSLOC(Rhs, 0).end_pos; \
418 (Current).end_pos = YYRHSLOC(Rhs, 0).end_pos; \
422 (((Msgid)[0] == 'm') && (strcmp((Msgid), "memory exhausted") == 0) ? \
423 "nesting too deep" : (Msgid))
425#define RUBY_SET_YYLLOC_FROM_STRTERM_HEREDOC(Current) \
426 rb_parser_set_location_from_strterm_heredoc(p, &p->lex.strterm->u.heredoc, &(Current))
427#define RUBY_SET_YYLLOC_OF_DELAYED_TOKEN(Current) \
428 rb_parser_set_location_of_delayed_token(p, &(Current))
429#define RUBY_SET_YYLLOC_OF_HEREDOC_END(Current) \
430 rb_parser_set_location_of_heredoc_end(p, &(Current))
431#define RUBY_SET_YYLLOC_OF_DUMMY_END(Current) \
432 rb_parser_set_location_of_dummy_end(p, &(Current))
433#define RUBY_SET_YYLLOC_OF_NONE(Current) \
434 rb_parser_set_location_of_none(p, &(Current))
435#define RUBY_SET_YYLLOC(Current) \
436 rb_parser_set_location(p, &(Current))
437#define RUBY_INIT_YYLLOC() \
439 {p->ruby_sourceline, (int)(p->lex.ptok - p->lex.pbeg)}, \
440 {p->ruby_sourceline, (int)(p->lex.pcur - p->lex.pbeg)}, \
443#define IS_lex_state_for(x, ls) ((x) & (ls))
444#define IS_lex_state_all_for(x, ls) (((x) & (ls)) == (ls))
445#define IS_lex_state(ls) IS_lex_state_for(p->lex.state, (ls))
446#define IS_lex_state_all(ls) IS_lex_state_all_for(p->lex.state, (ls))
448# define SET_LEX_STATE(ls) \
449 parser_set_lex_state(p, ls, __LINE__)
450static inline enum lex_state_e parser_set_lex_state(
struct parser_params *p,
enum lex_state_e ls,
int line);
452typedef VALUE stack_type;
456# define SHOW_BITSTACK(stack, name) (p->debug ? rb_parser_show_bitstack(p, stack, name, __LINE__) : (void)0)
457# define BITSTACK_PUSH(stack, n) (((p->stack) = ((p->stack)<<1)|((n)&1)), SHOW_BITSTACK(p->stack, #stack"(push)"))
458# define BITSTACK_POP(stack) (((p->stack) = (p->stack) >> 1), SHOW_BITSTACK(p->stack, #stack"(pop)"))
459# define BITSTACK_SET_P(stack) (SHOW_BITSTACK(p->stack, #stack), (p->stack)&1)
460# define BITSTACK_SET(stack, n) ((p->stack)=(n), SHOW_BITSTACK(p->stack, #stack"(set)"))
464#define COND_PUSH(n) BITSTACK_PUSH(cond_stack, (n))
465#define COND_POP() BITSTACK_POP(cond_stack)
466#define COND_P() BITSTACK_SET_P(cond_stack)
467#define COND_SET(n) BITSTACK_SET(cond_stack, (n))
471#define CMDARG_PUSH(n) BITSTACK_PUSH(cmdarg_stack, (n))
472#define CMDARG_POP() BITSTACK_POP(cmdarg_stack)
473#define CMDARG_P() BITSTACK_SET_P(cmdarg_stack)
474#define CMDARG_SET(n) BITSTACK_SET(cmdarg_stack, (n))
492 NODE *outer, *inner, *current;
509#define DVARS_INHERIT ((void*)1)
510#define DVARS_TOPSCOPE NULL
511#define DVARS_TERMINAL_P(tbl) ((tbl) == DVARS_INHERIT || (tbl) == DVARS_TOPSCOPE)
538#define AFTER_HEREDOC_WITHOUT_TERMINATOR ((rb_parser_string_t *)1)
555 rb_parser_lex_gets_func *gets;
556 rb_parser_input_data input;
564 enum lex_state_e state;
572 stack_type cond_stack;
573 stack_type cmdarg_stack;
578 int heredoc_line_indent;
585 const char *ruby_sourcefile;
586 VALUE ruby_sourcefile_string;
606 st_table *warn_duplicate_keys_table;
613 NODE *eval_tree_begin;
617#ifdef UNIVERSAL_PARSER
618 const rb_parser_config_t *config;
621 signed int frozen_string_literal:2;
623 unsigned int command_start:1;
624 unsigned int eofp: 1;
625 unsigned int ruby__end__seen: 1;
626 unsigned int debug: 1;
627 unsigned int has_shebang: 1;
628 unsigned int token_seen: 1;
629 unsigned int token_info_enabled: 1;
631 unsigned int past_scope_enabled: 1;
633 unsigned int error_p: 1;
634 unsigned int cr_seen: 1;
639 unsigned int do_print: 1;
640 unsigned int do_loop: 1;
641 unsigned int do_chomp: 1;
642 unsigned int do_split: 1;
643 unsigned int error_tolerant: 1;
644 unsigned int keep_tokens: 1;
662 VALUE parsing_thread;
669#define NUMPARAM_ID_P(id) numparam_id_p(p, id)
670#define NUMPARAM_ID_TO_IDX(id) (unsigned int)(((id) >> ID_SCOPE_SHIFT) - (tNUMPARAM_1 - 1))
671#define NUMPARAM_IDX_TO_ID(idx) TOKEN2LOCALID((tNUMPARAM_1 - 1 + (idx)))
675 if (!is_local_id(
id) ||
id < (tNUMPARAM_1 << ID_SCOPE_SHIFT))
return 0;
676 unsigned int idx = NUMPARAM_ID_TO_IDX(
id);
677 return idx > 0 && idx <= NUMPARAM_MAX;
686 rb_parser_printf(p,
"after-shift: %+"PRIsVALUE
"\n", p->s_value);
688 rb_ary_push(p->s_value_stack, p->s_value);
696 if (
len) p->s_lvalue = rb_ary_entry(p->s_value_stack, -
len);
702 for (
int i = 0; i <
len; i++) {
703 VALUE tos = rb_ary_pop(p->s_value_stack);
705 rb_parser_printf(p,
"after-reduce pop: %+"PRIsVALUE
"\n", tos);
709 rb_parser_printf(p,
"after-reduce push: %+"PRIsVALUE
"\n", p->s_lvalue);
711 rb_ary_push(p->s_value_stack, p->s_lvalue);
719 rb_parser_printf(p,
"after-shift-error-token:\n");
721 rb_ary_push(p->s_value_stack,
Qnil);
727 for (
int i = 0; i <
len; i++) {
728 VALUE tos = rb_ary_pop(p->s_value_stack);
730 rb_parser_printf(p,
"after-pop-stack pop: %+"PRIsVALUE
"\n", tos);
761#define intern_cstr(n,l,en) rb_intern3(n,l,en)
763#define STRING_NEW0() rb_parser_encoding_string_new(p,0,0,p->enc)
765#define STR_NEW(ptr,len) rb_enc_str_new((ptr),(len),p->enc)
766#define STR_NEW0() rb_enc_str_new(0,0,p->enc)
767#define STR_NEW2(ptr) rb_enc_str_new((ptr),strlen(ptr),p->enc)
768#define STR_NEW3(ptr,len,e,func) parser_str_new(p, (ptr),(len),(e),(func),p->enc)
769#define TOK_INTERN() intern_cstr(tok(p), toklen(p), p->enc)
770#define VALID_SYMNAME_P(s, l, enc, type) (rb_enc_symname_type(s, l, enc, (1U<<(type))) == (int)(type))
776 long len = RSTRING_LEN(str);
777 return len > 0 ? (
unsigned char)RSTRING_PTR(str)[
len-1] : when_empty;
784 st_free_table(p->pvtbl);
791 if (p->pktbl) st_free_table(p->pktbl);
795#define STRING_BUF_DEFAULT_LEN 16
803 buf->head = buf->last =
xmalloc(size);
804 buf->head->len = STRING_BUF_DEFAULT_LEN;
806 buf->head->next = NULL;
814 if (buf->head->used >= buf->head->len) {
816 long n = buf->head->len * 2;
823 buf->last->next = elem;
826 buf->last->buf[buf->last->used++] = str;
837 for (
long i = 0; i < elem->used; i++) {
838 rb_parser_string_free(p, elem->buf[i]);
850debug_end_expect_token_locations(
struct parser_params *p,
const char *name)
853 VALUE mesg = rb_sprintf(
"%s: [", name);
858 rb_str_catf(mesg,
"[%d, %d]", loc->pos->lineno, loc->pos->column);
862 flush_debug_buffer(p, p->debug_output, mesg);
869 if(!p->error_tolerant)
return;
873 locations->pos = pos;
874 locations->prev = p->end_expect_token_locations;
875 p->end_expect_token_locations = locations;
877 debug_end_expect_token_locations(p,
"push_end_expect_token_locations");
883 if(!p->end_expect_token_locations)
return;
887 p->end_expect_token_locations = locations;
889 debug_end_expect_token_locations(p,
"pop_end_expect_token_locations");
895 return p->end_expect_token_locations;
899parser_token2char(
struct parser_params *p,
enum yytokentype tok)
902#define TOKEN2CHAR(tok) case tok: return (#tok);
903#define TOKEN2CHAR2(tok, name) case tok: return (name);
904 TOKEN2CHAR2(
' ',
"word_sep");
905 TOKEN2CHAR2(
'!',
"!")
906 TOKEN2CHAR2('%', "%");
907 TOKEN2CHAR2('&', "&");
908 TOKEN2CHAR2('*', "*");
909 TOKEN2CHAR2('+', "+");
910 TOKEN2CHAR2('-', "-");
911 TOKEN2CHAR2('/', "/");
912 TOKEN2CHAR2('<', "<");
913 TOKEN2CHAR2('=', "=");
914 TOKEN2CHAR2('>', ">");
915 TOKEN2CHAR2('?', "?");
916 TOKEN2CHAR2('^', "^");
917 TOKEN2CHAR2('|', "|");
918 TOKEN2CHAR2('~', "~");
919 TOKEN2CHAR2(':', ":");
920 TOKEN2CHAR2(',', ",");
921 TOKEN2CHAR2('.', ".");
922 TOKEN2CHAR2(';', ";");
923 TOKEN2CHAR2('`', "`");
924 TOKEN2CHAR2('\n', "nl");
925 TOKEN2CHAR2('{
', "\"{\"");
926 TOKEN2CHAR2('}
', "\"}\"");
927 TOKEN2CHAR2('[
', "\"[\"");
928 TOKEN2CHAR2(']
', "\"]\"");
929 TOKEN2CHAR2('(
', "\"(\"");
930 TOKEN2CHAR2(')
', "\")\"");
931 TOKEN2CHAR2('\\
', "backslash");
932 TOKEN2CHAR(keyword_class);
933 TOKEN2CHAR(keyword_module);
934 TOKEN2CHAR(keyword_def);
935 TOKEN2CHAR(keyword_undef);
936 TOKEN2CHAR(keyword_begin);
937 TOKEN2CHAR(keyword_rescue);
938 TOKEN2CHAR(keyword_ensure);
939 TOKEN2CHAR(keyword_end);
940 TOKEN2CHAR(keyword_if);
941 TOKEN2CHAR(keyword_unless);
942 TOKEN2CHAR(keyword_then);
943 TOKEN2CHAR(keyword_elsif);
944 TOKEN2CHAR(keyword_else);
945 TOKEN2CHAR(keyword_case);
946 TOKEN2CHAR(keyword_when);
947 TOKEN2CHAR(keyword_while);
948 TOKEN2CHAR(keyword_until);
949 TOKEN2CHAR(keyword_for);
950 TOKEN2CHAR(keyword_break);
951 TOKEN2CHAR(keyword_next);
952 TOKEN2CHAR(keyword_redo);
953 TOKEN2CHAR(keyword_retry);
954 TOKEN2CHAR(keyword_in);
955 TOKEN2CHAR(keyword_do);
956 TOKEN2CHAR(keyword_do_cond);
957 TOKEN2CHAR(keyword_do_block);
958 TOKEN2CHAR(keyword_do_LAMBDA);
959 TOKEN2CHAR(keyword_return);
960 TOKEN2CHAR(keyword_yield);
961 TOKEN2CHAR(keyword_super);
962 TOKEN2CHAR(keyword_self);
963 TOKEN2CHAR(keyword_nil);
964 TOKEN2CHAR(keyword_true);
965 TOKEN2CHAR(keyword_false);
966 TOKEN2CHAR(keyword_and);
967 TOKEN2CHAR(keyword_or);
968 TOKEN2CHAR(keyword_not);
969 TOKEN2CHAR(modifier_if);
970 TOKEN2CHAR(modifier_unless);
971 TOKEN2CHAR(modifier_while);
972 TOKEN2CHAR(modifier_until);
973 TOKEN2CHAR(modifier_rescue);
974 TOKEN2CHAR(keyword_alias);
975 TOKEN2CHAR(keyword_defined);
976 TOKEN2CHAR(keyword_BEGIN);
977 TOKEN2CHAR(keyword_END);
978 TOKEN2CHAR(keyword__LINE__);
979 TOKEN2CHAR(keyword__FILE__);
980 TOKEN2CHAR(keyword__ENCODING__);
981 TOKEN2CHAR(tIDENTIFIER);
985 TOKEN2CHAR(tCONSTANT);
988 TOKEN2CHAR(tINTEGER);
990 TOKEN2CHAR(tRATIONAL);
991 TOKEN2CHAR(tIMAGINARY);
993 TOKEN2CHAR(tNTH_REF);
994 TOKEN2CHAR(tBACK_REF);
995 TOKEN2CHAR(tSTRING_CONTENT);
996 TOKEN2CHAR(tREGEXP_END);
997 TOKEN2CHAR(tDUMNY_END);
1000 TOKEN2CHAR(tUMINUS);
1011 TOKEN2CHAR(tNMATCH);
1020 TOKEN2CHAR(tANDDOT);
1021 TOKEN2CHAR(tCOLON2);
1022 TOKEN2CHAR(tCOLON3);
1023 TOKEN2CHAR(tOP_ASGN);
1025 TOKEN2CHAR(tLPAREN);
1026 TOKEN2CHAR(tLPAREN_ARG);
1027 TOKEN2CHAR(tLBRACK);
1028 TOKEN2CHAR(tLBRACE);
1029 TOKEN2CHAR(tLBRACE_ARG);
1033 TOKEN2CHAR(tLAMBDA);
1034 TOKEN2CHAR(tSYMBEG);
1035 TOKEN2CHAR(tSTRING_BEG);
1036 TOKEN2CHAR(tXSTRING_BEG);
1037 TOKEN2CHAR(tREGEXP_BEG);
1038 TOKEN2CHAR(tWORDS_BEG);
1039 TOKEN2CHAR(tQWORDS_BEG);
1040 TOKEN2CHAR(tSYMBOLS_BEG);
1041 TOKEN2CHAR(tQSYMBOLS_BEG);
1042 TOKEN2CHAR(tSTRING_END);
1043 TOKEN2CHAR(tSTRING_DEND);
1044 TOKEN2CHAR(tSTRING_DBEG);
1045 TOKEN2CHAR(tSTRING_DVAR);
1046 TOKEN2CHAR(tLAMBEG);
1047 TOKEN2CHAR(tLABEL_END);
1048 TOKEN2CHAR(tIGNORED_NL);
1049 TOKEN2CHAR(tCOMMENT);
1050 TOKEN2CHAR(tEMBDOC_BEG);
1051 TOKEN2CHAR(tEMBDOC);
1052 TOKEN2CHAR(tEMBDOC_END);
1053 TOKEN2CHAR(tHEREDOC_BEG);
1054 TOKEN2CHAR(tHEREDOC_END);
1055 TOKEN2CHAR(k__END__);
1056 TOKEN2CHAR(tLOWEST);
1057 TOKEN2CHAR(tUMINUS_NUM);
1058 TOKEN2CHAR(tLAST_TOKEN);
1063 rb_bug("parser_token2id: unknown token %d", tok);
1065 UNREACHABLE_RETURN(0);
1069push_end_expect_token_locations(struct parser_params *p, const rb_code_position_t *pos)
1074pop_end_expect_token_locations(struct parser_params *p)
1079RBIMPL_ATTR_NONNULL((1, 2, 3))
1080static int parser_yyerror(struct parser_params*, const YYLTYPE *yylloc, const char*);
1081RBIMPL_ATTR_NONNULL((1, 2))
1082static int parser_yyerror0(struct parser_params*, const char*);
1083#define yyerror0(msg) parser_yyerror0(p, (msg))
1084#define yyerror1(loc, msg) parser_yyerror(p, (loc), (msg))
1085#define yyerror(yylloc, p, msg) parser_yyerror(p, yylloc, msg)
1086#define token_flush(ptr) ((ptr)->lex.ptok = (ptr)->lex.pcur)
1087#define lex_goto_eol(p) ((p)->lex.pcur = (p)->lex.pend)
1088#define lex_eol_p(p) lex_eol_n_p(p, 0)
1089#define lex_eol_n_p(p,n) lex_eol_ptr_n_p(p, (p)->lex.pcur, n)
1090#define lex_eol_ptr_p(p,ptr) lex_eol_ptr_n_p(p,ptr,0)
1091#define lex_eol_ptr_n_p(p,ptr,n) ((ptr)+(n) >= (p)->lex.pend)
1093static void token_info_setup(token_info *ptinfo, const char *ptr, const rb_code_location_t *loc);
1094static void token_info_push(struct parser_params*, const char *token, const rb_code_location_t *loc);
1095static void token_info_pop(struct parser_params*, const char *token, const rb_code_location_t *loc);
1096static void token_info_warn(struct parser_params *p, const char *token, token_info *ptinfo_beg, int same, const rb_code_location_t *loc);
1097static void token_info_drop(struct parser_params *p, const char *token, rb_code_position_t beg_pos);
1100#define compile_for_eval (0)
1102#define compile_for_eval (p->parent_iseq != 0)
1105#define token_column ((int)(p->lex.ptok - p->lex.pbeg))
1107#define CALL_Q_P(q) ((q) == tANDDOT)
1108#define NEW_QCALL(q,r,m,a,loc) (CALL_Q_P(q) ? NEW_QCALL0(r,m,a,loc) : NEW_CALL(r,m,a,loc))
1110#define lambda_beginning_p() (p->lex.lpar_beg == p->lex.paren_nest)
1112static enum yytokentype yylex(YYSTYPE*, YYLTYPE*, struct parser_params*);
1115rb_discard_node(struct parser_params *p, NODE *n)
1117 rb_ast_delete_node(p->ast, n);
1120static rb_node_scope_t *rb_node_scope_new(struct parser_params *p, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc);
1121static rb_node_scope_t *rb_node_scope_new2(struct parser_params *p, rb_ast_id_table_t *nd_tbl, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc);
1122static rb_node_block_t *rb_node_block_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc);
1123static rb_node_if_t *rb_node_if_new(struct parser_params *p, NODE *nd_cond, NODE *nd_body, NODE *nd_else, const YYLTYPE *loc, const YYLTYPE* if_keyword_loc, const YYLTYPE* then_keyword_loc, const YYLTYPE* end_keyword_loc);
1124static rb_node_unless_t *rb_node_unless_new(struct parser_params *p, NODE *nd_cond, NODE *nd_body, NODE *nd_else, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *then_keyword_loc, const YYLTYPE *end_keyword_loc);
1125static rb_node_case_t *rb_node_case_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *case_keyword_loc, const YYLTYPE *end_keyword_loc);
1126static rb_node_case2_t *rb_node_case2_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *case_keyword_loc, const YYLTYPE *end_keyword_loc);
1127static rb_node_case3_t *rb_node_case3_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *case_keyword_loc, const YYLTYPE *end_keyword_loc);
1128static rb_node_when_t *rb_node_when_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, NODE *nd_next, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *then_keyword_loc);
1129static rb_node_in_t *rb_node_in_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, NODE *nd_next, const YYLTYPE *loc);
1130static rb_node_while_t *rb_node_while_new(struct parser_params *p, NODE *nd_cond, NODE *nd_body, long nd_state, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *closing_loc);
1131static rb_node_until_t *rb_node_until_new(struct parser_params *p, NODE *nd_cond, NODE *nd_body, long nd_state, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *closing_loc);
1132static rb_node_iter_t *rb_node_iter_new(struct parser_params *p, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc);
1133static rb_node_for_t *rb_node_for_new(struct parser_params *p, NODE *nd_iter, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *for_keyword_loc, const YYLTYPE *in_keyword_loc, const YYLTYPE *do_keyword_loc, const YYLTYPE *end_keyword_loc);
1134static rb_node_for_masgn_t *rb_node_for_masgn_new(struct parser_params *p, NODE *nd_var, const YYLTYPE *loc);
1135static rb_node_retry_t *rb_node_retry_new(struct parser_params *p, const YYLTYPE *loc);
1136static rb_node_begin_t *rb_node_begin_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc);
1137static rb_node_rescue_t *rb_node_rescue_new(struct parser_params *p, NODE *nd_head, NODE *nd_resq, NODE *nd_else, const YYLTYPE *loc);
1138static rb_node_resbody_t *rb_node_resbody_new(struct parser_params *p, NODE *nd_args, NODE *nd_exc_var, NODE *nd_body, NODE *nd_next, const YYLTYPE *loc);
1139static rb_node_ensure_t *rb_node_ensure_new(struct parser_params *p, NODE *nd_head, NODE *nd_ensr, const YYLTYPE *loc);
1140static rb_node_and_t *rb_node_and_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1141static rb_node_or_t *rb_node_or_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1142static rb_node_masgn_t *rb_node_masgn_new(struct parser_params *p, NODE *nd_head, NODE *nd_args, const YYLTYPE *loc);
1143static rb_node_lasgn_t *rb_node_lasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc);
1144static rb_node_dasgn_t *rb_node_dasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc);
1145static rb_node_gasgn_t *rb_node_gasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc);
1146static rb_node_iasgn_t *rb_node_iasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc);
1147static rb_node_cdecl_t *rb_node_cdecl_new(struct parser_params *p, ID nd_vid, NODE *nd_value, NODE *nd_else, enum rb_parser_shareability shareability, const YYLTYPE *loc);
1148static rb_node_cvasgn_t *rb_node_cvasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc);
1149static rb_node_op_asgn1_t *rb_node_op_asgn1_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *index, NODE *rvalue, const YYLTYPE *loc, const YYLTYPE *call_operator_loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc, const YYLTYPE *binary_operator_loc);
1150static rb_node_op_asgn2_t *rb_node_op_asgn2_new(struct parser_params *p, NODE *nd_recv, NODE *nd_value, ID nd_vid, ID nd_mid, bool nd_aid, const YYLTYPE *loc, const YYLTYPE *call_operator_loc, const YYLTYPE *message_loc, const YYLTYPE *binary_operator_loc);
1151static rb_node_op_asgn_or_t *rb_node_op_asgn_or_new(struct parser_params *p, NODE *nd_head, NODE *nd_value, const YYLTYPE *loc);
1152static rb_node_op_asgn_and_t *rb_node_op_asgn_and_new(struct parser_params *p, NODE *nd_head, NODE *nd_value, const YYLTYPE *loc);
1153static rb_node_op_cdecl_t *rb_node_op_cdecl_new(struct parser_params *p, NODE *nd_head, NODE *nd_value, ID nd_aid, enum rb_parser_shareability shareability, const YYLTYPE *loc);
1154static rb_node_call_t *rb_node_call_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc);
1155static rb_node_opcall_t *rb_node_opcall_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc);
1156static rb_node_fcall_t *rb_node_fcall_new(struct parser_params *p, ID nd_mid, NODE *nd_args, const YYLTYPE *loc);
1157static rb_node_vcall_t *rb_node_vcall_new(struct parser_params *p, ID nd_mid, const YYLTYPE *loc);
1158static rb_node_qcall_t *rb_node_qcall_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc);
1159static rb_node_super_t *rb_node_super_new(struct parser_params *p, NODE *nd_args, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *lparen_loc, const YYLTYPE *rparen_loc);
1160static rb_node_zsuper_t * rb_node_zsuper_new(struct parser_params *p, const YYLTYPE *loc);
1161static rb_node_list_t *rb_node_list_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc);
1162static rb_node_list_t *rb_node_list_new2(struct parser_params *p, NODE *nd_head, long nd_alen, NODE *nd_next, const YYLTYPE *loc);
1163static rb_node_zlist_t *rb_node_zlist_new(struct parser_params *p, const YYLTYPE *loc);
1164static rb_node_hash_t *rb_node_hash_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc);
1165static rb_node_return_t *rb_node_return_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1166static rb_node_yield_t *rb_node_yield_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *lparen_loc, const YYLTYPE *rparen_loc);
1167static rb_node_lvar_t *rb_node_lvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1168static rb_node_dvar_t *rb_node_dvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1169static rb_node_gvar_t *rb_node_gvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1170static rb_node_ivar_t *rb_node_ivar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1171static rb_node_const_t *rb_node_const_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1172static rb_node_cvar_t *rb_node_cvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc);
1173static rb_node_nth_ref_t *rb_node_nth_ref_new(struct parser_params *p, long nd_nth, const YYLTYPE *loc);
1174static rb_node_back_ref_t *rb_node_back_ref_new(struct parser_params *p, long nd_nth, const YYLTYPE *loc);
1175static rb_node_match2_t *rb_node_match2_new(struct parser_params *p, NODE *nd_recv, NODE *nd_value, const YYLTYPE *loc);
1176static rb_node_match3_t *rb_node_match3_new(struct parser_params *p, NODE *nd_recv, NODE *nd_value, const YYLTYPE *loc);
1177static rb_node_integer_t * rb_node_integer_new(struct parser_params *p, char* val, int base, const YYLTYPE *loc);
1178static rb_node_float_t * rb_node_float_new(struct parser_params *p, char* val, const YYLTYPE *loc);
1179static rb_node_rational_t * rb_node_rational_new(struct parser_params *p, char* val, int base, int seen_point, const YYLTYPE *loc);
1180static rb_node_imaginary_t * rb_node_imaginary_new(struct parser_params *p, char* val, int base, int seen_point, enum rb_numeric_type, const YYLTYPE *loc);
1181static rb_node_str_t *rb_node_str_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc);
1182static rb_node_dstr_t *rb_node_dstr_new0(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc);
1183static rb_node_dstr_t *rb_node_dstr_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc);
1184static rb_node_xstr_t *rb_node_xstr_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc);
1185static rb_node_dxstr_t *rb_node_dxstr_new(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc);
1186static rb_node_evstr_t *rb_node_evstr_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc);
1187static rb_node_regx_t *rb_node_regx_new(struct parser_params *p, rb_parser_string_t *string, int options, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *content_loc, const YYLTYPE *closing_loc);
1188static rb_node_once_t *rb_node_once_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc);
1189static rb_node_args_t *rb_node_args_new(struct parser_params *p, const YYLTYPE *loc);
1190static rb_node_args_aux_t *rb_node_args_aux_new(struct parser_params *p, ID nd_pid, int nd_plen, const YYLTYPE *loc);
1191static rb_node_opt_arg_t *rb_node_opt_arg_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc);
1192static rb_node_kw_arg_t *rb_node_kw_arg_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc);
1193static rb_node_postarg_t *rb_node_postarg_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc);
1194static rb_node_argscat_t *rb_node_argscat_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc);
1195static rb_node_argspush_t *rb_node_argspush_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc);
1196static rb_node_splat_t *rb_node_splat_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1197static rb_node_block_pass_t *rb_node_block_pass_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1198static rb_node_defn_t *rb_node_defn_new(struct parser_params *p, ID nd_mid, NODE *nd_defn, const YYLTYPE *loc);
1199static rb_node_defs_t *rb_node_defs_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_defn, const YYLTYPE *loc);
1200static rb_node_alias_t *rb_node_alias_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1201static rb_node_valias_t *rb_node_valias_new(struct parser_params *p, ID nd_alias, ID nd_orig, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1202static rb_node_undef_t *rb_node_undef_new(struct parser_params *p, NODE *nd_undef, const YYLTYPE *loc);
1203static rb_node_class_t *rb_node_class_new(struct parser_params *p, NODE *nd_cpath, NODE *nd_body, NODE *nd_super, const YYLTYPE *loc, const YYLTYPE *class_keyword_loc, const YYLTYPE *inheritance_operator_loc, const YYLTYPE *end_keyword_loc);
1204static rb_node_module_t *rb_node_module_new(struct parser_params *p, NODE *nd_cpath, NODE *nd_body, const YYLTYPE *loc);
1205static rb_node_sclass_t *rb_node_sclass_new(struct parser_params *p, NODE *nd_recv, NODE *nd_body, const YYLTYPE *loc);
1206static rb_node_colon2_t *rb_node_colon2_new(struct parser_params *p, NODE *nd_head, ID nd_mid, const YYLTYPE *loc);
1207static rb_node_colon3_t *rb_node_colon3_new(struct parser_params *p, ID nd_mid, const YYLTYPE *loc);
1208static rb_node_dot2_t *rb_node_dot2_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1209static rb_node_dot3_t *rb_node_dot3_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLTYPE *loc, const YYLTYPE *operator_loc);
1210static rb_node_self_t *rb_node_self_new(struct parser_params *p, const YYLTYPE *loc);
1211static rb_node_nil_t *rb_node_nil_new(struct parser_params *p, const YYLTYPE *loc);
1212static rb_node_true_t *rb_node_true_new(struct parser_params *p, const YYLTYPE *loc);
1213static rb_node_false_t *rb_node_false_new(struct parser_params *p, const YYLTYPE *loc);
1214static rb_node_errinfo_t *rb_node_errinfo_new(struct parser_params *p, const YYLTYPE *loc);
1215static rb_node_defined_t *rb_node_defined_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc);
1216static rb_node_postexe_t *rb_node_postexe_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc);
1217static rb_node_sym_t *rb_node_sym_new(struct parser_params *p, VALUE str, const YYLTYPE *loc);
1218static rb_node_dsym_t *rb_node_dsym_new(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc);
1219static rb_node_attrasgn_t *rb_node_attrasgn_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc);
1220static rb_node_lambda_t *rb_node_lambda_new(struct parser_params *p, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *operator_loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc);
1221static rb_node_aryptn_t *rb_node_aryptn_new(struct parser_params *p, NODE *pre_args, NODE *rest_arg, NODE *post_args, const YYLTYPE *loc);
1222static rb_node_hshptn_t *rb_node_hshptn_new(struct parser_params *p, NODE *nd_pconst, NODE *nd_pkwargs, NODE *nd_pkwrestarg, const YYLTYPE *loc);
1223static rb_node_fndptn_t *rb_node_fndptn_new(struct parser_params *p, NODE *pre_rest_arg, NODE *args, NODE *post_rest_arg, const YYLTYPE *loc);
1224static rb_node_line_t *rb_node_line_new(struct parser_params *p, const YYLTYPE *loc);
1225static rb_node_file_t *rb_node_file_new(struct parser_params *p, VALUE str, const YYLTYPE *loc);
1226static rb_node_error_t *rb_node_error_new(struct parser_params *p, const YYLTYPE *loc);
1228#define NEW_SCOPE(a,b,loc) (NODE *)rb_node_scope_new(p,a,b,loc)
1229#define NEW_SCOPE2(t,a,b,loc) (NODE *)rb_node_scope_new2(p,t,a,b,loc)
1230#define NEW_BLOCK(a,loc) (NODE *)rb_node_block_new(p,a,loc)
1231#define NEW_IF(c,t,e,loc,ik_loc,tk_loc,ek_loc) (NODE *)rb_node_if_new(p,c,t,e,loc,ik_loc,tk_loc,ek_loc)
1232#define NEW_UNLESS(c,t,e,loc,k_loc,t_loc,e_loc) (NODE *)rb_node_unless_new(p,c,t,e,loc,k_loc,t_loc,e_loc)
1233#define NEW_CASE(h,b,loc,ck_loc,ek_loc) (NODE *)rb_node_case_new(p,h,b,loc,ck_loc,ek_loc)
1234#define NEW_CASE2(b,loc,ck_loc,ek_loc) (NODE *)rb_node_case2_new(p,b,loc,ck_loc,ek_loc)
1235#define NEW_CASE3(h,b,loc,ck_loc,ek_loc) (NODE *)rb_node_case3_new(p,h,b,loc,ck_loc,ek_loc)
1236#define NEW_WHEN(c,t,e,loc,k_loc,t_loc) (NODE *)rb_node_when_new(p,c,t,e,loc,k_loc,t_loc)
1237#define NEW_IN(c,t,e,loc) (NODE *)rb_node_in_new(p,c,t,e,loc)
1238#define NEW_WHILE(c,b,n,loc,k_loc,c_loc) (NODE *)rb_node_while_new(p,c,b,n,loc,k_loc,c_loc)
1239#define NEW_UNTIL(c,b,n,loc,k_loc,c_loc) (NODE *)rb_node_until_new(p,c,b,n,loc,k_loc,c_loc)
1240#define NEW_ITER(a,b,loc) (NODE *)rb_node_iter_new(p,a,b,loc)
1241#define NEW_FOR(i,b,loc,f_loc,i_loc,d_loc,e_loc) (NODE *)rb_node_for_new(p,i,b,loc,f_loc,i_loc,d_loc,e_loc)
1242#define NEW_FOR_MASGN(v,loc) (NODE *)rb_node_for_masgn_new(p,v,loc)
1243#define NEW_RETRY(loc) (NODE *)rb_node_retry_new(p,loc)
1244#define NEW_BEGIN(b,loc) (NODE *)rb_node_begin_new(p,b,loc)
1245#define NEW_RESCUE(b,res,e,loc) (NODE *)rb_node_rescue_new(p,b,res,e,loc)
1246#define NEW_RESBODY(a,v,ex,n,loc) (NODE *)rb_node_resbody_new(p,a,v,ex,n,loc)
1247#define NEW_ENSURE(b,en,loc) (NODE *)rb_node_ensure_new(p,b,en,loc)
1248#define NEW_AND(f,s,loc,op_loc) (NODE *)rb_node_and_new(p,f,s,loc,op_loc)
1249#define NEW_OR(f,s,loc,op_loc) (NODE *)rb_node_or_new(p,f,s,loc,op_loc)
1250#define NEW_MASGN(l,r,loc) rb_node_masgn_new(p,l,r,loc)
1251#define NEW_LASGN(v,val,loc) (NODE *)rb_node_lasgn_new(p,v,val,loc)
1252#define NEW_DASGN(v,val,loc) (NODE *)rb_node_dasgn_new(p,v,val,loc)
1253#define NEW_GASGN(v,val,loc) (NODE *)rb_node_gasgn_new(p,v,val,loc)
1254#define NEW_IASGN(v,val,loc) (NODE *)rb_node_iasgn_new(p,v,val,loc)
1255#define NEW_CDECL(v,val,path,share,loc) (NODE *)rb_node_cdecl_new(p,v,val,path,share,loc)
1256#define NEW_CVASGN(v,val,loc) (NODE *)rb_node_cvasgn_new(p,v,val,loc)
1257#define NEW_OP_ASGN1(r,id,idx,rval,loc,c_op_loc,o_loc,c_loc,b_op_loc) (NODE *)rb_node_op_asgn1_new(p,r,id,idx,rval,loc,c_op_loc,o_loc,c_loc,b_op_loc)
1258#define NEW_OP_ASGN2(r,t,i,o,val,loc,c_op_loc,m_loc,b_op_loc) (NODE *)rb_node_op_asgn2_new(p,r,val,i,o,t,loc,c_op_loc,m_loc,b_op_loc)
1259#define NEW_OP_ASGN_OR(i,val,loc) (NODE *)rb_node_op_asgn_or_new(p,i,val,loc)
1260#define NEW_OP_ASGN_AND(i,val,loc) (NODE *)rb_node_op_asgn_and_new(p,i,val,loc)
1261#define NEW_OP_CDECL(v,op,val,share,loc) (NODE *)rb_node_op_cdecl_new(p,v,val,op,share,loc)
1262#define NEW_CALL(r,m,a,loc) (NODE *)rb_node_call_new(p,r,m,a,loc)
1263#define NEW_OPCALL(r,m,a,loc) (NODE *)rb_node_opcall_new(p,r,m,a,loc)
1264#define NEW_FCALL(m,a,loc) rb_node_fcall_new(p,m,a,loc)
1265#define NEW_VCALL(m,loc) (NODE *)rb_node_vcall_new(p,m,loc)
1266#define NEW_QCALL0(r,m,a,loc) (NODE *)rb_node_qcall_new(p,r,m,a,loc)
1267#define NEW_SUPER(a,loc,k_loc,l_loc,r_loc) (NODE *)rb_node_super_new(p,a,loc,k_loc,l_loc,r_loc)
1268#define NEW_ZSUPER(loc) (NODE *)rb_node_zsuper_new(p,loc)
1269#define NEW_LIST(a,loc) (NODE *)rb_node_list_new(p,a,loc)
1270#define NEW_LIST2(h,l,n,loc) (NODE *)rb_node_list_new2(p,h,l,n,loc)
1271#define NEW_ZLIST(loc) (NODE *)rb_node_zlist_new(p,loc)
1272#define NEW_HASH(a,loc) (NODE *)rb_node_hash_new(p,a,loc)
1273#define NEW_RETURN(s,loc,k_loc) (NODE *)rb_node_return_new(p,s,loc,k_loc)
1274#define NEW_YIELD(a,loc,k_loc,l_loc,r_loc) (NODE *)rb_node_yield_new(p,a,loc,k_loc,l_loc,r_loc)
1275#define NEW_LVAR(v,loc) (NODE *)rb_node_lvar_new(p,v,loc)
1276#define NEW_DVAR(v,loc) (NODE *)rb_node_dvar_new(p,v,loc)
1277#define NEW_GVAR(v,loc) (NODE *)rb_node_gvar_new(p,v,loc)
1278#define NEW_IVAR(v,loc) (NODE *)rb_node_ivar_new(p,v,loc)
1279#define NEW_CONST(v,loc) (NODE *)rb_node_const_new(p,v,loc)
1280#define NEW_CVAR(v,loc) (NODE *)rb_node_cvar_new(p,v,loc)
1281#define NEW_NTH_REF(n,loc) (NODE *)rb_node_nth_ref_new(p,n,loc)
1282#define NEW_BACK_REF(n,loc) (NODE *)rb_node_back_ref_new(p,n,loc)
1283#define NEW_MATCH2(n1,n2,loc) (NODE *)rb_node_match2_new(p,n1,n2,loc)
1284#define NEW_MATCH3(r,n2,loc) (NODE *)rb_node_match3_new(p,r,n2,loc)
1285#define NEW_INTEGER(val, base,loc) (NODE *)rb_node_integer_new(p,val,base,loc)
1286#define NEW_FLOAT(val,loc) (NODE *)rb_node_float_new(p,val,loc)
1287#define NEW_RATIONAL(val,base,seen_point,loc) (NODE *)rb_node_rational_new(p,val,base,seen_point,loc)
1288#define NEW_IMAGINARY(val,base,seen_point,numeric_type,loc) (NODE *)rb_node_imaginary_new(p,val,base,seen_point,numeric_type,loc)
1289#define NEW_STR(s,loc) (NODE *)rb_node_str_new(p,s,loc)
1290#define NEW_DSTR0(s,l,n,loc) (NODE *)rb_node_dstr_new0(p,s,l,n,loc)
1291#define NEW_DSTR(s,loc) (NODE *)rb_node_dstr_new(p,s,loc)
1292#define NEW_XSTR(s,loc) (NODE *)rb_node_xstr_new(p,s,loc)
1293#define NEW_DXSTR(s,l,n,loc) (NODE *)rb_node_dxstr_new(p,s,l,n,loc)
1294#define NEW_EVSTR(n,loc,o_loc,c_loc) (NODE *)rb_node_evstr_new(p,n,loc,o_loc,c_loc)
1295#define NEW_REGX(str,opts,loc,o_loc,ct_loc,c_loc) (NODE *)rb_node_regx_new(p,str,opts,loc,o_loc,ct_loc,c_loc)
1296#define NEW_ONCE(b,loc) (NODE *)rb_node_once_new(p,b,loc)
1297#define NEW_ARGS(loc) rb_node_args_new(p,loc)
1298#define NEW_ARGS_AUX(r,b,loc) rb_node_args_aux_new(p,r,b,loc)
1299#define NEW_OPT_ARG(v,loc) rb_node_opt_arg_new(p,v,loc)
1300#define NEW_KW_ARG(v,loc) rb_node_kw_arg_new(p,v,loc)
1301#define NEW_POSTARG(i,v,loc) (NODE *)rb_node_postarg_new(p,i,v,loc)
1302#define NEW_ARGSCAT(a,b,loc) (NODE *)rb_node_argscat_new(p,a,b,loc)
1303#define NEW_ARGSPUSH(a,b,loc) (NODE *)rb_node_argspush_new(p,a,b,loc)
1304#define NEW_SPLAT(a,loc,op_loc) (NODE *)rb_node_splat_new(p,a,loc,op_loc)
1305#define NEW_BLOCK_PASS(b,loc,o_loc) rb_node_block_pass_new(p,b,loc,o_loc)
1306#define NEW_DEFN(i,s,loc) (NODE *)rb_node_defn_new(p,i,s,loc)
1307#define NEW_DEFS(r,i,s,loc) (NODE *)rb_node_defs_new(p,r,i,s,loc)
1308#define NEW_ALIAS(n,o,loc,k_loc) (NODE *)rb_node_alias_new(p,n,o,loc,k_loc)
1309#define NEW_VALIAS(n,o,loc,k_loc) (NODE *)rb_node_valias_new(p,n,o,loc,k_loc)
1310#define NEW_UNDEF(i,loc) (NODE *)rb_node_undef_new(p,i,loc)
1311#define NEW_CLASS(n,b,s,loc,ck_loc,io_loc,ek_loc) (NODE *)rb_node_class_new(p,n,b,s,loc,ck_loc,io_loc,ek_loc)
1312#define NEW_MODULE(n,b,loc) (NODE *)rb_node_module_new(p,n,b,loc)
1313#define NEW_SCLASS(r,b,loc) (NODE *)rb_node_sclass_new(p,r,b,loc)
1314#define NEW_COLON2(c,i,loc) (NODE *)rb_node_colon2_new(p,c,i,loc)
1315#define NEW_COLON3(i,loc) (NODE *)rb_node_colon3_new(p,i,loc)
1316#define NEW_DOT2(b,e,loc,op_loc) (NODE *)rb_node_dot2_new(p,b,e,loc,op_loc)
1317#define NEW_DOT3(b,e,loc,op_loc) (NODE *)rb_node_dot3_new(p,b,e,loc,op_loc)
1318#define NEW_SELF(loc) (NODE *)rb_node_self_new(p,loc)
1319#define NEW_NIL(loc) (NODE *)rb_node_nil_new(p,loc)
1320#define NEW_TRUE(loc) (NODE *)rb_node_true_new(p,loc)
1321#define NEW_FALSE(loc) (NODE *)rb_node_false_new(p,loc)
1322#define NEW_ERRINFO(loc) (NODE *)rb_node_errinfo_new(p,loc)
1323#define NEW_DEFINED(e,loc) (NODE *)rb_node_defined_new(p,e,loc)
1324#define NEW_POSTEXE(b,loc,k_loc,o_loc,c_loc) (NODE *)rb_node_postexe_new(p,b,loc,k_loc,o_loc,c_loc)
1325#define NEW_SYM(str,loc) (NODE *)rb_node_sym_new(p,str,loc)
1326#define NEW_DSYM(s,l,n,loc) (NODE *)rb_node_dsym_new(p,s,l,n,loc)
1327#define NEW_ATTRASGN(r,m,a,loc) (NODE *)rb_node_attrasgn_new(p,r,m,a,loc)
1328#define NEW_LAMBDA(a,b,loc,op_loc,o_loc,c_loc) (NODE *)rb_node_lambda_new(p,a,b,loc,op_loc,o_loc,c_loc)
1329#define NEW_ARYPTN(pre,r,post,loc) (NODE *)rb_node_aryptn_new(p,pre,r,post,loc)
1330#define NEW_HSHPTN(c,kw,kwrest,loc) (NODE *)rb_node_hshptn_new(p,c,kw,kwrest,loc)
1331#define NEW_FNDPTN(pre,a,post,loc) (NODE *)rb_node_fndptn_new(p,pre,a,post,loc)
1332#define NEW_LINE(loc) (NODE *)rb_node_line_new(p,loc)
1333#define NEW_FILE(str,loc) (NODE *)rb_node_file_new(p,str,loc)
1334#define NEW_ENCODING(loc) (NODE *)rb_node_encoding_new(p,loc)
1335#define NEW_ERROR(loc) (NODE *)rb_node_error_new(p,loc)
1337enum internal_node_type {
1338 NODE_INTERNAL_ONLY = NODE_LAST,
1345parser_node_name(int node)
1349 return "NODE_DEF_TEMP";
1351 return "NODE_EXITS";
1353 return ruby_node_name(node);
1357/* This node is parse.y internal */
1358struct RNode_DEF_TEMP {
1361 /* for NODE_DEFN/NODE_DEFS */
1363 struct RNode *nd_def;
1368 NODE *numparam_save;
1369 struct lex_context ctxt;
1373#define RNODE_DEF_TEMP(node) ((struct RNode_DEF_TEMP *)(node))
1375static rb_node_break_t *rb_node_break_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1376static rb_node_next_t *rb_node_next_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1377static rb_node_redo_t *rb_node_redo_new(struct parser_params *p, const YYLTYPE *loc, const YYLTYPE *keyword_loc);
1378static rb_node_def_temp_t *rb_node_def_temp_new(struct parser_params *p, const YYLTYPE *loc);
1379static rb_node_def_temp_t *def_head_save(struct parser_params *p, rb_node_def_temp_t *n);
1381#define NEW_BREAK(s,loc,k_loc) (NODE *)rb_node_break_new(p,s,loc,k_loc)
1382#define NEW_NEXT(s,loc,k_loc) (NODE *)rb_node_next_new(p,s,loc,k_loc)
1383#define NEW_REDO(loc,k_loc) (NODE *)rb_node_redo_new(p,loc,k_loc)
1384#define NEW_DEF_TEMP(loc) rb_node_def_temp_new(p,loc)
1386/* Make a new internal node, which should not be appeared in the
1387 * result AST and does not have node_id and location. */
1388static NODE* node_new_internal(struct parser_params *p, enum node_type type, size_t size, size_t alignment);
1389#define NODE_NEW_INTERNAL(ndtype, type) (type *)node_new_internal(p, (enum node_type)(ndtype), sizeof(type), RUBY_ALIGNOF(type))
1391static NODE *nd_set_loc(NODE *nd, const YYLTYPE *loc);
1394parser_get_node_id(struct parser_params *p)
1396 int node_id = p->node_id;
1402anddot_multiple_assignment_check(struct parser_params* p, const YYLTYPE *loc, ID id)
1404 if (id == tANDDOT) {
1405 yyerror1(loc, "&. inside multiple assignment destination");
1410set_line_body(NODE *body, int line)
1413 switch (nd_type(body)) {
1416 nd_set_line(body, line);
1421set_embraced_location(NODE *node, const rb_code_location_t *beg, const rb_code_location_t *end)
1423 RNODE_ITER(node)->nd_body->nd_loc = code_loc_gen(beg, end);
1424 nd_set_line(node, beg->end_pos.lineno);
1428last_expr_node(NODE *expr)
1431 if (nd_type_p(expr, NODE_BLOCK)) {
1432 expr = RNODE_BLOCK(RNODE_BLOCK(expr)->nd_end)->nd_head;
1434 else if (nd_type_p(expr, NODE_BEGIN) && RNODE_BEGIN(expr)->nd_body) {
1435 expr = RNODE_BEGIN(expr)->nd_body;
1445#define yyparse ruby_yyparse
1448static NODE* cond(struct parser_params *p, NODE *node, const YYLTYPE *loc);
1449static NODE* method_cond(struct parser_params *p, NODE *node, const YYLTYPE *loc);
1450#define new_nil(loc) NEW_NIL(loc)
1451static NODE *new_nil_at(struct parser_params *p, const rb_code_position_t *pos);
1452static NODE *new_if(struct parser_params*,NODE*,NODE*,NODE*,const YYLTYPE*,const YYLTYPE*,const YYLTYPE*,const YYLTYPE*);
1453static NODE *new_unless(struct parser_params*,NODE*,NODE*,NODE*,const YYLTYPE*,const YYLTYPE*,const YYLTYPE*,const YYLTYPE*);
1454static NODE *logop(struct parser_params*,ID,NODE*,NODE*,const YYLTYPE*,const YYLTYPE*);
1456static NODE *newline_node(NODE*);
1457static void fixpos(NODE*,NODE*);
1459static int value_expr_gen(struct parser_params*,NODE*);
1460static void void_expr(struct parser_params*,NODE*);
1461static NODE *remove_begin(NODE*);
1462#define value_expr(node) value_expr_gen(p, (node))
1463static NODE *void_stmts(struct parser_params*,NODE*);
1464static void reduce_nodes(struct parser_params*,NODE**);
1465static void block_dup_check(struct parser_params*,NODE*,NODE*);
1467static NODE *block_append(struct parser_params*,NODE*,NODE*);
1468static NODE *list_append(struct parser_params*,NODE*,NODE*);
1469static NODE *list_concat(NODE*,NODE*);
1470static NODE *arg_append(struct parser_params*,NODE*,NODE*,const YYLTYPE*);
1471static NODE *last_arg_append(struct parser_params *p, NODE *args, NODE *last_arg, const YYLTYPE *loc);
1472static NODE *rest_arg_append(struct parser_params *p, NODE *args, NODE *rest_arg, const YYLTYPE *loc);
1473static NODE *literal_concat(struct parser_params*,NODE*,NODE*,const YYLTYPE*);
1474static NODE *new_evstr(struct parser_params*,NODE*,const YYLTYPE*,const YYLTYPE*,const YYLTYPE*);
1475static NODE *new_dstr(struct parser_params*,NODE*,const YYLTYPE*);
1476static NODE *str2dstr(struct parser_params*,NODE*);
1477static NODE *evstr2dstr(struct parser_params*,NODE*);
1478static NODE *splat_array(NODE*);
1479static void mark_lvar_used(struct parser_params *p, NODE *rhs);
1481static NODE *call_bin_op(struct parser_params*,NODE*,ID,NODE*,const YYLTYPE*,const YYLTYPE*);
1482static NODE *call_uni_op(struct parser_params*,NODE*,ID,const YYLTYPE*,const YYLTYPE*);
1483static NODE *new_qcall(struct parser_params* p, ID atype, NODE *recv, ID mid, NODE *args, const YYLTYPE *op_loc, const YYLTYPE *loc);
1484static NODE *new_command_qcall(struct parser_params* p, ID atype, NODE *recv, ID mid, NODE *args, NODE *block, const YYLTYPE *op_loc, const YYLTYPE *loc);
1485static NODE *method_add_block(struct parser_params*p, NODE *m, NODE *b, const YYLTYPE *loc) {RNODE_ITER(b)->nd_iter = m; b->nd_loc = *loc; return b;}
1487static bool args_info_empty_p(struct rb_args_info *args);
1488static rb_node_args_t *new_args(struct parser_params*,rb_node_args_aux_t*,rb_node_opt_arg_t*,ID,rb_node_args_aux_t*,rb_node_args_t*,const YYLTYPE*);
1489static rb_node_args_t *new_args_tail(struct parser_params*,rb_node_kw_arg_t*,ID,ID,const YYLTYPE*);
1490static NODE *new_array_pattern(struct parser_params *p, NODE *constant, NODE *pre_arg, NODE *aryptn, const YYLTYPE *loc);
1491static NODE *new_array_pattern_tail(struct parser_params *p, NODE *pre_args, int has_rest, NODE *rest_arg, NODE *post_args, const YYLTYPE *loc);
1492static NODE *new_find_pattern(struct parser_params *p, NODE *constant, NODE *fndptn, const YYLTYPE *loc);
1493static NODE *new_find_pattern_tail(struct parser_params *p, NODE *pre_rest_arg, NODE *args, NODE *post_rest_arg, const YYLTYPE *loc);
1494static NODE *new_hash_pattern(struct parser_params *p, NODE *constant, NODE *hshptn, const YYLTYPE *loc);
1495static NODE *new_hash_pattern_tail(struct parser_params *p, NODE *kw_args, ID kw_rest_arg, const YYLTYPE *loc);
1497static rb_node_kw_arg_t *new_kw_arg(struct parser_params *p, NODE *k, const YYLTYPE *loc);
1498static rb_node_args_t *args_with_numbered(struct parser_params*,rb_node_args_t*,int,ID);
1500static NODE* negate_lit(struct parser_params*, NODE*);
1501static void no_blockarg(struct parser_params*,NODE*);
1502static NODE *ret_args(struct parser_params*,NODE*);
1503static NODE *arg_blk_pass(NODE*,rb_node_block_pass_t*);
1504static NODE *dsym_node(struct parser_params*,NODE*,const YYLTYPE*);
1506static NODE *gettable(struct parser_params*,ID,const YYLTYPE*);
1507static NODE *assignable(struct parser_params*,ID,NODE*,const YYLTYPE*);
1509static NODE *aryset(struct parser_params*,NODE*,NODE*,const YYLTYPE*);
1510static NODE *attrset(struct parser_params*,NODE*,ID,ID,const YYLTYPE*);
1512static VALUE rb_backref_error(struct parser_params*,NODE*);
1513static NODE *node_assign(struct parser_params*,NODE*,NODE*,struct lex_context,const YYLTYPE*);
1515static NODE *new_op_assign(struct parser_params *p, NODE *lhs, ID op, NODE *rhs, struct lex_context, const YYLTYPE *loc);
1516static NODE *new_ary_op_assign(struct parser_params *p, NODE *ary, NODE *args, ID op, NODE *rhs, const YYLTYPE *args_loc, const YYLTYPE *loc, const YYLTYPE *call_operator_loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc, const YYLTYPE *binary_operator_loc);
1517static NODE *new_attr_op_assign(struct parser_params *p, NODE *lhs, ID atype, ID attr, ID op, NODE *rhs, const YYLTYPE *loc, const YYLTYPE *call_operator_loc, const YYLTYPE *message_loc, const YYLTYPE *binary_operator_loc);
1518static NODE *new_const_op_assign(struct parser_params *p, NODE *lhs, ID op, NODE *rhs, struct lex_context, const YYLTYPE *loc);
1519static NODE *new_bodystmt(struct parser_params *p, NODE *head, NODE *rescue, NODE *rescue_else, NODE *ensure, const YYLTYPE *loc);
1521static NODE *const_decl(struct parser_params *p, NODE* path, const YYLTYPE *loc);
1523static rb_node_opt_arg_t *opt_arg_append(rb_node_opt_arg_t*, rb_node_opt_arg_t*);
1524static rb_node_kw_arg_t *kwd_append(rb_node_kw_arg_t*, rb_node_kw_arg_t*);
1526static NODE *new_hash(struct parser_params *p, NODE *hash, const YYLTYPE *loc);
1527static NODE *new_unique_key_hash(struct parser_params *p, NODE *hash, const YYLTYPE *loc);
1529static NODE *new_defined(struct parser_params *p, NODE *expr, const YYLTYPE *loc);
1531static NODE *new_regexp(struct parser_params *, NODE *, int, const YYLTYPE *, const YYLTYPE *, const YYLTYPE *, const YYLTYPE *);
1533#define make_list(list, loc) ((list) ? (nd_set_loc(list, loc), list) : NEW_ZLIST(loc))
1535static NODE *new_xstring(struct parser_params *, NODE *, const YYLTYPE *loc);
1537static NODE *symbol_append(struct parser_params *p, NODE *symbols, NODE *symbol);
1539static NODE *match_op(struct parser_params*,NODE*,NODE*,const YYLTYPE*,const YYLTYPE*);
1541static rb_ast_id_table_t *local_tbl(struct parser_params*);
1543static VALUE reg_compile(struct parser_params*, rb_parser_string_t*, int);
1544static void reg_fragment_setenc(struct parser_params*, rb_parser_string_t*, int);
1546static int literal_concat0(struct parser_params *p, rb_parser_string_t *head, rb_parser_string_t *tail);
1547static NODE *heredoc_dedent(struct parser_params*,NODE*);
1549static void check_literal_when(struct parser_params *p, NODE *args, const YYLTYPE *loc);
1551static rb_locations_lambda_body_t* new_locations_lambda_body(struct parser_params *p, NODE *node, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc);
1554#define get_value(idx) (rb_ary_entry(p->s_value_stack, idx))
1555#define set_value(val) (p->s_lvalue = val)
1556static VALUE assign_error(struct parser_params *p, const char *mesg, VALUE a);
1557static int id_is_var(struct parser_params *p, ID id);
1560RUBY_SYMBOL_EXPORT_BEGIN
1561VALUE rb_parser_reg_compile(struct parser_params* p, VALUE str, int options);
1562int rb_reg_fragment_setenc(struct parser_params*, rb_parser_string_t *, int);
1563enum lex_state_e rb_parser_trace_lex_state(struct parser_params *, enum lex_state_e, enum lex_state_e, int);
1564VALUE rb_parser_lex_state_name(struct parser_params *p, enum lex_state_e state);
1565void rb_parser_show_bitstack(struct parser_params *, stack_type, const char *, int);
1566PRINTF_ARGS(void rb_parser_fatal(struct parser_params *p, const char *fmt, ...), 2, 3);
1567YYLTYPE *rb_parser_set_location_from_strterm_heredoc(struct parser_params *p, rb_strterm_heredoc_t *here, YYLTYPE *yylloc);
1568YYLTYPE *rb_parser_set_location_of_delayed_token(struct parser_params *p, YYLTYPE *yylloc);
1569YYLTYPE *rb_parser_set_location_of_heredoc_end(struct parser_params *p, YYLTYPE *yylloc);
1570YYLTYPE *rb_parser_set_location_of_dummy_end(struct parser_params *p, YYLTYPE *yylloc);
1571YYLTYPE *rb_parser_set_location_of_none(struct parser_params *p, YYLTYPE *yylloc);
1572YYLTYPE *rb_parser_set_location(struct parser_params *p, YYLTYPE *yylloc);
1573void ruby_show_error_line(struct parser_params *p, VALUE errbuf, const YYLTYPE *yylloc, int lineno, rb_parser_string_t *str);
1574RUBY_SYMBOL_EXPORT_END
1576static void flush_string_content(struct parser_params *p, rb_encoding *enc, size_t back);
1577static void error_duplicate_pattern_variable(struct parser_params *p, ID id, const YYLTYPE *loc);
1578static void error_duplicate_pattern_key(struct parser_params *p, ID id, const YYLTYPE *loc);
1579static VALUE formal_argument_error(struct parser_params*, ID);
1580static ID shadowing_lvar(struct parser_params*,ID);
1581static void new_bv(struct parser_params*,ID);
1583static void local_push(struct parser_params*,int);
1584static void local_pop(struct parser_params*);
1585static void local_var(struct parser_params*, ID);
1586static void arg_var(struct parser_params*, ID);
1587static int local_id(struct parser_params *p, ID id);
1588static int local_id_ref(struct parser_params*, ID, ID **);
1589#define internal_id rb_parser_internal_id
1590ID internal_id(struct parser_params*);
1591static NODE *new_args_forward_call(struct parser_params*, NODE*, const YYLTYPE*, const YYLTYPE*);
1592static int check_forwarding_args(struct parser_params*);
1593static void add_forwarding_args(struct parser_params *p);
1594static void forwarding_arg_check(struct parser_params *p, ID arg, ID all, const char *var);
1596static const struct vtable *dyna_push(struct parser_params *);
1597static void dyna_pop(struct parser_params*, const struct vtable *);
1598static int dyna_in_block(struct parser_params*);
1599#define dyna_var(p, id) local_var(p, id)
1600static int dvar_defined(struct parser_params*, ID);
1601#define dvar_defined_ref rb_parser_dvar_defined_ref
1602int dvar_defined_ref(struct parser_params*, ID, ID**);
1603static int dvar_curr(struct parser_params*,ID);
1605static int lvar_defined(struct parser_params*, ID);
1607static NODE *numparam_push(struct parser_params *p);
1608static void numparam_pop(struct parser_params *p, NODE *prev_inner);
1610#define METHOD_NOT '!
'
1612#define idFWD_REST '*
'
1613#define idFWD_KWREST idPow /* Use simple "**", as tDSTAR is "**arg" */
1614#define idFWD_BLOCK '&
'
1615#define idFWD_ALL idDot3
1616#define arg_FWD_BLOCK idFWD_BLOCK
1618#define RE_ONIG_OPTION_IGNORECASE 1
1619#define RE_ONIG_OPTION_EXTEND (RE_ONIG_OPTION_IGNORECASE<<1)
1620#define RE_ONIG_OPTION_MULTILINE (RE_ONIG_OPTION_EXTEND<<1)
1621#define RE_OPTION_ONCE (1<<16)
1622#define RE_OPTION_ENCODING_SHIFT 8
1623#define RE_OPTION_ENCODING(e) (((e)&0xff)<<RE_OPTION_ENCODING_SHIFT)
1624#define RE_OPTION_ENCODING_IDX(o) (((o)>>RE_OPTION_ENCODING_SHIFT)&0xff)
1625#define RE_OPTION_ENCODING_NONE(o) ((o)&RE_OPTION_ARG_ENCODING_NONE)
1626#define RE_OPTION_MASK 0xff
1627#define RE_OPTION_ARG_ENCODING_NONE 32
1629#define CHECK_LITERAL_WHEN (st_table *)1
1630#define CASE_LABELS_ENABLED_P(case_labels) (case_labels && case_labels != CHECK_LITERAL_WHEN)
1632#define yytnamerr(yyres, yystr) (YYSIZE_T)rb_yytnamerr(p, yyres, yystr)
1633RUBY_FUNC_EXPORTED size_t rb_yytnamerr(struct parser_params *p, char *yyres, const char *yystr);
1635#define TOKEN2ID(tok) ( \
1636 tTOKEN_LOCAL_BEGIN<(tok)&&(tok)<tTOKEN_LOCAL_END ? TOKEN2LOCALID(tok) : \
1637 tTOKEN_INSTANCE_BEGIN<(tok)&&(tok)<tTOKEN_INSTANCE_END ? TOKEN2INSTANCEID(tok) : \
1638 tTOKEN_GLOBAL_BEGIN<(tok)&&(tok)<tTOKEN_GLOBAL_END ? TOKEN2GLOBALID(tok) : \
1639 tTOKEN_CONST_BEGIN<(tok)&&(tok)<tTOKEN_CONST_END ? TOKEN2CONSTID(tok) : \
1640 tTOKEN_CLASS_BEGIN<(tok)&&(tok)<tTOKEN_CLASS_END ? TOKEN2CLASSID(tok) : \
1641 tTOKEN_ATTRSET_BEGIN<(tok)&&(tok)<tTOKEN_ATTRSET_END ? TOKEN2ATTRSETID(tok) : \
1642 ((tok) / ((tok)<tPRESERVED_ID_END && ((tok)>=128 || rb_ispunct(tok)))))
1644/****** Ripper *******/
1648#include "eventids1.h"
1649#include "eventids2.h"
1651extern const struct ripper_parser_ids ripper_parser_ids;
1653static VALUE ripper_dispatch0(struct parser_params*,ID);
1654static VALUE ripper_dispatch1(struct parser_params*,ID,VALUE);
1655static VALUE ripper_dispatch2(struct parser_params*,ID,VALUE,VALUE);
1656static VALUE ripper_dispatch3(struct parser_params*,ID,VALUE,VALUE,VALUE);
1657static VALUE ripper_dispatch4(struct parser_params*,ID,VALUE,VALUE,VALUE,VALUE);
1658static VALUE ripper_dispatch5(struct parser_params*,ID,VALUE,VALUE,VALUE,VALUE,VALUE);
1659static VALUE ripper_dispatch7(struct parser_params*,ID,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE,VALUE);
1660void ripper_error(struct parser_params *p);
1662#define dispatch0(n) ripper_dispatch0(p, RIPPER_ID(n))
1663#define dispatch1(n,a) ripper_dispatch1(p, RIPPER_ID(n), (a))
1664#define dispatch2(n,a,b) ripper_dispatch2(p, RIPPER_ID(n), (a), (b))
1665#define dispatch3(n,a,b,c) ripper_dispatch3(p, RIPPER_ID(n), (a), (b), (c))
1666#define dispatch4(n,a,b,c,d) ripper_dispatch4(p, RIPPER_ID(n), (a), (b), (c), (d))
1667#define dispatch5(n,a,b,c,d,e) ripper_dispatch5(p, RIPPER_ID(n), (a), (b), (c), (d), (e))
1668#define dispatch7(n,a,b,c,d,e,f,g) ripper_dispatch7(p, RIPPER_ID(n), (a), (b), (c), (d), (e), (f), (g))
1670#define yyparse ripper_yyparse
1673aryptn_pre_args(struct parser_params *p, VALUE pre_arg, VALUE pre_args)
1675 if (!NIL_P(pre_arg)) {
1676 if (!NIL_P(pre_args)) {
1677 rb_ary_unshift(pre_args, pre_arg);
1680 pre_args = rb_ary_new_from_args(1, pre_arg);
1686#define ID2VAL(id) STATIC_ID2SYM(id)
1687#define TOKEN2VAL(t) ID2VAL(TOKEN2ID(t))
1690#define KWD2EID(t, v) keyword_##t
1693new_scope_body(struct parser_params *p, rb_node_args_t *args, NODE *body, const YYLTYPE *loc)
1695 body = remove_begin(body);
1696 reduce_nodes(p, &body);
1697 NODE *n = NEW_SCOPE(args, body, loc);
1698 nd_set_line(n, loc->end_pos.lineno);
1699 set_line_body(body, loc->beg_pos.lineno);
1704rescued_expr(struct parser_params *p, NODE *arg, NODE *rescue,
1705 const YYLTYPE *arg_loc, const YYLTYPE *mod_loc, const YYLTYPE *res_loc)
1707 YYLTYPE loc = code_loc_gen(mod_loc, res_loc);
1708 rescue = NEW_RESBODY(0, 0, remove_begin(rescue), 0, &loc);
1709 loc.beg_pos = arg_loc->beg_pos;
1710 return NEW_RESCUE(arg, rescue, 0, &loc);
1713static NODE *add_block_exit(struct parser_params *p, NODE *node);
1714static rb_node_exits_t *init_block_exit(struct parser_params *p);
1715static rb_node_exits_t *allow_block_exit(struct parser_params *p);
1716static void restore_block_exit(struct parser_params *p, rb_node_exits_t *exits);
1717static void clear_block_exit(struct parser_params *p, bool error);
1720next_rescue_context(struct lex_context *next, const struct lex_context *outer, enum rescue_context def)
1722 next->in_rescue = outer->in_rescue == after_rescue ? after_rescue : def;
1726restore_defun(struct parser_params *p, rb_node_def_temp_t *temp)
1728 /* See: def_name action */
1729 struct lex_context ctxt = temp->save.ctxt;
1730 p->ctxt.in_def = ctxt.in_def;
1731 p->ctxt.shareable_constant_value = ctxt.shareable_constant_value;
1732 p->ctxt.in_rescue = ctxt.in_rescue;
1733 p->max_numparam = temp->save.max_numparam;
1734 numparam_pop(p, temp->save.numparam_save);
1735 clear_block_exit(p, true);
1739endless_method_name(struct parser_params *p, ID mid, const YYLTYPE *loc)
1741 if (is_attrset_id(mid)) {
1742 yyerror1(loc, "setter method cannot be defined in an endless method definition");
1744 token_info_drop(p, "def", loc->beg_pos);
1747#define debug_token_line(p, name, line) do { \
1749 const char *const pcur = p->lex.pcur; \
1750 const char *const ptok = p->lex.ptok; \
1751 rb_parser_printf(p, name ":%d (%d: %"PRIdPTRDIFF"|%"PRIdPTRDIFF"|%"PRIdPTRDIFF")\n", \
1752 line, p->ruby_sourceline, \
1753 ptok - p->lex.pbeg, pcur - ptok, p->lex.pend - pcur); \
1757#define begin_definition(k, loc_beg, loc_end) \
1759 if (!(p->ctxt.in_class = (k)[0] != 0)) { \
1760 /* singleton class */ \
1761 p->ctxt.cant_return = !p->ctxt.in_def; \
1762 p->ctxt.in_def = 0; \
1764 else if (p->ctxt.in_def) { \
1765 YYLTYPE loc = code_loc_gen(loc_beg, loc_end); \
1766 yyerror1(&loc, k " definition in method body"); \
1769 p->ctxt.cant_return = 1; \
1775# define ifndef_ripper(x) (x)
1776# define ifdef_ripper(r,x) (x)
1778# define ifndef_ripper(x)
1779# define ifdef_ripper(r,x) (r)
1782# define rb_warn0(fmt) WARN_CALL(WARN_ARGS(fmt, 1))
1783# define rb_warn1(fmt,a) WARN_CALL(WARN_ARGS(fmt, 2), (a))
1784# define rb_warn2(fmt,a,b) WARN_CALL(WARN_ARGS(fmt, 3), (a), (b))
1785# define rb_warn3(fmt,a,b,c) WARN_CALL(WARN_ARGS(fmt, 4), (a), (b), (c))
1786# define rb_warn4(fmt,a,b,c,d) WARN_CALL(WARN_ARGS(fmt, 5), (a), (b), (c), (d))
1787# define rb_warning0(fmt) WARNING_CALL(WARNING_ARGS(fmt, 1))
1788# define rb_warning1(fmt,a) WARNING_CALL(WARNING_ARGS(fmt, 2), (a))
1789# define rb_warning2(fmt,a,b) WARNING_CALL(WARNING_ARGS(fmt, 3), (a), (b))
1790# define rb_warning3(fmt,a,b,c) WARNING_CALL(WARNING_ARGS(fmt, 4), (a), (b), (c))
1791# define rb_warning4(fmt,a,b,c,d) WARNING_CALL(WARNING_ARGS(fmt, 5), (a), (b), (c), (d))
1792# define rb_warn0L(l,fmt) WARN_CALL(WARN_ARGS_L(l, fmt, 1))
1793# define rb_warn1L(l,fmt,a) WARN_CALL(WARN_ARGS_L(l, fmt, 2), (a))
1794# define rb_warn2L(l,fmt,a,b) WARN_CALL(WARN_ARGS_L(l, fmt, 3), (a), (b))
1795# define rb_warn3L(l,fmt,a,b,c) WARN_CALL(WARN_ARGS_L(l, fmt, 4), (a), (b), (c))
1796# define rb_warn4L(l,fmt,a,b,c,d) WARN_CALL(WARN_ARGS_L(l, fmt, 5), (a), (b), (c), (d))
1797# define rb_warning0L(l,fmt) WARNING_CALL(WARNING_ARGS_L(l, fmt, 1))
1798# define rb_warning1L(l,fmt,a) WARNING_CALL(WARNING_ARGS_L(l, fmt, 2), (a))
1799# define rb_warning2L(l,fmt,a,b) WARNING_CALL(WARNING_ARGS_L(l, fmt, 3), (a), (b))
1800# define rb_warning3L(l,fmt,a,b,c) WARNING_CALL(WARNING_ARGS_L(l, fmt, 4), (a), (b), (c))
1801# define rb_warning4L(l,fmt,a,b,c,d) WARNING_CALL(WARNING_ARGS_L(l, fmt, 5), (a), (b), (c), (d))
1803extern const ID id_warn, id_warning, id_gets, id_assoc;
1804# define ERR_MESG() STR_NEW2(mesg) /* to bypass Ripper DSL */
1805# define WARN_S_L(s,l) STR_NEW(s,l)
1806# define WARN_S(s) STR_NEW2(s)
1807# define WARN_I(i) INT2NUM(i)
1808# define WARN_ID(i) rb_id2str(i)
1809# define PRIsWARN PRIsVALUE
1810# define WARN_ARGS(fmt,n) p->value, id_warn, n, rb_usascii_str_new_lit(fmt)
1811# define WARN_ARGS_L(l,fmt,n) WARN_ARGS(fmt,n)
1812# ifdef HAVE_VA_ARGS_MACRO
1813# define WARN_CALL(...) rb_funcall(__VA_ARGS__)
1815# define WARN_CALL rb_funcall
1817# define WARNING_ARGS(fmt,n) p->value, id_warning, n, rb_usascii_str_new_lit(fmt)
1818# define WARNING_ARGS_L(l, fmt,n) WARNING_ARGS(fmt,n)
1819# ifdef HAVE_VA_ARGS_MACRO
1820# define WARNING_CALL(...) rb_funcall(__VA_ARGS__)
1822# define WARNING_CALL rb_funcall
1824# define compile_error ripper_compile_error
1826# define WARN_S_L(s,l) s
1829# define WARN_ID(i) rb_id2name(i)
1830# define PRIsWARN PRIsVALUE
1831# define WARN_ARGS(fmt,n) WARN_ARGS_L(p->ruby_sourceline,fmt,n)
1832# define WARN_ARGS_L(l,fmt,n) p->ruby_sourcefile, (l), (fmt)
1833# define WARN_CALL rb_compile_warn
1834# define WARNING_ARGS(fmt,n) WARN_ARGS(fmt,n)
1835# define WARNING_ARGS_L(l,fmt,n) WARN_ARGS_L(l,fmt,n)
1836# define WARNING_CALL rb_compile_warning
1837PRINTF_ARGS(static void parser_compile_error(struct parser_params*, const rb_code_location_t *loc, const char *fmt, ...), 3, 4);
1838# define compile_error(p, ...) parser_compile_error(p, NULL, __VA_ARGS__)
1841#define RNODE_EXITS(node) ((rb_node_exits_t*)(node))
1844add_block_exit(struct parser_params *p, NODE *node)
1847 compile_error(p, "unexpected null node");
1850 switch (nd_type(node)) {
1851 case NODE_BREAK: case NODE_NEXT: case NODE_REDO: break;
1853 compile_error(p, "add_block_exit: unexpected node: %s", parser_node_name(nd_type(node)));
1856 if (!p->ctxt.in_defined) {
1857 rb_node_exits_t *exits = p->exits;
1859 RNODE_EXITS(exits->nd_stts)->nd_chain = node;
1860 exits->nd_stts = node;
1866static rb_node_exits_t *
1867init_block_exit(struct parser_params *p)
1869 rb_node_exits_t *old = p->exits;
1870 rb_node_exits_t *exits = NODE_NEW_INTERNAL(NODE_EXITS, rb_node_exits_t);
1871 exits->nd_chain = 0;
1872 exits->nd_stts = RNODE(exits);
1877static rb_node_exits_t *
1878allow_block_exit(struct parser_params *p)
1880 rb_node_exits_t *exits = p->exits;
1886restore_block_exit(struct parser_params *p, rb_node_exits_t *exits)
1892clear_block_exit(struct parser_params *p, bool error)
1894 rb_node_exits_t *exits = p->exits;
1897 for (NODE *e = RNODE(exits); (e = RNODE_EXITS(e)->nd_chain) != 0; ) {
1898 switch (nd_type(e)) {
1900 yyerror1(&e->nd_loc, "Invalid break");
1903 yyerror1(&e->nd_loc, "Invalid next");
1906 yyerror1(&e->nd_loc, "Invalid redo");
1909 yyerror1(&e->nd_loc, "unexpected node");
1910 goto end_checks; /* no nd_chain */
1915 exits->nd_stts = RNODE(exits);
1916 exits->nd_chain = 0;
1919#define WARN_EOL(tok) \
1920 (looking_at_eol_p(p) ? \
1921 (void)rb_warning0("'" tok "' at the end of line without an expression") : \
1923static int looking_at_eol_p(struct parser_params *p);
1926get_nd_value(struct parser_params *p, NODE *node)
1928 switch (nd_type(node)) {
1930 return RNODE_GASGN(node)->nd_value;
1932 return RNODE_IASGN(node)->nd_value;
1934 return RNODE_LASGN(node)->nd_value;
1936 return RNODE_DASGN(node)->nd_value;
1938 return RNODE_MASGN(node)->nd_value;
1940 return RNODE_CVASGN(node)->nd_value;
1942 return RNODE_CDECL(node)->nd_value;
1944 compile_error(p, "get_nd_value: unexpected node: %s", parser_node_name(nd_type(node)));
1950set_nd_value(struct parser_params *p, NODE *node, NODE *rhs)
1952 switch (nd_type(node)) {
1954 RNODE_CDECL(node)->nd_value = rhs;
1957 RNODE_GASGN(node)->nd_value = rhs;
1960 RNODE_IASGN(node)->nd_value = rhs;
1963 RNODE_LASGN(node)->nd_value = rhs;
1966 RNODE_DASGN(node)->nd_value = rhs;
1969 RNODE_MASGN(node)->nd_value = rhs;
1972 RNODE_CVASGN(node)->nd_value = rhs;
1975 compile_error(p, "set_nd_value: unexpected node: %s", parser_node_name(nd_type(node)));
1981get_nd_vid(struct parser_params *p, NODE *node)
1983 switch (nd_type(node)) {
1985 return RNODE_CDECL(node)->nd_vid;
1987 return RNODE_GASGN(node)->nd_vid;
1989 return RNODE_IASGN(node)->nd_vid;
1991 return RNODE_LASGN(node)->nd_vid;
1993 return RNODE_DASGN(node)->nd_vid;
1995 return RNODE_CVASGN(node)->nd_vid;
1997 compile_error(p, "get_nd_vid: unexpected node: %s", parser_node_name(nd_type(node)));
2003get_nd_args(struct parser_params *p, NODE *node)
2005 switch (nd_type(node)) {
2007 return RNODE_CALL(node)->nd_args;
2009 return RNODE_OPCALL(node)->nd_args;
2011 return RNODE_FCALL(node)->nd_args;
2013 return RNODE_QCALL(node)->nd_args;
2015 return RNODE_SUPER(node)->nd_args;
2024 compile_error(p, "get_nd_args: unexpected node: %s", parser_node_name(nd_type(node)));
2030djb2(const uint8_t *str, size_t len)
2032 st_index_t hash = 5381;
2034 for (size_t i = 0; i < len; i++) {
2035 hash = ((hash << 5) + hash) + str[i];
2042parser_memhash(const void *ptr, long len)
2044 return djb2(ptr, len);
2047#define PARSER_STRING_PTR(str) (str->ptr)
2048#define PARSER_STRING_LEN(str) (str->len)
2049#define PARSER_STRING_END(str) (&str->ptr[str->len])
2050#define STRING_SIZE(str) ((size_t)str->len + 1)
2051#define STRING_TERM_LEN(str) (1)
2052#define STRING_TERM_FILL(str) (str->ptr[str->len] = '\0
')
2053#define PARSER_STRING_RESIZE_CAPA_TERM(p,str,capacity,termlen) do {\
2054 SIZED_REALLOC_N(str->ptr, char, (size_t)total + termlen, STRING_SIZE(str)); \
2057#define STRING_SET_LEN(str, n) do { \
2060#define PARSER_STRING_GETMEM(str, ptrvar, lenvar) \
2061 ((ptrvar) = str->ptr, \
2062 (lenvar) = str->len)
2065parser_string_char_at_end(struct parser_params *p, rb_parser_string_t *str, int when_empty)
2067 return PARSER_STRING_LEN(str) > 0 ? (unsigned char)PARSER_STRING_END(str)[-1] : when_empty;
2070static rb_parser_string_t *
2071rb_parser_string_new(rb_parser_t *p, const char *ptr, long len)
2073 rb_parser_string_t *str;
2076 rb_bug("negative string size (or size too big): %ld", len);
2079 str = xcalloc(1, sizeof(rb_parser_string_t));
2080 str->ptr = xcalloc(len + 1, sizeof(char));
2083 memcpy(PARSER_STRING_PTR(str), ptr, len);
2085 STRING_SET_LEN(str, len);
2086 STRING_TERM_FILL(str);
2090static rb_parser_string_t *
2091rb_parser_encoding_string_new(rb_parser_t *p, const char *ptr, long len, rb_encoding *enc)
2093 rb_parser_string_t *str = rb_parser_string_new(p, ptr, len);
2094 str->coderange = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2101rb_str_to_parser_string(rb_parser_t *p, VALUE str)
2104 rb_parser_string_t *ret = rb_parser_encoding_string_new(p, RSTRING_PTR(str), RSTRING_LEN(str), rb_enc_get(str));
2110rb_parser_string_free(rb_parser_t *p, rb_parser_string_t *str)
2113 xfree(PARSER_STRING_PTR(str));
2119rb_parser_str_hash(rb_parser_string_t *str)
2121 return parser_memhash((const void *)PARSER_STRING_PTR(str), PARSER_STRING_LEN(str));
2125rb_char_p_hash(const char *c)
2127 return parser_memhash((const void *)c, strlen(c));
2131rb_parser_str_capacity(rb_parser_string_t *str, const int termlen)
2133 return PARSER_STRING_LEN(str);
2138rb_parser_string_end(rb_parser_string_t *str)
2140 return &str->ptr[str->len];
2145rb_parser_string_set_encoding(rb_parser_string_t *str, rb_encoding *enc)
2151rb_parser_str_get_encoding(rb_parser_string_t *str)
2158PARSER_ENCODING_IS_ASCII8BIT(struct parser_params *p, rb_parser_string_t *str)
2160 return rb_parser_str_get_encoding(str) == rb_ascii8bit_encoding();
2165PARSER_ENC_CODERANGE(rb_parser_string_t *str)
2167 return str->coderange;
2171PARSER_ENC_CODERANGE_SET(rb_parser_string_t *str, int coderange)
2173 str->coderange = coderange;
2177PARSER_ENCODING_CODERANGE_SET(rb_parser_string_t *str, rb_encoding *enc, enum rb_parser_string_coderange_type cr)
2179 rb_parser_string_set_encoding(str, enc);
2180 PARSER_ENC_CODERANGE_SET(str, cr);
2184PARSER_ENC_CODERANGE_CLEAR(rb_parser_string_t *str)
2186 str->coderange = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2190PARSER_ENC_CODERANGE_ASCIIONLY(rb_parser_string_t *str)
2192 return PARSER_ENC_CODERANGE(str) == RB_PARSER_ENC_CODERANGE_7BIT;
2196PARSER_ENC_CODERANGE_CLEAN_P(int cr)
2198 return cr == RB_PARSER_ENC_CODERANGE_7BIT || cr == RB_PARSER_ENC_CODERANGE_VALID;
2202rb_parser_search_nonascii(const char *p, const char *e)
2206 for (; s < e; s++) {
2207 if (*s & 0x80) return s;
2214rb_parser_coderange_scan(struct parser_params *p, const char *ptr, long len, rb_encoding *enc)
2216 const char *e = ptr + len;
2218 if (enc == rb_ascii8bit_encoding()) {
2219 /* enc is ASCII-8BIT. ASCII-8BIT string never be broken. */
2220 ptr = rb_parser_search_nonascii(ptr, e);
2221 return ptr ? RB_PARSER_ENC_CODERANGE_VALID : RB_PARSER_ENC_CODERANGE_7BIT;
2224 /* parser string encoding is always asciicompat */
2225 ptr = rb_parser_search_nonascii(ptr, e);
2226 if (!ptr) return RB_PARSER_ENC_CODERANGE_7BIT;
2228 int ret = rb_enc_precise_mbclen(ptr, e, enc);
2229 if (!MBCLEN_CHARFOUND_P(ret)) return RB_PARSER_ENC_CODERANGE_BROKEN;
2230 ptr += MBCLEN_CHARFOUND_LEN(ret);
2231 if (ptr == e) break;
2232 ptr = rb_parser_search_nonascii(ptr, e);
2236 return RB_PARSER_ENC_CODERANGE_VALID;
2240rb_parser_enc_coderange_scan(struct parser_params *p, rb_parser_string_t *str, rb_encoding *enc)
2242 return rb_parser_coderange_scan(p, PARSER_STRING_PTR(str), PARSER_STRING_LEN(str), enc);
2246rb_parser_enc_str_coderange(struct parser_params *p, rb_parser_string_t *str)
2248 int cr = PARSER_ENC_CODERANGE(str);
2250 if (cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2251 cr = rb_parser_enc_coderange_scan(p, str, rb_parser_str_get_encoding(str));
2252 PARSER_ENC_CODERANGE_SET(str, cr);
2258static rb_parser_string_t *
2259rb_parser_enc_associate(struct parser_params *p, rb_parser_string_t *str, rb_encoding *enc)
2261 if (rb_parser_str_get_encoding(str) == enc)
2263 if (!PARSER_ENC_CODERANGE_ASCIIONLY(str)) {
2264 PARSER_ENC_CODERANGE_CLEAR(str);
2266 rb_parser_string_set_encoding(str, enc);
2271rb_parser_is_ascii_string(struct parser_params *p, rb_parser_string_t *str)
2273 return rb_parser_enc_str_coderange(p, str) == RB_PARSER_ENC_CODERANGE_7BIT;
2277rb_parser_enc_compatible(struct parser_params *p, rb_parser_string_t *str1, rb_parser_string_t *str2)
2279 rb_encoding *enc1 = rb_parser_str_get_encoding(str1);
2280 rb_encoding *enc2 = rb_parser_str_get_encoding(str2);
2282 if (enc1 == NULL || enc2 == NULL)
2289 if (PARSER_STRING_LEN(str2) == 0)
2291 if (PARSER_STRING_LEN(str1) == 0)
2292 return rb_parser_is_ascii_string(p, str2) ? enc1 : enc2;
2296 cr1 = rb_parser_enc_str_coderange(p, str1);
2297 cr2 = rb_parser_enc_str_coderange(p, str2);
2300 if (cr1 == RB_PARSER_ENC_CODERANGE_7BIT) return enc2;
2301 if (cr2 == RB_PARSER_ENC_CODERANGE_7BIT) return enc1;
2304 if (cr2 == RB_PARSER_ENC_CODERANGE_7BIT) {
2308 if (cr1 == RB_PARSER_ENC_CODERANGE_7BIT) {
2316rb_parser_str_modify(rb_parser_string_t *str)
2318 PARSER_ENC_CODERANGE_CLEAR(str);
2322rb_parser_str_set_len(struct parser_params *p, rb_parser_string_t *str, long len)
2325 const int termlen = STRING_TERM_LEN(str);
2327 if (len > (capa = (long)(rb_parser_str_capacity(str, termlen))) || len < 0) {
2328 rb_bug("probable buffer overflow: %ld for %ld", len, capa);
2331 int cr = PARSER_ENC_CODERANGE(str);
2332 if (cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2333 /* Leave unknown. */
2335 else if (len > PARSER_STRING_LEN(str)) {
2336 PARSER_ENC_CODERANGE_SET(str, RB_PARSER_ENC_CODERANGE_UNKNOWN);
2338 else if (len < PARSER_STRING_LEN(str)) {
2339 if (cr != RB_PARSER_ENC_CODERANGE_7BIT) {
2340 /* ASCII-only string is keeping after truncated. Valid
2341 * and broken may be invalid or valid, leave unknown. */
2342 PARSER_ENC_CODERANGE_SET(str, RB_PARSER_ENC_CODERANGE_UNKNOWN);
2346 STRING_SET_LEN(str, len);
2347 STRING_TERM_FILL(str);
2350static rb_parser_string_t *
2351rb_parser_str_buf_cat(struct parser_params *p, rb_parser_string_t *str, const char *ptr, long len)
2353 rb_parser_str_modify(str);
2354 if (len == 0) return 0;
2356 long total, olen, off = -1;
2358 const int termlen = STRING_TERM_LEN(str);
2360 PARSER_STRING_GETMEM(str, sptr, olen);
2361 if (ptr >= sptr && ptr <= sptr + olen) {
2365 if (olen > LONG_MAX - len) {
2366 compile_error(p, "string sizes too big");
2370 PARSER_STRING_RESIZE_CAPA_TERM(p, str, total, termlen);
2371 sptr = PARSER_STRING_PTR(str);
2375 memcpy(sptr + olen, ptr, len);
2376 STRING_SET_LEN(str, total);
2377 STRING_TERM_FILL(str);
2382#define parser_str_cat(str, ptr, len) rb_parser_str_buf_cat(p, str, ptr, len)
2383#define parser_str_cat_cstr(str, lit) rb_parser_str_buf_cat(p, str, lit, strlen(lit))
2385static rb_parser_string_t *
2386rb_parser_enc_cr_str_buf_cat(struct parser_params *p, rb_parser_string_t *str, const char *ptr, long len,
2387 rb_encoding *ptr_enc, int ptr_cr, int *ptr_cr_ret)
2390 rb_encoding *str_enc, *res_enc;
2392 str_enc = rb_parser_str_get_encoding(str);
2393 str_cr = PARSER_STRING_LEN(str) ? PARSER_ENC_CODERANGE(str) : RB_PARSER_ENC_CODERANGE_7BIT;
2395 if (str_enc == ptr_enc) {
2396 if (str_cr != RB_PARSER_ENC_CODERANGE_UNKNOWN && ptr_cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2397 ptr_cr = rb_parser_coderange_scan(p, ptr, len, ptr_enc);
2401 /* parser string encoding is always asciicompat */
2402 if (ptr_cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2403 ptr_cr = rb_parser_coderange_scan(p, ptr, len, ptr_enc);
2405 if (str_cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2406 if (str_enc == rb_ascii8bit_encoding() || ptr_cr != RB_PARSER_ENC_CODERANGE_7BIT) {
2407 str_cr = rb_parser_enc_str_coderange(p, str);
2412 *ptr_cr_ret = ptr_cr;
2414 if (str_enc != ptr_enc &&
2415 str_cr != RB_PARSER_ENC_CODERANGE_7BIT &&
2416 ptr_cr != RB_PARSER_ENC_CODERANGE_7BIT) {
2420 if (str_cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2422 res_cr = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2424 else if (str_cr == RB_PARSER_ENC_CODERANGE_7BIT) {
2425 if (ptr_cr == RB_PARSER_ENC_CODERANGE_7BIT) {
2427 res_cr = RB_PARSER_ENC_CODERANGE_7BIT;
2434 else if (str_cr == RB_PARSER_ENC_CODERANGE_VALID) {
2436 if (PARSER_ENC_CODERANGE_CLEAN_P(ptr_cr))
2441 else { /* str_cr == RB_PARSER_ENC_CODERANGE_BROKEN */
2444 if (0 < len) res_cr = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2448 compile_error(p, "negative string size (or size too big)");
2450 parser_str_cat(str, ptr, len);
2451 PARSER_ENCODING_CODERANGE_SET(str, res_enc, res_cr);
2455 compile_error(p, "incompatible character encodings: %s and %s",
2456 rb_enc_name(str_enc), rb_enc_name(ptr_enc));
2457 UNREACHABLE_RETURN(0);
2461static rb_parser_string_t *
2462rb_parser_enc_str_buf_cat(struct parser_params *p, rb_parser_string_t *str, const char *ptr, long len,
2463 rb_encoding *ptr_enc)
2465 return rb_parser_enc_cr_str_buf_cat(p, str, ptr, len, ptr_enc, RB_PARSER_ENC_CODERANGE_UNKNOWN, NULL);
2468static rb_parser_string_t *
2469rb_parser_str_buf_append(struct parser_params *p, rb_parser_string_t *str, rb_parser_string_t *str2)
2471 int str2_cr = rb_parser_enc_str_coderange(p, str2);
2473 rb_parser_enc_cr_str_buf_cat(p, str, PARSER_STRING_PTR(str2), PARSER_STRING_LEN(str2),
2474 rb_parser_str_get_encoding(str2), str2_cr, &str2_cr);
2476 PARSER_ENC_CODERANGE_SET(str2, str2_cr);
2481static rb_parser_string_t *
2482rb_parser_str_resize(struct parser_params *p, rb_parser_string_t *str, long len)
2485 rb_bug("negative string size (or size too big)");
2488 long slen = PARSER_STRING_LEN(str);
2490 if (slen > len && PARSER_ENC_CODERANGE(str) != RB_PARSER_ENC_CODERANGE_7BIT) {
2491 PARSER_ENC_CODERANGE_CLEAR(str);
2496 const int termlen = STRING_TERM_LEN(str);
2498 if ((capa = slen) < len) {
2499 SIZED_REALLOC_N(str->ptr, char, (size_t)len + termlen, STRING_SIZE(str));
2501 else if (len == slen) return str;
2502 STRING_SET_LEN(str, len);
2503 STRING_TERM_FILL(str);
2508# define PARSER_ENC_STRING_GETMEM(str, ptrvar, lenvar, encvar) \
2509 ((ptrvar) = str->ptr, \
2510 (lenvar) = str->len, \
2511 (encvar) = str->enc)
2514rb_parser_string_hash_cmp(rb_parser_string_t *str1, rb_parser_string_t *str2)
2517 const char *ptr1, *ptr2;
2518 rb_encoding *enc1, *enc2;
2520 PARSER_ENC_STRING_GETMEM(str1, ptr1, len1, enc1);
2521 PARSER_ENC_STRING_GETMEM(str2, ptr2, len2, enc2);
2523 return (len1 != len2 ||
2525 memcmp(ptr1, ptr2, len1) != 0);
2529rb_parser_ary_extend(rb_parser_t *p, rb_parser_ary_t *ary, long len)
2532 if (ary->capa < len) {
2534 ary->data = (rb_parser_ary_data *)xrealloc(ary->data, sizeof(rb_parser_ary_data) * len);
2535 for (i = ary->len; i < len; i++) {
2542 * Do not call this directly.
2543 * Use rb_parser_ary_new_capa_for_XXX() instead.
2545static rb_parser_ary_t *
2546parser_ary_new_capa(rb_parser_t *p, long len)
2549 rb_bug("negative array size (or size too big): %ld", len);
2551 rb_parser_ary_t *ary = xcalloc(1, sizeof(rb_parser_ary_t));
2556 ary->data = (rb_parser_ary_data *)xcalloc(len, sizeof(rb_parser_ary_data));
2565static rb_parser_ary_t *
2566rb_parser_ary_new_capa_for_script_line(rb_parser_t *p, long len)
2568 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2569 ary->data_type = PARSER_ARY_DATA_SCRIPT_LINE;
2573static rb_parser_ary_t *
2574rb_parser_ary_new_capa_for_ast_token(rb_parser_t *p, long len)
2576 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2577 ary->data_type = PARSER_ARY_DATA_AST_TOKEN;
2582static rb_parser_ary_t *
2583rb_parser_ary_new_capa_for_node(rb_parser_t *p, long len)
2585 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2586 ary->data_type = PARSER_ARY_DATA_NODE;
2591 * Do not call this directly.
2592 * Use rb_parser_ary_push_XXX() instead.
2594static rb_parser_ary_t *
2595parser_ary_push(rb_parser_t *p, rb_parser_ary_t *ary, rb_parser_ary_data val)
2597 if (ary->len == ary->capa) {
2598 rb_parser_ary_extend(p, ary, ary->len == 0 ? 1 : ary->len * 2);
2600 ary->data[ary->len++] = val;
2605static rb_parser_ary_t *
2606rb_parser_ary_push_ast_token(rb_parser_t *p, rb_parser_ary_t *ary, rb_parser_ast_token_t *val)
2608 if (ary->data_type != PARSER_ARY_DATA_AST_TOKEN) {
2609 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2611 return parser_ary_push(p, ary, val);
2614static rb_parser_ary_t *
2615rb_parser_ary_push_script_line(rb_parser_t *p, rb_parser_ary_t *ary, rb_parser_string_t *val)
2617 if (ary->data_type != PARSER_ARY_DATA_SCRIPT_LINE) {
2618 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2620 return parser_ary_push(p, ary, val);
2624static rb_parser_ary_t *
2625rb_parser_ary_push_node(rb_parser_t *p, rb_parser_ary_t *ary, NODE *val)
2627 if (ary->data_type != PARSER_ARY_DATA_NODE) {
2628 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2630 return parser_ary_push(p, ary, val);
2635rb_parser_ast_token_free(rb_parser_t *p, rb_parser_ast_token_t *token)
2638 rb_parser_string_free(p, token->str);
2643rb_parser_ary_free(rb_parser_t *p, rb_parser_ary_t *ary)
2645# define foreach_ary(ptr) \
2646 for (rb_parser_ary_data *ptr = ary->data, *const end_ary_data = ptr + ary->len; \
2647 ptr < end_ary_data; ptr++)
2648 switch (ary->data_type) {
2649 case PARSER_ARY_DATA_AST_TOKEN:
2650 foreach_ary(data) {rb_parser_ast_token_free(p, *data);}
2652 case PARSER_ARY_DATA_SCRIPT_LINE:
2653 foreach_ary(data) {rb_parser_string_free(p, *data);}
2655 case PARSER_ARY_DATA_NODE:
2656 /* Do nothing because nodes are freed when rb_ast_t is freed */
2659 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2673# define YY_CAST(Type, Val) static_cast<Type> (Val)
2674# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
2676# define YY_CAST(Type, Val) ((Type) (Val))
2677# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
2681# if defined __cplusplus
2682# if 201103L <= __cplusplus
2683# define YY_NULLPTR nullptr
2685# define YY_NULLPTR 0
2688# define YY_NULLPTR ((void*)0)
2696 YYSYMBOL_YYEMPTY = -2,
2697 YYSYMBOL_YYEOF = 0, /* "end-of-input" */
2698 YYSYMBOL_YYerror = 1, /* error */
2699 YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
2700 YYSYMBOL_keyword_class = 3, /* "'class'" */
2701 YYSYMBOL_keyword_module = 4, /* "'module
'" */
2702 YYSYMBOL_keyword_def = 5, /* "'def
'" */
2703 YYSYMBOL_keyword_undef = 6, /* "'undef
'" */
2704 YYSYMBOL_keyword_begin = 7, /* "'begin
'" */
2705 YYSYMBOL_keyword_rescue = 8, /* "'rescue
'" */
2706 YYSYMBOL_keyword_ensure = 9, /* "'ensure
'" */
2707 YYSYMBOL_keyword_end = 10, /* "'end
'" */
2708 YYSYMBOL_keyword_if = 11, /* "'if'" */
2709 YYSYMBOL_keyword_unless = 12, /* "'unless
'" */
2710 YYSYMBOL_keyword_then = 13, /* "'then
'" */
2711 YYSYMBOL_keyword_elsif = 14, /* "'elsif
'" */
2712 YYSYMBOL_keyword_else = 15, /* "'else'" */
2713 YYSYMBOL_keyword_case = 16, /* "'case'" */
2714 YYSYMBOL_keyword_when = 17, /* "'when
'" */
2715 YYSYMBOL_keyword_while = 18, /* "'while'" */
2716 YYSYMBOL_keyword_until = 19, /* "'until
'" */
2717 YYSYMBOL_keyword_for = 20, /* "'for'" */
2718 YYSYMBOL_keyword_break = 21, /* "'break'" */
2719 YYSYMBOL_keyword_next = 22, /* "'next
'" */
2720 YYSYMBOL_keyword_redo = 23, /* "'redo
'" */
2721 YYSYMBOL_keyword_retry = 24, /* "'retry
'" */
2722 YYSYMBOL_keyword_in = 25, /* "'in
'" */
2723 YYSYMBOL_keyword_do = 26, /* "'do'" */
2724 YYSYMBOL_keyword_do_cond = 27, /* "'do' for condition" */
2725 YYSYMBOL_keyword_do_block = 28, /* "'do' for block" */
2726 YYSYMBOL_keyword_do_LAMBDA = 29, /* "'do' for lambda" */
2727 YYSYMBOL_keyword_return = 30, /* "'return'" */
2728 YYSYMBOL_keyword_yield = 31, /* "'yield
'" */
2729 YYSYMBOL_keyword_super = 32, /* "'super
'" */
2730 YYSYMBOL_keyword_self = 33, /* "'self
'" */
2731 YYSYMBOL_keyword_nil = 34, /* "'nil
'" */
2732 YYSYMBOL_keyword_true = 35, /* "'true'" */
2733 YYSYMBOL_keyword_false = 36, /* "'false'" */
2734 YYSYMBOL_keyword_and = 37, /* "'and
'" */
2735 YYSYMBOL_keyword_or = 38, /* "'or
'" */
2736 YYSYMBOL_keyword_not = 39, /* "'not
'" */
2737 YYSYMBOL_modifier_if = 40, /* "'if' modifier" */
2738 YYSYMBOL_modifier_unless = 41, /* "'unless
' modifier" */
2739 YYSYMBOL_modifier_while = 42, /* "'while' modifier" */
2740 YYSYMBOL_modifier_until = 43, /* "'until
' modifier" */
2741 YYSYMBOL_modifier_rescue = 44, /* "'rescue
' modifier" */
2742 YYSYMBOL_keyword_alias = 45, /* "'alias
'" */
2743 YYSYMBOL_keyword_defined = 46, /* "'defined?
'" */
2744 YYSYMBOL_keyword_BEGIN = 47, /* "'BEGIN
'" */
2745 YYSYMBOL_keyword_END = 48, /* "'END
'" */
2746 YYSYMBOL_keyword__LINE__ = 49, /* "'__LINE__
'" */
2747 YYSYMBOL_keyword__FILE__ = 50, /* "'__FILE__
'" */
2748 YYSYMBOL_keyword__ENCODING__ = 51, /* "'__ENCODING__
'" */
2749 YYSYMBOL_tIDENTIFIER = 52, /* "local variable or method" */
2750 YYSYMBOL_tFID = 53, /* "method" */
2751 YYSYMBOL_tGVAR = 54, /* "global variable" */
2752 YYSYMBOL_tIVAR = 55, /* "instance variable" */
2753 YYSYMBOL_tCONSTANT = 56, /* "constant" */
2754 YYSYMBOL_tCVAR = 57, /* "class variable" */
2755 YYSYMBOL_tLABEL = 58, /* "label" */
2756 YYSYMBOL_tINTEGER = 59, /* "integer literal" */
2757 YYSYMBOL_tFLOAT = 60, /* "float literal" */
2758 YYSYMBOL_tRATIONAL = 61, /* "rational literal" */
2759 YYSYMBOL_tIMAGINARY = 62, /* "imaginary literal" */
2760 YYSYMBOL_tCHAR = 63, /* "char literal" */
2761 YYSYMBOL_tNTH_REF = 64, /* "numbered reference" */
2762 YYSYMBOL_tBACK_REF = 65, /* "back reference" */
2763 YYSYMBOL_tSTRING_CONTENT = 66, /* "literal content" */
2764 YYSYMBOL_tREGEXP_END = 67, /* tREGEXP_END */
2765 YYSYMBOL_tDUMNY_END = 68, /* "dummy end" */
2766 YYSYMBOL_69_ = 69, /* '.
' */
2767 YYSYMBOL_70_backslash_ = 70, /* "backslash" */
2768 YYSYMBOL_tSP = 71, /* "escaped space" */
2769 YYSYMBOL_72_escaped_horizontal_tab_ = 72, /* "escaped horizontal tab" */
2770 YYSYMBOL_73_escaped_form_feed_ = 73, /* "escaped form feed" */
2771 YYSYMBOL_74_escaped_carriage_return_ = 74, /* "escaped carriage return" */
2772 YYSYMBOL_75_escaped_vertical_tab_ = 75, /* "escaped vertical tab" */
2773 YYSYMBOL_tUPLUS = 76, /* "unary+" */
2774 YYSYMBOL_tUMINUS = 77, /* "unary-" */
2775 YYSYMBOL_tPOW = 78, /* "**" */
2776 YYSYMBOL_tCMP = 79, /* "<=>" */
2777 YYSYMBOL_tEQ = 80, /* "==" */
2778 YYSYMBOL_tEQQ = 81, /* "===" */
2779 YYSYMBOL_tNEQ = 82, /* "!=" */
2780 YYSYMBOL_tGEQ = 83, /* ">=" */
2781 YYSYMBOL_tLEQ = 84, /* "<=" */
2782 YYSYMBOL_tANDOP = 85, /* "&&" */
2783 YYSYMBOL_tOROP = 86, /* "||" */
2784 YYSYMBOL_tMATCH = 87, /* "=~" */
2785 YYSYMBOL_tNMATCH = 88, /* "!~" */
2786 YYSYMBOL_tDOT2 = 89, /* ".." */
2787 YYSYMBOL_tDOT3 = 90, /* "..." */
2788 YYSYMBOL_tBDOT2 = 91, /* "(.." */
2789 YYSYMBOL_tBDOT3 = 92, /* "(..." */
2790 YYSYMBOL_tAREF = 93, /* "[]" */
2791 YYSYMBOL_tASET = 94, /* "[]=" */
2792 YYSYMBOL_tLSHFT = 95, /* "<<" */
2793 YYSYMBOL_tRSHFT = 96, /* ">>" */
2794 YYSYMBOL_tANDDOT = 97, /* "&." */
2795 YYSYMBOL_tCOLON2 = 98, /* "::" */
2796 YYSYMBOL_tCOLON3 = 99, /* ":: at EXPR_BEG" */
2797 YYSYMBOL_tOP_ASGN = 100, /* "operator-assignment" */
2798 YYSYMBOL_tASSOC = 101, /* "=>" */
2799 YYSYMBOL_tLPAREN = 102, /* "(" */
2800 YYSYMBOL_tLPAREN_ARG = 103, /* "( arg" */
2801 YYSYMBOL_tLBRACK = 104, /* "[" */
2802 YYSYMBOL_tLBRACE = 105, /* "{" */
2803 YYSYMBOL_tLBRACE_ARG = 106, /* "{ arg" */
2804 YYSYMBOL_tSTAR = 107, /* "*" */
2805 YYSYMBOL_tDSTAR = 108, /* "**arg" */
2806 YYSYMBOL_tAMPER = 109, /* "&" */
2807 YYSYMBOL_tLAMBDA = 110, /* "->" */
2808 YYSYMBOL_tSYMBEG = 111, /* "symbol literal" */
2809 YYSYMBOL_tSTRING_BEG = 112, /* "string literal" */
2810 YYSYMBOL_tXSTRING_BEG = 113, /* "backtick literal" */
2811 YYSYMBOL_tREGEXP_BEG = 114, /* "regexp literal" */
2812 YYSYMBOL_tWORDS_BEG = 115, /* "word list" */
2813 YYSYMBOL_tQWORDS_BEG = 116, /* "verbatim word list" */
2814 YYSYMBOL_tSYMBOLS_BEG = 117, /* "symbol list" */
2815 YYSYMBOL_tQSYMBOLS_BEG = 118, /* "verbatim symbol list" */
2816 YYSYMBOL_tSTRING_END = 119, /* "terminator" */
2817 YYSYMBOL_tSTRING_DEND = 120, /* "'}
'" */
2818 YYSYMBOL_tSTRING_DBEG = 121, /* "'#{
'" */
2819 YYSYMBOL_tSTRING_DVAR = 122, /* tSTRING_DVAR */
2820 YYSYMBOL_tLAMBEG = 123, /* tLAMBEG */
2821 YYSYMBOL_tLABEL_END = 124, /* tLABEL_END */
2822 YYSYMBOL_tIGNORED_NL = 125, /* tIGNORED_NL */
2823 YYSYMBOL_tCOMMENT = 126, /* tCOMMENT */
2824 YYSYMBOL_tEMBDOC_BEG = 127, /* tEMBDOC_BEG */
2825 YYSYMBOL_tEMBDOC = 128, /* tEMBDOC */
2826 YYSYMBOL_tEMBDOC_END = 129, /* tEMBDOC_END */
2827 YYSYMBOL_tHEREDOC_BEG = 130, /* tHEREDOC_BEG */
2828 YYSYMBOL_tHEREDOC_END = 131, /* tHEREDOC_END */
2829 YYSYMBOL_k__END__ = 132, /* k__END__ */
2830 YYSYMBOL_tLOWEST = 133, /* tLOWEST */
2831 YYSYMBOL_134_ = 134, /* '=
' */
2832 YYSYMBOL_135_ = 135, /* '?
' */
2833 YYSYMBOL_136_ = 136, /* ':
' */
2834 YYSYMBOL_137_ = 137, /* '>
' */
2835 YYSYMBOL_138_ = 138, /* '<
' */
2836 YYSYMBOL_139_ = 139, /* '|
' */
2837 YYSYMBOL_140_ = 140, /* '^
' */
2838 YYSYMBOL_141_ = 141, /* '&
' */
2839 YYSYMBOL_142_ = 142, /* '+
' */
2840 YYSYMBOL_143_ = 143, /* '-
' */
2841 YYSYMBOL_144_ = 144, /* '*
' */
2842 YYSYMBOL_145_ = 145, /* '/
' */
2843 YYSYMBOL_146_ = 146, /* '%
' */
2844 YYSYMBOL_tUMINUS_NUM = 147, /* tUMINUS_NUM */
2845 YYSYMBOL_148_ = 148, /* '!
' */
2846 YYSYMBOL_149_ = 149, /* '~
' */
2847 YYSYMBOL_tLAST_TOKEN = 150, /* tLAST_TOKEN */
2848 YYSYMBOL_151_ = 151, /* '{
' */
2849 YYSYMBOL_152_ = 152, /* '}
' */
2850 YYSYMBOL_153_ = 153, /* '[
' */
2851 YYSYMBOL_154_n_ = 154, /* '\n
' */
2852 YYSYMBOL_155_ = 155, /* ',
' */
2853 YYSYMBOL_156_ = 156, /* '`
' */
2854 YYSYMBOL_157_ = 157, /* '(
' */
2855 YYSYMBOL_158_ = 158, /* ')
' */
2856 YYSYMBOL_159_ = 159, /* ']
' */
2857 YYSYMBOL_160_ = 160, /* ';
' */
2858 YYSYMBOL_161_ = 161, /* ' ' */
2859 YYSYMBOL_YYACCEPT = 162, /* $accept */
2860 YYSYMBOL_option_terms = 163, /* option_terms */
2861 YYSYMBOL_compstmt_top_stmts = 164, /* compstmt_top_stmts */
2862 YYSYMBOL_165_1 = 165, /* $@1 */
2863 YYSYMBOL_program = 166, /* program */
2864 YYSYMBOL_top_stmts = 167, /* top_stmts */
2865 YYSYMBOL_top_stmt = 168, /* top_stmt */
2866 YYSYMBOL_block_open = 169, /* block_open */
2867 YYSYMBOL_begin_block = 170, /* begin_block */
2868 YYSYMBOL_compstmt_stmts = 171, /* compstmt_stmts */
2869 YYSYMBOL_172_2 = 172, /* $@2 */
2870 YYSYMBOL_173_3 = 173, /* $@3 */
2871 YYSYMBOL_bodystmt = 174, /* bodystmt */
2872 YYSYMBOL_175_4 = 175, /* $@4 */
2873 YYSYMBOL_stmts = 176, /* stmts */
2874 YYSYMBOL_stmt_or_begin = 177, /* stmt_or_begin */
2875 YYSYMBOL_178_5 = 178, /* $@5 */
2876 YYSYMBOL_allow_exits = 179, /* allow_exits */
2877 YYSYMBOL_k_END = 180, /* k_END */
2878 YYSYMBOL_181_6 = 181, /* $@6 */
2879 YYSYMBOL_stmt = 182, /* stmt */
2880 YYSYMBOL_asgn_lhs_mrhs = 183, /* asgn_lhs_mrhs */
2881 YYSYMBOL_asgn_lhs_command_rhs = 184, /* asgn_lhs_command_rhs */
2882 YYSYMBOL_command_asgn = 185, /* command_asgn */
2883 YYSYMBOL_op_asgn_command_rhs = 186, /* op_asgn_command_rhs */
2884 YYSYMBOL_def_endless_method_endless_command = 187, /* def_endless_method_endless_command */
2885 YYSYMBOL_endless_command = 188, /* endless_command */
2886 YYSYMBOL_option__n_ = 189, /* option_'\n
' */
2887 YYSYMBOL_command_rhs = 190, /* command_rhs */
2888 YYSYMBOL_expr = 191, /* expr */
2889 YYSYMBOL_192_7 = 192, /* $@7 */
2890 YYSYMBOL_193_8 = 193, /* $@8 */
2891 YYSYMBOL_def_name = 194, /* def_name */
2892 YYSYMBOL_defn_head = 195, /* defn_head */
2893 YYSYMBOL_196_9 = 196, /* $@9 */
2894 YYSYMBOL_defs_head = 197, /* defs_head */
2895 YYSYMBOL_value_expr_expr = 198, /* value_expr_expr */
2896 YYSYMBOL_expr_value = 199, /* expr_value */
2897 YYSYMBOL_200_10 = 200, /* $@10 */
2898 YYSYMBOL_201_11 = 201, /* $@11 */
2899 YYSYMBOL_expr_value_do = 202, /* expr_value_do */
2900 YYSYMBOL_command_call = 203, /* command_call */
2901 YYSYMBOL_value_expr_command_call = 204, /* value_expr_command_call */
2902 YYSYMBOL_command_call_value = 205, /* command_call_value */
2903 YYSYMBOL_block_command = 206, /* block_command */
2904 YYSYMBOL_cmd_brace_block = 207, /* cmd_brace_block */
2905 YYSYMBOL_fcall = 208, /* fcall */
2906 YYSYMBOL_command = 209, /* command */
2907 YYSYMBOL_mlhs = 210, /* mlhs */
2908 YYSYMBOL_mlhs_inner = 211, /* mlhs_inner */
2909 YYSYMBOL_mlhs_basic = 212, /* mlhs_basic */
2910 YYSYMBOL_mlhs_mlhs_item = 213, /* mlhs_mlhs_item */
2911 YYSYMBOL_mlhs_item = 214, /* mlhs_item */
2912 YYSYMBOL_mlhs_head = 215, /* mlhs_head */
2913 YYSYMBOL_mlhs_node = 216, /* mlhs_node */
2914 YYSYMBOL_lhs = 217, /* lhs */
2915 YYSYMBOL_cname = 218, /* cname */
2916 YYSYMBOL_cpath = 219, /* cpath */
2917 YYSYMBOL_fname = 220, /* fname */
2918 YYSYMBOL_fitem = 221, /* fitem */
2919 YYSYMBOL_undef_list = 222, /* undef_list */
2920 YYSYMBOL_223_12 = 223, /* $@12 */
2921 YYSYMBOL_op = 224, /* op */
2922 YYSYMBOL_reswords = 225, /* reswords */
2923 YYSYMBOL_asgn_lhs_arg_rhs = 226, /* asgn_lhs_arg_rhs */
2924 YYSYMBOL_arg = 227, /* arg */
2925 YYSYMBOL_op_asgn_arg_rhs = 228, /* op_asgn_arg_rhs */
2926 YYSYMBOL_def_endless_method_endless_arg = 229, /* def_endless_method_endless_arg */
2927 YYSYMBOL_endless_arg = 230, /* endless_arg */
2928 YYSYMBOL_relop = 231, /* relop */
2929 YYSYMBOL_rel_expr = 232, /* rel_expr */
2930 YYSYMBOL_lex_ctxt = 233, /* lex_ctxt */
2931 YYSYMBOL_begin_defined = 234, /* begin_defined */
2932 YYSYMBOL_after_rescue = 235, /* after_rescue */
2933 YYSYMBOL_value_expr_arg = 236, /* value_expr_arg */
2934 YYSYMBOL_arg_value = 237, /* arg_value */
2935 YYSYMBOL_aref_args = 238, /* aref_args */
2936 YYSYMBOL_arg_rhs = 239, /* arg_rhs */
2937 YYSYMBOL_paren_args = 240, /* paren_args */
2938 YYSYMBOL_opt_paren_args = 241, /* opt_paren_args */
2939 YYSYMBOL_opt_call_args = 242, /* opt_call_args */
2940 YYSYMBOL_value_expr_command = 243, /* value_expr_command */
2941 YYSYMBOL_call_args = 244, /* call_args */
2942 YYSYMBOL_245_13 = 245, /* $@13 */
2943 YYSYMBOL_command_args = 246, /* command_args */
2944 YYSYMBOL_block_arg = 247, /* block_arg */
2945 YYSYMBOL_opt_block_arg = 248, /* opt_block_arg */
2946 YYSYMBOL_args = 249, /* args */
2947 YYSYMBOL_arg_splat = 250, /* arg_splat */
2948 YYSYMBOL_mrhs_arg = 251, /* mrhs_arg */
2949 YYSYMBOL_mrhs = 252, /* mrhs */
2950 YYSYMBOL_primary = 253, /* primary */
2951 YYSYMBOL_254_14 = 254, /* $@14 */
2952 YYSYMBOL_255_15 = 255, /* $@15 */
2953 YYSYMBOL_256_16 = 256, /* @16 */
2954 YYSYMBOL_257_17 = 257, /* @17 */
2955 YYSYMBOL_258_18 = 258, /* $@18 */
2956 YYSYMBOL_259_19 = 259, /* $@19 */
2957 YYSYMBOL_260_20 = 260, /* $@20 */
2958 YYSYMBOL_261_21 = 261, /* $@21 */
2959 YYSYMBOL_262_22 = 262, /* $@22 */
2960 YYSYMBOL_263_23 = 263, /* $@23 */
2961 YYSYMBOL_264_24 = 264, /* $@24 */
2962 YYSYMBOL_value_expr_primary = 265, /* value_expr_primary */
2963 YYSYMBOL_primary_value = 266, /* primary_value */
2964 YYSYMBOL_k_begin = 267, /* k_begin */
2965 YYSYMBOL_k_if = 268, /* k_if */
2966 YYSYMBOL_k_unless = 269, /* k_unless */
2967 YYSYMBOL_k_while = 270, /* k_while */
2968 YYSYMBOL_k_until = 271, /* k_until */
2969 YYSYMBOL_k_case = 272, /* k_case */
2970 YYSYMBOL_k_for = 273, /* k_for */
2971 YYSYMBOL_k_class = 274, /* k_class */
2972 YYSYMBOL_k_module = 275, /* k_module */
2973 YYSYMBOL_k_def = 276, /* k_def */
2974 YYSYMBOL_k_do = 277, /* k_do */
2975 YYSYMBOL_k_do_block = 278, /* k_do_block */
2976 YYSYMBOL_k_rescue = 279, /* k_rescue */
2977 YYSYMBOL_k_ensure = 280, /* k_ensure */
2978 YYSYMBOL_k_when = 281, /* k_when */
2979 YYSYMBOL_k_else = 282, /* k_else */
2980 YYSYMBOL_k_elsif = 283, /* k_elsif */
2981 YYSYMBOL_k_end = 284, /* k_end */
2982 YYSYMBOL_k_return = 285, /* k_return */
2983 YYSYMBOL_k_yield = 286, /* k_yield */
2984 YYSYMBOL_then = 287, /* then */
2985 YYSYMBOL_do = 288, /* do */
2986 YYSYMBOL_if_tail = 289, /* if_tail */
2987 YYSYMBOL_opt_else = 290, /* opt_else */
2988 YYSYMBOL_for_var = 291, /* for_var */
2989 YYSYMBOL_f_marg = 292, /* f_marg */
2990 YYSYMBOL_mlhs_f_marg = 293, /* mlhs_f_marg */
2991 YYSYMBOL_f_margs = 294, /* f_margs */
2992 YYSYMBOL_f_rest_marg = 295, /* f_rest_marg */
2993 YYSYMBOL_f_any_kwrest = 296, /* f_any_kwrest */
2994 YYSYMBOL_297_25 = 297, /* $@25 */
2995 YYSYMBOL_f_eq = 298, /* f_eq */
2996 YYSYMBOL_f_kw_primary_value = 299, /* f_kw_primary_value */
2997 YYSYMBOL_f_kwarg_primary_value = 300, /* f_kwarg_primary_value */
2998 YYSYMBOL_args_tail_basic_primary_value = 301, /* args_tail_basic_primary_value */
2999 YYSYMBOL_block_args_tail = 302, /* block_args_tail */
3000 YYSYMBOL_excessed_comma = 303, /* excessed_comma */
3001 YYSYMBOL_f_opt_primary_value = 304, /* f_opt_primary_value */
3002 YYSYMBOL_f_optarg_primary_value = 305, /* f_optarg_primary_value */
3003 YYSYMBOL_opt_args_tail_block_args_tail = 306, /* opt_args_tail_block_args_tail */
3004 YYSYMBOL_block_param = 307, /* block_param */
3005 YYSYMBOL_opt_block_param_def = 308, /* opt_block_param_def */
3006 YYSYMBOL_block_param_def = 309, /* block_param_def */
3007 YYSYMBOL_opt_block_param = 310, /* opt_block_param */
3008 YYSYMBOL_opt_bv_decl = 311, /* opt_bv_decl */
3009 YYSYMBOL_bv_decls = 312, /* bv_decls */
3010 YYSYMBOL_bvar = 313, /* bvar */
3011 YYSYMBOL_max_numparam = 314, /* max_numparam */
3012 YYSYMBOL_numparam = 315, /* numparam */
3013 YYSYMBOL_it_id = 316, /* it_id */
3014 YYSYMBOL_317_26 = 317, /* @26 */
3015 YYSYMBOL_318_27 = 318, /* $@27 */
3016 YYSYMBOL_lambda = 319, /* lambda */
3017 YYSYMBOL_f_larglist = 320, /* f_larglist */
3018 YYSYMBOL_lambda_body = 321, /* lambda_body */
3019 YYSYMBOL_322_28 = 322, /* $@28 */
3020 YYSYMBOL_do_block = 323, /* do_block */
3021 YYSYMBOL_block_call = 324, /* block_call */
3022 YYSYMBOL_method_call = 325, /* method_call */
3023 YYSYMBOL_brace_block = 326, /* brace_block */
3024 YYSYMBOL_327_29 = 327, /* @29 */
3025 YYSYMBOL_brace_body = 328, /* brace_body */
3026 YYSYMBOL_329_30 = 329, /* @30 */
3027 YYSYMBOL_do_body = 330, /* do_body */
3028 YYSYMBOL_case_args = 331, /* case_args */
3029 YYSYMBOL_case_body = 332, /* case_body */
3030 YYSYMBOL_cases = 333, /* cases */
3031 YYSYMBOL_p_pvtbl = 334, /* p_pvtbl */
3032 YYSYMBOL_p_pktbl = 335, /* p_pktbl */
3033 YYSYMBOL_p_in_kwarg = 336, /* p_in_kwarg */
3034 YYSYMBOL_337_31 = 337, /* $@31 */
3035 YYSYMBOL_p_case_body = 338, /* p_case_body */
3036 YYSYMBOL_p_cases = 339, /* p_cases */
3037 YYSYMBOL_p_top_expr = 340, /* p_top_expr */
3038 YYSYMBOL_p_top_expr_body = 341, /* p_top_expr_body */
3039 YYSYMBOL_p_expr = 342, /* p_expr */
3040 YYSYMBOL_p_as = 343, /* p_as */
3041 YYSYMBOL_p_alt = 344, /* p_alt */
3042 YYSYMBOL_p_lparen = 345, /* p_lparen */
3043 YYSYMBOL_p_lbracket = 346, /* p_lbracket */
3044 YYSYMBOL_p_expr_basic = 347, /* p_expr_basic */
3045 YYSYMBOL_348_32 = 348, /* $@32 */
3046 YYSYMBOL_p_args = 349, /* p_args */
3047 YYSYMBOL_p_args_head = 350, /* p_args_head */
3048 YYSYMBOL_p_args_tail = 351, /* p_args_tail */
3049 YYSYMBOL_p_find = 352, /* p_find */
3050 YYSYMBOL_p_rest = 353, /* p_rest */
3051 YYSYMBOL_p_args_post = 354, /* p_args_post */
3052 YYSYMBOL_p_arg = 355, /* p_arg */
3053 YYSYMBOL_p_kwargs = 356, /* p_kwargs */
3054 YYSYMBOL_p_kwarg = 357, /* p_kwarg */
3055 YYSYMBOL_p_kw = 358, /* p_kw */
3056 YYSYMBOL_p_kw_label = 359, /* p_kw_label */
3057 YYSYMBOL_p_kwrest = 360, /* p_kwrest */
3058 YYSYMBOL_p_kwnorest = 361, /* p_kwnorest */
3059 YYSYMBOL_p_any_kwrest = 362, /* p_any_kwrest */
3060 YYSYMBOL_p_value = 363, /* p_value */
3061 YYSYMBOL_p_primitive = 364, /* p_primitive */
3062 YYSYMBOL_value_expr_p_primitive = 365, /* value_expr_p_primitive */
3063 YYSYMBOL_p_primitive_value = 366, /* p_primitive_value */
3064 YYSYMBOL_p_variable = 367, /* p_variable */
3065 YYSYMBOL_p_var_ref = 368, /* p_var_ref */
3066 YYSYMBOL_p_expr_ref = 369, /* p_expr_ref */
3067 YYSYMBOL_p_const = 370, /* p_const */
3068 YYSYMBOL_opt_rescue = 371, /* opt_rescue */
3069 YYSYMBOL_exc_list = 372, /* exc_list */
3070 YYSYMBOL_exc_var = 373, /* exc_var */
3071 YYSYMBOL_opt_ensure = 374, /* opt_ensure */
3072 YYSYMBOL_literal = 375, /* literal */
3073 YYSYMBOL_strings = 376, /* strings */
3074 YYSYMBOL_string = 377, /* string */
3075 YYSYMBOL_string1 = 378, /* string1 */
3076 YYSYMBOL_xstring = 379, /* xstring */
3077 YYSYMBOL_regexp = 380, /* regexp */
3078 YYSYMBOL_nonempty_list__ = 381, /* nonempty_list_' ' */
3079 YYSYMBOL_words_tWORDS_BEG_word_list = 382, /* words_tWORDS_BEG_word_list */
3080 YYSYMBOL_words = 383, /* words */
3081 YYSYMBOL_word_list = 384, /* word_list */
3082 YYSYMBOL_word = 385, /* word */
3083 YYSYMBOL_words_tSYMBOLS_BEG_symbol_list = 386, /* words_tSYMBOLS_BEG_symbol_list */
3084 YYSYMBOL_symbols = 387, /* symbols */
3085 YYSYMBOL_symbol_list = 388, /* symbol_list */
3086 YYSYMBOL_words_tQWORDS_BEG_qword_list = 389, /* words_tQWORDS_BEG_qword_list */
3087 YYSYMBOL_qwords = 390, /* qwords */
3088 YYSYMBOL_words_tQSYMBOLS_BEG_qsym_list = 391, /* words_tQSYMBOLS_BEG_qsym_list */
3089 YYSYMBOL_qsymbols = 392, /* qsymbols */
3090 YYSYMBOL_qword_list = 393, /* qword_list */
3091 YYSYMBOL_qsym_list = 394, /* qsym_list */
3092 YYSYMBOL_string_contents = 395, /* string_contents */
3093 YYSYMBOL_xstring_contents = 396, /* xstring_contents */
3094 YYSYMBOL_regexp_contents = 397, /* regexp_contents */
3095 YYSYMBOL_string_content = 398, /* string_content */
3096 YYSYMBOL_399_33 = 399, /* @33 */
3097 YYSYMBOL_400_34 = 400, /* @34 */
3098 YYSYMBOL_401_35 = 401, /* @35 */
3099 YYSYMBOL_402_36 = 402, /* @36 */
3100 YYSYMBOL_string_dend = 403, /* string_dend */
3101 YYSYMBOL_string_dvar = 404, /* string_dvar */
3102 YYSYMBOL_symbol = 405, /* symbol */
3103 YYSYMBOL_ssym = 406, /* ssym */
3104 YYSYMBOL_sym = 407, /* sym */
3105 YYSYMBOL_dsym = 408, /* dsym */
3106 YYSYMBOL_numeric = 409, /* numeric */
3107 YYSYMBOL_simple_numeric = 410, /* simple_numeric */
3108 YYSYMBOL_nonlocal_var = 411, /* nonlocal_var */
3109 YYSYMBOL_user_variable = 412, /* user_variable */
3110 YYSYMBOL_keyword_variable = 413, /* keyword_variable */
3111 YYSYMBOL_var_ref = 414, /* var_ref */
3112 YYSYMBOL_var_lhs = 415, /* var_lhs */
3113 YYSYMBOL_backref = 416, /* backref */
3114 YYSYMBOL_417_37 = 417, /* $@37 */
3115 YYSYMBOL_superclass = 418, /* superclass */
3116 YYSYMBOL_f_opt_paren_args = 419, /* f_opt_paren_args */
3117 YYSYMBOL_f_paren_args = 420, /* f_paren_args */
3118 YYSYMBOL_f_arglist = 421, /* f_arglist */
3119 YYSYMBOL_422_38 = 422, /* @38 */
3120 YYSYMBOL_f_kw_arg_value = 423, /* f_kw_arg_value */
3121 YYSYMBOL_f_kwarg_arg_value = 424, /* f_kwarg_arg_value */
3122 YYSYMBOL_args_tail_basic_arg_value = 425, /* args_tail_basic_arg_value */
3123 YYSYMBOL_args_tail = 426, /* args_tail */
3124 YYSYMBOL_f_opt_arg_value = 427, /* f_opt_arg_value */
3125 YYSYMBOL_f_optarg_arg_value = 428, /* f_optarg_arg_value */
3126 YYSYMBOL_opt_args_tail_args_tail = 429, /* opt_args_tail_args_tail */
3127 YYSYMBOL_f_args = 430, /* f_args */
3128 YYSYMBOL_args_forward = 431, /* args_forward */
3129 YYSYMBOL_f_bad_arg = 432, /* f_bad_arg */
3130 YYSYMBOL_f_norm_arg = 433, /* f_norm_arg */
3131 YYSYMBOL_f_arg_asgn = 434, /* f_arg_asgn */
3132 YYSYMBOL_f_arg_item = 435, /* f_arg_item */
3133 YYSYMBOL_f_arg = 436, /* f_arg */
3134 YYSYMBOL_f_label = 437, /* f_label */
3135 YYSYMBOL_kwrest_mark = 438, /* kwrest_mark */
3136 YYSYMBOL_f_no_kwarg = 439, /* f_no_kwarg */
3137 YYSYMBOL_f_kwrest = 440, /* f_kwrest */
3138 YYSYMBOL_restarg_mark = 441, /* restarg_mark */
3139 YYSYMBOL_f_rest_arg = 442, /* f_rest_arg */
3140 YYSYMBOL_blkarg_mark = 443, /* blkarg_mark */
3141 YYSYMBOL_f_block_arg = 444, /* f_block_arg */
3142 YYSYMBOL_opt_f_block_arg = 445, /* opt_f_block_arg */
3143 YYSYMBOL_value_expr_singleton_expr = 446, /* value_expr_singleton_expr */
3144 YYSYMBOL_singleton = 447, /* singleton */
3145 YYSYMBOL_singleton_expr = 448, /* singleton_expr */
3146 YYSYMBOL_449_39 = 449, /* $@39 */
3147 YYSYMBOL_assoc_list = 450, /* assoc_list */
3148 YYSYMBOL_assocs = 451, /* assocs */
3149 YYSYMBOL_assoc = 452, /* assoc */
3150 YYSYMBOL_operation2 = 453, /* operation2 */
3151 YYSYMBOL_operation3 = 454, /* operation3 */
3152 YYSYMBOL_dot_or_colon = 455, /* dot_or_colon */
3153 YYSYMBOL_call_op = 456, /* call_op */
3154 YYSYMBOL_call_op2 = 457, /* call_op2 */
3155 YYSYMBOL_rparen = 458, /* rparen */
3156 YYSYMBOL_rbracket = 459, /* rbracket */
3157 YYSYMBOL_rbrace = 460, /* rbrace */
3158 YYSYMBOL_trailer = 461, /* trailer */
3159 YYSYMBOL_term = 462, /* term */
3160 YYSYMBOL_terms = 463, /* terms */
3161 YYSYMBOL_none = 464 /* none */
3163typedef enum yysymbol_kind_t yysymbol_kind_t;
3172/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
3173 <limits.h> and (if available) <stdint.h> are included
3174 so that the code can choose integer types of a good width. */
3176#ifndef __PTRDIFF_MAX__
3177# include <limits.h> /* INFRINGES ON USER NAME SPACE */
3178# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
3179# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
3184/* Narrow types that promote to a signed type and that can represent a
3185 signed or unsigned integer of at least N bits. In tables they can
3186 save space and decrease cache pressure. Promoting to a signed type
3187 helps avoid bugs in integer arithmetic. */
3189#ifdef __INT_LEAST8_MAX__
3190typedef __INT_LEAST8_TYPE__ yytype_int8;
3191#elif defined YY_STDINT_H
3192typedef int_least8_t yytype_int8;
3194typedef signed char yytype_int8;
3197#ifdef __INT_LEAST16_MAX__
3198typedef __INT_LEAST16_TYPE__ yytype_int16;
3199#elif defined YY_STDINT_H
3200typedef int_least16_t yytype_int16;
3202typedef short yytype_int16;
3205/* Work around bug in HP-UX 11.23, which defines these macros
3206 incorrectly for preprocessor constants. This workaround can likely
3207 be removed in 2023, as HPE has promised support for HP-UX 11.23
3208 (aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
3209 <https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
3211# undef UINT_LEAST8_MAX
3212# undef UINT_LEAST16_MAX
3213# define UINT_LEAST8_MAX 255
3214# define UINT_LEAST16_MAX 65535
3217#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
3218typedef __UINT_LEAST8_TYPE__ yytype_uint8;
3219#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
3220 && UINT_LEAST8_MAX <= INT_MAX)
3221typedef uint_least8_t yytype_uint8;
3222#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
3223typedef unsigned char yytype_uint8;
3225typedef short yytype_uint8;
3228#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
3229typedef __UINT_LEAST16_TYPE__ yytype_uint16;
3230#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
3231 && UINT_LEAST16_MAX <= INT_MAX)
3232typedef uint_least16_t yytype_uint16;
3233#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
3234typedef unsigned short yytype_uint16;
3236typedef int yytype_uint16;
3240# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
3241# define YYPTRDIFF_T __PTRDIFF_TYPE__
3242# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
3243# elif defined PTRDIFF_MAX
3245# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
3247# define YYPTRDIFF_T ptrdiff_t
3248# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
3250# define YYPTRDIFF_T long
3251# define YYPTRDIFF_MAXIMUM LONG_MAX
3256# ifdef __SIZE_TYPE__
3257# define YYSIZE_T __SIZE_TYPE__
3258# elif defined size_t
3259# define YYSIZE_T size_t
3260# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
3261# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
3262# define YYSIZE_T size_t
3264# define YYSIZE_T unsigned
3268#define YYSIZE_MAXIMUM \
3269 YY_CAST (YYPTRDIFF_T, \
3270 (YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
3271 ? YYPTRDIFF_MAXIMUM \
3272 : YY_CAST (YYSIZE_T, -1)))
3274#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
3277/* Stored state numbers (used for stacks). */
3278typedef yytype_int16 yy_state_t;
3280/* State numbers in computations. */
3281typedef int yy_state_fast_t;
3284# if defined YYENABLE_NLS && YYENABLE_NLS
3286# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
3287# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
3291# define YY_(Msgid) Msgid
3296#ifndef YY_ATTRIBUTE_PURE
3297# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
3298# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
3300# define YY_ATTRIBUTE_PURE
3304#ifndef YY_ATTRIBUTE_UNUSED
3305# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
3306# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
3308# define YY_ATTRIBUTE_UNUSED
3312/* Suppress unused-variable warnings by "using" E. */
3313#if ! defined lint || defined __GNUC__
3314# define YY_USE(E) ((void) (E))
3316# define YY_USE(E) /* empty */
3319/* Suppress an incorrect diagnostic about yylval being uninitialized. */
3320#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
3321# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
3322# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
3323 _Pragma ("GCC diagnostic push") \
3324 _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
3326# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
3327 _Pragma ("GCC diagnostic push") \
3328 _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
3329 _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
3331# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
3332 _Pragma ("GCC diagnostic pop")
3334# define YY_INITIAL_VALUE(Value) Value
3336#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
3337# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
3338# define YY_IGNORE_MAYBE_UNINITIALIZED_END
3340#ifndef YY_INITIAL_VALUE
3341# define YY_INITIAL_VALUE(Value) /* Nothing. */
3344#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
3345# define YY_IGNORE_USELESS_CAST_BEGIN \
3346 _Pragma ("GCC diagnostic push") \
3347 _Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
3348# define YY_IGNORE_USELESS_CAST_END \
3349 _Pragma ("GCC diagnostic pop")
3351#ifndef YY_IGNORE_USELESS_CAST_BEGIN
3352# define YY_IGNORE_USELESS_CAST_BEGIN
3353# define YY_IGNORE_USELESS_CAST_END
3357#define YY_ASSERT(E) ((void) (0 && (E)))
3361/* The parser invokes alloca or malloc; define the necessary symbols. */
3363# ifdef YYSTACK_USE_ALLOCA
3364# if YYSTACK_USE_ALLOCA
3366# define YYSTACK_ALLOC __builtin_alloca
3367# elif defined __BUILTIN_VA_ARG_INCR
3368# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
3370# define YYSTACK_ALLOC __alloca
3371# elif defined _MSC_VER
3372# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
3373# define alloca _alloca
3375# define YYSTACK_ALLOC alloca
3376# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
3377# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
3378 /* Use EXIT_SUCCESS as a witness for stdlib.h. */
3379# ifndef EXIT_SUCCESS
3380# define EXIT_SUCCESS 0
3387# ifdef YYSTACK_ALLOC
3388 /* Pacify GCC's
'empty if-body' warning. */
3389# define YYSTACK_FREE(Ptr) do { ; } while (0)
3390# ifndef YYSTACK_ALLOC_MAXIMUM
3395# define YYSTACK_ALLOC_MAXIMUM 4032
3398# define YYSTACK_ALLOC YYMALLOC
3399# define YYSTACK_FREE YYFREE
3400# ifndef YYSTACK_ALLOC_MAXIMUM
3401# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
3403# if (defined __cplusplus && ! defined EXIT_SUCCESS \
3404 && ! ((defined YYMALLOC || defined malloc) \
3405 && (defined YYFREE || defined free)))
3407# ifndef EXIT_SUCCESS
3408# define EXIT_SUCCESS 0
3412# define YYMALLOC malloc
3413# if ! defined malloc && ! defined EXIT_SUCCESS
3414void *malloc (YYSIZE_T);
3419# if ! defined free && ! defined EXIT_SUCCESS
3426#if (! defined yyoverflow \
3427 && (! defined __cplusplus \
3428 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
3429 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
3434 yy_state_t yyss_alloc;
3440# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
3444# define YYSTACK_BYTES(N) \
3445 ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE) \
3446 + YYSIZEOF (YYLTYPE)) \
3447 + 2 * YYSTACK_GAP_MAXIMUM)
3449# define YYCOPY_NEEDED 1
3456# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
3459 YYPTRDIFF_T yynewbytes; \
3460 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
3461 Stack = &yyptr->Stack_alloc; \
3462 yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
3463 yyptr += yynewbytes / YYSIZEOF (*yyptr); \
3469#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
3473# if defined __GNUC__ && 1 < __GNUC__
3474# define YYCOPY(Dst, Src, Count) \
3475 __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
3477# define YYCOPY(Dst, Src, Count) \
3481 for (yyi = 0; yyi < (Count); yyi++) \
3482 (Dst)[yyi] = (Src)[yyi]; \
3495#define YYNTOKENS 162
3501#define YYNSTATES 1375
3504#define YYMAXUTOK 361
3509#define YYTRANSLATE(YYX) \
3510 (0 <= (YYX) && (YYX) <= YYMAXUTOK \
3511 ? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
3516static const yytype_uint8 yytranslate[] =
3518 0, 2, 2, 2, 2, 2, 2, 2, 2, 72,
3519 154, 75, 73, 74, 2, 2, 2, 2, 2, 2,
3520 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3521 2, 2, 161, 148, 2, 2, 2, 146, 141, 2,
3522 157, 158, 144, 142, 155, 143, 69, 145, 2, 2,
3523 2, 2, 2, 2, 2, 2, 2, 2, 136, 160,
3524 138, 134, 137, 135, 2, 2, 2, 2, 2, 2,
3525 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3526 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3527 2, 153, 70, 159, 140, 2, 156, 2, 2, 2,
3528 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3529 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3530 2, 2, 2, 151, 139, 152, 149, 2, 89, 90,
3531 91, 92, 76, 77, 78, 79, 95, 96, 84, 83,
3532 80, 81, 82, 87, 88, 93, 94, 98, 85, 86,
3533 97, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3534 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3535 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3536 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3537 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3538 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3539 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3540 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3541 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3542 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3543 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
3544 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
3545 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
3546 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
3547 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
3548 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
3549 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
3550 65, 66, 67, 68, 71, 99, 100, 101, 102, 103,
3551 104, 105, 106, 107, 108, 109, 110, 111, 112, 113,
3552 114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
3553 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
3559static const yytype_int16 yyrline[] =
3561 0, 3123, 3117, 3123, 3123, 3123, 3123, 3143, 3148, 3153,
3562 3160, 3165, 3172, 3174, 3192, 3188, 3193, 3192, 3204, 3201,
3563 3214, 3219, 3224, 3231, 3233, 3232, 3242, 3244, 3251, 3251,
3564 3256, 3261, 3269, 3278, 3285, 3291, 3297, 3308, 3319, 3328,
3565 3341, 3342, 3347, 3347, 3348, 3359, 3364, 3365, 3372, 3372,
3566 3373, 3373, 3373, 3373, 3373, 3373, 3373, 3373, 3373, 3374,
3567 3374, 3374, 3377, 3378, 3384, 3384, 3384, 3391, 3392, 3399,
3568 3402, 3403, 3408, 3413, 3418, 3424, 3423, 3437, 3436, 3449,
3569 3452, 3463, 3473, 3472, 3486, 3486, 3487, 3493, 3493, 3493,
3570 3500, 3501, 3504, 3504, 3507, 3508, 3515, 3523, 3523, 3523,
3571 3530, 3537, 3546, 3551, 3556, 3561, 3566, 3572, 3578, 3584,
3572 3589, 3596, 3605, 3606, 3613, 3614, 3621, 3626, 3631, 3636,
3573 3636, 3636, 3641, 3646, 3651, 3656, 3661, 3666, 3673, 3674,
3574 3681, 3686, 3694, 3694, 3699, 3704, 3704, 3710, 3715, 3720,
3575 3725, 3733, 3733, 3738, 3743, 3743, 3748, 3753, 3758, 3763,
3576 3771, 3779, 3782, 3787, 3792, 3799, 3799, 3799, 3800, 3805,
3577 3808, 3813, 3816, 3821, 3821, 3829, 3830, 3831, 3832, 3833,
3578 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843,
3579 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853,
3580 3854, 3855, 3856, 3857, 3858, 3861, 3861, 3861, 3862, 3862,
3581 3863, 3863, 3863, 3864, 3864, 3864, 3864, 3865, 3865, 3865,
3582 3865, 3866, 3866, 3866, 3867, 3867, 3867, 3867, 3868, 3868,
3583 3868, 3868, 3869, 3869, 3869, 3869, 3870, 3870, 3870, 3870,
3584 3871, 3871, 3871, 3871, 3872, 3872, 3875, 3875, 3876, 3876,
3585 3876, 3876, 3876, 3876, 3876, 3876, 3876, 3877, 3884, 3891,
3586 3897, 3903, 3909, 3915, 3920, 3925, 3930, 3935, 3940, 3945,
3587 3950, 3955, 3960, 3965, 3970, 3975, 3980, 3981, 3986, 3991,
3588 3996, 4001, 4006, 4011, 4016, 4021, 4026, 4031, 4036, 4042,
3589 4049, 4049, 4049, 4050, 4053, 4054, 4060, 4067, 4068, 4069,
3590 4070, 4073, 4078, 4086, 4092, 4099, 4106, 4106, 4109, 4110,
3591 4111, 4116, 4123, 4128, 4137, 4142, 4152, 4164, 4165, 4171,
3592 4172, 4173, 4174, 4179, 4186, 4186, 4191, 4196, 4202, 4208,
3593 4212, 4212, 4250, 4255, 4263, 4268, 4276, 4281, 4286, 4291,
3594 4299, 4304, 4313, 4314, 4318, 4323, 4328, 4346, 4346, 4346,
3595 4346, 4346, 4346, 4346, 4346, 4347, 4348, 4349, 4355, 4354,
3596 4367, 4367, 4373, 4379, 4384, 4389, 4394, 4400, 4405, 4410,
3597 4415, 4420, 4426, 4431, 4436, 4441, 4442, 4448, 4450, 4462,
3598 4471, 4480, 4489, 4488, 4503, 4502, 4515, 4523, 4523, 4524,
3599 4567, 4566, 4589, 4588, 4608, 4607, 4626, 4624, 4641, 4639,
3600 4654, 4659, 4664, 4669, 4684, 4684, 4687, 4694, 4712, 4719,
3601 4727, 4735, 4742, 4750, 4759, 4768, 4776, 4783, 4790, 4798,
3602 4805, 4811, 4826, 4833, 4838, 4844, 4851, 4858, 4859, 4860,
3603 4863, 4864, 4867, 4869, 4878, 4879, 4886, 4887, 4890, 4895,
3604 4903, 4903, 4903, 4908, 4913, 4918, 4923, 4930, 4936, 4943,
3605 4944, 4951, 4951, 4953, 4953, 4953, 4953, 4953, 4953, 4953,
3606 4953, 4953, 4956, 4964, 4964, 4964, 4964, 4964, 4964, 4969,
3607 4974, 4979, 4984, 4989, 4995, 5000, 5005, 5010, 5015, 5020,
3608 5025, 5030, 5035, 5042, 5043, 5049, 5059, 5063, 5066, 5071,
3609 5078, 5080, 5084, 5089, 5092, 5098, 5103, 5110, 5116, 5109,
3610 5143, 5150, 5159, 5166, 5165, 5176, 5184, 5196, 5206, 5215,
3611 5222, 5229, 5240, 5246, 5251, 5257, 5263, 5273, 5278, 5286,
3612 5292, 5300, 5302, 5317, 5317, 5338, 5344, 5349, 5355, 5363,
3613 5372, 5373, 5376, 5377, 5379, 5390, 5395, 5403, 5404, 5407,
3614 5408, 5414, 5422, 5423, 5429, 5435, 5440, 5445, 5452, 5455,
3615 5462, 5465, 5470, 5473, 5480, 5487, 5488, 5489, 5496, 5503,
3616 5510, 5516, 5523, 5530, 5537, 5543, 5548, 5553, 5560, 5559,
3617 5570, 5576, 5584, 5590, 5595, 5600, 5605, 5610, 5613, 5614,
3618 5621, 5626, 5633, 5641, 5647, 5654, 5655, 5662, 5669, 5674,
3619 5679, 5684, 5691, 5693, 5700, 5706, 5718, 5719, 5734, 5739,
3620 5746, 5752, 5753, 5760, 5761, 5766, 5771, 5776, 5781, 5782,
3621 5783, 5784, 5789, 5796, 5796, 5796, 5796, 5796, 5796, 5796,
3622 5796, 5797, 5802, 5805, 5805, 5808, 5816, 5828, 5835, 5842,
3623 5847, 5852, 5860, 5880, 5883, 5888, 5892, 5895, 5900, 5903,
3624 5910, 5913, 5914, 5917, 5928, 5929, 5930, 5937, 5950, 5962,
3625 5969, 5969, 5969, 5969, 5973, 5977, 5984, 5986, 5993, 5993,
3626 5997, 6001, 6008, 6008, 6011, 6011, 6015, 6019, 6027, 6031,
3627 6039, 6043, 6051, 6055, 6063, 6067, 6093, 6096, 6095, 6110,
3628 6118, 6122, 6126, 6141, 6142, 6145, 6150, 6153, 6154, 6157,
3629 6173, 6174, 6177, 6185, 6186, 6194, 6195, 6196, 6197, 6200,
3630 6201, 6202, 6205, 6205, 6206, 6209, 6210, 6211, 6212, 6213,
3631 6214, 6215, 6218, 6228, 6235, 6235, 6242, 6243, 6247, 6246,
3632 6256, 6259, 6260, 6269, 6279, 6280, 6280, 6297, 6297, 6297,
3633 6297, 6297, 6297, 6297, 6297, 6297, 6298, 6315, 6315, 6315,
3634 6315, 6315, 6315, 6320, 6325, 6330, 6335, 6340, 6345, 6350,
3635 6355, 6360, 6365, 6370, 6375, 6380, 6386, 6393, 6404, 6413,
3636 6422, 6431, 6442, 6443, 6453, 6460, 6465, 6484, 6486, 6497,
3637 6517, 6518, 6521, 6527, 6533, 6541, 6542, 6545, 6551, 6559,
3638 6560, 6563, 6569, 6577, 6582, 6586, 6586, 6616, 6618, 6617,
3639 6630, 6631, 6638, 6640, 6665, 6670, 6675, 6682, 6688, 6693,
3640 6706, 6706, 6706, 6707, 6710, 6711, 6712, 6715, 6716, 6719,
3641 6720, 6723, 6724, 6727, 6730, 6733, 6736, 6737, 6740, 6741,
3647#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
3652static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
3656static const char *
const yytname[] =
3658 "\"end-of-input\"",
"error",
"\"invalid token\"",
"\"'class'\"",
3659 "\"'module'\"",
"\"'def'\"",
"\"'undef'\"",
"\"'begin'\"",
3660 "\"'rescue'\"",
"\"'ensure'\"",
"\"'end'\"",
"\"'if'\"",
"\"'unless'\"",
3661 "\"'then'\"",
"\"'elsif'\"",
"\"'else'\"",
"\"'case'\"",
"\"'when'\"",
3662 "\"'while'\"",
"\"'until'\"",
"\"'for'\"",
"\"'break'\"",
"\"'next'\"",
3663 "\"'redo'\"",
"\"'retry'\"",
"\"'in'\"",
"\"'do'\"",
3664 "\"'do' for condition\"",
"\"'do' for block\"",
"\"'do' for lambda\"",
3665 "\"'return'\"",
"\"'yield'\"",
"\"'super'\"",
"\"'self'\"",
"\"'nil'\"",
3666 "\"'true'\"",
"\"'false'\"",
"\"'and'\"",
"\"'or'\"",
"\"'not'\"",
3667 "\"'if' modifier\"",
"\"'unless' modifier\"",
"\"'while' modifier\"",
3668 "\"'until' modifier\"",
"\"'rescue' modifier\"",
"\"'alias'\"",
3669 "\"'defined?'\"",
"\"'BEGIN'\"",
"\"'END'\"",
"\"'__LINE__'\"",
3670 "\"'__FILE__'\"",
"\"'__ENCODING__'\"",
"\"local variable or method\"",
3671 "\"method\"",
"\"global variable\"",
"\"instance variable\"",
3672 "\"constant\"",
"\"class variable\"",
"\"label\"",
"\"integer literal\"",
3673 "\"float literal\"",
"\"rational literal\"",
"\"imaginary literal\"",
3674 "\"char literal\"",
"\"numbered reference\"",
"\"back reference\"",
3675 "\"literal content\"",
"tREGEXP_END",
"\"dummy end\"",
"'.'",
3676 "\"backslash\"",
"\"escaped space\"",
"\"escaped horizontal tab\"",
3677 "\"escaped form feed\"",
"\"escaped carriage return\"",
3678 "\"escaped vertical tab\"",
"\"unary+\"",
"\"unary-\"",
"\"**\"",
3679 "\"<=>\"",
"\"==\"",
"\"===\"",
"\"!=\"",
"\">=\"",
"\"<=\"",
"\"&&\"",
3680 "\"||\"",
"\"=~\"",
"\"!~\"",
"\"..\"",
"\"...\"",
"\"(..\"",
"\"(...\"",
3681 "\"[]\"",
"\"[]=\"",
"\"<<\"",
"\">>\"",
"\"&.\"",
"\"::\"",
3682 "\":: at EXPR_BEG\"",
"\"operator-assignment\"",
"\"=>\"",
"\"(\"",
3683 "\"( arg\"",
"\"[\"",
"\"{\"",
"\"{ arg\"",
"\"*\"",
"\"**arg\"",
3684 "\"&\"",
"\"->\"",
"\"symbol literal\"",
"\"string literal\"",
3685 "\"backtick literal\"",
"\"regexp literal\"",
"\"word list\"",
3686 "\"verbatim word list\"",
"\"symbol list\"",
"\"verbatim symbol list\"",
3687 "\"terminator\"",
"\"'}'\"",
"\"'#{'\"",
"tSTRING_DVAR",
"tLAMBEG",
3688 "tLABEL_END",
"tIGNORED_NL",
"tCOMMENT",
"tEMBDOC_BEG",
"tEMBDOC",
3689 "tEMBDOC_END",
"tHEREDOC_BEG",
"tHEREDOC_END",
"k__END__",
"tLOWEST",
3690 "'='",
"'?'",
"':'",
"'>'",
"'<'",
"'|'",
"'^'",
"'&'",
"'+'",
"'-'",
3691 "'*'",
"'/'",
"'%'",
"tUMINUS_NUM",
"'!'",
"'~'",
"tLAST_TOKEN",
"'{'",
3692 "'}'",
"'['",
"'\\n'",
"','",
"'`'",
"'('",
"')'",
"']'",
"';'",
"' '",
3693 "$accept",
"option_terms",
"compstmt_top_stmts",
"$@1",
"program",
3694 "top_stmts",
"top_stmt",
"block_open",
"begin_block",
"compstmt_stmts",
3695 "$@2",
"$@3",
"bodystmt",
"$@4",
"stmts",
"stmt_or_begin",
"$@5",
3696 "allow_exits",
"k_END",
"$@6",
"stmt",
"asgn_lhs_mrhs",
3697 "asgn_lhs_command_rhs",
"command_asgn",
"op_asgn_command_rhs",
3698 "def_endless_method_endless_command",
"endless_command",
"option_'\\n'",
3699 "command_rhs",
"expr",
"$@7",
"$@8",
"def_name",
"defn_head",
"$@9",
3700 "defs_head",
"value_expr_expr",
"expr_value",
"$@10",
"$@11",
3701 "expr_value_do",
"command_call",
"value_expr_command_call",
3702 "command_call_value",
"block_command",
"cmd_brace_block",
"fcall",
3703 "command",
"mlhs",
"mlhs_inner",
"mlhs_basic",
"mlhs_mlhs_item",
3704 "mlhs_item",
"mlhs_head",
"mlhs_node",
"lhs",
"cname",
"cpath",
"fname",
3705 "fitem",
"undef_list",
"$@12",
"op",
"reswords",
"asgn_lhs_arg_rhs",
3706 "arg",
"op_asgn_arg_rhs",
"def_endless_method_endless_arg",
3707 "endless_arg",
"relop",
"rel_expr",
"lex_ctxt",
"begin_defined",
3708 "after_rescue",
"value_expr_arg",
"arg_value",
"aref_args",
"arg_rhs",
3709 "paren_args",
"opt_paren_args",
"opt_call_args",
"value_expr_command",
3710 "call_args",
"$@13",
"command_args",
"block_arg",
"opt_block_arg",
3711 "args",
"arg_splat",
"mrhs_arg",
"mrhs",
"primary",
"$@14",
"$@15",
3712 "@16",
"@17",
"$@18",
"$@19",
"$@20",
"$@21",
"$@22",
"$@23",
"$@24",
3713 "value_expr_primary",
"primary_value",
"k_begin",
"k_if",
"k_unless",
3714 "k_while",
"k_until",
"k_case",
"k_for",
"k_class",
"k_module",
"k_def",
3715 "k_do",
"k_do_block",
"k_rescue",
"k_ensure",
"k_when",
"k_else",
3716 "k_elsif",
"k_end",
"k_return",
"k_yield",
"then",
"do",
"if_tail",
3717 "opt_else",
"for_var",
"f_marg",
"mlhs_f_marg",
"f_margs",
"f_rest_marg",
3718 "f_any_kwrest",
"$@25",
"f_eq",
"f_kw_primary_value",
3719 "f_kwarg_primary_value",
"args_tail_basic_primary_value",
3720 "block_args_tail",
"excessed_comma",
"f_opt_primary_value",
3721 "f_optarg_primary_value",
"opt_args_tail_block_args_tail",
"block_param",
3722 "opt_block_param_def",
"block_param_def",
"opt_block_param",
3723 "opt_bv_decl",
"bv_decls",
"bvar",
"max_numparam",
"numparam",
"it_id",
3724 "@26",
"$@27",
"lambda",
"f_larglist",
"lambda_body",
"$@28",
"do_block",
3725 "block_call",
"method_call",
"brace_block",
"@29",
"brace_body",
"@30",
3726 "do_body",
"case_args",
"case_body",
"cases",
"p_pvtbl",
"p_pktbl",
3727 "p_in_kwarg",
"$@31",
"p_case_body",
"p_cases",
"p_top_expr",
3728 "p_top_expr_body",
"p_expr",
"p_as",
"p_alt",
"p_lparen",
"p_lbracket",
3729 "p_expr_basic",
"$@32",
"p_args",
"p_args_head",
"p_args_tail",
"p_find",
3730 "p_rest",
"p_args_post",
"p_arg",
"p_kwargs",
"p_kwarg",
"p_kw",
3731 "p_kw_label",
"p_kwrest",
"p_kwnorest",
"p_any_kwrest",
"p_value",
3732 "p_primitive",
"value_expr_p_primitive",
"p_primitive_value",
3733 "p_variable",
"p_var_ref",
"p_expr_ref",
"p_const",
"opt_rescue",
3734 "exc_list",
"exc_var",
"opt_ensure",
"literal",
"strings",
"string",
3735 "string1",
"xstring",
"regexp",
"nonempty_list_' '",
3736 "words_tWORDS_BEG_word_list",
"words",
"word_list",
"word",
3737 "words_tSYMBOLS_BEG_symbol_list",
"symbols",
"symbol_list",
3738 "words_tQWORDS_BEG_qword_list",
"qwords",
3739 "words_tQSYMBOLS_BEG_qsym_list",
"qsymbols",
"qword_list",
"qsym_list",
3740 "string_contents",
"xstring_contents",
"regexp_contents",
3741 "string_content",
"@33",
"@34",
"@35",
"@36",
"string_dend",
3742 "string_dvar",
"symbol",
"ssym",
"sym",
"dsym",
"numeric",
3743 "simple_numeric",
"nonlocal_var",
"user_variable",
"keyword_variable",
3744 "var_ref",
"var_lhs",
"backref",
"$@37",
"superclass",
3745 "f_opt_paren_args",
"f_paren_args",
"f_arglist",
"@38",
"f_kw_arg_value",
3746 "f_kwarg_arg_value",
"args_tail_basic_arg_value",
"args_tail",
3747 "f_opt_arg_value",
"f_optarg_arg_value",
"opt_args_tail_args_tail",
3748 "f_args",
"args_forward",
"f_bad_arg",
"f_norm_arg",
"f_arg_asgn",
3749 "f_arg_item",
"f_arg",
"f_label",
"kwrest_mark",
"f_no_kwarg",
3750 "f_kwrest",
"restarg_mark",
"f_rest_arg",
"blkarg_mark",
"f_block_arg",
3751 "opt_f_block_arg",
"value_expr_singleton_expr",
"singleton",
3752 "singleton_expr",
"$@39",
"assoc_list",
"assocs",
"assoc",
"operation2",
3753 "operation3",
"dot_or_colon",
"call_op",
"call_op2",
"rparen",
3754 "rbracket",
"rbrace",
"trailer",
"term",
"terms",
"none", YY_NULLPTR
3758yysymbol_name (yysymbol_kind_t yysymbol)
3760 return yytname[yysymbol];
3764#define YYPACT_NINF (-1159)
3766#define yypact_value_is_default(Yyn) \
3767 ((Yyn) == YYPACT_NINF)
3769#define YYTABLE_NINF (-813)
3771#define yytable_value_is_error(Yyn) \
3772 ((Yyn) == YYTABLE_NINF)
3776static const yytype_int16 yypact[] =
3778 -1159, 5765, 196, -1159, -1159, -1159, -1159, 10398, -1159, -1159,
3779 -1159, -1159, -1159, -1159, -1159, 11453, 11453, -1159, -1159, -1159,
3780 -1159, 6687, -1159, -1159, -1159, -1159, 270, 10244, 56, 75,
3781 -1159, -1159, -1159, -1159, 6063, 6843, -1159, -1159, 6219, -1159,
3782 -1159, -1159, -1159, -1159, -1159, -1159, -1159, 13013, 13013, 13013,
3783 13013, 306, 9157, 9315, 11933, 12173, 10699, -1159, 10090, -1159,
3784 -1159, -1159, 236, 236, 236, 236, 1208, 13133, 13013, -1159,
3785 17, -1159, -1159, 1433, -1159, -1159, -1159, -1159, -1159, 180,
3786 407, 407, -1159, -1159, 197, 382, 376, -1159, 307, 13733,
3787 -1159, 432, -1159, 2263, -1159, -1159, 423, 72, -1159, 694,
3788 -1159, 11333, 11333, -1159, -1159, 9777, 13851, 13969, 14087, 9935,
3789 11453, 7311, -1159, 111, 90, -1159, -1159, 378, -1159, -1159,
3790 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3791 -1159, -1159, -1159, -1159, -1159, 48, 319, -1159, 494, 412,
3792 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3793 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3794 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3795 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3796 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3797 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3798 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3799 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, 449, -1159,
3800 -1159, -1159, -1159, -1159, -1159, 452, 13013, 561, 9315, 13013,
3801 13013, 13013, -1159, 13013, 407, 407, -1159, 485, 5877, -1159,
3802 523, -1159, -1159, -1159, 474, -1159, 708, 58, 88, 532,
3803 347, 502, -1159, -1159, 11573, -1159, 11453, -1159, -1159, 11074,
3804 13253, 1043, -1159, 483, -1159, 9473, -1159, -1159, -1159, -1159,
3805 -1159, 507, 197, -1159, 713, -1159, 520, 571, 3041, 3041,
3806 492, -1159, 9157, 526, 17, -1159, 1433, 56, 562, -1159,
3807 -1159, 567, 548, 654, -1159, 523, 568, 654, -1159, 56,
3808 673, 1208, 14205, 590, 590, 597, -1159, 735, 752, 793,
3809 805, -1159, -1159, 457, -1159, -1159, 830, 840, 845, -1159,
3810 598, 598, 598, 598, 690, -1159, -1159, -1159, -1159, -1159,
3811 -1159, -1159, 5140, 622, 11333, 11333, 11333, 11333, -1159, 13253,
3812 13253, 1804, 655, 692, -1159, 1804, -1159, 705, -1159, -1159,
3813 -1159, -1159, 739, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3814 9157, 10817, 697, -1159, -1159, 13013, 13013, 13013, 13013, 13013,
3815 -1159, -1159, 13013, 13013, 13013, 13013, 13013, 13013, 13013, 13013,
3816 -1159, 13013, -1159, -1159, 13013, 13013, 13013, 13013, 13013, 13013,
3817 13013, 13013, 13013, 13013, -1159, -1159, 14586, 11453, 14684, 8093,
3818 -1159, 180, -1159, 146, 146, 11333, 9005, 9005, -1159, 17,
3819 717, 823, -1159, -1159, 885, 862, 95, 138, 179, 1094,
3820 1135, 11333, 715, -1159, 756, 903, -1159, -1159, -1159, -1159,
3821 330, 338, 403, 504, 517, 653, 666, 743, 802, -1159,
3822 -1159, -1159, -1159, -1159, 858, -1159, -1159, 10935, -1159, -1159,
3823 -1159, 16154, -1159, -1159, -1159, -1159, -1159, -1159, 489, -1159,
3824 -1159, -1159, 944, 770, 776, -1159, 13013, 11693, -1159, -1159,
3825 14782, 11453, 14880, -1159, -1159, 12053, -1159, 13013, 56, -1159,
3826 775, 56, 781, -1159, -1159, 761, 183, -1159, -1159, -1159,
3827 -1159, -1159, 10398, -1159, -1159, 13013, 786, 14978, 14880, -1159,
3828 75, 56, -1159, -1159, 5372, 787, 789, -1159, 11933, -1159,
3829 -1159, 12173, -1159, -1159, -1159, 483, 922, -1159, 790, -1159,
3830 -1159, 14205, 15076, 11453, 15174, -1159, -1159, -1159, -1159, -1159,
3831 -1159, -1159, -1159, -1159, -1159, -1159, -1159, 1045, 81, 1077,
3832 329, 13013, -1159, -1159, 9625, -1159, -1159, -1159, -1159, -1159,
3833 11213, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3834 -1159, 1586, -1159, -1159, -1159, -1159, -1159, 798, -1159, -1159,
3835 808, -1159, -1159, -1159, 819, 56, -1159, -1159, -1159, 826,
3836 -1159, 838, 13013, 464, -1159, -1159, 926, 847, 933, -1159,
3837 13373, 8093, 17, 13373, 8093, -1159, 854, -1159, -1159, -1159,
3838 107, 107, 12293, 56, 14205, 857, -1159, 12413, -1159, 571,
3839 3164, 3164, 3164, 3164, 4105, 2137, 3164, 3164, 3041, 3041,
3840 1188, 1188, -1159, 4738, 1485, 1485, 1282, 68, 68, 571,
3841 571, 571, 1461, 1461, 7467, 6375, 7779, 6531, -1159, 507,
3842 -1159, 56, 861, 593, -1159, 623, -1159, -1159, 6999, -1159,
3843 107, -1159, 8245, 1013, 8701, 130, 107, 107, 1001, 1003,
3844 356, 15272, 11453, 15370, -1159, -1159, -1159, 922, -1159, -1159,
3845 -1159, -1159, 15468, 11453, 15566, 8093, 13253, -1159, -1159, -1159,
3846 56, -1159, -1159, -1159, 4000, 13493, 13493, 10398, -1159, 13013,
3847 13613, 13613, 13013, -1159, 523, -1159, -1159, 502, 5907, 7155,
3848 56, 497, 599, 13013, 13013, -1159, -1159, 11813, -1159, 12053,
3849 -1159, -1159, -1159, 13253, 5877, -1159, 42, 507, 507, 13493,
3850 -1159, 6, -1159, -1159, 654, 14205, 790, 480, 645, 56,
3851 98, 563, -1159, -1159, 1198, -1159, 69, -1159, 236, -1159,
3852 -1159, 69, 236, -1159, 571, 896, -1159, 1586, 1251, -1159,
3853 876, 56, 902, -1159, 276, -1159, -1159, 835, -1159, 1804,
3854 -1159, -1159, 917, 13013, 1804, -1159, -1159, -1159, -1159, -1159,
3855 1387, -1159, -1159, 270, 1009, -1159, 5877, 1020, 107, -1159,
3856 1009, 1020, 107, -1159, -1159, 909, -1159, -1159, -1159, -1159,
3857 -1159, 13013, -1159, -1159, -1159, 912, 925, 1048, -1159, -1159,
3858 790, 14205, 1031, -1159, -1159, 1057, 978, 1632, -1159, -1159,
3859 -1159, 1005, 606, -1159, -1159, 977, -1159, -1159, -1159, -1159,
3860 739, 959, 703, 11693, -1159, -1159, -1159, -1159, 739, -1159,
3861 1113, -1159, 855, -1159, 1107, -1159, -1159, -1159, -1159, -1159,
3862 -1159, 12533, 107, -1159, 1001, 107, 299, 371, 56, 387,
3863 389, 11333, 17, 11333, 8093, 1257, 645, -1159, 56, 107,
3864 183, 10552, -1159, 90, 382, -1159, 4614, -1159, -1159, -1159,
3865 -1159, 13013, -1159, 270, -1159, -1159, -1159, 607, -1159, -1159,
3866 56, 970, 183, -1159, -1159, -1159, -1159, 680, -1159, -1159,
3867 -1159, -1159, -1159, 598, -1159, 598, 598, 598, -1159, 56,
3868 -1159, 1586, -1159, 1293, -1159, -1159, 1074, 798, -1159, -1159,
3869 973, 974, -1159, -1159, 979, -1159, 984, -1159, 973, 13373,
3870 -1159, -1159, -1159, -1159, -1159, -1159, -1159, 985, 12653, -1159,
3871 790, 631, -1159, -1159, -1159, 15664, 11453, 15762, -1159, -1159,
3872 13013, 13493, 13493, 986, -1159, -1159, -1159, 13493, 13493, -1159,
3873 -1159, 12773, 1107, -1159, -1159, -1159, 9005, 11333, 107, -1159,
3874 -1159, 107, -1159, 13013, -1159, 184, -1159, -1159, 107, -1159,
3875 390, 130, 8093, 17, 107, -1159, -1159, -1159, -1159, -1159,
3876 -1159, 13613, 13013, 13013, -1159, 13013, 13013, -1159, 12053, -1159,
3877 1453, 5613, -1159, -1159, 989, 1016, -1159, 1387, -1159, 1387,
3878 -1159, 1804, -1159, 1387, -1159, -1159, 1009, 1020, 13013, 13013,
3879 -1159, -1159, 13013, 1025, 11213, 11213, 13493, 13013, 7623, 7935,
3880 56, 646, 683, 4402, 4402, 5877, -1159, -1159, -1159, -1159,
3881 -1159, 13493, -1159, -1159, -1159, -1159, 912, -1159, 1055, -1159,
3882 1151, -1159, -1159, 146, -1159, -1159, -1159, 12893, 8397, -1159,
3883 -1159, -1159, 107, -1159, -1159, 13013, 1804, -1159, -1159, 215,
3884 1293, 1293, 973, 973, 1029, 973, 5877, 5877, 1036, 1036,
3885 985, -1159, -1159, 5877, 720, -1159, -1159, -1159, 2561, 2561,
3886 738, -1159, 4233, 264, 1120, -1159, 773, -1159, -1159, 28,
3887 -1159, 1046, -1159, -1159, -1159, 1035, -1159, 1038, -1159, 14514,
3888 -1159, -1159, -1159, -1159, 879, -1159, 898, -1159, -1159, -1159,
3889 302, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
3890 519, -1159, -1159, -1159, 14323, 146, -1159, -1159, 9005, -1159,
3891 -1159, 8853, 8245, 13013, -1159, 557, 4402, 9005, -1159, 56,
3892 143, -1159, -1159, -1159, 1016, -1159, -1159, 1387, -1159, -1159,
3893 1926, 9625, -1159, -1159, 8093, -1159, -1159, -1159, -1159, -1159,
3894 14514, 78, 56, 4964, -1159, 56, 1039, -1159, 1053, -1159,
3895 -1159, -1159, 1033, -1159, 11333, -1159, 1145, 4964, 14514, 14514,
3896 764, 1101, 2561, 2561, 738, 350, 709, 4402, 4402, -1159,
3897 1152, -1159, 1017, 172, 216, 248, 8093, 17, -1159, 855,
3898 -1159, -1159, -1159, -1159, 146, 956, 107, 1054, 1058, -1159,
3899 9625, -1159, 973, 798, -1159, 1066, -1159, -1159, -1159, 1067,
3900 -1159, 56, 826, 1070, 14441, 1071, -1159, -1159, -1159, 325,
3901 -1159, 1101, 1073, 1075, -1159, -1159, -1159, -1159, -1159, 56,
3902 -1159, -1159, 1076, -1159, 1081, -1159, -1159, -1159, -1159, -1159,
3903 -1159, -1159, -1159, -1159, -1159, -1159, 56, 56, 56, 56,
3904 56, 56, 289, 15860, 11453, 15958, 1113, -1159, 1151, -1159,
3905 -1159, 11333, 11333, -1159, 1315, -1159, 8093, 1086, -1159, -1159,
3906 835, -1159, 1926, -1159, 1102, 14441, 1926, -1159, -1159, 1190,
3907 1050, 1344, -1159, -1159, 14514, -1159, 764, -1159, 14514, 4964,
3908 318, -1159, -1159, -1159, -1159, -1159, -1159, 218, 234, 56,
3909 328, 354, -1159, -1159, 8549, -1159, -1159, -1159, 891, -1159,
3910 -1159, 107, -1159, -1159, 798, -1159, -1159, 1089, 1095, -1159,
3911 1050, 1104, 1106, -1159, 16056, 1089, 1109, 56, 1109, -1159,
3912 -1159, 364, 410, 1315, -1159, -1159, -1159, 1344, -1159, 1344,
3913 -1159, 1926, -1159, 1344, -1159, 1092, 1100, -1159, 14514, -1159,
3914 -1159, -1159, -1159, -1159, 1089, 1089, 1117, 1089, -1159, -1159,
3915 1344, -1159, -1159, 1089, -1159
3921static const yytype_int16 yydefact[] =
3923 2, 0, 0, 47, 403, 404, 405, 0, 396, 397,
3924 398, 401, 26, 26, 26, 390, 391, 392, 393, 415,
3925 416, 320, 696, 695, 697, 698, 64, 0, 64, 0,
3926 812, 700, 699, 701, 97, 99, 690, 689, 98, 691,
3927 685, 686, 687, 688, 634, 706, 707, 0, 0, 0,
3928 0, 0, 0, 0, 812, 812, 126, 487, 660, 660,
3929 662, 664, 0, 0, 0, 0, 0, 0, 0, 6,
3930 3, 8, 26, 10, 43, 49, 40, 58, 61, 46,
3931 715, 715, 70, 91, 320, 90, 0, 112, 0, 116,
3932 128, 0, 237, 79, 246, 282, 266, 283, 395, 0,
3933 348, 0, 0, 87, 87, 0, 0, 0, 0, 0,
3934 357, 320, 367, 94, 365, 337, 338, 633, 635, 339,
3935 340, 643, 341, 649, 343, 653, 342, 655, 344, 632,
3936 677, 678, 631, 683, 694, 702, 703, 345, 0, 346,
3937 7, 1, 205, 216, 206, 229, 202, 222, 212, 211,
3938 232, 233, 227, 210, 209, 204, 230, 234, 235, 214,
3939 203, 217, 221, 223, 215, 208, 224, 231, 226, 225,
3940 218, 228, 213, 201, 220, 219, 200, 207, 198, 199,
3941 195, 196, 197, 155, 157, 156, 190, 191, 186, 168,
3942 169, 170, 177, 174, 176, 171, 172, 192, 193, 178,
3943 179, 183, 187, 173, 175, 165, 166, 167, 180, 181,
3944 182, 184, 185, 188, 189, 194, 160, 162, 33, 158,
3945 159, 161, 399, 400, 402, 0, 786, 0, 0, 331,
3946 789, 323, 660, 0, 715, 715, 314, 0, 296, 297,
3947 326, 315, 110, 319, 812, 327, 0, 702, 703, 0,
3948 346, 812, 782, 111, 812, 506, 0, 107, 65, 64,
3949 0, 0, 28, 812, 12, 0, 11, 27, 293, 390,
3950 391, 507, 0, 260, 0, 357, 360, 261, 251, 252,
3951 354, 24, 0, 0, 3, 21, 23, 64, 114, 20,
3952 350, 0, 64, 64, 298, 0, 0, 64, 780, 64,
3953 0, 0, 0, 715, 715, 124, 394, 0, 132, 133,
3954 140, 484, 680, 0, 679, 681, 0, 0, 0, 640,
3955 644, 656, 650, 658, 684, 74, 272, 273, 809, 808,
3956 5, 810, 0, 0, 0, 0, 0, 0, 812, 0,
3957 0, 746, 0, 714, 386, 746, 712, 0, 388, 406,
3958 511, 500, 100, 513, 364, 407, 513, 496, 812, 130,
3959 0, 122, 117, 812, 77, 0, 0, 0, 0, 0,
3960 289, 290, 0, 0, 0, 0, 249, 250, 0, 0,
3961 75, 0, 287, 288, 0, 0, 0, 0, 0, 0,
3962 0, 0, 0, 0, 799, 800, 0, 812, 0, 0,
3963 86, 84, 85, 0, 0, 0, 0, 0, 374, 3,
3964 4, 0, 427, 426, 0, 0, 702, 703, 346, 150,
3965 151, 0, 0, 153, 812, 0, 702, 703, 346, 384,
3966 225, 218, 228, 213, 195, 196, 197, 155, 156, 778,
3967 81, 80, 777, 776, 0, 775, 109, 64, 108, 802,
3968 801, 0, 366, 636, 812, 812, 163, 785, 354, 330,
3969 788, 322, 0, 0, 0, 812, 0, 0, 316, 325,
3970 0, 812, 0, 812, 812, 0, 317, 747, 64, 310,
3971 812, 64, 812, 309, 321, 0, 64, 363, 73, 30,
3972 32, 31, 0, 812, 294, 0, 0, 0, 0, 812,
3973 0, 64, 352, 14, 0, 113, 0, 355, 807, 806,
3974 299, 807, 301, 356, 781, 0, 139, 684, 127, 119,
3975 714, 0, 0, 812, 0, 485, 666, 682, 669, 667,
3976 661, 637, 638, 663, 639, 665, 641, 0, 0, 0,
3977 0, 0, 811, 9, 0, 34, 35, 36, 37, 295,
3978 0, 71, 72, 753, 750, 749, 748, 751, 759, 760,
3979 747, 0, 766, 761, 770, 769, 765, 812, 762, 719,
3980 812, 725, 745, 728, 731, 64, 726, 752, 754, 755,
3981 757, 731, 718, 764, 440, 439, 768, 731, 772, 724,
3982 0, 0, 0, 0, 0, 484, 0, 511, 101, 484,
3983 0, 0, 0, 64, 0, 118, 131, 0, 524, 258,
3984 265, 267, 268, 269, 276, 277, 270, 271, 247, 248,
3985 274, 275, 524, 64, 262, 263, 264, 253, 254, 255,
3986 256, 257, 291, 292, 790, 792, 791, 793, 505, 320,
3987 503, 64, 812, 790, 792, 791, 793, 504, 320, 812,
3988 0, 418, 0, 417, 0, 0, 0, 0, 0, 372,
3989 354, 0, 812, 0, 377, 382, 150, 151, 152, 708,
3990 380, 710, 0, 812, 0, 0, 0, 797, 798, 82,
3991 64, 359, 790, 791, 320, 0, 0, 0, 812, 0,
3992 0, 0, 0, 784, 328, 324, 329, 812, 790, 791,
3993 64, 790, 791, 0, 0, 783, 304, 311, 306, 313,
3994 803, 362, 29, 0, 278, 13, 353, 0, 812, 0,
3995 25, 115, 22, 351, 64, 0, 125, 794, 138, 64,
3996 790, 791, 486, 670, 0, 642, 0, 646, 0, 652,
3997 648, 0, 0, 654, 259, 0, 38, 0, 438, 430,
3998 432, 64, 435, 428, 0, 723, 774, 0, 722, 0,
3999 741, 713, 0, 0, 0, 738, 717, 590, 763, 767,
4000 0, 743, 771, 64, 59, 62, 284, 280, 0, 716,
4001 60, 281, 0, 485, 509, 0, 485, 413, 414, 510,
4002 495, 331, 92, 93, 41, 333, 0, 45, 332, 129,
4003 123, 0, 0, 69, 48, 67, 0, 302, 326, 236,
4004 42, 0, 346, 522, 522, 0, 812, 812, 511, 502,
4005 104, 0, 508, 311, 812, 812, 308, 501, 102, 307,
4006 812, 349, 812, 419, 812, 421, 88, 420, 370, 371,
4007 410, 0, 0, 524, 0, 0, 794, 353, 64, 790,
4008 791, 0, 0, 0, 0, 150, 151, 154, 64, 0,
4009 64, 0, 358, 497, 95, 50, 302, 238, 57, 245,
4010 164, 0, 787, 64, 318, 812, 812, 508, 812, 812,
4011 64, 812, 64, 56, 244, 300, 120, 508, 26, 671,
4012 668, 675, 676, 645, 647, 657, 651, 659, 39, 64,
4013 437, 0, 756, 0, 773, 720, 764, 812, 730, 729,
4014 731, 731, 442, 727, 731, 758, 731, 755, 731, 0,
4015 812, 812, 387, 389, 486, 96, 486, 336, 0, 812,
4016 121, 354, 812, 812, 812, 0, 812, 0, 523, 523,
4017 0, 0, 0, 0, 105, 804, 812, 0, 0, 103,
4018 408, 812, 18, 623, 412, 411, 0, 0, 0, 422,
4019 424, 0, 89, 0, 515, 0, 375, 522, 0, 376,
4020 508, 0, 0, 0, 0, 508, 385, 779, 83, 498,
4021 499, 0, 0, 0, 812, 0, 0, 305, 312, 361,
4022 746, 0, 429, 431, 433, 436, 721, 0, 742, 0,
4023 739, 0, 734, 0, 736, 744, 66, 286, 0, 0,
4024 26, 26, 331, 334, 0, 0, 0, 0, 790, 791,
4025 64, 790, 791, 0, 0, 279, 54, 242, 55, 243,
4026 106, 0, 52, 240, 53, 241, 624, 625, 812, 626,
4027 812, 15, 425, 0, 368, 369, 516, 0, 0, 523,
4028 373, 378, 0, 709, 381, 0, 746, 488, 491, 0,
4029 0, 0, 731, 731, 731, 731, 63, 285, 812, 812,
4030 335, 44, 68, 303, 508, 615, 621, 586, 0, 0,
4031 0, 523, 64, 523, 574, 660, 0, 612, 78, 532,
4032 538, 540, 542, 536, 535, 570, 537, 579, 582, 585,
4033 591, 592, 581, 545, 593, 614, 0, 546, 598, 599,
4034 600, 603, 604, 605, 606, 607, 609, 608, 610, 611,
4035 589, 76, 51, 239, 0, 0, 628, 409, 0, 19,
4036 630, 0, 0, 0, 517, 812, 0, 0, 383, 64,
4037 0, 674, 673, 672, 434, 740, 735, 0, 732, 737,
4038 476, 0, 474, 473, 0, 613, 601, 602, 151, 619,
4039 0, 562, 64, 563, 567, 64, 0, 557, 0, 812,
4040 560, 573, 0, 616, 0, 617, 0, 533, 0, 0,
4041 580, 584, 596, 597, 0, 523, 523, 0, 0, 588,
4042 0, 627, 0, 702, 703, 346, 0, 3, 16, 812,
4043 518, 520, 521, 519, 0, 529, 0, 478, 0, 493,
4044 0, 489, 731, 812, 445, 812, 451, 472, 454, 457,
4045 477, 64, 755, 457, 444, 457, 450, 512, 514, 64,
4046 555, 577, 565, 564, 556, 568, 805, 558, 587, 64,
4047 539, 534, 570, 541, 571, 575, 660, 583, 578, 594,
4048 595, 620, 544, 554, 543, 550, 64, 64, 64, 64,
4049 64, 64, 354, 0, 812, 0, 812, 629, 812, 423,
4050 525, 0, 0, 379, 0, 490, 0, 0, 733, 449,
4051 0, 448, 0, 468, 0, 0, 452, 463, 465, 0,
4052 443, 0, 470, 561, 0, 569, 0, 618, 0, 0,
4053 0, 547, 548, 549, 551, 552, 553, 794, 353, 64,
4054 790, 791, 622, 17, 0, 530, 531, 482, 64, 480,
4055 483, 0, 492, 446, 812, 456, 455, 457, 457, 475,
4056 453, 457, 457, 354, 0, 457, 566, 64, 571, 572,
4057 576, 508, 812, 0, 479, 494, 447, 0, 469, 0,
4058 466, 0, 460, 0, 462, 794, 353, 471, 0, 559,
4059 527, 528, 526, 481, 457, 457, 457, 457, 467, 461,
4060 0, 458, 464, 457, 459
4064static const yytype_int16 yypgoto[] =
4066 -1159, -97, 1008, -1159, -1159, -1159, 942, -1159, 777, -27,
4067 -1159, -1159, -563, -1159, 148, 785, -1159, 19, -1159, -1159,
4068 18, -1159, -1159, -409, -1159, -1159, -529, 50, -627, -65,
4069 -1159, -1159, 418, 2809, -1159, 2939, -1159, -98, -1159, -1159,
4070 1177, -7, -1159, 689, -1159, -664, 1419, -10, 1193, -144,
4071 63, -418, -35, -1159, 40, 3457, -399, 1186, -37, 8,
4072 -1159, -1159, -5, -1159, -1159, 4575, -1159, -1159, -537, 1204,
4073 -1159, 995, 809, 60, -1159, 829, -1159, 515, -9, 617,
4074 -384, -1159, 74, -1159, 2, -382, -222, 26, -394, -1159,
4075 -559, -45, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
4076 -1159, -1159, -1159, -1159, 983, -1159, -1159, -1159, -1159, -1159,
4077 -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159, -1159,
4078 360, -1159, -490, 1790, 2161, -388, 343, 117, -777, -1159,
4079 -776, -801, 577, 424, -431, -1159, 105, 49, -1159, -1159,
4080 185, -1159, -1158, 53, -324, -1159, 267, -1159, -1159, 120,
4081 -1159, 3, 290, -353, -314, -1159, -1159, 435, -1159, -1159,
4082 -1159, 478, -1159, -1159, -94, -1159, -515, -1159, 1006, -1159,
4083 -770, -1159, -681, -720, -538, -1159, 9, -1159, -1159, -896,
4084 -263, -1159, -1159, -1159, -1159, 187, -1159, -71, -1159, -902,
4085 -637, -1045, -361, -990, -1061, -1159, 186, -1159, -1159, -893,
4086 193, -1159, -628, -1159, -522, 199, -1159, -1159, -1159, 97,
4087 -1159, -1159, 108, 667, 1124, -1159, 1262, 1291, 1607, 34,
4088 -1159, 1900, -1159, 842, -1159, 2187, -1159, -1159, 2372, -1159,
4089 2550, -1159, -1159, -58, -1159, -1159, -166, -1159, -1159, -1159,
4090 -1159, -1159, -1159, 38, -1159, -1159, -1159, -1159, 35, -49,
4091 3587, -1, 1274, 3715, 2551, -1159, -1159, 64, 791, 62,
4092 -1159, 627, -1159, -1159, -302, -682, 621, -419, -298, -224,
4093 -1137, -316, -307, -746, 70, -822, -323, -1159, -733, -1159,
4094 -615, -1159, -552, -543, -1159, -1159, -1159, -1159, -1159, 55,
4095 -392, -317, -1159, -1159, -96, -1159, 135, -378, 57, -247,
4100static const yytype_int16 yydefgoto[] =
4102 0, 330, 69, 1, 2, 70, 71, 265, 266, 649,
4103 1131, 1268, 650, 1040, 284, 285, 500, 222, 72, 492,
4104 286, 74, 75, 76, 77, 78, 774, 485, 804, 79,
4105 622, 608, 440, 234, 861, 235, 402, 403, 405, 962,
4106 406, 82, 793, 805, 83, 598, 272, 85, 86, 287,
4107 87, 518, 88, 89, 90, 237, 423, 424, 216, 217,
4108 218, 687, 637, 220, 92, 93, 94, 95, 777, 392,
4109 96, 549, 495, 550, 239, 240, 291, 809, 638, 827,
4110 478, 241, 479, 256, 257, 243, 468, 642, 245, 797,
4111 798, 97, 399, 506, 844, 658, 851, 1137, 854, 852,
4112 675, 591, 594, 98, 274, 100, 101, 102, 103, 104,
4113 105, 106, 107, 108, 109, 353, 356, 951, 1128, 841,
4114 956, 957, 789, 275, 276, 652, 836, 958, 959, 415,
4115 749, 750, 751, 752, 567, 762, 763, 1214, 1215, 1216,
4116 1325, 1287, 1218, 1219, 1283, 1220, 1151, 1152, 1221, 1208,
4117 1318, 1319, 525, 732, 888, 311, 1140, 112, 1057, 1211,
4118 1276, 357, 113, 114, 354, 595, 596, 599, 600, 965,
4119 842, 1203, 938, 1023, 813, 1314, 845, 1362, 1204, 1088,
4120 1231, 1090, 1091, 1187, 1188, 1092, 1296, 1162, 1163, 1164,
4121 1094, 1095, 1244, 1166, 1096, 1097, 1098, 1099, 1100, 568,
4122 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 952,
4123 1038, 1125, 1129, 115, 116, 117, 118, 119, 120, 320,
4124 121, 122, 537, 736, 123, 124, 539, 125, 126, 127,
4125 128, 538, 540, 313, 317, 318, 530, 734, 733, 889,
4126 991, 1143, 890, 129, 130, 314, 131, 132, 133, 134,
4127 247, 248, 137, 249, 250, 853, 670, 342, 343, 344,
4128 345, 569, 570, 571, 908, 573, 574, 760, 575, 576,
4129 577, 578, 917, 580, 581, 582, 583, 584, 585, 586,
4130 587, 588, 589, 755, 443, 444, 445, 676, 296, 482,
4131 252, 717, 640, 679, 674, 451, 487, 822, 1170, 510,
4138static const yytype_int16 yytable[] =
4140 136, 316, 219, 398, 404, 236, 236, 409, 408, 315,
4141 332, 306, 255, 641, 331, 140, 654, 450, 915, 73,
4142 452, 312, 219, 668, 907, 283, 290, 758, 778, 476,
4143 481, 782, 223, 224, 579, 262, 401, 401, 579, 572,
4144 401, 244, 244, 572, 306, 221, 512, 592, 810, 331,
4145 514, 136, 136, 219, 362, 309, 781, 961, 865, 868,
4146 325, 306, 306, 306, 780, 221, 289, 289, 294, 298,
4147 251, 251, 441, 696, 968, 351, 260, 909, 263, 639,
4148 292, 648, 785, 705, 814, 695, 352, 700, 309, 242,
4149 253, 333, 883, 695, 346, 346, 305, 321, 322, 323,
4150 236, 324, 995, 726, 219, 417, 427, 427, 427, 293,
4151 297, 790, 859, 448, 696, 288, 349, 787, 1232, 705,
4152 -141, 1093, 1093, -135, 1326, 993, 1258, 1261, 1121, 1176,
4153 1101, 1101, 1242, 939, 684, 526, 244, 1320, 501, 729,
4154 -113, -394, 876, 348, 911, 347, 365, 738, -704, 916,
4155 472, 533, 535, 639, 781, 648, 944, 835, -704, 651,
4156 831, -129, 765, -142, 949, 251, 838, 839, 771, -394,
4157 -394, 328, 1209, 1233, 462, 788, -147, 329, 498, 1176,
4158 394, 718, -141, 1177, 446, -141, 800, 503, -705, 1245,
4159 528, 529, -141, 1326, 486, 488, 141, 651, 803, -791,
4160 739, 283, 904, -132, -149, 904, 1320, 718, 395, 449,
4161 258, 524, 389, 390, 391, 1141, 603, 339, 340, 1024,
4162 339, 340, -142, 349, 504, -394, 264, 136, 331, -142,
4163 319, -146, -135, -577, 1093, 1337, 545, 546, 547, 548,
4164 1205, 350, 289, 1101, 236, 753, 236, -147, 346, 346,
4165 -132, 915, -135, -135, 1339, 283, -135, 306, 469, 1144,
4166 476, -149, 255, 351, 136, 469, 1210, 519, 483, 401,
4167 401, 401, 401, 857, 551, 552, 803, 803, 848, 140,
4168 480, 136, 244, 73, 328, 993, 1049, 1101, 922, 858,
4169 329, 974, 923, -133, 1101, 1101, 289, 348, 463, 464,
4170 328, 309, -148, 943, 1245, 967, 329, 655, 1245, 1340,
4171 803, 251, 659, 696, 1026, 1028, 306, 705, 663, 909,
4172 1032, 1034, 877, 665, -146, 695, -141, 695, 1224, 1136,
4173 484, 136, -141, 283, -140, 1142, 517, 258, 328, 1047,
4174 401, -144, 509, 509, 329, 288, 718, 509, 350, 515,
4175 73, 887, 966, 331, 254, 969, 401, 718, 1201, 136,
4176 309, 1160, 280, 1169, 996, 1202, 348, -145, 1340, 976,
4177 -142, 737, -146, 737, 289, -790, -142, -143, -146, 656,
4178 657, -148, 1007, 930, 526, 564, 1064, 236, -147, 647,
4179 1006, -791, 1037, 646, -147, 742, -147, 319, 136, -696,
4180 1184, 605, -149, 1101, 1122, 136, 136, -695, -149, 1052,
4181 355, 483, -144, 289, -145, -143, -64, 565, 258, -705,
4182 289, 289, 505, 288, 258, 955, 1176, 259, -696, 696,
4183 924, 753, 900, 926, 906, 843, -695, 236, 671, 528,
4184 529, 695, 1238, -148, 1007, 1165, 646, 474, 743, -148,
4185 1155, 1155, 579, -142, -137, 1185, -790, 579, 1224, 1186,
4186 1224, 236, 359, 647, 1224, 1252, 1254, 646, 1044, 1224,
4187 970, 1045, -697, 244, -133, 874, 306, 885, 1050, 258,
4188 975, -149, -144, 880, 1054, 483, 519, 219, -144, 647,
4189 59, 998, 1000, 646, 469, 1002, 469, 1004, 767, 1005,
4190 712, -697, 251, 136, 258, -137, 370, 371, -145, -64,
4191 358, -139, 455, 236, -145, 647, 768, 745, -143, 646,
4192 309, 680, 697, 526, -143, 1224, -138, 1224, -791, 1224,
4193 221, 1224, 803, 803, 696, 1225, 779, 483, 803, 803,
4194 915, -812, -135, 136, -136, -134, -149, 1324, 1224, 136,
4195 1257, 1260, 1020, 767, 1155, 1155, 1156, 1157, 289, 306,
4196 382, 383, 1138, 724, 341, 1360, 363, -140, 746, 519,
4197 894, 1189, 955, -698, 840, 894, 527, 1048, 528, 529,
4198 775, 756, 681, 775, 756, 753, -700, 753, -136, 688,
4199 136, 1228, 499, 136, 454, 792, 705, 878, 1226, 837,
4200 792, 915, -698, 309, 456, 289, 695, 803, 289, 259,
4201 1010, 860, 1011, 706, -137, -700, 708, 458, 639, 465,
4202 648, 711, 803, -148, 466, 832, -148, 834, 796, 467,
4203 819, -144, 473, 796, -137, -137, 721, -790, -137, 826,
4204 493, 820, 1074, 1145, 1146, 1148, 1149, -139, 882, 365,
4205 828, 136, 236, 136, 647, 1132, 469, 475, 646, 874,
4206 1249, 1250, 829, 236, 254, 647, 289, 1328, 289, 646,
4207 1279, 1332, 1281, 815, 136, 826, 483, 447, 792, 792,
4208 306, 1159, 219, 579, 502, 891, 864, 483, 572, 289,
4209 886, 821, 1058, 824, 579, 870, -112, -136, 829, 879,
4210 1120, 1120, 258, 508, 1167, -134, 455, 984, 819, 826,
4211 761, 469, 792, 1321, -353, 937, 1273, -136, -136, 1213,
4212 513, -136, -699, 825, 309, 221, 507, -144, 904, 516,
4213 1226, 499, 829, -145, 1226, -701, 1366, 1196, 799, 1226,
4214 -149, -143, -353, -353, 753, 753, 824, 341, -135, 579,
4215 821, -699, 521, 971, 572, 973, 306, -145, 1139, 536,
4216 1089, 1089, 881, 394, -701, -148, 519, 666, 541, 979,
4217 893, 667, 895, 544, 509, 896, 897, 394, -136, 821,
4218 -144, 1346, 394, 825, 1230, 1251, 401, 1234, 401, 590,
4219 666, 395, 396, 1278, 1158, 1226, 972, 1226, -353, 1226,
4220 309, 1226, -791, 946, 394, 395, 470, 1253, 258, 511,
4221 395, 497, -692, 1120, -134, 862, 1270, -145, 1226, 1161,
4222 946, -702, 1077, 919, 441, 1173, -711, 36, 37, 910,
4223 39, 1345, 395, 522, -134, -134, 1181, -143, -134, 593,
4224 918, -692, 559, 1222, 953, 597, 960, 397, 960, -702,
4225 -702, 1213, 606, 136, -143, 1213, 219, 1120, -134, 1043,
4226 1213, 471, -703, 258, 1120, 1120, 471, -64, 289, 954,
4227 955, -693, 563, 1089, -346, 1174, 1246, 542, 881, 660,
4228 1309, 1304, 1305, 1306, 295, 783, 902, 664, 523, 786,
4229 -703, -703, 401, 558, 669, 469, 526, 1229, 821, 1288,
4230 -693, 1292, -346, -346, 690, -702, 526, 990, 821, 775,
4231 691, 526, 534, 559, 1161, 837, 1213, 1053, 1213, 710,
4232 1213, 756, 1213, 981, 1161, 1161, 236, 677, 647, 1042,
4233 707, 1341, 646, 1336, 792, 792, 709, 1338, 715, 1213,
4234 792, 792, -129, 563, 564, 725, -703, 723, 718, 531,
4235 483, 528, 529, 754, 394, 136, 678, 906, -346, 532,
4236 -441, 528, 529, 757, 1059, 1039, 528, 529, -613, -613,
4237 289, 136, 394, 1120, 759, 1222, 565, 796, 769, 1222,
4238 1008, 1009, 395, 661, 99, 772, 289, 1182, 1183, 1014,
4239 136, -354, 1015, 764, 1017, 977, 1271, 1272, 246, 246,
4240 395, 672, 770, 1348, 1350, 289, 784, 1352, 1354, 792,
4241 526, 1357, 801, 136, 136, 987, 823, 989, 840, -354,
4242 -354, 1135, 1119, 1119, 792, 267, 833, 1172, 843, 1068,
4243 1069, 901, 1071, 1072, 992, 99, 99, 1175, 662, 307,
4244 1368, 1369, 1371, 1372, 1222, 258, 1343, 136, 898, 1374,
4245 246, 912, 1126, 920, 1130, 457, 673, 903, 459, 460,
4246 461, 925, 289, 531, 921, 528, 529, -326, 689, 1062,
4247 821, 1063, 307, 1065, 394, -354, 1239, 1119, 1119, 306,
4248 928, 1119, 1153, 1153, 246, 246, 394, 931, 246, 414,
4249 425, 425, 929, 246, 520, 520, 1265, 489, 1119, 526,
4250 1267, 932, 395, 935, 1198, 1199, 1241, 490, 491, 401,
4251 1206, 526, 933, 940, 395, 1263, 1256, 1259, 945, 394,
4252 -97, 950, 955, 1194, 1227, 988, 768, 136, 997, 999,
4253 136, 136, 821, 1168, 1001, 1119, 136, 504, 1030, 1003,
4254 -330, 331, 289, 526, 1060, 289, 289, 395, 1334, 960,
4255 136, 289, 531, 136, 528, 529, 1124, 1238, 936, 1119,
4256 1127, -98, 1119, -692, 735, 289, 528, 529, 289, 1266,
4257 1264, 1061, 1171, 1315, 1316, 1150, 1119, 1119, 1119, 306,
4258 -328, 1119, 1119, 1277, 1147, 1178, 1119, 1119, 1300, 1207,
4259 1179, -692, -692, 1180, 1235, 136, 740, 1075, 528, 529,
4260 867, 869, 1176, 673, -693, 1236, 401, 401, 1262, 136,
4261 289, 99, 821, 960, 1274, 821, 1275, 1212, 867, 869,
4262 1223, 1280, 1282, 427, 289, 1286, 1291, 756, 1294, 756,
4263 1295, 1298, -693, -693, 884, 821, 1299, 246, 1322, 246,
4264 306, 1329, 246, 246, 1347, -97, 1333, -692, 99, -790,
4265 1349, -97, 36, 37, 236, 39, 647, -791, 494, 1351,
4266 646, 1353, 45, 46, 1358, 99, 365, 40, 41, 42,
4267 43, 1207, 1370, 496, 543, 136, 1197, 720, 483, 978,
4268 953, 407, 1130, -794, 427, 307, -98, 1342, -693, 722,
4269 289, 794, -98, 1119, 429, 693, 694, 1119, 1119, 412,
4270 393, 863, 713, 553, 295, 554, 555, 556, 557, 821,
4271 821, 821, 1041, 136, 1051, 99, 1269, 246, 246, 246,
4272 246, 1255, 246, 246, 899, 994, -794, 1285, 289, 1323,
4273 387, 388, 389, 390, 391, 1217, 1154, 694, 756, 1331,
4274 295, 1284, 980, 99, 307, 553, 1363, 554, 555, 556,
4275 557, 1361, 1327, 602, -794, -794, 960, 1119, 607, 821,
4276 365, 1335, 601, 1312, 1293, 1243, 1247, 1317, 1344, 554,
4277 555, 556, 557, 1248, 1297, 1240, 1313, 378, 379, 453,
4278 246, 741, 99, 442, 905, 914, 884, 1168, 246, 99,
4279 99, 1301, 1302, 1303, 1359, 747, 553, 0, 554, 555,
4280 556, 557, 558, 0, 246, 0, 0, 0, -794, 0,
4281 -794, 766, 0, 0, -790, 0, 0, 0, 0, 1364,
4282 84, 1365, 559, 1367, 387, 388, 389, 390, 391, 0,
4283 246, 795, 0, 0, 84, 84, 808, 0, 0, 553,
4284 1373, 554, 555, 556, 557, 558, 561, 0, 0, 685,
4285 686, 0, 563, 564, 246, 0, 1027, 1029, 1087, 1087,
4286 692, 0, 1033, 1035, 0, 559, 0, 0, 703, 704,
4287 0, 84, 84, 334, 335, 336, 337, 338, 0, 560,
4288 0, 0, 0, 0, 0, 565, 84, 99, 494, 561,
4289 0, 0, 0, 0, 719, 563, 564, 1027, 1029, 0,
4290 1033, 1035, 0, 0, 307, 553, 246, 554, 555, 556,
4291 557, 558, 0, 1087, 1087, 0, 0, 1087, 872, 0,
4292 84, 84, 0, 0, 84, 0, 0, 99, 565, 84,
4293 0, 559, 0, 99, 1087, 0, 694, 0, 295, 365,
4294 0, 0, 0, 0, 0, 560, 1123, 0, 0, 0,
4295 0, 0, 0, 0, 0, 561, 378, 379, 0, 0,
4296 562, 563, 564, 365, 0, 0, 0, 0, 0, 0,
4297 1123, 1087, 0, 246, 99, 0, 246, 99, 0, 0,
4298 378, 379, 0, 0, 0, 246, 0, 307, 0, 0,
4299 811, 0, 913, 0, 565, 1087, 0, 566, 1087, 0,
4300 384, 385, 386, 387, 388, 389, 390, 391, 0, 0,
4301 1056, 0, 1087, 1087, 1087, 0, 0, 1087, 1087, 0,
4302 927, 0, 1087, 1087, 0, 0, 386, 387, 388, 389,
4303 390, 391, 0, 0, 0, 99, 0, 99, 553, 0,
4304 554, 555, 556, 557, 830, 246, 0, 84, 0, 0,
4305 0, 0, 694, 0, 0, 0, 246, 0, 99, 246,
4306 0, 0, 0, 0, 0, 0, 0, 0, 811, 811,
4307 964, 0, 0, 84, 0, 84, 934, 0, 84, 84,
4308 0, 0, 0, 871, 84, 0, 0, 0, 747, 0,
4309 1111, 1111, 0, 748, 0, 0, 246, 0, 0, 0,
4310 0, 84, 811, 0, 0, 0, 0, 0, 307, 0,
4311 365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
4312 375, 376, 377, 0, 0, 0, 0, 378, 379, 1087,
4313 0, 0, 0, 1087, 1087, 0, 0, 0, 0, 0,
4314 0, 0, 0, 0, 0, 1111, 1111, 0, 0, 1111,
4315 0, 84, 0, 84, 84, 84, 84, 1013, 84, 84,
4316 0, 0, 0, 0, 0, 0, 1111, 381, 0, 382,
4317 383, 384, 385, 386, 387, 388, 389, 390, 391, 84,
4318 1036, 0, 0, 0, 307, 0, 0, -296, 0, 0,
4319 0, 110, 1046, 1087, 0, 0, 0, 0, 0, 0,
4320 0, 0, 0, 1111, 0, 110, 110, 0, 0, 0,
4321 0, 941, 942, 0, 0, 0, 84, 295, 84, 947,
4322 948, 0, 0, 0, 84, 84, 84, 1111, 0, 0,
4323 1111, 0, 0, 0, 246, 0, 246, 99, 0, 0,
4324 84, 1070, 110, 110, 1111, 1111, 1111, 0, 0, 1111,
4325 1111, 0, 0, 0, 1111, 1111, 553, 110, 554, 555,
4326 556, 557, 558, 0, 0, 0, 84, 0, 0, 0,
4327 982, 983, 0, 985, 986, 0, 1134, 0, 0, 0,
4328 0, 0, 559, 0, 0, 0, 0, 0, 0, 0,
4329 84, 110, 110, 0, 0, 110, 560, 0, 0, 0,
4330 110, 0, 246, 0, 0, 0, 561, 0, 0, 0,
4331 0, 562, 563, 564, 0, 0, 0, 0, 0, 246,
4332 0, 0, 0, 84, 811, 811, 0, 0, 1016, 0,
4333 811, 811, 0, 0, 0, 0, 0, 0, 0, 99,
4334 246, 1031, 84, 0, 0, 565, 0, 0, 566, 0,
4335 0, 0, 0, 0, 0, 99, 0, 0, 0, 0,
4336 0, 1111, 1200, 84, 0, 1111, 1111, 0, 0, 84,
4337 0, 0, 0, 0, 99, 0, 0, 0, 553, 1055,
4338 554, 555, 556, 557, 558, 0, 0, 0, 0, 0,
4339 0, 0, 0, 0, 0, 0, 0, 99, 99, 811,
4340 0, 0, 0, 0, 559, 0, 0, 0, 0, 84,
4341 84, 0, 84, 84, 811, 0, 0, 0, 110, 0,
4342 0, 84, 0, 0, 0, 1111, 84, 0, 561, 0,
4343 0, 99, 0, 562, 563, 564, 0, 0, 0, 0,
4344 0, 0, 0, 0, 110, 0, 110, 0, 0, 110,
4345 110, 0, 0, 0, 0, 110, 0, 0, 0, 0,
4346 0, 0, 0, 0, 0, 0, 0, 565, 0, 0,
4347 566, 84, 110, 84, 0, 0, 0, 0, 0, 0,
4348 0, 84, 0, 0, 0, 0, 0, 0, 0, 0,
4349 0, 0, 84, 0, 84, 84, 0, 0, 0, 0,
4350 0, 0, 0, 0, 84, 84, 0, 1192, 0, 0,
4351 0, 99, 0, 0, 99, 99, 0, 0, 0, 0,
4352 99, 0, 110, 0, 110, 110, 110, 110, 0, 110,
4353 110, 0, 84, 0, 99, 0, 0, 99, 84, 0,
4354 0, 0, 0, 0, 0, 0, 0, 1112, 1112, 0,
4355 110, 0, 0, 0, 0, 0, 0, 246, 0, 0,
4356 0, 0, 111, 0, 1237, 0, 0, 0, 0, 0,
4357 0, 0, 0, 0, 0, 0, 111, 111, 0, 99,
4358 0, 0, 0, 0, 0, 0, 0, 110, 0, 110,
4359 0, 0, 0, 99, 0, 110, 110, 110, 0, 0,
4360 0, 0, 1112, 1112, 0, 0, 1112, 1290, 0, 0,
4361 0, 110, 0, 111, 111, 365, 366, 367, 368, 369,
4362 370, 371, 372, 1112, 374, 375, 0, 0, 111, 0,
4363 0, 0, 378, 379, 0, 0, 0, 110, 0, 0,
4364 0, 0, 0, 0, 0, 0, 0, 246, 0, 0,
4365 0, 0, 0, 0, 246, 246, 0, 0, 0, 99,
4366 1112, 110, 111, 111, 0, 0, 111, 0, 1330, 0,
4367 84, 111, 84, 84, 382, 383, 384, 385, 386, 387,
4368 388, 389, 390, 391, 1112, 0, 0, 1112, 364, 0,
4369 0, 0, 0, 0, 110, 0, 0, 99, 0, 0,
4370 0, 1112, 1112, 1112, 0, 0, 1112, 1112, 0, 0,
4371 0, 1112, 1112, 110, 1113, 1113, 0, 0, 0, 0,
4372 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4373 0, 0, 0, 0, 110, 0, 0, 0, 84, 0,
4374 110, 365, 366, 367, 368, 369, 370, 371, 372, 373,
4375 374, 375, 376, 377, 0, 84, 0, 0, 378, 379,
4376 84, 84, 0, 0, 380, 0, 84, 84, 0, 1113,
4377 1113, 0, 0, 1113, 0, 84, 84, 0, 0, 0,
4378 110, 110, 0, 110, 110, 0, 0, 0, 0, 111,
4379 1113, 84, 110, 0, 0, 0, 0, 110, 381, 0,
4380 382, 383, 384, 385, 386, 387, 388, 389, 390, 391,
4381 84, 0, 0, 0, 0, 111, 0, 111, 1112, 0,
4382 111, 111, 1112, 1112, 0, 0, 111, 1113, 0, 0,
4383 0, 0, 0, 84, 84, 84, 0, 0, 0, 0,
4384 0, 0, 110, 111, 110, 0, 0, 0, 0, 0,
4385 84, 1113, 110, 0, 1113, 0, 0, 0, 0, 0,
4386 0, 0, 0, 110, 0, 110, 110, 84, 1113, 1113,
4387 1113, 0, 0, 1113, 1113, 110, 110, 0, 1113, 1113,
4388 0, 0, 1112, 0, 0, 0, 0, 0, 0, 0,
4389 0, 0, 0, 111, 0, 111, 111, 111, 111, 0,
4390 111, 111, 0, 110, 0, 0, 0, 0, 0, 110,
4391 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4392 0, 111, 0, 0, 0, 0, 0, 0, 0, 0,
4393 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4394 0, 0, 0, 0, 0, 0, 0, 84, 0, 0,
4395 84, 84, 139, 0, 0, 0, 84, 0, 111, 0,
4396 111, 0, 0, 0, 0, 0, 111, 111, 111, 0,
4397 84, 0, 0, 84, 0, 0, 0, 0, 0, 0,
4398 0, 0, 111, 0, 0, 1113, 0, 0, 0, 1113,
4399 1113, 0, 0, 84, 22, 23, 24, 25, 0, 0,
4400 0, 0, 0, 139, 139, 0, 0, 310, 111, 0,
4401 31, 32, 33, 0, 0, 84, 0, 0, 0, 0,
4402 40, 41, 42, 43, 44, 0, 0, 0, 0, 84,
4403 1114, 1114, 111, 0, 0, 0, 0, 0, 0, 0,
4404 310, 110, 0, 110, 110, 0, 0, 0, 0, 1113,
4405 0, 0, 0, 0, 0, 0, 0, 418, 428, 428,
4406 0, 0, 0, 0, 0, 111, 0, 0, 0, 0,
4407 0, 57, 58, 59, 60, 61, 62, 63, 64, 65,
4408 0, 0, 0, 84, 111, 1114, 1114, 0, 0, 1114,
4409 84, 84, 0, 0, 0, 84, 0, 0, 0, 0,
4410 0, 0, 0, 0, 0, 111, 1114, 0, 301, 110,
4411 0, 111, 0, 0, 0, 0, 0, 0, 0, 0,
4412 0, 0, 0, 0, 0, 0, 110, 0, 0, 0,
4413 0, 110, 110, 84, 0, 0, 0, 110, 110, 0,
4414 0, 0, 0, 1114, 0, 0, 110, 110, 0, 0,
4415 0, 111, 111, 0, 111, 111, 0, 0, 0, 0,
4416 0, 0, 110, 111, 0, 0, 0, 1114, 111, 0,
4417 1114, 0, 0, 0, 0, 0, 0, 0, 0, 139,
4418 0, 110, 0, 0, 1114, 1114, 1114, 0, 0, 1114,
4419 1114, 0, 0, 0, 1114, 1114, 0, 0, 0, 0,
4420 0, 0, 0, 0, 110, 110, 110, 0, 0, 0,
4421 80, 0, 0, 111, 0, 111, 139, 0, 0, 0,
4422 0, 110, 0, 111, 0, 0, 0, 0, 0, 0,
4423 0, 0, 0, 139, 111, 0, 111, 111, 110, 0,
4424 0, 0, 0, 0, 0, 0, 111, 111, 0, 0,
4425 0, 0, 0, 310, 0, 0, 0, 0, 0, 0,
4426 0, 80, 80, 0, 0, 303, 0, 0, 0, 0,
4427 0, 0, 0, 0, 111, 0, 0, 0, 0, 0,
4428 111, 0, 0, 139, 0, 0, 0, 0, 0, 0,
4429 0, 0, 0, 0, 0, 0, 0, 0, 303, 0,
4430 0, 1114, 0, 0, 0, 1114, 1114, 0, 0, 0,
4431 0, 139, 310, 0, 0, 303, 303, 303, 110, 0,
4432 0, 110, 110, 1115, 1115, 0, 0, 110, 0, 0,
4433 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4434 81, 110, 0, 0, 110, 0, 0, 0, 0, 0,
4435 139, 0, 0, 0, 0, 0, 0, 139, 139, 0,
4436 0, 0, 0, 0, 110, 1114, 0, 0, 0, 0,
4437 0, 0, 0, 0, 0, 0, 0, 0, 1115, 1115,
4438 0, 0, 1115, 0, 0, 0, 110, 0, 0, 0,
4439 0, 81, 81, 0, 0, 304, 0, 0, 0, 1115,
4440 110, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4441 0, 0, 111, 0, 111, 111, 0, 0, 0, 0,
4442 0, 0, 0, 0, 0, 0, 0, 0, 304, 0,
4443 0, 0, 0, 0, 0, 0, 1115, 80, 0, 0,
4444 0, 0, 0, 0, 0, 304, 304, 304, 0, 0,
4445 0, 0, 0, 0, 110, 139, 0, 0, 0, 0,
4446 1115, 110, 110, 1115, 0, 0, 110, 0, 0, 0,
4447 0, 0, 310, 0, 80, 0, 0, 1115, 1115, 1115,
4448 111, 0, 1115, 1115, 0, 0, 0, 1115, 1115, 0,
4449 0, 80, 0, 0, 0, 139, 0, 111, 0, 0,
4450 0, 139, 111, 111, 110, 0, 0, 0, 111, 111,
4451 0, 303, 0, 0, 0, 0, 0, 111, 111, 365,
4452 366, 367, 368, 369, 370, 371, 372, 373, 374, 375,
4453 -813, -813, 0, 111, 0, 0, 378, 379, 0, 0,
4454 0, 80, 139, 0, 0, 139, 0, 0, 0, 0,
4455 0, 0, 111, 0, 0, 310, 0, 0, 812, 0,
4456 0, 0, 0, 0, 0, 0, 0, 81, 0, 80,
4457 303, 0, 0, 0, 0, 111, 111, 111, 382, 383,
4458 384, 385, 386, 387, 388, 389, 390, 391, 0, 0,
4459 0, 0, 111, 0, 1115, 0, 0, 0, 1115, 1115,
4460 0, 0, 0, 139, 81, 139, 0, 0, 80, 111,
4461 1116, 1116, 0, 0, 0, 80, 80, 0, 0, 0,
4462 0, 81, 0, 0, 0, 0, 139, 0, 0, 0,
4463 0, 0, 0, 0, 0, 0, 812, 812, 0, 0,
4464 0, 304, 365, -813, -813, -813, -813, 370, 371, 0,
4465 0, -813, -813, 0, 0, 0, 0, 0, 1115, 378,
4466 379, 0, 0, 0, 0, 1116, 1116, 0, 0, 1116,
4467 812, 81, 0, 0, 0, 0, 310, 0, 0, 0,
4468 0, 0, 0, 0, 0, 892, 1116, 0, 0, 111,
4469 0, 0, 111, 111, 0, 0, 0, 0, 111, 81,
4470 304, 382, 383, 384, 385, 386, 387, 388, 389, 390,
4471 391, 0, 111, 80, 0, 111, 0, 0, 0, 0,
4472 0, 0, 0, 1116, 0, 0, 0, 0, 0, 0,
4473 303, 0, 0, 0, 0, 111, 0, 0, 81, 0,
4474 0, 0, 0, 0, 0, 81, 81, 1116, 0, 0,
4475 1116, 0, 310, 80, 0, 0, 0, 111, 0, 80,
4476 0, 0, 0, 0, 1116, 1116, 1116, 0, 0, 1116,
4477 1116, 111, 0, 0, 1116, 1116, 0, 0, 0, 0,
4478 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4479 0, 0, 0, 0, 0, 1117, 1117, 0, 0, 0,
4480 80, 0, 0, 80, 0, 139, 0, 0, 0, 0,
4481 0, 0, 0, 303, 0, 0, 80, 0, 0, 0,
4482 0, 0, 0, 0, 0, 111, 0, 0, 0, 0,
4483 0, 0, 111, 111, 0, 0, 0, 111, 0, 0,
4484 0, 0, 0, 81, 0, 0, 0, 0, 0, 0,
4485 1117, 1117, 0, 0, 1117, 0, 0, 0, 91, 0,
4486 304, 80, 0, 80, 0, 0, 0, 0, 0, 0,
4487 0, 1117, 0, 0, 0, 111, 0, 0, 0, 0,
4488 0, 1116, 0, 81, 80, 1116, 1116, 0, 0, 81,
4489 0, 0, 812, 812, 80, 80, 0, 0, 812, 812,
4490 0, 0, 0, 0, 0, 0, 0, 139, 1117, 91,
4491 91, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4492 0, 0, 0, 139, 0, 0, 0, 0, 80, 0,
4493 81, 0, 1117, 81, 303, 1117, 0, 0, 0, 0,
4494 0, 0, 139, 304, 0, 1116, 81, 0, 0, 1117,
4495 1117, 1117, 0, 0, 1117, 1117, 0, 0, 0, 1117,
4496 1117, 0, 0, 413, 0, 139, 139, 812, 0, 0,
4497 0, 0, 0, 1118, 1118, 0, 0, 0, 0, 0,
4498 0, 0, 812, 0, 0, 0, 0, 0, 135, 0,
4499 0, 81, 0, 81, 0, 0, 0, 0, 0, 139,
4500 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4501 303, 0, 0, 0, 81, 0, 0, 0, 0, 0,
4502 0, 0, 0, 0, 81, 81, 0, 0, 1118, 1118,
4503 0, 0, 1118, 0, 0, 0, 0, 0, 0, 135,
4504 135, 0, 0, 308, 0, 0, 0, 0, 0, 1118,
4505 0, 0, 0, 0, 0, 0, 0, 0, 81, 0,
4506 0, 0, 0, 80, 304, 0, 1117, 0, 0, 0,
4507 1117, 1117, 0, 0, 0, 1195, 308, 0, 0, 139,
4508 0, 0, 139, 139, 0, 91, 1118, 0, 139, 0,
4509 0, 0, 0, 416, 426, 426, 426, 0, 0, 0,
4510 0, 0, 139, 0, 0, 139, 0, 0, 0, 0,
4511 1118, 0, 0, 1118, 0, 0, 138, 0, 0, 0,
4512 0, 0, 91, 0, 0, 0, 0, 1118, 1118, 1118,
4513 1117, 0, 1118, 1118, 0, 0, 0, 1118, 1118, 91,
4514 304, 0, 0, 0, 0, 0, 0, 139, 0, 0,
4515 80, 80, 0, 0, 0, 0, 80, 80, 0, 0,
4516 0, 139, 0, 0, 0, 80, 0, 138, 138, 0,
4517 0, 0, 0, 0, 0, 428, 0, 0, 0, 0,
4518 0, 80, 0, 0, 0, 0, 0, 0, 0, 91,
4519 0, 0, 0, 81, 0, 0, 0, 0, 0, 0,
4520 80, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4521 0, 0, 0, 0, 0, 135, 0, 91, 0, 0,
4522 0, 0, 0, 80, 80, 80, 0, 139, 0, 0,
4523 0, 0, 0, 0, 0, 0, 428, 0, 0, 0,
4524 80, 0, 0, 0, 1118, 0, 0, 0, 1118, 1118,
4525 0, 0, 135, 0, 0, 0, 91, 80, 0, 0,
4526 0, 0, 0, 91, 91, 139, 0, 0, 0, 135,
4527 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4528 81, 81, 0, 0, 0, 0, 81, 81, 0, 308,
4529 0, 0, 0, 0, 0, 81, 0, 0, 0, 0,
4530 0, 0, 0, 0, 0, 0, 0, 0, 1118, 0,
4531 0, 81, 0, 0, 0, 0, 0, 0, 0, 135,
4532 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4533 81, 0, 0, 303, 0, 0, 0, 80, 0, 0,
4534 80, 80, 0, 138, 0, 0, 80, 135, 308, 0,
4535 0, 0, 0, 81, 81, 81, 0, 0, 0, 0,
4536 80, 91, 0, 80, 0, 0, 0, 0, 0, 0,
4537 81, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4538 138, 0, 0, 0, 0, 0, 135, 81, 0, 0,
4539 0, 0, 0, 135, 135, 0, 0, 138, 0, 0,
4540 -812, 91, 0, 0, 0, 80, 0, 91, -812, -812,
4541 -812, 0, 0, -812, -812, -812, 0, -812, 0, 80,
4542 0, 0, 0, 0, 0, -812, -812, -812, 0, 0,
4543 0, 0, 0, 303, 0, 0, 0, -812, -812, 0,
4544 -812, -812, -812, -812, -812, 0, 0, 138, 91, 0,
4545 0, 91, 0, 0, 0, 0, 0, 0, 0, 0,
4546 0, 0, 0, 304, 806, 0, 0, 81, -812, -812,
4547 81, 81, 0, 0, 0, 138, 81, 0, 0, 0,
4548 0, 0, 0, 0, 0, 80, 0, 0, 0, 0,
4549 81, 135, 0, 81, 303, 0, 0, -812, -812, 0,
4550 0, 0, 0, 0, 0, 0, 0, 0, 308, 91,
4551 0, 91, 0, 0, 138, 0, 0, 0, 0, 0,
4552 -812, 138, 138, 80, 0, 0, 0, 0, 0, 0,
4553 0, 135, 91, 0, 0, 81, 0, 135, 0, 0,
4554 0, 0, 806, 806, 0, 0, 0, 0, 0, 81,
4555 0, -812, -812, 0, -812, 0, 0, 254, -812, 0,
4556 -812, 0, 0, 304, 0, 0, 0, 0, 0, 0,
4557 0, 0, 0, 0, 0, 0, 806, 0, 135, 0,
4558 0, 135, 0, 365, 366, 367, 368, 369, 370, 371,
4559 0, 308, 374, 375, 0, 0, 0, 0, 0, 0,
4560 378, 379, 0, 0, 0, 0, 0, 0, 0, 0,
4561 0, 0, 0, 0, 0, 81, 0, 0, 0, 138,
4562 0, 0, 0, 0, 304, 0, 0, 0, 0, 0,
4563 0, 0, 0, 0, 0, 0, 0, 0, 0, 135,
4564 0, 135, 382, 383, 384, 385, 386, 387, 388, 389,
4565 390, 391, 0, 81, 0, 0, 0, 0, 0, 138,
4566 0, 0, 135, 0, 0, 138, 22, 23, 24, 25,
4567 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4568 0, 0, 31, 32, 33, 1075, 0, 0, 0, 1076,
4569 0, 0, 40, 41, 42, 43, 44, 0, 0, 0,
4570 0, 0, 0, 0, 0, 0, 138, 0, 0, 138,
4571 0, 91, 308, 0, 0, 0, 0, 0, 0, 0,
4572 0, 0, 138, 0, 1078, 1079, 0, 0, 0, 0,
4573 0, 0, 1080, 0, 0, 1081, 0, 1082, 1083, 0,
4574 1084, 0, 0, 57, 58, 59, 60, 61, 62, 63,
4575 64, 65, 0, 0, 0, 0, 0, 0, 0, 0,
4576 0, 0, 0, 0, 0, 0, 0, 138, 0, 138,
4577 0, 0, 0, 1086, 0, 0, 0, 0, 0, 0,
4578 301, 0, 0, 0, 0, 0, 0, 258, 308, 0,
4579 138, 0, 0, 0, 0, 0, 0, 0, 806, 806,
4580 138, 138, 0, 0, 806, 806, 0, 0, 0, 0,
4581 0, 0, 0, 91, 0, 0, 0, 0, 0, 0,
4582 0, 0, 0, 0, 0, 0, 0, 0, 0, 91,
4583 0, 0, 0, 0, 138, 22, 23, 24, 25, 0,
4584 0, 135, 0, 0, 0, 0, 0, 0, 91, 0,
4585 0, 31, 32, 33, 1075, 0, 0, 0, 1076, 0,
4586 1077, 40, 41, 42, 43, 44, 0, 0, 0, 0,
4587 0, 91, 91, 806, 0, 0, 0, 0, 0, 0,
4588 559, 0, 0, 0, 0, 0, 0, 0, 806, 0,
4589 0, 0, 0, 1078, 1079, 0, 0, 0, 0, 0,
4590 0, 1080, 0, 0, 1081, 91, 1082, 1083, 0, 1084,
4591 563, 0, 57, 58, 1085, 60, 61, 62, 63, 64,
4592 65, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4593 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4594 0, 0, 1086, 135, 0, 0, 0, 0, 0, 301,
4595 0, 0, 0, 0, 0, 0, 0, 0, 0, 135,
4596 0, 0, 0, 0, 0, 0, 0, 0, 0, 138,
4597 0, 0, 0, 0, 0, 0, 0, 0, 135, 0,
4598 0, 1191, 0, 0, 0, 91, 0, 0, 91, 91,
4599 238, 238, 0, 0, 91, 0, 0, 0, 0, 0,
4600 0, 135, 135, 0, 0, 0, 0, 0, 91, 0,
4601 0, 91, 0, 0, 0, 0, 0, 0, 0, 0,
4602 0, 0, 273, 277, 278, 279, 0, 0, 0, 238,
4603 238, 0, 0, 0, 0, 135, 0, 0, 0, 0,
4604 0, 0, 326, 327, 0, 0, 0, 0, 0, 0,
4605 0, 0, 0, 91, 0, 0, 138, 138, 934, 0,
4606 0, 0, 138, 138, 0, 0, 0, 91, 0, 0,
4607 0, 138, 0, 0, 0, 0, 0, 0, 0, 0,
4608 0, 0, 0, 0, 0, 238, 0, 138, 0, 0,
4609 0, 0, 365, 366, 367, 368, 369, 370, 371, 372,
4610 373, 374, 375, 376, 377, 0, 138, 0, 0, 378,
4611 379, 1193, 0, 0, 0, 135, 0, 0, 135, 135,
4612 0, 0, 0, 0, 135, 0, 0, 0, 0, 138,
4613 138, 138, 0, 91, 0, 0, 0, 0, 135, 0,
4614 0, 135, 0, 0, 0, 0, 138, 0, 0, 381,
4615 0, 382, 383, 384, 385, 386, 387, 388, 389, 390,
4616 391, 0, 0, 138, 0, 0, 0, 0, 0, 0,
4617 0, 91, 0, 0, 0, 0, 0, 0, 0, 0,
4618 0, 0, 0, 135, 0, 0, 0, 0, 0, 0,
4619 0, 0, 0, 0, 0, 0, 0, 135, 0, 0,
4620 0, 238, 0, 0, 238, 238, 238, 0, 326, 0,
4621 0, 426, 0, 0, 0, 0, 365, 366, 367, 368,
4622 369, 370, 371, 372, 373, 374, 375, 376, 377, 238,
4623 0, 238, 0, 378, 379, 0, 0, 0, 0, 0,
4624 0, 0, 0, 138, 0, 0, 138, 138, 0, 0,
4625 0, 0, 138, 0, 0, 0, 0, 0, 0, 0,
4626 0, 0, 0, 135, 0, 0, 138, 0, 0, 138,
4627 0, 0, 426, 381, 0, 382, 383, 384, 385, 386,
4628 387, 388, 389, 390, 391, 0, 0, 0, 0, 0,
4629 0, 0, 258, 0, 0, 0, 0, 0, 0, 0,
4630 0, 135, 0, 0, 0, 0, 0, 0, 0, 0,
4631 0, 138, 0, 0, 0, 0, 0, 0, 0, 0,
4632 0, 0, 0, 0, 0, 138, 0, 0, 0, 0,
4633 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4634 609, 610, 611, 612, 613, 0, 0, 614, 615, 616,
4635 617, 618, 619, 620, 621, 0, 623, 0, 0, 624,
4636 625, 626, 627, 628, 629, 630, 631, 632, 633, 0,
4637 0, 0, 238, 0, 0, 0, 0, 0, 0, 0,
4638 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4639 0, 138, 0, 0, 0, 0, 0, 22, 23, 24,
4640 25, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4641 0, 0, 0, 31, 32, 33, 1075, 0, 0, 0,
4642 1076, 0, 238, 40, 41, 42, 43, 44, 0, 138,
4643 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4644 0, 238, 238, 0, 0, 0, 238, 0, 0, 0,
4645 238, 0, 279, 0, 0, 1078, 1079, 0, 0, 0,
4646 0, 0, 0, 1080, 0, 0, 1081, 0, 1082, 1083,
4647 714, 1084, 0, 0, 57, 58, 59, 60, 61, 62,
4648 63, 64, 65, 238, 0, 0, 238, 0, 0, 0,
4649 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
4650 0, 0, 0, 0, 1086, 0, 0, 0, 0, 0,
4651 0, 301, 0, 0, 0, 0, 744, 0, 0, 0,
4652 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4653 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4654 -4, 3, 0, 4, 5, 6, 7, 8, 0, 0,
4655 0, 9, 10, 0, 0, 0, 11, 238, 12, 13,
4656 14, 15, 16, 17, 18, 776, 0, 0, 776, 0,
4657 19, 20, 21, 22, 23, 24, 25, 238, 0, 26,
4658 0, 0, 807, 0, 0, 27, 28, 29, 30, 31,
4659 32, 33, 34, 35, 36, 37, 38, 39, 0, 40,
4660 41, 42, 43, 44, 45, 46, 0, 0, 0, 0,
4661 0, 0, 0, 0, 0, 0, 47, 48, 0, 0,
4662 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4663 0, 49, 50, 0, 0, 0, 0, 238, 0, 51,
4664 0, 0, 52, 53, 54, 55, 0, 56, 238, 0,
4665 57, 58, 59, 60, 61, 62, 63, 64, 65, 0,
4666 866, 866, 0, 0, 238, 776, 776, 866, 0, 0,
4667 0, 0, 0, 0, 0, 0, 0, 0, 866, 866,
4668 0, 0, 238, 0, 238, 0, 0, 66, 67, 68,
4669 0, 0, -4, 0, 866, 0, 0, 0, 0, 0,
4670 542, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4671 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4672 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4673 0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
4674 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4675 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4676 0, 0, 0, 0, 0, 0, 238, 0, 0, 0,
4677 0, 0, -4, 3, 0, 4, 5, 6, 7, 8,
4678 -4, -4, -4, 9, 10, 0, -4, -4, 11, -4,
4679 12, 13, 14, 15, 16, 17, 18, -4, 238, 0,
4680 0, 0, 19, 20, 21, 22, 23, 24, 25, 0,
4681 0, 26, 0, 0, 0, 0, 238, 27, 28, 281,
4682 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
4683 0, 40, 41, 42, 43, 44, 45, 46, 0, 0,
4684 -4, 0, 0, 0, 0, 0, 866, 0, 47, 48,
4685 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4686 0, 0, 0, 49, 50, 0, 0, 0, 0, 0,
4687 0, 51, 0, 0, 52, 53, 54, 55, 0, 56,
4688 0, 0, 57, 58, 59, 60, 61, 62, 63, 64,
4689 65, 0, -4, 0, 776, 0, 0, 0, 0, 0,
4690 0, 0, 0, 238, 0, 0, 0, 0, 0, 0,
4691 0, 238, 0, 0, 0, 1025, 866, 866, 0, 66,
4692 67, 68, 866, 866, -4, 0, 238, 0, 0, 0,
4693 -4, 0, 542, 0, 0, 0, 0, 0, 238, 0,
4694 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4695 0, 0, 0, 0, 0, 0, 776, 866, 866, 0,
4696 866, 866, 0, 238, 0, 0, 0, 0, 0, 0,
4697 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4698 0, 0, 0, 1066, 1067, 0, 0, 238, 0, 0,
4699 0, 866, 1073, 0, 0, 0, 0, 0, 0, 0,
4700 0, 0, 0, 0, 0, 0, 866, 0, 0, 0,
4701 0, 0, 0, -812, 3, 0, 4, 5, 6, 7,
4702 8, 0, 238, 0, 9, 10, 0, 0, 0, 11,
4703 866, 12, 13, 14, 15, 16, 17, 18, 0, 0,
4704 0, 0, 0, 19, 20, 21, 22, 23, 24, 25,
4705 0, 0, 26, 0, 0, 0, 0, 0, 27, 28,
4706 281, 30, 31, 32, 33, 34, 35, 36, 37, 38,
4707 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
4708 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
4709 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4710 0, 0, 0, 0, 49, 50, 0, 0, 238, 0,
4711 0, 0, 51, 0, 0, 52, 53, 54, 55, 0,
4712 56, 0, 0, 57, 58, 59, 60, 61, 62, 63,
4713 64, 65, 0, -812, 0, 0, 0, 0, 0, 0,
4714 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4715 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4716 66, 67, 68, 0, 0, -812, 3, -812, 4, 5,
4717 6, 7, 8, -812, 0, 0, 9, 10, 0, 0,
4718 0, 11, 0, 12, 13, 14, 15, 16, 17, 18,
4719 0, 0, 0, 0, 0, 19, 20, 21, 22, 23,
4720 24, 25, 0, 0, 26, 0, 0, 0, 0, 0,
4721 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
4722 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
4723 46, 0, 0, 0, 0, 0, 0, 0, 0, 238,
4724 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
4725 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
4726 0, 0, 0, 0, 51, 0, 0, 52, 53, 54,
4727 55, 0, 56, 0, 0, 57, 58, 59, 60, 61,
4728 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
4729 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4730 0, 0, 0, 0, 0, 0, 0, -794, 0, 0,
4731 0, 0, 66, 67, 68, -794, -794, -794, 0, -812,
4732 -794, -794, -794, 0, -794, -812, 0, 0, 0, 0,
4733 0, 0, -794, -794, -794, -794, -794, 0, 0, 0,
4734 0, 0, 0, 0, -794, -794, 0, -794, -794, -794,
4735 -794, -794, 0, 0, 0, 365, 366, 367, 368, 369,
4736 370, 371, 372, 373, 374, 375, 376, 377, 0, 0,
4737 0, 0, 378, 379, 0, -794, -794, 0, 0, 0,
4738 0, 0, 0, 0, 0, -794, -794, -794, -794, -794,
4739 -794, -794, -794, -794, -794, -794, -794, -794, 0, 0,
4740 0, 0, -794, -794, -794, -794, 0, 875, -794, 0,
4741 0, 0, 381, -794, 382, 383, 384, 385, 386, 387,
4742 388, 389, 390, 391, 0, 0, 0, -794, 0, 0,
4743 -794, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4744 0, -146, -794, -794, -794, -794, -794, -794, -794, -794,
4745 -794, -794, -794, -794, 0, 0, 0, 0, -794, -794,
4746 -794, -794, -794, -692, 0, -794, -794, -794, 0, 0,
4747 0, -692, -692, -692, 0, 0, -692, -692, -692, 0,
4748 -692, 0, 0, 0, 0, 0, 0, 0, -692, 0,
4749 -692, -692, -692, 0, 0, 0, 0, 0, 0, 0,
4750 -692, -692, 0, -692, -692, -692, -692, -692, 0, 0,
4751 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4752 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4753 0, -692, -692, 0, 0, 0, 0, 0, 0, 0,
4754 0, -692, -692, -692, -692, -692, -692, -692, -692, -692,
4755 -692, -692, -692, -692, 0, 0, 0, 0, -692, -692,
4756 -692, -692, 0, -692, -692, 0, 0, 0, 0, -692,
4757 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4758 0, 0, 0, -692, 0, 0, -692, 0, 0, 0,
4759 0, 0, 0, 0, 0, 0, 0, -692, -692, -692,
4760 -692, -692, -692, -692, -692, -692, -692, -692, -692, -692,
4761 0, 0, 0, 0, 0, -692, -692, -692, -692, -693,
4762 0, -692, -692, -692, 0, 0, 0, -693, -693, -693,
4763 0, 0, -693, -693, -693, 0, -693, 0, 0, 0,
4764 0, 0, 0, 0, -693, 0, -693, -693, -693, 0,
4765 0, 0, 0, 0, 0, 0, -693, -693, 0, -693,
4766 -693, -693, -693, -693, 0, 0, 0, 0, 0, 0,
4767 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4768 0, 0, 0, 0, 0, 0, 0, -693, -693, 0,
4769 0, 0, 0, 0, 0, 0, 0, -693, -693, -693,
4770 -693, -693, -693, -693, -693, -693, -693, -693, -693, -693,
4771 0, 0, 0, 0, -693, -693, -693, -693, 0, -693,
4772 -693, 0, 0, 0, 0, -693, 0, 0, 0, 0,
4773 0, 0, 0, 0, 0, 0, 0, 0, 0, -693,
4774 0, 0, -693, 0, 0, 0, 0, 0, 0, 0,
4775 0, 0, 0, -693, -693, -693, -693, -693, -693, -693,
4776 -693, -693, -693, -693, -693, -693, 0, 0, 0, 0,
4777 0, -693, -693, -693, -693, -795, 0, -693, -693, -693,
4778 0, 0, 0, -795, -795, -795, 0, 0, -795, -795,
4779 -795, 0, -795, 0, 0, 0, 0, 0, 0, 0,
4780 -795, -795, -795, -795, -795, 0, 0, 0, 0, 0,
4781 0, 0, -795, -795, 0, -795, -795, -795, -795, -795,
4782 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4783 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4784 0, 0, 0, -795, -795, 0, 0, 0, 0, 0,
4785 0, 0, 0, -795, -795, -795, -795, -795, -795, -795,
4786 -795, -795, -795, -795, -795, -795, 0, 0, 0, 0,
4787 -795, -795, -795, -795, 0, 0, -795, 0, 0, 0,
4788 0, -795, 0, 0, 0, 0, 0, 0, 0, 0,
4789 0, 0, 0, 0, 0, -795, 0, 0, -795, 0,
4790 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4791 -795, -795, -795, -795, -795, -795, -795, -795, -795, -795,
4792 -795, -795, 0, 0, 0, 0, -795, -795, -795, -795,
4793 -795, -796, 0, -795, -795, -795, 0, 0, 0, -796,
4794 -796, -796, 0, 0, -796, -796, -796, 0, -796, 0,
4795 0, 0, 0, 0, 0, 0, -796, -796, -796, -796,
4796 -796, 0, 0, 0, 0, 0, 0, 0, -796, -796,
4797 0, -796, -796, -796, -796, -796, 0, 0, 0, 0,
4798 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4799 0, 0, 0, 0, 0, 0, 0, 0, 0, -796,
4800 -796, 0, 0, 0, 0, 0, 0, 0, 0, -796,
4801 -796, -796, -796, -796, -796, -796, -796, -796, -796, -796,
4802 -796, -796, 0, 0, 0, 0, -796, -796, -796, -796,
4803 0, 0, -796, 0, 0, 0, 0, -796, 0, 0,
4804 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4805 0, -796, 0, 0, -796, 0, 0, 0, 0, 0,
4806 0, 0, 0, 0, 0, 0, -796, -796, -796, -796,
4807 -796, -796, -796, -796, -796, -796, -796, -796, 0, 0,
4808 0, 0, -796, -796, -796, -796, -796, -507, 0, -796,
4809 -796, -796, 0, 0, 0, -507, -507, -507, 0, 0,
4810 -507, -507, -507, 0, -507, 0, 0, 0, 0, 0,
4811 0, 0, -507, -507, -507, -507, 0, 0, 0, 0,
4812 0, 0, 0, 0, -507, -507, 0, -507, -507, -507,
4813 -507, -507, 0, 0, 0, 0, 0, 0, 0, 0,
4814 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4815 0, 0, 0, 0, 0, -507, -507, 0, 0, 0,
4816 0, 0, 0, 0, 0, -507, -507, -507, -507, -507,
4817 -507, -507, -507, -507, -507, -507, -507, -507, 0, 0,
4818 0, 0, -507, -507, -507, -507, 0, 0, -507, 0,
4819 0, 0, 0, -507, 0, 0, 0, 0, 0, 0,
4820 0, 0, 0, 0, 0, 0, 0, -507, 0, 0,
4821 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4822 0, 0, -507, 0, -507, -507, -507, -507, -507, -507,
4823 -507, -507, -507, -507, 0, 0, 0, 0, -507, -507,
4824 -507, -507, -507, -347, 254, -507, -507, -507, 0, 0,
4825 0, -347, -347, -347, 0, 0, -347, -347, -347, 0,
4826 -347, 0, 0, 0, 0, 0, 0, 0, -347, 0,
4827 -347, -347, -347, 0, 0, 0, 0, 0, 0, 0,
4828 -347, -347, 0, -347, -347, -347, -347, -347, 0, 0,
4829 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4830 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4831 0, -347, -347, 0, 0, 0, 0, 0, 0, 0,
4832 0, -347, -347, -347, -347, -347, -347, -347, -347, -347,
4833 -347, -347, -347, -347, 0, 0, 0, 0, -347, -347,
4834 -347, -347, 0, 0, -347, 0, 0, 0, 0, -347,
4835 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4836 0, 0, 0, -347, 0, 0, -347, 0, 0, 0,
4837 0, 0, 0, 0, 0, 0, 0, 0, -347, -347,
4838 -347, -347, -347, -347, -347, -347, -347, -347, -347, -347,
4839 0, 0, 0, 0, 0, -347, -347, -347, -347, -812,
4840 0, -347, -347, -347, 0, 0, 0, -812, -812, -812,
4841 0, 0, -812, -812, -812, 0, -812, 0, 0, 0,
4842 0, 0, 0, 0, -812, -812, -812, -812, 0, 0,
4843 0, 0, 0, 0, 0, 0, -812, -812, 0, -812,
4844 -812, -812, -812, -812, 0, 0, 0, 0, 0, 0,
4845 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4846 0, 0, 0, 0, 0, 0, 0, -812, -812, 0,
4847 0, 0, 0, 0, 0, 0, 0, -812, -812, -812,
4848 -812, -812, -812, -812, -812, -812, -812, -812, -812, -812,
4849 0, 0, 0, 0, -812, -812, -812, -812, 0, 0,
4850 -812, 0, 0, 0, 0, -812, 0, 0, 0, 0,
4851 0, 0, 0, 0, 0, 0, 0, 0, 0, -812,
4852 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4853 0, 0, 0, 0, -812, 0, -812, -812, -812, -812,
4854 -812, -812, -812, -812, -812, -812, 0, 0, 0, 0,
4855 -812, -812, -812, -812, -812, -353, 254, -812, -812, -812,
4856 0, 0, 0, -353, -353, -353, 0, 0, -353, -353,
4857 -353, 0, -353, 0, 0, 0, 0, 0, 0, 0,
4858 -353, 0, -353, -353, 0, 0, 0, 0, 0, 0,
4859 0, 0, -353, -353, 0, -353, -353, -353, -353, -353,
4860 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4861 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4862 0, 0, 0, -353, -353, 0, 0, 0, 0, 0,
4863 0, 0, 0, -353, -353, -353, -353, -353, -353, -353,
4864 -353, -353, -353, -353, -353, -353, 0, 0, 0, 0,
4865 -353, -353, -353, -353, 0, 876, -353, 0, 0, 0,
4866 0, -353, 0, 0, 0, 0, 0, 0, 0, 0,
4867 0, 0, 0, 0, 0, -353, 0, 0, 0, 0,
4868 0, 0, 0, 0, 0, 0, 0, 0, 0, -147,
4869 -353, 0, -353, -353, -353, -353, -353, -353, -353, -353,
4870 -353, -353, 0, 0, 0, 0, 818, -353, -353, -353,
4871 -353, -360, 0, -353, -353, -353, 0, 0, 0, -360,
4872 -360, -360, 0, 0, -360, -360, -360, 0, -360, 0,
4873 0, 0, 0, 0, 0, 0, -360, 0, -360, -360,
4874 0, 0, 0, 0, 0, 0, 0, 0, -360, -360,
4875 0, -360, -360, -360, -360, -360, 0, 0, 0, 0,
4876 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4877 0, 0, 0, 0, 0, 0, 0, 0, 0, -360,
4878 -360, 0, 0, 0, 0, 0, 0, 0, 0, -360,
4879 -360, -360, -360, -360, -360, -360, -360, -360, -360, -360,
4880 -360, -360, 0, 0, 0, 0, -360, -360, -360, -360,
4881 0, 0, -360, 0, 0, 0, 0, -360, 0, 0,
4882 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4883 0, -360, 0, 0, 0, 0, 0, 0, 0, 0,
4884 0, 0, 0, 0, 0, 0, -360, 0, -360, -360,
4885 -360, -360, -360, -360, -360, -360, -360, -360, 0, 0,
4886 0, 0, 0, -360, -360, -360, -360, -794, 447, -360,
4887 -360, -360, 0, 0, 0, -794, -794, -794, 0, 0,
4888 0, -794, -794, 0, -794, 0, 0, 0, 0, 0,
4889 0, 0, -794, -794, 0, 0, 0, 0, 0, 0,
4890 0, 0, 0, 0, -794, -794, 0, -794, -794, -794,
4891 -794, -794, 0, 0, 0, 0, 0, 0, 0, 0,
4892 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4893 0, 0, 0, 0, 0, -794, -794, 0, 0, 0,
4894 0, 0, 0, 0, 0, -794, -794, -794, -794, -794,
4895 -794, -794, -794, -794, -794, -794, -794, -794, 0, 0,
4896 0, 0, -794, -794, -794, -794, 0, 816, -794, 0,
4897 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4898 0, 0, 0, 0, 0, 0, 0, -794, 0, 0,
4899 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4900 0, -146, -794, 0, -794, -794, -794, -794, -794, -794,
4901 -794, -794, -794, -794, 0, 0, 0, 0, -794, -794,
4902 -794, -794, -137, -794, 0, -794, 0, -794, 0, 0,
4903 0, -794, -794, -794, 0, 0, 0, -794, -794, 0,
4904 -794, 0, 0, 0, 0, 0, 0, 0, -794, -794,
4905 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4906 -794, -794, 0, -794, -794, -794, -794, -794, 0, 0,
4907 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4908 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4909 0, -794, -794, 0, 0, 0, 0, 0, 0, 0,
4910 0, -794, -794, -794, -794, -794, -794, -794, -794, -794,
4911 -794, -794, -794, -794, 0, 0, 0, 0, -794, -794,
4912 -794, -794, 0, 816, -794, 0, 0, 0, 0, 0,
4913 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4914 0, 0, 0, -794, 0, 0, 0, 0, 0, 0,
4915 0, 0, 0, 0, 0, 0, 0, -146, -794, 0,
4916 -794, -794, -794, -794, -794, -794, -794, -794, -794, -794,
4917 0, 0, 0, 0, -794, -794, -794, -794, -794, -353,
4918 0, -794, 0, -794, 0, 0, 0, -353, -353, -353,
4919 0, 0, 0, -353, -353, 0, -353, 0, 0, 0,
4920 0, 0, 0, 0, -353, 0, 0, 0, 0, 0,
4921 0, 0, 0, 0, 0, 0, -353, -353, 0, -353,
4922 -353, -353, -353, -353, 0, 0, 0, 0, 0, 0,
4923 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4924 0, 0, 0, 0, 0, 0, 0, -353, -353, 0,
4925 0, 0, 0, 0, 0, 0, 0, -353, -353, -353,
4926 -353, -353, -353, -353, -353, -353, -353, -353, -353, -353,
4927 0, 0, 0, 0, -353, -353, -353, -353, 0, 817,
4928 -353, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4929 0, 0, 0, 0, 0, 0, 0, 0, 0, -353,
4930 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4931 0, 0, 0, -147, -353, 0, -353, -353, -353, -353,
4932 -353, -353, -353, -353, -353, -353, 0, 0, 0, 0,
4933 818, -353, -353, -353, -138, -353, 0, -353, 0, -353,
4934 0, 0, 0, -353, -353, -353, 0, 0, 0, -353,
4935 -353, 0, -353, 0, 0, 0, 0, 0, 0, 0,
4936 -353, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4937 0, 0, -353, -353, 0, -353, -353, -353, -353, -353,
4938 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4939 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4940 0, 0, 0, -353, -353, 0, 0, 0, 0, 0,
4941 0, 0, 0, -353, -353, -353, -353, -353, -353, -353,
4942 -353, -353, -353, -353, -353, -353, 0, 0, 0, 0,
4943 -353, -353, -353, -353, 0, 817, -353, 0, 0, 0,
4944 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4945 0, 0, 0, 0, 0, -353, 0, 0, 0, 0,
4946 0, 0, 0, 0, 0, 0, 0, 0, 0, -147,
4947 -353, 0, -353, -353, -353, -353, -353, -353, -353, -353,
4948 -353, -353, 0, 0, 0, 0, 818, -353, -353, -353,
4949 -353, 0, 0, -353, 3, -353, 4, 5, 6, 7,
4950 8, -812, -812, -812, 9, 10, 0, 0, -812, 11,
4951 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
4952 0, 0, 0, 19, 20, 21, 22, 23, 24, 25,
4953 0, 0, 26, 0, 0, 0, 0, 0, 27, 28,
4954 281, 30, 31, 32, 33, 34, 35, 36, 37, 38,
4955 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
4956 0, -812, 0, 0, 0, 0, 0, 0, 0, 47,
4957 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4958 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
4959 0, 0, 51, 0, 0, 52, 53, 54, 55, 0,
4960 56, 0, 0, 57, 58, 59, 60, 61, 62, 63,
4961 64, 65, 0, 0, 0, 0, 0, 0, 0, 0,
4962 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4963 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4964 66, 67, 68, 0, 0, 0, 3, -812, 4, 5,
4965 6, 7, 8, -812, 0, -812, 9, 10, 0, -812,
4966 -812, 11, 0, 12, 13, 14, 15, 16, 17, 18,
4967 0, 0, 0, 0, 0, 19, 20, 21, 22, 23,
4968 24, 25, 0, 0, 26, 0, 0, 0, 0, 0,
4969 27, 28, 281, 30, 31, 32, 33, 34, 35, 36,
4970 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
4971 46, 0, 0, -812, 0, 0, 0, 0, 0, 0,
4972 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
4973 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
4974 0, 0, 0, 0, 51, 0, 0, 52, 53, 54,
4975 55, 0, 56, 0, 0, 57, 58, 59, 60, 61,
4976 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
4977 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4978 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4979 0, 0, 66, 67, 68, 0, 0, 0, 3, -812,
4980 4, 5, 6, 7, 8, -812, 0, -812, 9, 10,
4981 0, 0, -812, 11, -812, 12, 13, 14, 15, 16,
4982 17, 18, 0, 0, 0, 0, 0, 19, 20, 21,
4983 22, 23, 24, 25, 0, 0, 26, 0, 0, 0,
4984 0, 0, 27, 28, 281, 30, 31, 32, 33, 34,
4985 35, 36, 37, 38, 39, 0, 40, 41, 42, 43,
4986 44, 45, 46, 0, 0, -812, 0, 0, 0, 0,
4987 0, 0, 0, 47, 48, 0, 0, 0, 0, 0,
4988 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
4989 0, 0, 0, 0, 0, 0, 51, 0, 0, 52,
4990 53, 54, 55, 0, 56, 0, 0, 57, 58, 59,
4991 60, 61, 62, 63, 64, 65, 0, 0, 0, 0,
4992 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4993 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4994 0, 0, 0, 0, 66, 67, 68, 0, 0, 0,
4995 3, -812, 4, 5, 6, 7, 8, -812, 0, -812,
4996 9, 10, 0, 0, -812, 11, 0, 12, 13, 14,
4997 15, 16, 17, 18, -812, 0, 0, 0, 0, 19,
4998 20, 21, 22, 23, 24, 25, 0, 0, 26, 0,
4999 0, 0, 0, 0, 27, 28, 281, 30, 31, 32,
5000 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
5001 42, 43, 44, 45, 46, 0, 0, -812, 0, 0,
5002 0, 0, 0, 0, 0, 47, 48, 0, 0, 0,
5003 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5004 49, 50, 0, 0, 0, 0, 0, 0, 51, 0,
5005 0, 52, 53, 54, 55, 0, 56, 0, 0, 57,
5006 58, 59, 60, 61, 62, 63, 64, 65, 0, 0,
5007 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5008 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5009 0, 0, 0, 0, 0, 0, 66, 67, 68, 0,
5010 0, 0, 3, -812, 4, 5, 6, 7, 8, -812,
5011 0, -812, 9, 10, 0, 0, -812, 11, 0, 12,
5012 13, 14, 15, 16, 17, 18, 0, 0, 0, 0,
5013 0, 19, 20, 21, 22, 23, 24, 25, 0, 0,
5014 26, 0, 0, 0, 0, 0, 27, 28, 281, 30,
5015 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
5016 40, 41, 42, 43, 44, 45, 46, 0, 0, -812,
5017 0, 0, 0, 0, 0, 0, 0, 47, 48, 0,
5018 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5019 0, 0, 49, 50, 0, 0, 0, 0, 0, 0,
5020 51, 0, 0, 52, 53, 54, 55, 0, 56, 0,
5021 0, 57, 58, 59, 60, 61, 62, 63, 64, 65,
5022 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5023 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5024 0, 0, 0, 0, 0, 0, 0, 0, 66, 67,
5025 68, 0, 0, 0, 3, -812, 4, 5, 6, 7,
5026 8, -812, -812, -812, 9, 10, 0, 0, 0, 11,
5027 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5028 0, 0, 0, 19, 20, 21, 22, 23, 24, 25,
5029 0, 0, 26, 0, 0, 0, 0, 0, 27, 28,
5030 281, 30, 31, 32, 33, 34, 35, 36, 37, 38,
5031 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5032 0, -812, 0, 0, 0, 0, 0, 0, 0, 47,
5033 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5034 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5035 0, 0, 51, 0, 0, 52, 53, 54, 55, 0,
5036 56, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5037 64, 65, 0, 0, 0, 0, 0, 0, 0, 0,
5038 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5039 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5040 66, 67, 68, 0, 0, 0, 3, -812, 4, 5,
5041 6, 7, 8, -812, 0, -812, 9, 10, 0, 0,
5042 0, 11, 0, 12, 13, 14, 15, 16, 17, 18,
5043 0, 0, 0, 0, 0, 19, 20, 21, 22, 23,
5044 24, 25, 0, 0, 26, 0, 0, 0, 0, 0,
5045 27, 28, 281, 30, 31, 32, 33, 34, 35, 36,
5046 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
5047 46, 0, 0, -812, 0, 0, 0, 0, 0, 0,
5048 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
5049 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
5050 0, 0, 0, 0, 51, 0, 0, 52, 53, 54,
5051 55, 0, 56, 0, 0, 57, 58, 59, 60, 61,
5052 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
5053 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5054 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5055 0, 0, 66, 67, 68, 0, 0, 0, 3, -812,
5056 4, 5, 6, 7, 8, -812, 0, 0, 9, 10,
5057 0, 0, 0, 11, 0, 12, 13, 14, 15, 16,
5058 17, 18, 0, 0, 0, 0, 0, 19, 20, 21,
5059 22, 23, 24, 25, 0, 0, 26, 0, 0, 0,
5060 0, 0, 27, 28, 281, 30, 31, 32, 33, 34,
5061 35, 36, 37, 38, 39, 0, 40, 41, 42, 43,
5062 44, 45, 46, 0, 0, 0, 0, 0, 0, 0,
5063 0, 0, 0, 47, 48, 0, 0, 0, 0, 0,
5064 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
5065 0, 0, 0, 0, 0, 0, 51, 0, 0, 282,
5066 53, 54, 55, 0, 56, 0, 0, 57, 58, 59,
5067 60, 61, 62, 63, 64, 65, 0, 0, 0, 0,
5068 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5069 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5070 0, 0, 0, 0, 66, 67, 68, 0, 0, 0,
5071 0, -812, 0, 0, 0, -812, 3, -812, 4, 5,
5072 6, 7, 8, 0, 0, 0, 9, 10, 0, 0,
5073 0, 11, 0, 12, 13, 14, 15, 16, 17, 18,
5074 0, 0, 0, 0, 0, 19, 20, 21, 22, 23,
5075 24, 25, 0, 0, 26, 0, 0, 0, 0, 0,
5076 27, 28, 281, 30, 31, 32, 33, 34, 35, 36,
5077 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
5078 46, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5079 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
5080 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
5081 0, 0, 0, 0, 51, 0, 0, 52, 53, 54,
5082 55, 0, 56, 0, 0, 57, 58, 59, 60, 61,
5083 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
5084 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5085 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5086 0, 0, 66, 67, 68, 0, 0, 0, 0, -812,
5087 0, 0, 0, -812, 3, -812, 4, 5, 6, 7,
5088 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5089 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5090 0, 0, 0, 19, 20, 21, 22, 23, 24, 25,
5091 0, 0, 26, 0, 0, 0, 0, 0, 27, 28,
5092 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
5093 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5094 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5095 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5096 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5097 0, 0, 51, 0, 0, 52, 53, 54, 55, 0,
5098 56, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5099 64, 65, 0, 0, 0, 0, 0, 0, 0, 0,
5100 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5101 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5102 66, 67, 68, 0, 0, -812, 3, -812, 4, 5,
5103 6, 7, 8, -812, 0, 0, 9, 10, 0, 0,
5104 0, 11, 0, 12, 13, 14, 15, 16, 17, 18,
5105 0, 0, 0, 0, 0, 19, 20, 21, 22, 23,
5106 24, 25, 0, 0, 26, 0, 0, 0, 0, 0,
5107 27, 28, 281, 30, 31, 32, 33, 34, 35, 36,
5108 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
5109 46, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5110 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
5111 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
5112 0, 0, 0, 0, 51, 0, 0, 52, 53, 54,
5113 55, 0, 56, 0, 0, 57, 58, 59, 60, 61,
5114 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
5115 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5117 0, 0, 66, 67, 68, 0, 0, -812, 400, -812,
5118 4, 5, 6, 0, 8, -812, 0, 0, 9, 10,
5119 0, 0, 0, 11, -3, 12, 13, 14, 15, 16,
5120 17, 18, 0, 0, 0, 0, 0, 19, 20, 21,
5121 22, 23, 24, 25, 0, 0, 26, 0, 0, 0,
5122 0, 0, 0, 28, 0, 0, 31, 32, 33, 34,
5123 35, 36, 37, 38, 39, 0, 40, 41, 42, 43,
5124 44, 45, 46, 0, 0, 0, 0, 0, 0, 0,
5125 0, 0, 0, 47, 48, 0, 0, 0, 0, 0,
5126 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
5127 0, 0, 0, 0, 0, 0, 227, 0, 0, 228,
5128 53, 54, 55, 0, 0, 0, 0, 57, 58, 59,
5129 60, 61, 62, 63, 64, 65, 0, 0, 0, 0,
5130 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5131 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5132 0, 0, 0, 0, 66, 67, 68, 0, 0, 0,
5133 0, 328, 0, 0, 0, 0, 0, 329, 142, 143,
5134 144, 145, 146, 147, 148, 149, 150, 151, 152, 153,
5135 154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
5136 164, 165, 0, 0, 0, 166, 167, 168, 430, 431,
5137 432, 433, 173, 174, 175, 0, 0, 0, 0, 0,
5138 176, 177, 178, 179, 434, 435, 436, 437, 184, 36,
5139 37, 438, 39, 0, 0, 0, 0, 0, 0, 0,
5140 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5141 0, 186, 187, 188, 189, 190, 191, 192, 193, 194,
5142 0, 0, 195, 196, 0, 0, 0, 0, 197, 198,
5143 199, 200, 0, 0, 0, 0, 0, 0, 0, 0,
5144 0, 0, 201, 202, 0, 0, 0, 0, 0, 0,
5145 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5146 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5147 0, 0, 203, 204, 205, 206, 207, 208, 209, 210,
5148 211, 212, 0, 213, 214, 0, 0, 0, 0, 0,
5149 0, 215, 439, 142, 143, 144, 145, 146, 147, 148,
5150 149, 150, 151, 152, 153, 154, 155, 156, 157, 158,
5151 159, 160, 161, 162, 163, 164, 165, 0, 0, 0,
5152 166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
5153 0, 0, 0, 0, 0, 176, 177, 178, 179, 180,
5154 181, 182, 183, 184, 36, 37, 185, 39, 0, 0,
5155 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5156 0, 0, 0, 0, 0, 0, 186, 187, 188, 189,
5157 190, 191, 192, 193, 194, 0, 0, 195, 196, 0,
5158 0, 0, 0, 197, 198, 199, 200, 0, 0, 0,
5159 0, 0, 0, 0, 0, 0, 0, 201, 202, 0,
5160 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5161 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5162 0, 0, 0, 0, 0, 0, 0, 203, 204, 205,
5163 206, 207, 208, 209, 210, 211, 212, 0, 213, 214,
5164 0, 0, 0, 0, 0, 0, 215, 142, 143, 144,
5165 145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
5166 155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
5167 165, 0, 0, 0, 166, 167, 168, 169, 170, 171,
5168 172, 173, 174, 175, 0, 0, 0, 0, 0, 176,
5169 177, 178, 179, 180, 181, 182, 183, 184, 261, 0,
5170 185, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5171 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5172 186, 187, 188, 189, 190, 191, 192, 193, 194, 0,
5173 0, 195, 196, 0, 0, 0, 0, 197, 198, 199,
5174 200, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5175 0, 201, 202, 0, 0, 58, 0, 0, 0, 0,
5176 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5177 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5178 0, 203, 204, 205, 206, 207, 208, 209, 210, 211,
5179 212, 0, 213, 214, 0, 0, 0, 0, 0, 0,
5180 215, 142, 143, 144, 145, 146, 147, 148, 149, 150,
5181 151, 152, 153, 154, 155, 156, 157, 158, 159, 160,
5182 161, 162, 163, 164, 165, 0, 0, 0, 166, 167,
5183 168, 169, 170, 171, 172, 173, 174, 175, 0, 0,
5184 0, 0, 0, 176, 177, 178, 179, 180, 181, 182,
5185 183, 184, 0, 0, 185, 0, 0, 0, 0, 0,
5186 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5187 0, 0, 0, 0, 186, 187, 188, 189, 190, 191,
5188 192, 193, 194, 0, 0, 195, 196, 0, 0, 0,
5189 0, 197, 198, 199, 200, 0, 0, 0, 0, 0,
5190 0, 0, 0, 0, 0, 201, 202, 0, 0, 58,
5191 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5192 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5193 0, 0, 0, 0, 0, 203, 204, 205, 206, 207,
5194 208, 209, 210, 211, 212, 0, 213, 214, 0, 0,
5195 0, 0, 0, 0, 215, 142, 143, 144, 145, 146,
5196 147, 148, 149, 150, 151, 152, 153, 154, 155, 156,
5197 157, 158, 159, 160, 161, 162, 163, 164, 165, 0,
5198 0, 0, 166, 167, 168, 169, 170, 171, 172, 173,
5199 174, 175, 0, 0, 0, 0, 0, 176, 177, 178,
5200 179, 180, 181, 182, 183, 184, 0, 0, 185, 0,
5201 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5202 0, 0, 0, 0, 0, 0, 0, 0, 186, 187,
5203 188, 189, 190, 191, 192, 193, 194, 0, 0, 195,
5204 196, 0, 0, 0, 0, 197, 198, 199, 200, 0,
5205 0, 0, 0, 0, 0, 0, 0, 0, 0, 201,
5206 202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5207 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5208 0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
5209 204, 205, 206, 207, 208, 209, 210, 211, 212, 0,
5210 213, 214, 4, 5, 6, 0, 8, 0, 215, 0,
5211 9, 10, 0, 0, 0, 11, 0, 12, 13, 14,
5212 269, 270, 17, 18, 0, 0, 0, 0, 0, 19,
5213 20, 271, 22, 23, 24, 25, 0, 0, 225, 0,
5214 0, 0, 0, 0, 0, 299, 0, 0, 31, 32,
5215 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
5216 42, 43, 44, 45, 46, 0, 0, 0, 0, 0,
5217 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5218 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5219 0, 0, 0, 0, 0, 0, 0, 0, 300, 0,
5220 0, 228, 53, 54, 55, 0, 0, 0, 0, 57,
5221 58, 59, 60, 61, 62, 63, 64, 65, 0, 0,
5222 4, 5, 6, 0, 8, 0, 0, 0, 9, 10,
5223 0, 0, 0, 11, 0, 12, 13, 14, 269, 270,
5224 17, 18, 0, 0, 0, 0, 301, 19, 20, 271,
5225 22, 23, 24, 25, 302, 0, 225, 0, 0, 0,
5226 0, 0, 0, 299, 0, 0, 31, 32, 33, 34,
5227 35, 36, 37, 38, 39, 0, 40, 41, 42, 43,
5228 44, 45, 46, 0, 0, 0, 0, 0, 0, 0,
5229 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5230 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5231 0, 0, 0, 0, 0, 0, 300, 0, 0, 228,
5232 53, 54, 55, 0, 0, 0, 0, 57, 58, 59,
5233 60, 61, 62, 63, 64, 65, 0, 0, 4, 5,
5234 6, 0, 8, 0, 0, 0, 9, 10, 0, 0,
5235 0, 11, 0, 12, 13, 14, 15, 16, 17, 18,
5236 0, 0, 0, 0, 301, 19, 20, 21, 22, 23,
5237 24, 25, 604, 0, 225, 0, 0, 0, 0, 0,
5238 0, 28, 0, 0, 31, 32, 33, 34, 35, 36,
5239 37, 38, 39, 226, 40, 41, 42, 43, 44, 45,
5240 46, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5241 0, 47, 48, 0, 0, 0, 0, 0, 0, 0,
5242 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
5243 0, 0, 0, 0, 227, 0, 0, 228, 53, 54,
5244 55, 0, 229, 230, 231, 57, 58, 232, 60, 61,
5245 62, 63, 64, 65, 0, 0, 0, 0, 0, 0,
5246 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5247 0, 0, 0, 0, 0, 0, 0, 4, 5, 6,
5248 0, 8, 66, 233, 68, 9, 10, 0, 0, 258,
5249 11, 0, 12, 13, 14, 15, 16, 17, 18, 0,
5250 0, 0, 0, 0, 19, 20, 21, 22, 23, 24,
5251 25, 0, 0, 26, 0, 0, 0, 0, 0, 0,
5252 28, 0, 0, 31, 32, 33, 34, 35, 36, 37,
5253 38, 39, 0, 40, 41, 42, 43, 44, 45, 46,
5254 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5255 47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
5256 0, 0, 0, 0, 0, 49, 50, 0, 0, 0,
5257 0, 0, 0, 227, 0, 0, 228, 53, 54, 55,
5258 0, 0, 0, 0, 57, 58, 59, 60, 61, 62,
5259 63, 64, 65, 0, 0, 0, 0, 0, 0, 0,
5260 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5261 0, 0, 0, 0, 3, 0, 4, 5, 6, 7,
5262 8, 66, 67, 68, 9, 10, 0, 0, 258, 11,
5263 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5264 0, 0, 0, 19, 20, 21, 22, 23, 24, 25,
5265 0, 0, 26, 0, 0, 0, 0, 0, 27, 28,
5266 0, 30, 31, 32, 33, 34, 35, 36, 37, 38,
5267 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5268 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5269 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5270 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5271 0, 0, 51, 0, 0, 52, 53, 54, 55, 0,
5272 56, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5273 64, 65, 0, 0, 400, 0, 4, 5, 6, 0,
5274 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5275 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5276 66, 67, 68, 19, 20, 21, 22, 23, 24, 25,
5277 0, 0, 26, 0, 0, 0, 0, 0, 0, 28,
5278 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5279 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5280 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5281 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5282 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5283 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5284 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5285 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5286 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5287 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5288 66, 67, 68, 19, 20, 21, 22, 23, 24, 25,
5289 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5290 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5291 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5292 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5293 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5294 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5295 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5296 229, 230, 231, 57, 58, 232, 60, 61, 62, 63,
5297 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5298 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5299 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5300 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5301 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5302 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5303 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5304 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5305 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5306 0, 0, 0, 0, 49, 477, 0, 0, 0, 0,
5307 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5308 229, 230, 231, 57, 58, 232, 60, 61, 62, 63,
5309 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5310 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5311 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5312 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5313 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5314 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5315 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5316 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5317 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5318 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5319 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5320 229, 230, 231, 57, 58, 232, 60, 61, 62, 63,
5321 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5322 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5323 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5324 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5325 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5326 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5327 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5328 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5329 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5330 0, 0, 0, 0, 49, 477, 0, 0, 0, 0,
5331 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5332 229, 230, 231, 57, 58, 232, 60, 61, 62, 63,
5333 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5334 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5335 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5336 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5337 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5338 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5339 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5340 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5341 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5342 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5343 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5344 229, 230, 0, 57, 58, 232, 60, 61, 62, 63,
5345 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5346 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5347 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5348 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5349 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5350 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5351 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5352 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5353 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5354 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5355 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5356 0, 230, 231, 57, 58, 232, 60, 61, 62, 63,
5357 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5358 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5359 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5360 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5361 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5362 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5363 39, 226, 40, 41, 42, 43, 44, 45, 46, 0,
5364 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5365 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5366 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5367 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5368 0, 230, 0, 57, 58, 232, 60, 61, 62, 63,
5369 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5370 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5371 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5372 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5373 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5374 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5375 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5376 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5377 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5378 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5379 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5380 791, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5381 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5382 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5383 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5384 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5385 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5386 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5387 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5388 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5389 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5390 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5391 0, 0, 802, 0, 0, 228, 53, 54, 55, 0,
5392 791, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5393 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5394 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5395 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5396 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5397 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5398 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5399 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5400 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5401 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5402 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5403 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5404 963, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5405 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5406 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5407 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5408 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5409 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5410 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5411 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5412 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5413 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5414 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5415 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5416 1012, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5417 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5418 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5419 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5420 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5421 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5422 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5423 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5424 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5425 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5426 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5427 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5428 791, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5429 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5430 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5431 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5432 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5433 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5434 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5435 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5436 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5437 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5438 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5439 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5440 1133, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5441 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5442 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5443 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5444 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5445 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5446 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5447 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5448 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5449 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5450 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5451 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5452 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5453 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5454 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5455 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5456 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5457 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5458 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5459 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5460 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5461 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5462 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5463 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5464 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5465 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5466 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5467 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5468 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5469 0, 0, 26, 0, 0, 0, 0, 0, 0, 28,
5470 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5471 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5472 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5473 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5474 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5475 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5476 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5477 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5478 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5479 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5480 66, 67, 68, 19, 20, 21, 22, 23, 24, 25,
5481 0, 0, 773, 0, 0, 0, 0, 0, 0, 28,
5482 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5483 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5484 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5485 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5486 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5487 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5488 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5489 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5490 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5491 0, 12, 13, 14, 15, 16, 17, 18, 0, 0,
5492 66, 233, 68, 19, 20, 21, 22, 23, 24, 25,
5493 0, 0, 225, 0, 0, 0, 0, 0, 0, 28,
5494 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5495 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5496 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5497 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5498 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5499 0, 0, 802, 0, 0, 228, 53, 54, 55, 0,
5500 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5501 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5502 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5503 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5504 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5505 0, 0, 873, 0, 0, 0, 0, 0, 0, 28,
5506 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5507 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5508 0, 0, 0, 0, 0, 0, 0, 0, 0, 47,
5509 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5510 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
5511 0, 0, 227, 0, 0, 228, 53, 54, 55, 0,
5512 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5513 64, 65, 0, 0, 0, 0, 4, 5, 6, 0,
5514 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5515 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5516 66, 233, 68, 19, 20, 271, 22, 23, 24, 25,
5517 0, 0, 225, 0, 0, 0, 0, 0, 0, 299,
5518 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5519 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5520 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5521 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5522 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5523 0, 0, 300, 0, 0, 360, 53, 54, 55, 0,
5524 361, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5525 64, 65, 0, 0, 4, 5, 6, 0, 8, 0,
5526 0, 0, 9, 10, 0, 0, 0, 11, 0, 12,
5527 13, 14, 269, 270, 17, 18, 0, 0, 0, 0,
5528 301, 19, 20, 271, 22, 23, 24, 25, 0, 0,
5529 225, 0, 0, 0, 0, 0, 0, 299, 0, 0,
5530 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
5531 40, 41, 42, 43, 44, 45, 46, 0, 0, 0,
5532 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5533 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5534 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5535 411, 0, 0, 52, 53, 54, 55, 0, 56, 0,
5536 0, 57, 58, 59, 60, 61, 62, 63, 64, 65,
5537 0, 0, 4, 5, 6, 0, 8, 0, 0, 0,
5538 9, 10, 0, 0, 0, 11, 0, 12, 13, 14,
5539 269, 270, 17, 18, 0, 0, 0, 0, 301, 19,
5540 20, 271, 22, 23, 24, 25, 0, 0, 225, 0,
5541 0, 0, 0, 0, 0, 299, 0, 0, 31, 32,
5542 33, 419, 35, 36, 37, 420, 39, 0, 40, 41,
5543 42, 43, 44, 45, 46, 0, 0, 0, 0, 0,
5544 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5545 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5546 0, 0, 0, 0, 421, 0, 0, 0, 422, 0,
5547 0, 228, 53, 54, 55, 0, 0, 0, 0, 57,
5548 58, 59, 60, 61, 62, 63, 64, 65, 0, 0,
5549 4, 5, 6, 0, 8, 0, 0, 0, 9, 10,
5550 0, 0, 0, 11, 0, 12, 13, 14, 269, 270,
5551 17, 18, 0, 0, 0, 0, 301, 19, 20, 271,
5552 22, 23, 24, 25, 0, 0, 225, 0, 0, 0,
5553 0, 0, 0, 299, 0, 0, 31, 32, 33, 419,
5554 35, 36, 37, 420, 39, 0, 40, 41, 42, 43,
5555 44, 45, 46, 0, 0, 0, 0, 0, 0, 0,
5556 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5557 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5558 0, 0, 0, 0, 0, 0, 422, 0, 0, 228,
5559 53, 54, 55, 0, 0, 0, 0, 57, 58, 59,
5560 60, 61, 62, 63, 64, 65, 0, 0, 4, 5,
5561 6, 0, 8, 0, 0, 0, 9, 10, 0, 0,
5562 0, 11, 0, 12, 13, 14, 269, 270, 17, 18,
5563 0, 0, 0, 0, 301, 19, 20, 271, 22, 23,
5564 24, 25, 0, 0, 225, 0, 0, 0, 0, 0,
5565 0, 299, 0, 0, 31, 32, 33, 34, 35, 36,
5566 37, 38, 39, 0, 40, 41, 42, 43, 44, 45,
5567 46, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5568 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5569 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5570 0, 0, 0, 0, 300, 0, 0, 360, 53, 54,
5571 55, 0, 0, 0, 0, 57, 58, 59, 60, 61,
5572 62, 63, 64, 65, 0, 0, 4, 5, 6, 0,
5573 8, 0, 0, 0, 9, 10, 0, 0, 0, 11,
5574 0, 12, 13, 14, 269, 270, 17, 18, 0, 0,
5575 0, 0, 301, 19, 20, 271, 22, 23, 24, 25,
5576 0, 0, 225, 0, 0, 0, 0, 0, 0, 299,
5577 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
5578 39, 0, 40, 41, 42, 43, 44, 45, 46, 0,
5579 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5580 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5581 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5582 0, 0, 1190, 0, 0, 228, 53, 54, 55, 0,
5583 0, 0, 0, 57, 58, 59, 60, 61, 62, 63,
5584 64, 65, 0, 0, 4, 5, 6, 0, 8, 0,
5585 0, 0, 9, 10, 0, 0, 0, 11, 0, 12,
5586 13, 14, 269, 270, 17, 18, 0, 0, 0, 0,
5587 301, 19, 20, 271, 22, 23, 24, 25, 0, 0,
5588 225, 0, 0, 0, 0, 0, 0, 299, 0, 0,
5589 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
5590 40, 41, 42, 43, 44, 45, 46, 0, 0, 0,
5591 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5592 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5593 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5594 1289, 0, 0, 228, 53, 54, 55, 22, 23, 24,
5595 25, 57, 58, 59, 60, 61, 62, 63, 64, 65,
5596 0, 0, 0, 31, 32, 33, 1075, 0, 0, 0,
5597 1076, 0, 0, 40, 41, 42, 43, 44, 0, 0,
5598 0, 0, 0, 0, 0, 0, 0, 0, 301, 0,
5599 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5600 0, 0, 0, 0, 0, 1078, 1079, 0, 0, 0,
5601 0, 0, 0, 1080, 0, 0, 1081, 0, 1082, 1083,
5602 0, 0, 0, 0, 57, 58, 59, 60, 61, 62,
5603 63, 64, 65, 0, 0, 0, 0, 0, 634, 635,
5604 0, 0, 636, 0, 0, 0, 0, 0, 0, 0,
5605 0, 0, 0, 0, 1086, 0, 0, 0, 0, 0,
5606 0, 301, 186, 187, 188, 189, 190, 191, 192, 193,
5607 194, 0, 0, 195, 196, 0, 0, 0, 0, 197,
5608 198, 199, 200, 0, 0, 0, 0, 0, 0, 0,
5609 0, 0, 0, 201, 202, 0, 0, 0, 0, 0,
5610 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5611 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5612 0, 0, 0, 203, 204, 205, 206, 207, 208, 209,
5613 210, 211, 212, 0, 213, 214, 643, 644, 0, 0,
5614 645, 0, 215, 254, 0, 0, 0, 0, 0, 0,
5615 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5616 186, 187, 188, 189, 190, 191, 192, 193, 194, 0,
5617 0, 195, 196, 0, 0, 0, 0, 197, 198, 199,
5618 200, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5619 0, 201, 202, 0, 0, 0, 0, 0, 0, 0,
5620 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5621 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5622 0, 203, 204, 205, 206, 207, 208, 209, 210, 211,
5623 212, 0, 213, 214, 698, 635, 0, 0, 699, 0,
5624 215, 254, 0, 0, 0, 0, 0, 0, 0, 0,
5625 0, 0, 0, 0, 0, 0, 0, 0, 186, 187,
5626 188, 189, 190, 191, 192, 193, 194, 0, 0, 195,
5627 196, 0, 0, 0, 0, 197, 198, 199, 200, 0,
5628 0, 0, 0, 0, 0, 0, 0, 0, 0, 201,
5629 202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5630 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5631 0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
5632 204, 205, 206, 207, 208, 209, 210, 211, 212, 0,
5633 213, 214, 701, 644, 0, 0, 702, 0, 215, 254,
5634 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5635 0, 0, 0, 0, 0, 0, 186, 187, 188, 189,
5636 190, 191, 192, 193, 194, 0, 0, 195, 196, 0,
5637 0, 0, 0, 197, 198, 199, 200, 0, 0, 0,
5638 0, 0, 0, 0, 0, 0, 0, 201, 202, 0,
5639 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5640 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5641 0, 0, 0, 0, 0, 0, 0, 203, 204, 205,
5642 206, 207, 208, 209, 210, 211, 212, 0, 213, 214,
5643 698, 635, 0, 0, 716, 0, 215, 254, 0, 0,
5644 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5645 0, 0, 0, 0, 186, 187, 188, 189, 190, 191,
5646 192, 193, 194, 0, 0, 195, 196, 0, 0, 0,
5647 0, 197, 198, 199, 200, 0, 0, 0, 0, 0,
5648 0, 0, 0, 0, 0, 201, 202, 0, 0, 0,
5649 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5650 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5651 0, 0, 0, 0, 0, 203, 204, 205, 206, 207,
5652 208, 209, 210, 211, 212, 0, 213, 214, 727, 635,
5653 0, 0, 728, 0, 215, 254, 0, 0, 0, 0,
5654 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5655 0, 0, 186, 187, 188, 189, 190, 191, 192, 193,
5656 194, 0, 0, 195, 196, 0, 0, 0, 0, 197,
5657 198, 199, 200, 0, 0, 0, 0, 0, 0, 0,
5658 0, 0, 0, 201, 202, 0, 0, 0, 0, 0,
5659 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5660 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5661 0, 0, 0, 203, 204, 205, 206, 207, 208, 209,
5662 210, 211, 212, 0, 213, 214, 730, 644, 0, 0,
5663 731, 0, 215, 254, 0, 0, 0, 0, 0, 0,
5664 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5665 186, 187, 188, 189, 190, 191, 192, 193, 194, 0,
5666 0, 195, 196, 0, 0, 0, 0, 197, 198, 199,
5667 200, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5668 0, 201, 202, 0, 0, 0, 0, 0, 0, 0,
5669 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5670 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5671 0, 203, 204, 205, 206, 207, 208, 209, 210, 211,
5672 212, 0, 213, 214, 846, 635, 0, 0, 847, 0,
5673 215, 254, 0, 0, 0, 0, 0, 0, 0, 0,
5674 0, 0, 0, 0, 0, 0, 0, 0, 186, 187,
5675 188, 189, 190, 191, 192, 193, 194, 0, 0, 195,
5676 196, 0, 0, 0, 0, 197, 198, 199, 200, 0,
5677 0, 0, 0, 0, 0, 0, 0, 0, 0, 201,
5678 202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5679 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5680 0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
5681 204, 205, 206, 207, 208, 209, 210, 211, 212, 0,
5682 213, 214, 849, 644, 0, 0, 850, 0, 215, 254,
5683 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5684 0, 0, 0, 0, 0, 0, 186, 187, 188, 189,
5685 190, 191, 192, 193, 194, 0, 0, 195, 196, 0,
5686 0, 0, 0, 197, 198, 199, 200, 0, 0, 0,
5687 0, 0, 0, 0, 0, 0, 0, 201, 202, 0,
5688 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5689 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5690 0, 0, 0, 0, 0, 0, 0, 203, 204, 205,
5691 206, 207, 208, 209, 210, 211, 212, 0, 213, 214,
5692 855, 635, 0, 0, 856, 0, 215, 254, 0, 0,
5693 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5694 0, 0, 0, 0, 186, 187, 188, 189, 190, 191,
5695 192, 193, 194, 0, 0, 195, 196, 0, 0, 0,
5696 0, 197, 198, 199, 200, 0, 0, 0, 0, 0,
5697 0, 0, 0, 0, 0, 201, 202, 0, 0, 0,
5698 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5699 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5700 0, 0, 0, 0, 0, 203, 204, 205, 206, 207,
5701 208, 209, 210, 211, 212, 0, 213, 214, 682, 644,
5702 0, 0, 683, 0, 215, 254, 0, 0, 0, 0,
5703 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5704 0, 0, 186, 187, 188, 189, 190, 191, 192, 193,
5705 194, 0, 0, 195, 196, 0, 0, 0, 0, 197,
5706 198, 199, 200, 0, 0, 0, 0, 0, 0, 0,
5707 0, 0, 0, 201, 202, 0, 0, 0, 0, 0,
5708 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5709 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5710 0, 0, 0, 203, 204, 205, 206, 207, 208, 209,
5711 210, 211, 212, 0, 213, 214, 1018, 635, 0, 0,
5712 1019, 0, 215, 254, 0, 0, 0, 0, 0, 0,
5713 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5714 186, 187, 188, 189, 190, 191, 192, 193, 194, 0,
5715 0, 195, 196, 0, 0, 0, 0, 197, 198, 199,
5716 200, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5717 0, 201, 202, 0, 0, 0, 0, 0, 0, 0,
5718 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5719 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5720 0, 203, 204, 205, 206, 207, 208, 209, 210, 211,
5721 212, 0, 213, 214, 1021, 644, 0, 0, 1022, 0,
5722 215, 254, 0, 0, 0, 0, 0, 0, 0, 0,
5723 0, 0, 0, 0, 0, 0, 0, 0, 186, 187,
5724 188, 189, 190, 191, 192, 193, 194, 0, 0, 195,
5725 196, 0, 0, 0, 0, 197, 198, 199, 200, 0,
5726 0, 0, 0, 0, 0, 0, 0, 0, 0, 201,
5727 202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5728 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5729 0, 0, 0, 0, 0, 0, 0, 0, 0, 203,
5730 204, 205, 206, 207, 208, 209, 210, 211, 212, 0,
5731 213, 214, 1307, 635, 0, 0, 1308, 0, 215, 254,
5732 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5733 0, 0, 0, 0, 0, 0, 186, 187, 188, 189,
5734 190, 191, 192, 193, 194, 0, 0, 195, 196, 0,
5735 0, 0, 0, 197, 198, 199, 200, 0, 0, 0,
5736 0, 0, 0, 0, 0, 0, 0, 201, 202, 0,
5737 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5738 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5739 0, 0, 0, 0, 0, 0, 0, 203, 204, 205,
5740 206, 207, 208, 209, 210, 211, 212, 0, 213, 214,
5741 1310, 644, 0, 0, 1311, 0, 215, 254, 0, 0,
5742 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5743 0, 0, 0, 0, 186, 187, 188, 189, 190, 191,
5744 192, 193, 194, 0, 0, 195, 196, 0, 0, 0,
5745 0, 197, 198, 199, 200, 0, 0, 0, 0, 0,
5746 0, 0, 0, 0, 0, 201, 202, 0, 0, 0,
5747 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5748 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5749 0, 0, 0, 0, 0, 203, 204, 205, 206, 207,
5750 208, 209, 210, 211, 212, 0, 213, 214, 1355, 635,
5751 0, 0, 1356, 0, 215, 254, 0, 0, 0, 0,
5752 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5753 0, 0, 186, 187, 188, 189, 190, 191, 192, 193,
5754 194, 0, 0, 195, 196, 0, 0, 0, 0, 197,
5755 198, 199, 200, 0, 0, 0, 0, 0, 0, 0,
5756 0, 0, 0, 201, 202, 0, 0, 0, 0, 0,
5757 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5758 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5759 0, 0, 0, 203, 204, 205, 206, 207, 208, 209,
5760 210, 211, 212, 0, 213, 214, 682, 644, 0, 0,
5761 683, 0, 215, 254, 0, 0, 0, 0, 0, 0,
5762 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5763 186, 187, 188, 189, 190, 191, 192, 193, 194, 0,
5764 0, 195, 196, 0, 0, 0, 0, 197, 198, 199,
5765 200, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5766 0, 201, 202, 0, 0, 0, 0, 0, 0, 0,
5767 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5768 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5769 0, 203, 204, 205, 206, 207, 208, 209, 210, 211,
5770 212, 0, 213, 214, 0, 0, 0, 0, 0, 0,
5774static const yytype_int16 yycheck[] =
5776 1, 59, 7, 99, 102, 15, 16, 105, 105, 58,
5777 70, 56, 21, 397, 70, 1, 404, 113, 764, 1,
5778 114, 58, 27, 422, 757, 52, 53, 570, 591, 251,
5779 254, 594, 13, 14, 341, 27, 101, 102, 345, 341,
5780 105, 15, 16, 345, 89, 7, 293, 345, 607, 105,
5781 297, 52, 53, 58, 89, 56, 593, 834, 685, 686,
5782 67, 106, 107, 108, 593, 27, 52, 53, 54, 55,
5783 15, 16, 109, 467, 844, 84, 26, 759, 28, 396,
5784 54, 398, 597, 475, 622, 467, 84, 471, 89, 15,
5785 16, 72, 719, 475, 80, 81, 56, 63, 64, 65,
5786 110, 66, 903, 521, 109, 106, 107, 108, 109, 54,
5787 55, 601, 675, 111, 508, 52, 26, 10, 1163, 511,
5788 25, 1023, 1024, 25, 1282, 901, 1187, 1188, 1024, 101,
5789 1023, 1024, 1177, 814, 451, 66, 110, 1274, 282, 523,
5790 134, 69, 100, 81, 759, 81, 78, 66, 100, 764,
5791 246, 317, 318, 470, 691, 472, 820, 27, 100, 13,
5792 650, 155, 581, 25, 828, 110, 656, 657, 587, 97,
5793 98, 154, 29, 1163, 232, 68, 134, 160, 274, 101,
5794 69, 498, 134, 155, 110, 13, 604, 284, 100, 1179,
5795 121, 122, 134, 1351, 259, 260, 0, 13, 607, 157,
5796 119, 228, 754, 155, 25, 757, 1343, 524, 97, 98,
5797 154, 307, 144, 145, 146, 0, 360, 37, 38, 939,
5798 37, 38, 134, 26, 284, 153, 151, 228, 284, 13,
5799 161, 13, 134, 155, 1136, 1296, 334, 335, 336, 337,
5800 1136, 151, 228, 1136, 254, 561, 256, 13, 234, 235,
5801 155, 997, 154, 155, 1299, 282, 158, 302, 244, 1060,
5802 482, 13, 271, 272, 265, 251, 123, 302, 254, 334,
5803 335, 336, 337, 672, 339, 340, 685, 686, 662, 265,
5804 254, 282, 256, 265, 154, 1061, 967, 1180, 778, 673,
5805 160, 854, 782, 155, 1187, 1188, 282, 235, 234, 235,
5806 154, 302, 13, 818, 1294, 843, 160, 405, 1298, 1299,
5807 719, 256, 409, 707, 941, 942, 361, 709, 414, 1001,
5808 947, 948, 700, 421, 25, 707, 154, 709, 1150, 1049,
5809 256, 332, 160, 360, 155, 120, 301, 154, 154, 155,
5810 405, 13, 292, 293, 160, 282, 663, 297, 151, 299,
5811 332, 729, 842, 409, 157, 845, 421, 674, 1135, 360,
5812 361, 1081, 56, 1083, 907, 1135, 304, 13, 1358, 859,
5813 154, 537, 154, 539, 360, 157, 160, 13, 160, 406,
5814 407, 25, 919, 801, 66, 109, 1001, 397, 154, 398,
5815 919, 157, 951, 398, 160, 66, 25, 161, 399, 69,
5816 98, 361, 154, 1296, 1031, 406, 407, 69, 160, 972,
5817 28, 397, 25, 399, 25, 25, 152, 141, 154, 100,
5818 406, 407, 287, 360, 154, 15, 101, 157, 98, 823,
5819 783, 747, 748, 786, 757, 25, 98, 447, 424, 121,
5820 122, 823, 124, 154, 981, 1082, 451, 100, 119, 160,
5821 1078, 1079, 759, 134, 155, 153, 157, 764, 1280, 157,
5822 1282, 471, 155, 472, 1286, 1185, 1186, 472, 958, 1291,
5823 848, 961, 69, 447, 155, 697, 521, 724, 968, 154,
5824 858, 134, 154, 707, 974, 471, 521, 492, 160, 498,
5825 112, 910, 911, 498, 480, 914, 482, 916, 34, 918,
5826 492, 98, 447, 504, 154, 25, 83, 84, 154, 159,
5827 134, 155, 100, 523, 160, 524, 52, 544, 154, 524,
5828 521, 447, 467, 66, 160, 1347, 155, 1349, 157, 1351,
5829 492, 1353, 941, 942, 928, 1150, 592, 523, 947, 948,
5830 1286, 134, 155, 544, 155, 155, 134, 1280, 1370, 550,
5831 1187, 1188, 936, 34, 1182, 1183, 1078, 1079, 544, 604,
5832 137, 138, 1052, 508, 157, 1342, 134, 155, 550, 604,
5833 736, 52, 15, 69, 17, 741, 119, 965, 121, 122,
5834 590, 567, 447, 593, 570, 901, 69, 903, 25, 100,
5835 591, 1154, 100, 594, 100, 602, 988, 100, 1150, 655,
5836 607, 1347, 98, 604, 155, 591, 988, 1016, 594, 157,
5837 924, 676, 926, 478, 134, 98, 481, 56, 935, 134,
5838 937, 486, 1031, 134, 101, 652, 134, 654, 602, 155,
5839 639, 134, 100, 607, 154, 155, 501, 157, 158, 648,
5840 157, 639, 1020, 1062, 1063, 1064, 1065, 155, 713, 78,
5841 648, 652, 662, 654, 663, 1043, 642, 155, 663, 881,
5842 1182, 1183, 648, 673, 157, 674, 652, 1282, 654, 674,
5843 1213, 1286, 1215, 623, 675, 684, 662, 157, 685, 686,
5844 725, 1080, 687, 990, 158, 734, 684, 673, 990, 675,
5845 725, 641, 990, 100, 1001, 687, 134, 134, 684, 100,
5846 1023, 1024, 154, 155, 1082, 25, 100, 100, 717, 718,
5847 575, 697, 719, 1276, 69, 811, 1206, 154, 155, 1150,
5848 152, 158, 69, 100, 725, 687, 159, 134, 1280, 56,
5849 1282, 100, 718, 134, 1286, 69, 1351, 1125, 603, 1291,
5850 134, 134, 97, 98, 1060, 1061, 100, 157, 155, 1056,
5851 700, 98, 155, 851, 1056, 853, 801, 134, 1056, 161,
5852 1023, 1024, 707, 69, 98, 134, 801, 52, 78, 863,
5853 736, 56, 738, 151, 724, 741, 742, 69, 155, 729,
5854 134, 1324, 69, 100, 1162, 1184, 851, 1165, 853, 134,
5855 52, 97, 98, 1212, 56, 1347, 852, 1349, 153, 1351,
5856 801, 1353, 157, 100, 69, 97, 98, 1185, 154, 155,
5857 97, 98, 69, 1136, 134, 680, 1204, 134, 1370, 1082,
5858 100, 69, 58, 773, 861, 52, 134, 54, 55, 759,
5859 57, 1321, 97, 98, 154, 155, 1099, 134, 158, 134,
5860 770, 98, 78, 1150, 830, 106, 832, 153, 834, 97,
5861 98, 1282, 155, 854, 134, 1286, 861, 1180, 155, 957,
5862 1291, 153, 69, 154, 1187, 1188, 153, 158, 854, 14,
5863 15, 69, 108, 1136, 69, 102, 112, 160, 823, 56,
5864 1264, 1259, 1260, 1261, 55, 595, 751, 25, 153, 599,
5865 97, 98, 957, 58, 138, 881, 66, 1160, 848, 1223,
5866 98, 1225, 97, 98, 134, 153, 66, 888, 858, 919,
5867 134, 66, 67, 78, 1177, 971, 1347, 973, 1349, 158,
5868 1351, 907, 1353, 873, 1187, 1188, 936, 69, 937, 956,
5869 155, 1309, 937, 1294, 941, 942, 155, 1298, 152, 1370,
5870 947, 948, 155, 108, 109, 155, 153, 158, 1265, 119,
5871 936, 121, 122, 155, 69, 956, 98, 1280, 153, 119,
5872 134, 121, 122, 155, 991, 951, 121, 122, 89, 90,
5873 956, 972, 69, 1296, 155, 1282, 141, 951, 52, 1286,
5874 920, 921, 97, 98, 1, 52, 972, 89, 90, 929,
5875 991, 69, 932, 155, 934, 860, 40, 41, 15, 16,
5876 97, 98, 155, 1327, 1328, 991, 152, 1331, 1332, 1016,
5877 66, 1335, 155, 1014, 1015, 880, 155, 882, 17, 97,
5878 98, 1048, 1023, 1024, 1031, 30, 13, 1085, 25, 1010,
5879 1011, 155, 1014, 1015, 899, 52, 53, 1086, 153, 56,
5880 1364, 1365, 1366, 1367, 1351, 154, 155, 1048, 152, 1373,
5881 67, 134, 1038, 44, 1040, 226, 153, 155, 229, 230,
5882 231, 152, 1048, 119, 44, 121, 122, 155, 124, 999,
5883 1020, 1001, 89, 1003, 69, 153, 1174, 1078, 1079, 1124,
5884 155, 1082, 1068, 1069, 101, 102, 69, 56, 105, 106,
5885 107, 108, 44, 110, 303, 304, 1192, 54, 1099, 66,
5886 1197, 44, 97, 98, 1131, 1132, 1177, 64, 65, 1174,
5887 1137, 66, 134, 136, 97, 98, 1187, 1188, 159, 69,
5888 26, 8, 15, 1124, 1151, 155, 52, 1128, 155, 155,
5889 1131, 1132, 1082, 1083, 155, 1136, 1137, 1197, 152, 155,
5890 155, 1197, 1128, 66, 155, 1131, 1132, 97, 98, 1135,
5891 1151, 1137, 119, 1154, 121, 122, 101, 124, 153, 1160,
5892 9, 26, 1163, 69, 119, 1151, 121, 122, 1154, 1196,
5893 153, 155, 52, 1271, 1272, 139, 1177, 1178, 1179, 1224,
5894 155, 1182, 1183, 1210, 155, 139, 1187, 1188, 1246, 1139,
5895 155, 97, 98, 155, 155, 1196, 119, 52, 121, 122,
5896 685, 686, 101, 153, 69, 152, 1271, 1272, 56, 1210,
5897 1196, 228, 1162, 1199, 160, 1165, 158, 1147, 703, 704,
5898 1150, 155, 155, 1224, 1210, 155, 155, 1213, 155, 1215,
5899 155, 155, 97, 98, 719, 1185, 155, 254, 152, 256,
5900 1285, 139, 259, 260, 155, 151, 56, 153, 265, 157,
5901 155, 157, 54, 55, 1264, 57, 1265, 157, 263, 155,
5902 1265, 155, 64, 65, 155, 282, 78, 59, 60, 61,
5903 62, 1221, 155, 265, 332, 1276, 1128, 500, 1264, 861,
5904 1266, 104, 1268, 26, 1285, 302, 151, 1314, 153, 504,
5905 1276, 602, 157, 1294, 108, 466, 467, 1298, 1299, 106,
5906 96, 684, 493, 52, 475, 54, 55, 56, 57, 1259,
5907 1260, 1261, 952, 1314, 971, 332, 1199, 334, 335, 336,
5908 337, 1186, 339, 340, 747, 901, 69, 1222, 1314, 1280,
5909 142, 143, 144, 145, 146, 1150, 1069, 508, 1324, 1286,
5910 511, 1221, 864, 360, 361, 52, 1343, 54, 55, 56,
5911 57, 1342, 1282, 358, 97, 98, 1342, 1358, 363, 1309,
5912 78, 1291, 356, 1266, 1229, 1178, 1180, 52, 1318, 54,
5913 55, 56, 57, 1180, 1239, 1176, 1268, 95, 96, 117,
5914 397, 539, 399, 109, 757, 764, 871, 1337, 405, 406,
5915 407, 1256, 1257, 1258, 1337, 102, 52, -1, 54, 55,
5916 56, 57, 58, -1, 421, -1, -1, -1, 151, -1,
5917 153, 582, -1, -1, 157, -1, -1, -1, -1, 1349,
5918 1, 1351, 78, 1353, 142, 143, 144, 145, 146, -1,
5919 447, 602, -1, -1, 15, 16, 607, -1, -1, 52,
5920 1370, 54, 55, 56, 57, 58, 102, -1, -1, 454,
5921 455, -1, 108, 109, 471, -1, 941, 942, 1023, 1024,
5922 465, -1, 947, 948, -1, 78, -1, -1, 473, 474,
5923 -1, 52, 53, 40, 41, 42, 43, 44, -1, 92,
5924 -1, -1, -1, -1, -1, 141, 67, 504, 493, 102,
5925 -1, -1, -1, -1, 499, 108, 109, 982, 983, -1,
5926 985, 986, -1, -1, 521, 52, 523, 54, 55, 56,
5927 57, 58, -1, 1078, 1079, -1, -1, 1082, 689, -1,
5928 101, 102, -1, -1, 105, -1, -1, 544, 141, 110,
5929 -1, 78, -1, 550, 1099, -1, 707, -1, 709, 78,
5930 -1, -1, -1, -1, -1, 92, 1031, -1, -1, -1,
5931 -1, -1, -1, -1, -1, 102, 95, 96, -1, -1,
5932 107, 108, 109, 78, -1, -1, -1, -1, -1, -1,
5933 1055, 1136, -1, 590, 591, -1, 593, 594, -1, -1,
5934 95, 96, -1, -1, -1, 602, -1, 604, -1, -1,
5935 607, -1, 763, -1, 141, 1160, -1, 144, 1163, -1,
5936 139, 140, 141, 142, 143, 144, 145, 146, -1, -1,
5937 157, -1, 1177, 1178, 1179, -1, -1, 1182, 1183, -1,
5938 791, -1, 1187, 1188, -1, -1, 141, 142, 143, 144,
5939 145, 146, -1, -1, -1, 652, -1, 654, 52, -1,
5940 54, 55, 56, 57, 649, 662, -1, 228, -1, -1,
5941 -1, -1, 823, -1, -1, -1, 673, -1, 675, 676,
5942 -1, -1, -1, -1, -1, -1, -1, -1, 685, 686,
5943 841, -1, -1, 254, -1, 256, 44, -1, 259, 260,
5944 -1, -1, -1, 688, 265, -1, -1, -1, 102, -1,
5945 1023, 1024, -1, 107, -1, -1, 713, -1, -1, -1,
5946 -1, 282, 719, -1, -1, -1, -1, -1, 725, -1,
5947 78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
5948 88, 89, 90, -1, -1, -1, -1, 95, 96, 1294,
5949 -1, -1, -1, 1298, 1299, -1, -1, -1, -1, -1,
5950 -1, -1, -1, -1, -1, 1078, 1079, -1, -1, 1082,
5951 -1, 332, -1, 334, 335, 336, 337, 928, 339, 340,
5952 -1, -1, -1, -1, -1, -1, 1099, 135, -1, 137,
5953 138, 139, 140, 141, 142, 143, 144, 145, 146, 360,
5954 951, -1, -1, -1, 801, -1, -1, 155, -1, -1,
5955 -1, 1, 963, 1358, -1, -1, -1, -1, -1, -1,
5956 -1, -1, -1, 1136, -1, 15, 16, -1, -1, -1,
5957 -1, 816, 817, -1, -1, -1, 397, 988, 399, 824,
5958 825, -1, -1, -1, 405, 406, 407, 1160, -1, -1,
5959 1163, -1, -1, -1, 851, -1, 853, 854, -1, -1,
5960 421, 1012, 52, 53, 1177, 1178, 1179, -1, -1, 1182,
5961 1183, -1, -1, -1, 1187, 1188, 52, 67, 54, 55,
5962 56, 57, 58, -1, -1, -1, 447, -1, -1, -1,
5963 875, 876, -1, 878, 879, -1, 1047, -1, -1, -1,
5964 -1, -1, 78, -1, -1, -1, -1, -1, -1, -1,
5965 471, 101, 102, -1, -1, 105, 92, -1, -1, -1,
5966 110, -1, 919, -1, -1, -1, 102, -1, -1, -1,
5967 -1, 107, 108, 109, -1, -1, -1, -1, -1, 936,
5968 -1, -1, -1, 504, 941, 942, -1, -1, 933, -1,
5969 947, 948, -1, -1, -1, -1, -1, -1, -1, 956,
5970 957, 946, 523, -1, -1, 141, -1, -1, 144, -1,
5971 -1, -1, -1, -1, -1, 972, -1, -1, -1, -1,
5972 -1, 1294, 1133, 544, -1, 1298, 1299, -1, -1, 550,
5973 -1, -1, -1, -1, 991, -1, -1, -1, 52, 984,
5974 54, 55, 56, 57, 58, -1, -1, -1, -1, -1,
5975 -1, -1, -1, -1, -1, -1, -1, 1014, 1015, 1016,
5976 -1, -1, -1, -1, 78, -1, -1, -1, -1, 590,
5977 591, -1, 593, 594, 1031, -1, -1, -1, 228, -1,
5978 -1, 602, -1, -1, -1, 1358, 607, -1, 102, -1,
5979 -1, 1048, -1, 107, 108, 109, -1, -1, -1, -1,
5980 -1, -1, -1, -1, 254, -1, 256, -1, -1, 259,
5981 260, -1, -1, -1, -1, 265, -1, -1, -1, -1,
5982 -1, -1, -1, -1, -1, -1, -1, 141, -1, -1,
5983 144, 652, 282, 654, -1, -1, -1, -1, -1, -1,
5984 -1, 662, -1, -1, -1, -1, -1, -1, -1, -1,
5985 -1, -1, 673, -1, 675, 676, -1, -1, -1, -1,
5986 -1, -1, -1, -1, 685, 686, -1, 1124, -1, -1,
5987 -1, 1128, -1, -1, 1131, 1132, -1, -1, -1, -1,
5988 1137, -1, 332, -1, 334, 335, 336, 337, -1, 339,
5989 340, -1, 713, -1, 1151, -1, -1, 1154, 719, -1,
5990 -1, -1, -1, -1, -1, -1, -1, 1023, 1024, -1,
5991 360, -1, -1, -1, -1, -1, -1, 1174, -1, -1,
5992 -1, -1, 1, -1, 1169, -1, -1, -1, -1, -1,
5993 -1, -1, -1, -1, -1, -1, 15, 16, -1, 1196,
5994 -1, -1, -1, -1, -1, -1, -1, 397, -1, 399,
5995 -1, -1, -1, 1210, -1, 405, 406, 407, -1, -1,
5996 -1, -1, 1078, 1079, -1, -1, 1082, 1224, -1, -1,
5997 -1, 421, -1, 52, 53, 78, 79, 80, 81, 82,
5998 83, 84, 85, 1099, 87, 88, -1, -1, 67, -1,
5999 -1, -1, 95, 96, -1, -1, -1, 447, -1, -1,
6000 -1, -1, -1, -1, -1, -1, -1, 1264, -1, -1,
6001 -1, -1, -1, -1, 1271, 1272, -1, -1, -1, 1276,
6002 1136, 471, 101, 102, -1, -1, 105, -1, 1285, -1,
6003 851, 110, 853, 854, 137, 138, 139, 140, 141, 142,
6004 143, 144, 145, 146, 1160, -1, -1, 1163, 25, -1,
6005 -1, -1, -1, -1, 504, -1, -1, 1314, -1, -1,
6006 -1, 1177, 1178, 1179, -1, -1, 1182, 1183, -1, -1,
6007 -1, 1187, 1188, 523, 1023, 1024, -1, -1, -1, -1,
6008 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6009 -1, -1, -1, -1, 544, -1, -1, -1, 919, -1,
6010 550, 78, 79, 80, 81, 82, 83, 84, 85, 86,
6011 87, 88, 89, 90, -1, 936, -1, -1, 95, 96,
6012 941, 942, -1, -1, 101, -1, 947, 948, -1, 1078,
6013 1079, -1, -1, 1082, -1, 956, 957, -1, -1, -1,
6014 590, 591, -1, 593, 594, -1, -1, -1, -1, 228,
6015 1099, 972, 602, -1, -1, -1, -1, 607, 135, -1,
6016 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
6017 991, -1, -1, -1, -1, 254, -1, 256, 1294, -1,
6018 259, 260, 1298, 1299, -1, -1, 265, 1136, -1, -1,
6019 -1, -1, -1, 1014, 1015, 1016, -1, -1, -1, -1,
6020 -1, -1, 652, 282, 654, -1, -1, -1, -1, -1,
6021 1031, 1160, 662, -1, 1163, -1, -1, -1, -1, -1,
6022 -1, -1, -1, 673, -1, 675, 676, 1048, 1177, 1178,
6023 1179, -1, -1, 1182, 1183, 685, 686, -1, 1187, 1188,
6024 -1, -1, 1358, -1, -1, -1, -1, -1, -1, -1,
6025 -1, -1, -1, 332, -1, 334, 335, 336, 337, -1,
6026 339, 340, -1, 713, -1, -1, -1, -1, -1, 719,
6027 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6028 -1, 360, -1, -1, -1, -1, -1, -1, -1, -1,
6029 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6030 -1, -1, -1, -1, -1, -1, -1, 1128, -1, -1,
6031 1131, 1132, 1, -1, -1, -1, 1137, -1, 397, -1,
6032 399, -1, -1, -1, -1, -1, 405, 406, 407, -1,
6033 1151, -1, -1, 1154, -1, -1, -1, -1, -1, -1,
6034 -1, -1, 421, -1, -1, 1294, -1, -1, -1, 1298,
6035 1299, -1, -1, 1174, 33, 34, 35, 36, -1, -1,
6036 -1, -1, -1, 52, 53, -1, -1, 56, 447, -1,
6037 49, 50, 51, -1, -1, 1196, -1, -1, -1, -1,
6038 59, 60, 61, 62, 63, -1, -1, -1, -1, 1210,
6039 1023, 1024, 471, -1, -1, -1, -1, -1, -1, -1,
6040 89, 851, -1, 853, 854, -1, -1, -1, -1, 1358,
6041 -1, -1, -1, -1, -1, -1, -1, 106, 107, 108,
6042 -1, -1, -1, -1, -1, 504, -1, -1, -1, -1,
6043 -1, 110, 111, 112, 113, 114, 115, 116, 117, 118,
6044 -1, -1, -1, 1264, 523, 1078, 1079, -1, -1, 1082,
6045 1271, 1272, -1, -1, -1, 1276, -1, -1, -1, -1,
6046 -1, -1, -1, -1, -1, 544, 1099, -1, 147, 919,
6047 -1, 550, -1, -1, -1, -1, -1, -1, -1, -1,
6048 -1, -1, -1, -1, -1, -1, 936, -1, -1, -1,
6049 -1, 941, 942, 1314, -1, -1, -1, 947, 948, -1,
6050 -1, -1, -1, 1136, -1, -1, 956, 957, -1, -1,
6051 -1, 590, 591, -1, 593, 594, -1, -1, -1, -1,
6052 -1, -1, 972, 602, -1, -1, -1, 1160, 607, -1,
6053 1163, -1, -1, -1, -1, -1, -1, -1, -1, 228,
6054 -1, 991, -1, -1, 1177, 1178, 1179, -1, -1, 1182,
6055 1183, -1, -1, -1, 1187, 1188, -1, -1, -1, -1,
6056 -1, -1, -1, -1, 1014, 1015, 1016, -1, -1, -1,
6057 1, -1, -1, 652, -1, 654, 265, -1, -1, -1,
6058 -1, 1031, -1, 662, -1, -1, -1, -1, -1, -1,
6059 -1, -1, -1, 282, 673, -1, 675, 676, 1048, -1,
6060 -1, -1, -1, -1, -1, -1, 685, 686, -1, -1,
6061 -1, -1, -1, 302, -1, -1, -1, -1, -1, -1,
6062 -1, 52, 53, -1, -1, 56, -1, -1, -1, -1,
6063 -1, -1, -1, -1, 713, -1, -1, -1, -1, -1,
6064 719, -1, -1, 332, -1, -1, -1, -1, -1, -1,
6065 -1, -1, -1, -1, -1, -1, -1, -1, 89, -1,
6066 -1, 1294, -1, -1, -1, 1298, 1299, -1, -1, -1,
6067 -1, 360, 361, -1, -1, 106, 107, 108, 1128, -1,
6068 -1, 1131, 1132, 1023, 1024, -1, -1, 1137, -1, -1,
6069 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6070 1, 1151, -1, -1, 1154, -1, -1, -1, -1, -1,
6071 399, -1, -1, -1, -1, -1, -1, 406, 407, -1,
6072 -1, -1, -1, -1, 1174, 1358, -1, -1, -1, -1,
6073 -1, -1, -1, -1, -1, -1, -1, -1, 1078, 1079,
6074 -1, -1, 1082, -1, -1, -1, 1196, -1, -1, -1,
6075 -1, 52, 53, -1, -1, 56, -1, -1, -1, 1099,
6076 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6077 -1, -1, 851, -1, 853, 854, -1, -1, -1, -1,
6078 -1, -1, -1, -1, -1, -1, -1, -1, 89, -1,
6079 -1, -1, -1, -1, -1, -1, 1136, 228, -1, -1,
6080 -1, -1, -1, -1, -1, 106, 107, 108, -1, -1,
6081 -1, -1, -1, -1, 1264, 504, -1, -1, -1, -1,
6082 1160, 1271, 1272, 1163, -1, -1, 1276, -1, -1, -1,
6083 -1, -1, 521, -1, 265, -1, -1, 1177, 1178, 1179,
6084 919, -1, 1182, 1183, -1, -1, -1, 1187, 1188, -1,
6085 -1, 282, -1, -1, -1, 544, -1, 936, -1, -1,
6086 -1, 550, 941, 942, 1314, -1, -1, -1, 947, 948,
6087 -1, 302, -1, -1, -1, -1, -1, 956, 957, 78,
6088 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
6089 89, 90, -1, 972, -1, -1, 95, 96, -1, -1,
6090 -1, 332, 591, -1, -1, 594, -1, -1, -1, -1,
6091 -1, -1, 991, -1, -1, 604, -1, -1, 607, -1,
6092 -1, -1, -1, -1, -1, -1, -1, 228, -1, 360,
6093 361, -1, -1, -1, -1, 1014, 1015, 1016, 137, 138,
6094 139, 140, 141, 142, 143, 144, 145, 146, -1, -1,
6095 -1, -1, 1031, -1, 1294, -1, -1, -1, 1298, 1299,
6096 -1, -1, -1, 652, 265, 654, -1, -1, 399, 1048,
6097 1023, 1024, -1, -1, -1, 406, 407, -1, -1, -1,
6098 -1, 282, -1, -1, -1, -1, 675, -1, -1, -1,
6099 -1, -1, -1, -1, -1, -1, 685, 686, -1, -1,
6100 -1, 302, 78, 79, 80, 81, 82, 83, 84, -1,
6101 -1, 87, 88, -1, -1, -1, -1, -1, 1358, 95,
6102 96, -1, -1, -1, -1, 1078, 1079, -1, -1, 1082,
6103 719, 332, -1, -1, -1, -1, 725, -1, -1, -1,
6104 -1, -1, -1, -1, -1, 734, 1099, -1, -1, 1128,
6105 -1, -1, 1131, 1132, -1, -1, -1, -1, 1137, 360,
6106 361, 137, 138, 139, 140, 141, 142, 143, 144, 145,
6107 146, -1, 1151, 504, -1, 1154, -1, -1, -1, -1,
6108 -1, -1, -1, 1136, -1, -1, -1, -1, -1, -1,
6109 521, -1, -1, -1, -1, 1174, -1, -1, 399, -1,
6110 -1, -1, -1, -1, -1, 406, 407, 1160, -1, -1,
6111 1163, -1, 801, 544, -1, -1, -1, 1196, -1, 550,
6112 -1, -1, -1, -1, 1177, 1178, 1179, -1, -1, 1182,
6113 1183, 1210, -1, -1, 1187, 1188, -1, -1, -1, -1,
6114 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6115 -1, -1, -1, -1, -1, 1023, 1024, -1, -1, -1,
6116 591, -1, -1, 594, -1, 854, -1, -1, -1, -1,
6117 -1, -1, -1, 604, -1, -1, 607, -1, -1, -1,
6118 -1, -1, -1, -1, -1, 1264, -1, -1, -1, -1,
6119 -1, -1, 1271, 1272, -1, -1, -1, 1276, -1, -1,
6120 -1, -1, -1, 504, -1, -1, -1, -1, -1, -1,
6121 1078, 1079, -1, -1, 1082, -1, -1, -1, 1, -1,
6122 521, 652, -1, 654, -1, -1, -1, -1, -1, -1,
6123 -1, 1099, -1, -1, -1, 1314, -1, -1, -1, -1,
6124 -1, 1294, -1, 544, 675, 1298, 1299, -1, -1, 550,
6125 -1, -1, 941, 942, 685, 686, -1, -1, 947, 948,
6126 -1, -1, -1, -1, -1, -1, -1, 956, 1136, 52,
6127 53, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6128 -1, -1, -1, 972, -1, -1, -1, -1, 719, -1,
6129 591, -1, 1160, 594, 725, 1163, -1, -1, -1, -1,
6130 -1, -1, 991, 604, -1, 1358, 607, -1, -1, 1177,
6131 1178, 1179, -1, -1, 1182, 1183, -1, -1, -1, 1187,
6132 1188, -1, -1, 106, -1, 1014, 1015, 1016, -1, -1,
6133 -1, -1, -1, 1023, 1024, -1, -1, -1, -1, -1,
6134 -1, -1, 1031, -1, -1, -1, -1, -1, 1, -1,
6135 -1, 652, -1, 654, -1, -1, -1, -1, -1, 1048,
6136 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6137 801, -1, -1, -1, 675, -1, -1, -1, -1, -1,
6138 -1, -1, -1, -1, 685, 686, -1, -1, 1078, 1079,
6139 -1, -1, 1082, -1, -1, -1, -1, -1, -1, 52,
6140 53, -1, -1, 56, -1, -1, -1, -1, -1, 1099,
6141 -1, -1, -1, -1, -1, -1, -1, -1, 719, -1,
6142 -1, -1, -1, 854, 725, -1, 1294, -1, -1, -1,
6143 1298, 1299, -1, -1, -1, 1124, 89, -1, -1, 1128,
6144 -1, -1, 1131, 1132, -1, 228, 1136, -1, 1137, -1,
6145 -1, -1, -1, 106, 107, 108, 109, -1, -1, -1,
6146 -1, -1, 1151, -1, -1, 1154, -1, -1, -1, -1,
6147 1160, -1, -1, 1163, -1, -1, 1, -1, -1, -1,
6148 -1, -1, 265, -1, -1, -1, -1, 1177, 1178, 1179,
6149 1358, -1, 1182, 1183, -1, -1, -1, 1187, 1188, 282,
6150 801, -1, -1, -1, -1, -1, -1, 1196, -1, -1,
6151 941, 942, -1, -1, -1, -1, 947, 948, -1, -1,
6152 -1, 1210, -1, -1, -1, 956, -1, 52, 53, -1,
6153 -1, -1, -1, -1, -1, 1224, -1, -1, -1, -1,
6154 -1, 972, -1, -1, -1, -1, -1, -1, -1, 332,
6155 -1, -1, -1, 854, -1, -1, -1, -1, -1, -1,
6156 991, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6157 -1, -1, -1, -1, -1, 228, -1, 360, -1, -1,
6158 -1, -1, -1, 1014, 1015, 1016, -1, 1276, -1, -1,
6159 -1, -1, -1, -1, -1, -1, 1285, -1, -1, -1,
6160 1031, -1, -1, -1, 1294, -1, -1, -1, 1298, 1299,
6161 -1, -1, 265, -1, -1, -1, 399, 1048, -1, -1,
6162 -1, -1, -1, 406, 407, 1314, -1, -1, -1, 282,
6163 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6164 941, 942, -1, -1, -1, -1, 947, 948, -1, 302,
6165 -1, -1, -1, -1, -1, 956, -1, -1, -1, -1,
6166 -1, -1, -1, -1, -1, -1, -1, -1, 1358, -1,
6167 -1, 972, -1, -1, -1, -1, -1, -1, -1, 332,
6168 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6169 991, -1, -1, 1124, -1, -1, -1, 1128, -1, -1,
6170 1131, 1132, -1, 228, -1, -1, 1137, 360, 361, -1,
6171 -1, -1, -1, 1014, 1015, 1016, -1, -1, -1, -1,
6172 1151, 504, -1, 1154, -1, -1, -1, -1, -1, -1,
6173 1031, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6174 265, -1, -1, -1, -1, -1, 399, 1048, -1, -1,
6175 -1, -1, -1, 406, 407, -1, -1, 282, -1, -1,
6176 0, 544, -1, -1, -1, 1196, -1, 550, 8, 9,
6177 10, -1, -1, 13, 14, 15, -1, 17, -1, 1210,
6178 -1, -1, -1, -1, -1, 25, 26, 27, -1, -1,
6179 -1, -1, -1, 1224, -1, -1, -1, 37, 38, -1,
6180 40, 41, 42, 43, 44, -1, -1, 332, 591, -1,
6181 -1, 594, -1, -1, -1, -1, -1, -1, -1, -1,
6182 -1, -1, -1, 1124, 607, -1, -1, 1128, 68, 69,
6183 1131, 1132, -1, -1, -1, 360, 1137, -1, -1, -1,
6184 -1, -1, -1, -1, -1, 1276, -1, -1, -1, -1,
6185 1151, 504, -1, 1154, 1285, -1, -1, 97, 98, -1,
6186 -1, -1, -1, -1, -1, -1, -1, -1, 521, 652,
6187 -1, 654, -1, -1, 399, -1, -1, -1, -1, -1,
6188 120, 406, 407, 1314, -1, -1, -1, -1, -1, -1,
6189 -1, 544, 675, -1, -1, 1196, -1, 550, -1, -1,
6190 -1, -1, 685, 686, -1, -1, -1, -1, -1, 1210,
6191 -1, 151, 152, -1, 154, -1, -1, 157, 158, -1,
6192 160, -1, -1, 1224, -1, -1, -1, -1, -1, -1,
6193 -1, -1, -1, -1, -1, -1, 719, -1, 591, -1,
6194 -1, 594, -1, 78, 79, 80, 81, 82, 83, 84,
6195 -1, 604, 87, 88, -1, -1, -1, -1, -1, -1,
6196 95, 96, -1, -1, -1, -1, -1, -1, -1, -1,
6197 -1, -1, -1, -1, -1, 1276, -1, -1, -1, 504,
6198 -1, -1, -1, -1, 1285, -1, -1, -1, -1, -1,
6199 -1, -1, -1, -1, -1, -1, -1, -1, -1, 652,
6200 -1, 654, 137, 138, 139, 140, 141, 142, 143, 144,
6201 145, 146, -1, 1314, -1, -1, -1, -1, -1, 544,
6202 -1, -1, 675, -1, -1, 550, 33, 34, 35, 36,
6203 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6204 -1, -1, 49, 50, 51, 52, -1, -1, -1, 56,
6205 -1, -1, 59, 60, 61, 62, 63, -1, -1, -1,
6206 -1, -1, -1, -1, -1, -1, 591, -1, -1, 594,
6207 -1, 854, 725, -1, -1, -1, -1, -1, -1, -1,
6208 -1, -1, 607, -1, 91, 92, -1, -1, -1, -1,
6209 -1, -1, 99, -1, -1, 102, -1, 104, 105, -1,
6210 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6211 117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
6212 -1, -1, -1, -1, -1, -1, -1, 652, -1, 654,
6213 -1, -1, -1, 140, -1, -1, -1, -1, -1, -1,
6214 147, -1, -1, -1, -1, -1, -1, 154, 801, -1,
6215 675, -1, -1, -1, -1, -1, -1, -1, 941, 942,
6216 685, 686, -1, -1, 947, 948, -1, -1, -1, -1,
6217 -1, -1, -1, 956, -1, -1, -1, -1, -1, -1,
6218 -1, -1, -1, -1, -1, -1, -1, -1, -1, 972,
6219 -1, -1, -1, -1, 719, 33, 34, 35, 36, -1,
6220 -1, 854, -1, -1, -1, -1, -1, -1, 991, -1,
6221 -1, 49, 50, 51, 52, -1, -1, -1, 56, -1,
6222 58, 59, 60, 61, 62, 63, -1, -1, -1, -1,
6223 -1, 1014, 1015, 1016, -1, -1, -1, -1, -1, -1,
6224 78, -1, -1, -1, -1, -1, -1, -1, 1031, -1,
6225 -1, -1, -1, 91, 92, -1, -1, -1, -1, -1,
6226 -1, 99, -1, -1, 102, 1048, 104, 105, -1, 107,
6227 108, -1, 110, 111, 112, 113, 114, 115, 116, 117,
6228 118, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6229 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6230 -1, -1, 140, 956, -1, -1, -1, -1, -1, 147,
6231 -1, -1, -1, -1, -1, -1, -1, -1, -1, 972,
6232 -1, -1, -1, -1, -1, -1, -1, -1, -1, 854,
6233 -1, -1, -1, -1, -1, -1, -1, -1, 991, -1,
6234 -1, 1124, -1, -1, -1, 1128, -1, -1, 1131, 1132,
6235 15, 16, -1, -1, 1137, -1, -1, -1, -1, -1,
6236 -1, 1014, 1015, -1, -1, -1, -1, -1, 1151, -1,
6237 -1, 1154, -1, -1, -1, -1, -1, -1, -1, -1,
6238 -1, -1, 47, 48, 49, 50, -1, -1, -1, 54,
6239 55, -1, -1, -1, -1, 1048, -1, -1, -1, -1,
6240 -1, -1, 67, 68, -1, -1, -1, -1, -1, -1,
6241 -1, -1, -1, 1196, -1, -1, 941, 942, 44, -1,
6242 -1, -1, 947, 948, -1, -1, -1, 1210, -1, -1,
6243 -1, 956, -1, -1, -1, -1, -1, -1, -1, -1,
6244 -1, -1, -1, -1, -1, 110, -1, 972, -1, -1,
6245 -1, -1, 78, 79, 80, 81, 82, 83, 84, 85,
6246 86, 87, 88, 89, 90, -1, 991, -1, -1, 95,
6247 96, 1124, -1, -1, -1, 1128, -1, -1, 1131, 1132,
6248 -1, -1, -1, -1, 1137, -1, -1, -1, -1, 1014,
6249 1015, 1016, -1, 1276, -1, -1, -1, -1, 1151, -1,
6250 -1, 1154, -1, -1, -1, -1, 1031, -1, -1, 135,
6251 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
6252 146, -1, -1, 1048, -1, -1, -1, -1, -1, -1,
6253 -1, 1314, -1, -1, -1, -1, -1, -1, -1, -1,
6254 -1, -1, -1, 1196, -1, -1, -1, -1, -1, -1,
6255 -1, -1, -1, -1, -1, -1, -1, 1210, -1, -1,
6256 -1, 226, -1, -1, 229, 230, 231, -1, 233, -1,
6257 -1, 1224, -1, -1, -1, -1, 78, 79, 80, 81,
6258 82, 83, 84, 85, 86, 87, 88, 89, 90, 254,
6259 -1, 256, -1, 95, 96, -1, -1, -1, -1, -1,
6260 -1, -1, -1, 1128, -1, -1, 1131, 1132, -1, -1,
6261 -1, -1, 1137, -1, -1, -1, -1, -1, -1, -1,
6262 -1, -1, -1, 1276, -1, -1, 1151, -1, -1, 1154,
6263 -1, -1, 1285, 135, -1, 137, 138, 139, 140, 141,
6264 142, 143, 144, 145, 146, -1, -1, -1, -1, -1,
6265 -1, -1, 154, -1, -1, -1, -1, -1, -1, -1,
6266 -1, 1314, -1, -1, -1, -1, -1, -1, -1, -1,
6267 -1, 1196, -1, -1, -1, -1, -1, -1, -1, -1,
6268 -1, -1, -1, -1, -1, 1210, -1, -1, -1, -1,
6269 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6270 365, 366, 367, 368, 369, -1, -1, 372, 373, 374,
6271 375, 376, 377, 378, 379, -1, 381, -1, -1, 384,
6272 385, 386, 387, 388, 389, 390, 391, 392, 393, -1,
6273 -1, -1, 397, -1, -1, -1, -1, -1, -1, -1,
6274 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6275 -1, 1276, -1, -1, -1, -1, -1, 33, 34, 35,
6276 36, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6277 -1, -1, -1, 49, 50, 51, 52, -1, -1, -1,
6278 56, -1, 447, 59, 60, 61, 62, 63, -1, 1314,
6279 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6280 -1, 466, 467, -1, -1, -1, 471, -1, -1, -1,
6281 475, -1, 477, -1, -1, 91, 92, -1, -1, -1,
6282 -1, -1, -1, 99, -1, -1, 102, -1, 104, 105,
6283 495, 107, -1, -1, 110, 111, 112, 113, 114, 115,
6284 116, 117, 118, 508, -1, -1, 511, -1, -1, -1,
6285 -1, -1, -1, -1, -1, -1, -1, -1, 523, -1,
6286 -1, -1, -1, -1, 140, -1, -1, -1, -1, -1,
6287 -1, 147, -1, -1, -1, -1, 541, -1, -1, -1,
6288 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6289 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6290 0, 1, -1, 3, 4, 5, 6, 7, -1, -1,
6291 -1, 11, 12, -1, -1, -1, 16, 582, 18, 19,
6292 20, 21, 22, 23, 24, 590, -1, -1, 593, -1,
6293 30, 31, 32, 33, 34, 35, 36, 602, -1, 39,
6294 -1, -1, 607, -1, -1, 45, 46, 47, 48, 49,
6295 50, 51, 52, 53, 54, 55, 56, 57, -1, 59,
6296 60, 61, 62, 63, 64, 65, -1, -1, -1, -1,
6297 -1, -1, -1, -1, -1, -1, 76, 77, -1, -1,
6298 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6299 -1, 91, 92, -1, -1, -1, -1, 662, -1, 99,
6300 -1, -1, 102, 103, 104, 105, -1, 107, 673, -1,
6301 110, 111, 112, 113, 114, 115, 116, 117, 118, -1,
6302 685, 686, -1, -1, 689, 690, 691, 692, -1, -1,
6303 -1, -1, -1, -1, -1, -1, -1, -1, 703, 704,
6304 -1, -1, 707, -1, 709, -1, -1, 147, 148, 149,
6305 -1, -1, 152, -1, 719, -1, -1, -1, -1, -1,
6306 160, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6307 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6308 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6309 -1, -1, -1, -1, -1, -1, -1, -1, 763, -1,
6310 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6311 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6312 -1, -1, -1, -1, -1, -1, 791, -1, -1, -1,
6313 -1, -1, 0, 1, -1, 3, 4, 5, 6, 7,
6314 8, 9, 10, 11, 12, -1, 14, 15, 16, 17,
6315 18, 19, 20, 21, 22, 23, 24, 25, 823, -1,
6316 -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
6317 -1, 39, -1, -1, -1, -1, 841, 45, 46, 47,
6318 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
6319 -1, 59, 60, 61, 62, 63, 64, 65, -1, -1,
6320 68, -1, -1, -1, -1, -1, 871, -1, 76, 77,
6321 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6322 -1, -1, -1, 91, 92, -1, -1, -1, -1, -1,
6323 -1, 99, -1, -1, 102, 103, 104, 105, -1, 107,
6324 -1, -1, 110, 111, 112, 113, 114, 115, 116, 117,
6325 118, -1, 120, -1, 919, -1, -1, -1, -1, -1,
6326 -1, -1, -1, 928, -1, -1, -1, -1, -1, -1,
6327 -1, 936, -1, -1, -1, 940, 941, 942, -1, 147,
6328 148, 149, 947, 948, 152, -1, 951, -1, -1, -1,
6329 158, -1, 160, -1, -1, -1, -1, -1, 963, -1,
6330 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6331 -1, -1, -1, -1, -1, -1, 981, 982, 983, -1,
6332 985, 986, -1, 988, -1, -1, -1, -1, -1, -1,
6333 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6334 -1, -1, -1, 1008, 1009, -1, -1, 1012, -1, -1,
6335 -1, 1016, 1017, -1, -1, -1, -1, -1, -1, -1,
6336 -1, -1, -1, -1, -1, -1, 1031, -1, -1, -1,
6337 -1, -1, -1, 0, 1, -1, 3, 4, 5, 6,
6338 7, -1, 1047, -1, 11, 12, -1, -1, -1, 16,
6339 1055, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6340 -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
6341 -1, -1, 39, -1, -1, -1, -1, -1, 45, 46,
6342 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
6343 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6344 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6345 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6346 -1, -1, -1, -1, 91, 92, -1, -1, 1133, -1,
6347 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6348 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6349 117, 118, -1, 120, -1, -1, -1, -1, -1, -1,
6350 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6351 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6352 147, 148, 149, -1, -1, 0, 1, 154, 3, 4,
6353 5, 6, 7, 160, -1, -1, 11, 12, -1, -1,
6354 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6355 -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
6356 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
6357 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6358 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
6359 65, -1, -1, -1, -1, -1, -1, -1, -1, 1264,
6360 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6361 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6362 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6363 105, -1, 107, -1, -1, 110, 111, 112, 113, 114,
6364 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6365 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6366 -1, -1, -1, -1, -1, -1, -1, 0, -1, -1,
6367 -1, -1, 147, 148, 149, 8, 9, 10, -1, 154,
6368 13, 14, 15, -1, 17, 160, -1, -1, -1, -1,
6369 -1, -1, 25, 26, 27, 28, 29, -1, -1, -1,
6370 -1, -1, -1, -1, 37, 38, -1, 40, 41, 42,
6371 43, 44, -1, -1, -1, 78, 79, 80, 81, 82,
6372 83, 84, 85, 86, 87, 88, 89, 90, -1, -1,
6373 -1, -1, 95, 96, -1, 68, 69, -1, -1, -1,
6374 -1, -1, -1, -1, -1, 78, 79, 80, 81, 82,
6375 83, 84, 85, 86, 87, 88, 89, 90, -1, -1,
6376 -1, -1, 95, 96, 97, 98, -1, 100, 101, -1,
6377 -1, -1, 135, 106, 137, 138, 139, 140, 141, 142,
6378 143, 144, 145, 146, -1, -1, -1, 120, -1, -1,
6379 123, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6380 -1, 134, 135, 136, 137, 138, 139, 140, 141, 142,
6381 143, 144, 145, 146, -1, -1, -1, -1, 151, 152,
6382 153, 154, 155, 0, -1, 158, 159, 160, -1, -1,
6383 -1, 8, 9, 10, -1, -1, 13, 14, 15, -1,
6384 17, -1, -1, -1, -1, -1, -1, -1, 25, -1,
6385 27, 28, 29, -1, -1, -1, -1, -1, -1, -1,
6386 37, 38, -1, 40, 41, 42, 43, 44, -1, -1,
6387 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6388 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6389 -1, 68, 69, -1, -1, -1, -1, -1, -1, -1,
6390 -1, 78, 79, 80, 81, 82, 83, 84, 85, 86,
6391 87, 88, 89, 90, -1, -1, -1, -1, 95, 96,
6392 97, 98, -1, 100, 101, -1, -1, -1, -1, 106,
6393 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6394 -1, -1, -1, 120, -1, -1, 123, -1, -1, -1,
6395 -1, -1, -1, -1, -1, -1, -1, 134, 135, 136,
6396 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
6397 -1, -1, -1, -1, -1, 152, 153, 154, 155, 0,
6398 -1, 158, 159, 160, -1, -1, -1, 8, 9, 10,
6399 -1, -1, 13, 14, 15, -1, 17, -1, -1, -1,
6400 -1, -1, -1, -1, 25, -1, 27, 28, 29, -1,
6401 -1, -1, -1, -1, -1, -1, 37, 38, -1, 40,
6402 41, 42, 43, 44, -1, -1, -1, -1, -1, -1,
6403 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6404 -1, -1, -1, -1, -1, -1, -1, 68, 69, -1,
6405 -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
6406 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
6407 -1, -1, -1, -1, 95, 96, 97, 98, -1, 100,
6408 101, -1, -1, -1, -1, 106, -1, -1, -1, -1,
6409 -1, -1, -1, -1, -1, -1, -1, -1, -1, 120,
6410 -1, -1, 123, -1, -1, -1, -1, -1, -1, -1,
6411 -1, -1, -1, 134, 135, 136, 137, 138, 139, 140,
6412 141, 142, 143, 144, 145, 146, -1, -1, -1, -1,
6413 -1, 152, 153, 154, 155, 0, -1, 158, 159, 160,
6414 -1, -1, -1, 8, 9, 10, -1, -1, 13, 14,
6415 15, -1, 17, -1, -1, -1, -1, -1, -1, -1,
6416 25, 26, 27, 28, 29, -1, -1, -1, -1, -1,
6417 -1, -1, 37, 38, -1, 40, 41, 42, 43, 44,
6418 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6419 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6420 -1, -1, -1, 68, 69, -1, -1, -1, -1, -1,
6421 -1, -1, -1, 78, 79, 80, 81, 82, 83, 84,
6422 85, 86, 87, 88, 89, 90, -1, -1, -1, -1,
6423 95, 96, 97, 98, -1, -1, 101, -1, -1, -1,
6424 -1, 106, -1, -1, -1, -1, -1, -1, -1, -1,
6425 -1, -1, -1, -1, -1, 120, -1, -1, 123, -1,
6426 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6427 135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
6428 145, 146, -1, -1, -1, -1, 151, 152, 153, 154,
6429 155, 0, -1, 158, 159, 160, -1, -1, -1, 8,
6430 9, 10, -1, -1, 13, 14, 15, -1, 17, -1,
6431 -1, -1, -1, -1, -1, -1, 25, 26, 27, 28,
6432 29, -1, -1, -1, -1, -1, -1, -1, 37, 38,
6433 -1, 40, 41, 42, 43, 44, -1, -1, -1, -1,
6434 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6435 -1, -1, -1, -1, -1, -1, -1, -1, -1, 68,
6436 69, -1, -1, -1, -1, -1, -1, -1, -1, 78,
6437 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
6438 89, 90, -1, -1, -1, -1, 95, 96, 97, 98,
6439 -1, -1, 101, -1, -1, -1, -1, 106, -1, -1,
6440 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6441 -1, 120, -1, -1, 123, -1, -1, -1, -1, -1,
6442 -1, -1, -1, -1, -1, -1, 135, 136, 137, 138,
6443 139, 140, 141, 142, 143, 144, 145, 146, -1, -1,
6444 -1, -1, 151, 152, 153, 154, 155, 0, -1, 158,
6445 159, 160, -1, -1, -1, 8, 9, 10, -1, -1,
6446 13, 14, 15, -1, 17, -1, -1, -1, -1, -1,
6447 -1, -1, 25, 26, 27, 28, -1, -1, -1, -1,
6448 -1, -1, -1, -1, 37, 38, -1, 40, 41, 42,
6449 43, 44, -1, -1, -1, -1, -1, -1, -1, -1,
6450 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6451 -1, -1, -1, -1, -1, 68, 69, -1, -1, -1,
6452 -1, -1, -1, -1, -1, 78, 79, 80, 81, 82,
6453 83, 84, 85, 86, 87, 88, 89, 90, -1, -1,
6454 -1, -1, 95, 96, 97, 98, -1, -1, 101, -1,
6455 -1, -1, -1, 106, -1, -1, -1, -1, -1, -1,
6456 -1, -1, -1, -1, -1, -1, -1, 120, -1, -1,
6457 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6458 -1, -1, 135, -1, 137, 138, 139, 140, 141, 142,
6459 143, 144, 145, 146, -1, -1, -1, -1, 151, 152,
6460 153, 154, 155, 0, 157, 158, 159, 160, -1, -1,
6461 -1, 8, 9, 10, -1, -1, 13, 14, 15, -1,
6462 17, -1, -1, -1, -1, -1, -1, -1, 25, -1,
6463 27, 28, 29, -1, -1, -1, -1, -1, -1, -1,
6464 37, 38, -1, 40, 41, 42, 43, 44, -1, -1,
6465 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6466 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6467 -1, 68, 69, -1, -1, -1, -1, -1, -1, -1,
6468 -1, 78, 79, 80, 81, 82, 83, 84, 85, 86,
6469 87, 88, 89, 90, -1, -1, -1, -1, 95, 96,
6470 97, 98, -1, -1, 101, -1, -1, -1, -1, 106,
6471 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6472 -1, -1, -1, 120, -1, -1, 123, -1, -1, -1,
6473 -1, -1, -1, -1, -1, -1, -1, -1, 135, 136,
6474 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
6475 -1, -1, -1, -1, -1, 152, 153, 154, 155, 0,
6476 -1, 158, 159, 160, -1, -1, -1, 8, 9, 10,
6477 -1, -1, 13, 14, 15, -1, 17, -1, -1, -1,
6478 -1, -1, -1, -1, 25, 26, 27, 28, -1, -1,
6479 -1, -1, -1, -1, -1, -1, 37, 38, -1, 40,
6480 41, 42, 43, 44, -1, -1, -1, -1, -1, -1,
6481 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6482 -1, -1, -1, -1, -1, -1, -1, 68, 69, -1,
6483 -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
6484 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
6485 -1, -1, -1, -1, 95, 96, 97, 98, -1, -1,
6486 101, -1, -1, -1, -1, 106, -1, -1, -1, -1,
6487 -1, -1, -1, -1, -1, -1, -1, -1, -1, 120,
6488 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6489 -1, -1, -1, -1, 135, -1, 137, 138, 139, 140,
6490 141, 142, 143, 144, 145, 146, -1, -1, -1, -1,
6491 151, 152, 153, 154, 155, 0, 157, 158, 159, 160,
6492 -1, -1, -1, 8, 9, 10, -1, -1, 13, 14,
6493 15, -1, 17, -1, -1, -1, -1, -1, -1, -1,
6494 25, -1, 27, 28, -1, -1, -1, -1, -1, -1,
6495 -1, -1, 37, 38, -1, 40, 41, 42, 43, 44,
6496 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6497 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6498 -1, -1, -1, 68, 69, -1, -1, -1, -1, -1,
6499 -1, -1, -1, 78, 79, 80, 81, 82, 83, 84,
6500 85, 86, 87, 88, 89, 90, -1, -1, -1, -1,
6501 95, 96, 97, 98, -1, 100, 101, -1, -1, -1,
6502 -1, 106, -1, -1, -1, -1, -1, -1, -1, -1,
6503 -1, -1, -1, -1, -1, 120, -1, -1, -1, -1,
6504 -1, -1, -1, -1, -1, -1, -1, -1, -1, 134,
6505 135, -1, 137, 138, 139, 140, 141, 142, 143, 144,
6506 145, 146, -1, -1, -1, -1, 151, 152, 153, 154,
6507 155, 0, -1, 158, 159, 160, -1, -1, -1, 8,
6508 9, 10, -1, -1, 13, 14, 15, -1, 17, -1,
6509 -1, -1, -1, -1, -1, -1, 25, -1, 27, 28,
6510 -1, -1, -1, -1, -1, -1, -1, -1, 37, 38,
6511 -1, 40, 41, 42, 43, 44, -1, -1, -1, -1,
6512 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6513 -1, -1, -1, -1, -1, -1, -1, -1, -1, 68,
6514 69, -1, -1, -1, -1, -1, -1, -1, -1, 78,
6515 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
6516 89, 90, -1, -1, -1, -1, 95, 96, 97, 98,
6517 -1, -1, 101, -1, -1, -1, -1, 106, -1, -1,
6518 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6519 -1, 120, -1, -1, -1, -1, -1, -1, -1, -1,
6520 -1, -1, -1, -1, -1, -1, 135, -1, 137, 138,
6521 139, 140, 141, 142, 143, 144, 145, 146, -1, -1,
6522 -1, -1, -1, 152, 153, 154, 155, 0, 157, 158,
6523 159, 160, -1, -1, -1, 8, 9, 10, -1, -1,
6524 -1, 14, 15, -1, 17, -1, -1, -1, -1, -1,
6525 -1, -1, 25, 26, -1, -1, -1, -1, -1, -1,
6526 -1, -1, -1, -1, 37, 38, -1, 40, 41, 42,
6527 43, 44, -1, -1, -1, -1, -1, -1, -1, -1,
6528 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6529 -1, -1, -1, -1, -1, 68, 69, -1, -1, -1,
6530 -1, -1, -1, -1, -1, 78, 79, 80, 81, 82,
6531 83, 84, 85, 86, 87, 88, 89, 90, -1, -1,
6532 -1, -1, 95, 96, 97, 98, -1, 100, 101, -1,
6533 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6534 -1, -1, -1, -1, -1, -1, -1, 120, -1, -1,
6535 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6536 -1, 134, 135, -1, 137, 138, 139, 140, 141, 142,
6537 143, 144, 145, 146, -1, -1, -1, -1, 151, 152,
6538 153, 154, 155, 0, -1, 158, -1, 160, -1, -1,
6539 -1, 8, 9, 10, -1, -1, -1, 14, 15, -1,
6540 17, -1, -1, -1, -1, -1, -1, -1, 25, 26,
6541 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6542 37, 38, -1, 40, 41, 42, 43, 44, -1, -1,
6543 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6544 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6545 -1, 68, 69, -1, -1, -1, -1, -1, -1, -1,
6546 -1, 78, 79, 80, 81, 82, 83, 84, 85, 86,
6547 87, 88, 89, 90, -1, -1, -1, -1, 95, 96,
6548 97, 98, -1, 100, 101, -1, -1, -1, -1, -1,
6549 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6550 -1, -1, -1, 120, -1, -1, -1, -1, -1, -1,
6551 -1, -1, -1, -1, -1, -1, -1, 134, 135, -1,
6552 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
6553 -1, -1, -1, -1, 151, 152, 153, 154, 155, 0,
6554 -1, 158, -1, 160, -1, -1, -1, 8, 9, 10,
6555 -1, -1, -1, 14, 15, -1, 17, -1, -1, -1,
6556 -1, -1, -1, -1, 25, -1, -1, -1, -1, -1,
6557 -1, -1, -1, -1, -1, -1, 37, 38, -1, 40,
6558 41, 42, 43, 44, -1, -1, -1, -1, -1, -1,
6559 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6560 -1, -1, -1, -1, -1, -1, -1, 68, 69, -1,
6561 -1, -1, -1, -1, -1, -1, -1, 78, 79, 80,
6562 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
6563 -1, -1, -1, -1, 95, 96, 97, 98, -1, 100,
6564 101, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6565 -1, -1, -1, -1, -1, -1, -1, -1, -1, 120,
6566 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6567 -1, -1, -1, 134, 135, -1, 137, 138, 139, 140,
6568 141, 142, 143, 144, 145, 146, -1, -1, -1, -1,
6569 151, 152, 153, 154, 155, 0, -1, 158, -1, 160,
6570 -1, -1, -1, 8, 9, 10, -1, -1, -1, 14,
6571 15, -1, 17, -1, -1, -1, -1, -1, -1, -1,
6572 25, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6573 -1, -1, 37, 38, -1, 40, 41, 42, 43, 44,
6574 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6575 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6576 -1, -1, -1, 68, 69, -1, -1, -1, -1, -1,
6577 -1, -1, -1, 78, 79, 80, 81, 82, 83, 84,
6578 85, 86, 87, 88, 89, 90, -1, -1, -1, -1,
6579 95, 96, 97, 98, -1, 100, 101, -1, -1, -1,
6580 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6581 -1, -1, -1, -1, -1, 120, -1, -1, -1, -1,
6582 -1, -1, -1, -1, -1, -1, -1, -1, -1, 134,
6583 135, -1, 137, 138, 139, 140, 141, 142, 143, 144,
6584 145, 146, -1, -1, -1, -1, 151, 152, 153, 154,
6585 155, -1, -1, 158, 1, 160, 3, 4, 5, 6,
6586 7, 8, 9, 10, 11, 12, -1, -1, 15, 16,
6587 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6588 -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
6589 -1, -1, 39, -1, -1, -1, -1, -1, 45, 46,
6590 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
6591 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6592 -1, 68, -1, -1, -1, -1, -1, -1, -1, 76,
6593 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6594 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6595 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6596 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6597 117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
6598 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6599 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6600 147, 148, 149, -1, -1, -1, 1, 154, 3, 4,
6601 5, 6, 7, 160, -1, 10, 11, 12, -1, 14,
6602 15, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6603 -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
6604 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
6605 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6606 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
6607 65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
6608 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6609 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6610 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6611 105, -1, 107, -1, -1, 110, 111, 112, 113, 114,
6612 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6613 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6614 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6615 -1, -1, 147, 148, 149, -1, -1, -1, 1, 154,
6616 3, 4, 5, 6, 7, 160, -1, 10, 11, 12,
6617 -1, -1, 15, 16, 17, 18, 19, 20, 21, 22,
6618 23, 24, -1, -1, -1, -1, -1, 30, 31, 32,
6619 33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
6620 -1, -1, 45, 46, 47, 48, 49, 50, 51, 52,
6621 53, 54, 55, 56, 57, -1, 59, 60, 61, 62,
6622 63, 64, 65, -1, -1, 68, -1, -1, -1, -1,
6623 -1, -1, -1, 76, 77, -1, -1, -1, -1, -1,
6624 -1, -1, -1, -1, -1, -1, -1, -1, 91, 92,
6625 -1, -1, -1, -1, -1, -1, 99, -1, -1, 102,
6626 103, 104, 105, -1, 107, -1, -1, 110, 111, 112,
6627 113, 114, 115, 116, 117, 118, -1, -1, -1, -1,
6628 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6629 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6630 -1, -1, -1, -1, 147, 148, 149, -1, -1, -1,
6631 1, 154, 3, 4, 5, 6, 7, 160, -1, 10,
6632 11, 12, -1, -1, 15, 16, -1, 18, 19, 20,
6633 21, 22, 23, 24, 25, -1, -1, -1, -1, 30,
6634 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
6635 -1, -1, -1, -1, 45, 46, 47, 48, 49, 50,
6636 51, 52, 53, 54, 55, 56, 57, -1, 59, 60,
6637 61, 62, 63, 64, 65, -1, -1, 68, -1, -1,
6638 -1, -1, -1, -1, -1, 76, 77, -1, -1, -1,
6639 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6640 91, 92, -1, -1, -1, -1, -1, -1, 99, -1,
6641 -1, 102, 103, 104, 105, -1, 107, -1, -1, 110,
6642 111, 112, 113, 114, 115, 116, 117, 118, -1, -1,
6643 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6644 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6645 -1, -1, -1, -1, -1, -1, 147, 148, 149, -1,
6646 -1, -1, 1, 154, 3, 4, 5, 6, 7, 160,
6647 -1, 10, 11, 12, -1, -1, 15, 16, -1, 18,
6648 19, 20, 21, 22, 23, 24, -1, -1, -1, -1,
6649 -1, 30, 31, 32, 33, 34, 35, 36, -1, -1,
6650 39, -1, -1, -1, -1, -1, 45, 46, 47, 48,
6651 49, 50, 51, 52, 53, 54, 55, 56, 57, -1,
6652 59, 60, 61, 62, 63, 64, 65, -1, -1, 68,
6653 -1, -1, -1, -1, -1, -1, -1, 76, 77, -1,
6654 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6655 -1, -1, 91, 92, -1, -1, -1, -1, -1, -1,
6656 99, -1, -1, 102, 103, 104, 105, -1, 107, -1,
6657 -1, 110, 111, 112, 113, 114, 115, 116, 117, 118,
6658 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6659 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6660 -1, -1, -1, -1, -1, -1, -1, -1, 147, 148,
6661 149, -1, -1, -1, 1, 154, 3, 4, 5, 6,
6662 7, 160, 9, 10, 11, 12, -1, -1, -1, 16,
6663 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6664 -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
6665 -1, -1, 39, -1, -1, -1, -1, -1, 45, 46,
6666 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
6667 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6668 -1, 68, -1, -1, -1, -1, -1, -1, -1, 76,
6669 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6670 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6671 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6672 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6673 117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
6674 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6675 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6676 147, 148, 149, -1, -1, -1, 1, 154, 3, 4,
6677 5, 6, 7, 160, -1, 10, 11, 12, -1, -1,
6678 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6679 -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
6680 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
6681 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6682 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
6683 65, -1, -1, 68, -1, -1, -1, -1, -1, -1,
6684 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6685 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6686 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6687 105, -1, 107, -1, -1, 110, 111, 112, 113, 114,
6688 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6689 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6690 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6691 -1, -1, 147, 148, 149, -1, -1, -1, 1, 154,
6692 3, 4, 5, 6, 7, 160, -1, -1, 11, 12,
6693 -1, -1, -1, 16, -1, 18, 19, 20, 21, 22,
6694 23, 24, -1, -1, -1, -1, -1, 30, 31, 32,
6695 33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
6696 -1, -1, 45, 46, 47, 48, 49, 50, 51, 52,
6697 53, 54, 55, 56, 57, -1, 59, 60, 61, 62,
6698 63, 64, 65, -1, -1, -1, -1, -1, -1, -1,
6699 -1, -1, -1, 76, 77, -1, -1, -1, -1, -1,
6700 -1, -1, -1, -1, -1, -1, -1, -1, 91, 92,
6701 -1, -1, -1, -1, -1, -1, 99, -1, -1, 102,
6702 103, 104, 105, -1, 107, -1, -1, 110, 111, 112,
6703 113, 114, 115, 116, 117, 118, -1, -1, -1, -1,
6704 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6705 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6706 -1, -1, -1, -1, 147, 148, 149, -1, -1, -1,
6707 -1, 154, -1, -1, -1, 158, 1, 160, 3, 4,
6708 5, 6, 7, -1, -1, -1, 11, 12, -1, -1,
6709 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6710 -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
6711 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
6712 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6713 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
6714 65, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6715 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6716 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6717 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6718 105, -1, 107, -1, -1, 110, 111, 112, 113, 114,
6719 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6720 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6721 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6722 -1, -1, 147, 148, 149, -1, -1, -1, -1, 154,
6723 -1, -1, -1, 158, 1, 160, 3, 4, 5, 6,
6724 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6725 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6726 -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
6727 -1, -1, 39, -1, -1, -1, -1, -1, 45, 46,
6728 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
6729 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6730 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6731 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6732 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6733 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6734 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6735 117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
6736 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6737 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6738 147, 148, 149, -1, -1, 152, 1, 154, 3, 4,
6739 5, 6, 7, 160, -1, -1, 11, 12, -1, -1,
6740 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6741 -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
6742 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
6743 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6744 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
6745 65, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6746 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6747 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6748 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6749 105, -1, 107, -1, -1, 110, 111, 112, 113, 114,
6750 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6751 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6752 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6753 -1, -1, 147, 148, 149, -1, -1, 152, 1, 154,
6754 3, 4, 5, -1, 7, 160, -1, -1, 11, 12,
6755 -1, -1, -1, 16, 17, 18, 19, 20, 21, 22,
6756 23, 24, -1, -1, -1, -1, -1, 30, 31, 32,
6757 33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
6758 -1, -1, -1, 46, -1, -1, 49, 50, 51, 52,
6759 53, 54, 55, 56, 57, -1, 59, 60, 61, 62,
6760 63, 64, 65, -1, -1, -1, -1, -1, -1, -1,
6761 -1, -1, -1, 76, 77, -1, -1, -1, -1, -1,
6762 -1, -1, -1, -1, -1, -1, -1, -1, 91, 92,
6763 -1, -1, -1, -1, -1, -1, 99, -1, -1, 102,
6764 103, 104, 105, -1, -1, -1, -1, 110, 111, 112,
6765 113, 114, 115, 116, 117, 118, -1, -1, -1, -1,
6766 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6767 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6768 -1, -1, -1, -1, 147, 148, 149, -1, -1, -1,
6769 -1, 154, -1, -1, -1, -1, -1, 160, 3, 4,
6770 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
6771 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
6772 25, 26, -1, -1, -1, 30, 31, 32, 33, 34,
6773 35, 36, 37, 38, 39, -1, -1, -1, -1, -1,
6774 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
6775 55, 56, 57, -1, -1, -1, -1, -1, -1, -1,
6776 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6777 -1, 76, 77, 78, 79, 80, 81, 82, 83, 84,
6778 -1, -1, 87, 88, -1, -1, -1, -1, 93, 94,
6779 95, 96, -1, -1, -1, -1, -1, -1, -1, -1,
6780 -1, -1, 107, 108, -1, -1, -1, -1, -1, -1,
6781 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6782 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6783 -1, -1, 137, 138, 139, 140, 141, 142, 143, 144,
6784 145, 146, -1, 148, 149, -1, -1, -1, -1, -1,
6785 -1, 156, 157, 3, 4, 5, 6, 7, 8, 9,
6786 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
6787 20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
6788 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
6789 -1, -1, -1, -1, -1, 45, 46, 47, 48, 49,
6790 50, 51, 52, 53, 54, 55, 56, 57, -1, -1,
6791 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6792 -1, -1, -1, -1, -1, -1, 76, 77, 78, 79,
6793 80, 81, 82, 83, 84, -1, -1, 87, 88, -1,
6794 -1, -1, -1, 93, 94, 95, 96, -1, -1, -1,
6795 -1, -1, -1, -1, -1, -1, -1, 107, 108, -1,
6796 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6797 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6798 -1, -1, -1, -1, -1, -1, -1, 137, 138, 139,
6799 140, 141, 142, 143, 144, 145, 146, -1, 148, 149,
6800 -1, -1, -1, -1, -1, -1, 156, 3, 4, 5,
6801 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
6802 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
6803 26, -1, -1, -1, 30, 31, 32, 33, 34, 35,
6804 36, 37, 38, 39, -1, -1, -1, -1, -1, 45,
6805 46, 47, 48, 49, 50, 51, 52, 53, 54, -1,
6806 56, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6807 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6808 76, 77, 78, 79, 80, 81, 82, 83, 84, -1,
6809 -1, 87, 88, -1, -1, -1, -1, 93, 94, 95,
6810 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6811 -1, 107, 108, -1, -1, 111, -1, -1, -1, -1,
6812 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6813 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6814 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
6815 146, -1, 148, 149, -1, -1, -1, -1, -1, -1,
6816 156, 3, 4, 5, 6, 7, 8, 9, 10, 11,
6817 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
6818 22, 23, 24, 25, 26, -1, -1, -1, 30, 31,
6819 32, 33, 34, 35, 36, 37, 38, 39, -1, -1,
6820 -1, -1, -1, 45, 46, 47, 48, 49, 50, 51,
6821 52, 53, -1, -1, 56, -1, -1, -1, -1, -1,
6822 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6823 -1, -1, -1, -1, 76, 77, 78, 79, 80, 81,
6824 82, 83, 84, -1, -1, 87, 88, -1, -1, -1,
6825 -1, 93, 94, 95, 96, -1, -1, -1, -1, -1,
6826 -1, -1, -1, -1, -1, 107, 108, -1, -1, 111,
6827 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6828 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6829 -1, -1, -1, -1, -1, 137, 138, 139, 140, 141,
6830 142, 143, 144, 145, 146, -1, 148, 149, -1, -1,
6831 -1, -1, -1, -1, 156, 3, 4, 5, 6, 7,
6832 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
6833 18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
6834 -1, -1, 30, 31, 32, 33, 34, 35, 36, 37,
6835 38, 39, -1, -1, -1, -1, -1, 45, 46, 47,
6836 48, 49, 50, 51, 52, 53, -1, -1, 56, -1,
6837 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6838 -1, -1, -1, -1, -1, -1, -1, -1, 76, 77,
6839 78, 79, 80, 81, 82, 83, 84, -1, -1, 87,
6840 88, -1, -1, -1, -1, 93, 94, 95, 96, -1,
6841 -1, -1, -1, -1, -1, -1, -1, -1, -1, 107,
6842 108, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6843 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6844 -1, -1, -1, -1, -1, -1, -1, -1, -1, 137,
6845 138, 139, 140, 141, 142, 143, 144, 145, 146, -1,
6846 148, 149, 3, 4, 5, -1, 7, -1, 156, -1,
6847 11, 12, -1, -1, -1, 16, -1, 18, 19, 20,
6848 21, 22, 23, 24, -1, -1, -1, -1, -1, 30,
6849 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
6850 -1, -1, -1, -1, -1, 46, -1, -1, 49, 50,
6851 51, 52, 53, 54, 55, 56, 57, -1, 59, 60,
6852 61, 62, 63, 64, 65, -1, -1, -1, -1, -1,
6853 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6854 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6855 -1, -1, -1, -1, -1, -1, -1, -1, 99, -1,
6856 -1, 102, 103, 104, 105, -1, -1, -1, -1, 110,
6857 111, 112, 113, 114, 115, 116, 117, 118, -1, -1,
6858 3, 4, 5, -1, 7, -1, -1, -1, 11, 12,
6859 -1, -1, -1, 16, -1, 18, 19, 20, 21, 22,
6860 23, 24, -1, -1, -1, -1, 147, 30, 31, 32,
6861 33, 34, 35, 36, 155, -1, 39, -1, -1, -1,
6862 -1, -1, -1, 46, -1, -1, 49, 50, 51, 52,
6863 53, 54, 55, 56, 57, -1, 59, 60, 61, 62,
6864 63, 64, 65, -1, -1, -1, -1, -1, -1, -1,
6865 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6866 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6867 -1, -1, -1, -1, -1, -1, 99, -1, -1, 102,
6868 103, 104, 105, -1, -1, -1, -1, 110, 111, 112,
6869 113, 114, 115, 116, 117, 118, -1, -1, 3, 4,
6870 5, -1, 7, -1, -1, -1, 11, 12, -1, -1,
6871 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
6872 -1, -1, -1, -1, 147, 30, 31, 32, 33, 34,
6873 35, 36, 155, -1, 39, -1, -1, -1, -1, -1,
6874 -1, 46, -1, -1, 49, 50, 51, 52, 53, 54,
6875 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
6876 65, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6877 -1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
6878 -1, -1, -1, -1, -1, -1, 91, 92, -1, -1,
6879 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
6880 105, -1, 107, 108, 109, 110, 111, 112, 113, 114,
6881 115, 116, 117, 118, -1, -1, -1, -1, -1, -1,
6882 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6883 -1, -1, -1, -1, -1, -1, -1, 3, 4, 5,
6884 -1, 7, 147, 148, 149, 11, 12, -1, -1, 154,
6885 16, -1, 18, 19, 20, 21, 22, 23, 24, -1,
6886 -1, -1, -1, -1, 30, 31, 32, 33, 34, 35,
6887 36, -1, -1, 39, -1, -1, -1, -1, -1, -1,
6888 46, -1, -1, 49, 50, 51, 52, 53, 54, 55,
6889 56, 57, -1, 59, 60, 61, 62, 63, 64, 65,
6890 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6891 76, 77, -1, -1, -1, -1, -1, -1, -1, -1,
6892 -1, -1, -1, -1, -1, 91, 92, -1, -1, -1,
6893 -1, -1, -1, 99, -1, -1, 102, 103, 104, 105,
6894 -1, -1, -1, -1, 110, 111, 112, 113, 114, 115,
6895 116, 117, 118, -1, -1, -1, -1, -1, -1, -1,
6896 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6897 -1, -1, -1, -1, 1, -1, 3, 4, 5, 6,
6898 7, 147, 148, 149, 11, 12, -1, -1, 154, 16,
6899 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6900 -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
6901 -1, -1, 39, -1, -1, -1, -1, -1, 45, 46,
6902 -1, 48, 49, 50, 51, 52, 53, 54, 55, 56,
6903 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6904 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6905 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6906 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6907 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6908 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6909 117, 118, -1, -1, 1, -1, 3, 4, 5, -1,
6910 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6911 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6912 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6913 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6914 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6915 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
6916 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6917 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6918 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6919 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6920 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
6921 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6922 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6923 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6924 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6925 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6926 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6927 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6928 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6929 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6930 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6931 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6932 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
6933 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6934 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6935 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6936 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6937 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6938 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6939 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6940 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6941 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6942 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6943 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6944 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
6945 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6946 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6947 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6948 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6949 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6950 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6951 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6952 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6953 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6954 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6955 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6956 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
6957 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6958 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6959 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6960 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6961 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6962 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6963 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6964 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6965 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6966 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6967 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6968 107, 108, 109, 110, 111, 112, 113, 114, 115, 116,
6969 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6970 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6971 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6972 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6973 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6974 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6975 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6976 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6977 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6978 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6979 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6980 107, 108, -1, 110, 111, 112, 113, 114, 115, 116,
6981 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6982 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6983 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6984 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6985 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6986 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6987 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
6988 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
6989 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
6990 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
6991 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
6992 -1, 108, 109, 110, 111, 112, 113, 114, 115, 116,
6993 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
6994 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
6995 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
6996 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
6997 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
6998 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
6999 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
7000 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7001 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7002 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7003 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7004 -1, 108, -1, 110, 111, 112, 113, 114, 115, 116,
7005 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7006 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7007 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7008 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7009 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7010 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7011 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7012 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7013 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7014 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7015 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7016 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7017 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7018 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7019 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7020 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7021 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7022 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7023 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7024 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7025 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7026 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7027 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7028 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7029 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7030 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7031 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7032 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7033 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7034 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7035 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7036 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7037 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7038 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7039 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7040 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7041 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7042 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7043 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7044 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7045 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7046 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7047 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7048 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7049 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7050 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7051 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7052 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7053 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7054 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7055 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7056 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7057 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7058 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7059 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7060 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7061 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7062 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7063 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7064 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7065 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7066 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7067 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7068 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7069 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7070 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7071 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7072 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7073 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7074 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7075 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7076 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7077 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7078 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7079 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7080 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7081 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7082 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7083 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7084 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7085 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7086 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7087 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7088 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7089 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7090 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7091 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7092 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7093 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7094 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7095 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7096 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7097 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7098 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7099 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7100 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7101 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7102 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7103 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7104 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7105 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7106 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7107 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7108 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7109 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7110 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7111 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7112 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7113 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7114 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7115 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7116 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7117 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7118 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7119 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7120 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7121 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7122 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7123 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7124 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7125 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7126 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7127 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7128 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7129 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7130 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7131 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7132 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7133 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7134 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7135 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7136 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7137 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7138 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7139 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7140 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7141 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7142 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7143 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7144 -1, -1, -1, -1, -1, -1, -1, -1, -1, 76,
7145 77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7146 -1, -1, -1, -1, 91, 92, -1, -1, -1, -1,
7147 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7148 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7149 117, 118, -1, -1, -1, -1, 3, 4, 5, -1,
7150 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7151 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7152 147, 148, 149, 30, 31, 32, 33, 34, 35, 36,
7153 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7154 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7155 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7156 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7157 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7158 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7159 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7160 107, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7161 117, 118, -1, -1, 3, 4, 5, -1, 7, -1,
7162 -1, -1, 11, 12, -1, -1, -1, 16, -1, 18,
7163 19, 20, 21, 22, 23, 24, -1, -1, -1, -1,
7164 147, 30, 31, 32, 33, 34, 35, 36, -1, -1,
7165 39, -1, -1, -1, -1, -1, -1, 46, -1, -1,
7166 49, 50, 51, 52, 53, 54, 55, 56, 57, -1,
7167 59, 60, 61, 62, 63, 64, 65, -1, -1, -1,
7168 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7169 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7170 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7171 99, -1, -1, 102, 103, 104, 105, -1, 107, -1,
7172 -1, 110, 111, 112, 113, 114, 115, 116, 117, 118,
7173 -1, -1, 3, 4, 5, -1, 7, -1, -1, -1,
7174 11, 12, -1, -1, -1, 16, -1, 18, 19, 20,
7175 21, 22, 23, 24, -1, -1, -1, -1, 147, 30,
7176 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
7177 -1, -1, -1, -1, -1, 46, -1, -1, 49, 50,
7178 51, 52, 53, 54, 55, 56, 57, -1, 59, 60,
7179 61, 62, 63, 64, 65, -1, -1, -1, -1, -1,
7180 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7181 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7182 -1, -1, -1, -1, 95, -1, -1, -1, 99, -1,
7183 -1, 102, 103, 104, 105, -1, -1, -1, -1, 110,
7184 111, 112, 113, 114, 115, 116, 117, 118, -1, -1,
7185 3, 4, 5, -1, 7, -1, -1, -1, 11, 12,
7186 -1, -1, -1, 16, -1, 18, 19, 20, 21, 22,
7187 23, 24, -1, -1, -1, -1, 147, 30, 31, 32,
7188 33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
7189 -1, -1, -1, 46, -1, -1, 49, 50, 51, 52,
7190 53, 54, 55, 56, 57, -1, 59, 60, 61, 62,
7191 63, 64, 65, -1, -1, -1, -1, -1, -1, -1,
7192 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7193 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7194 -1, -1, -1, -1, -1, -1, 99, -1, -1, 102,
7195 103, 104, 105, -1, -1, -1, -1, 110, 111, 112,
7196 113, 114, 115, 116, 117, 118, -1, -1, 3, 4,
7197 5, -1, 7, -1, -1, -1, 11, 12, -1, -1,
7198 -1, 16, -1, 18, 19, 20, 21, 22, 23, 24,
7199 -1, -1, -1, -1, 147, 30, 31, 32, 33, 34,
7200 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
7201 -1, 46, -1, -1, 49, 50, 51, 52, 53, 54,
7202 55, 56, 57, -1, 59, 60, 61, 62, 63, 64,
7203 65, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7204 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7205 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7206 -1, -1, -1, -1, 99, -1, -1, 102, 103, 104,
7207 105, -1, -1, -1, -1, 110, 111, 112, 113, 114,
7208 115, 116, 117, 118, -1, -1, 3, 4, 5, -1,
7209 7, -1, -1, -1, 11, 12, -1, -1, -1, 16,
7210 -1, 18, 19, 20, 21, 22, 23, 24, -1, -1,
7211 -1, -1, 147, 30, 31, 32, 33, 34, 35, 36,
7212 -1, -1, 39, -1, -1, -1, -1, -1, -1, 46,
7213 -1, -1, 49, 50, 51, 52, 53, 54, 55, 56,
7214 57, -1, 59, 60, 61, 62, 63, 64, 65, -1,
7215 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7216 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7217 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7218 -1, -1, 99, -1, -1, 102, 103, 104, 105, -1,
7219 -1, -1, -1, 110, 111, 112, 113, 114, 115, 116,
7220 117, 118, -1, -1, 3, 4, 5, -1, 7, -1,
7221 -1, -1, 11, 12, -1, -1, -1, 16, -1, 18,
7222 19, 20, 21, 22, 23, 24, -1, -1, -1, -1,
7223 147, 30, 31, 32, 33, 34, 35, 36, -1, -1,
7224 39, -1, -1, -1, -1, -1, -1, 46, -1, -1,
7225 49, 50, 51, 52, 53, 54, 55, 56, 57, -1,
7226 59, 60, 61, 62, 63, 64, 65, -1, -1, -1,
7227 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7228 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7229 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7230 99, -1, -1, 102, 103, 104, 105, 33, 34, 35,
7231 36, 110, 111, 112, 113, 114, 115, 116, 117, 118,
7232 -1, -1, -1, 49, 50, 51, 52, -1, -1, -1,
7233 56, -1, -1, 59, 60, 61, 62, 63, -1, -1,
7234 -1, -1, -1, -1, -1, -1, -1, -1, 147, -1,
7235 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7236 -1, -1, -1, -1, -1, 91, 92, -1, -1, -1,
7237 -1, -1, -1, 99, -1, -1, 102, -1, 104, 105,
7238 -1, -1, -1, -1, 110, 111, 112, 113, 114, 115,
7239 116, 117, 118, -1, -1, -1, -1, -1, 52, 53,
7240 -1, -1, 56, -1, -1, -1, -1, -1, -1, -1,
7241 -1, -1, -1, -1, 140, -1, -1, -1, -1, -1,
7242 -1, 147, 76, 77, 78, 79, 80, 81, 82, 83,
7243 84, -1, -1, 87, 88, -1, -1, -1, -1, 93,
7244 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
7245 -1, -1, -1, 107, 108, -1, -1, -1, -1, -1,
7246 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7247 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7248 -1, -1, -1, 137, 138, 139, 140, 141, 142, 143,
7249 144, 145, 146, -1, 148, 149, 52, 53, -1, -1,
7250 56, -1, 156, 157, -1, -1, -1, -1, -1, -1,
7251 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7252 76, 77, 78, 79, 80, 81, 82, 83, 84, -1,
7253 -1, 87, 88, -1, -1, -1, -1, 93, 94, 95,
7254 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7255 -1, 107, 108, -1, -1, -1, -1, -1, -1, -1,
7256 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7257 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7258 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
7259 146, -1, 148, 149, 52, 53, -1, -1, 56, -1,
7260 156, 157, -1, -1, -1, -1, -1, -1, -1, -1,
7261 -1, -1, -1, -1, -1, -1, -1, -1, 76, 77,
7262 78, 79, 80, 81, 82, 83, 84, -1, -1, 87,
7263 88, -1, -1, -1, -1, 93, 94, 95, 96, -1,
7264 -1, -1, -1, -1, -1, -1, -1, -1, -1, 107,
7265 108, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7266 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7267 -1, -1, -1, -1, -1, -1, -1, -1, -1, 137,
7268 138, 139, 140, 141, 142, 143, 144, 145, 146, -1,
7269 148, 149, 52, 53, -1, -1, 56, -1, 156, 157,
7270 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7271 -1, -1, -1, -1, -1, -1, 76, 77, 78, 79,
7272 80, 81, 82, 83, 84, -1, -1, 87, 88, -1,
7273 -1, -1, -1, 93, 94, 95, 96, -1, -1, -1,
7274 -1, -1, -1, -1, -1, -1, -1, 107, 108, -1,
7275 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7276 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7277 -1, -1, -1, -1, -1, -1, -1, 137, 138, 139,
7278 140, 141, 142, 143, 144, 145, 146, -1, 148, 149,
7279 52, 53, -1, -1, 56, -1, 156, 157, -1, -1,
7280 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7281 -1, -1, -1, -1, 76, 77, 78, 79, 80, 81,
7282 82, 83, 84, -1, -1, 87, 88, -1, -1, -1,
7283 -1, 93, 94, 95, 96, -1, -1, -1, -1, -1,
7284 -1, -1, -1, -1, -1, 107, 108, -1, -1, -1,
7285 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7286 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7287 -1, -1, -1, -1, -1, 137, 138, 139, 140, 141,
7288 142, 143, 144, 145, 146, -1, 148, 149, 52, 53,
7289 -1, -1, 56, -1, 156, 157, -1, -1, -1, -1,
7290 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7291 -1, -1, 76, 77, 78, 79, 80, 81, 82, 83,
7292 84, -1, -1, 87, 88, -1, -1, -1, -1, 93,
7293 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
7294 -1, -1, -1, 107, 108, -1, -1, -1, -1, -1,
7295 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7296 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7297 -1, -1, -1, 137, 138, 139, 140, 141, 142, 143,
7298 144, 145, 146, -1, 148, 149, 52, 53, -1, -1,
7299 56, -1, 156, 157, -1, -1, -1, -1, -1, -1,
7300 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7301 76, 77, 78, 79, 80, 81, 82, 83, 84, -1,
7302 -1, 87, 88, -1, -1, -1, -1, 93, 94, 95,
7303 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7304 -1, 107, 108, -1, -1, -1, -1, -1, -1, -1,
7305 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7306 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7307 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
7308 146, -1, 148, 149, 52, 53, -1, -1, 56, -1,
7309 156, 157, -1, -1, -1, -1, -1, -1, -1, -1,
7310 -1, -1, -1, -1, -1, -1, -1, -1, 76, 77,
7311 78, 79, 80, 81, 82, 83, 84, -1, -1, 87,
7312 88, -1, -1, -1, -1, 93, 94, 95, 96, -1,
7313 -1, -1, -1, -1, -1, -1, -1, -1, -1, 107,
7314 108, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7315 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7316 -1, -1, -1, -1, -1, -1, -1, -1, -1, 137,
7317 138, 139, 140, 141, 142, 143, 144, 145, 146, -1,
7318 148, 149, 52, 53, -1, -1, 56, -1, 156, 157,
7319 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7320 -1, -1, -1, -1, -1, -1, 76, 77, 78, 79,
7321 80, 81, 82, 83, 84, -1, -1, 87, 88, -1,
7322 -1, -1, -1, 93, 94, 95, 96, -1, -1, -1,
7323 -1, -1, -1, -1, -1, -1, -1, 107, 108, -1,
7324 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7325 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7326 -1, -1, -1, -1, -1, -1, -1, 137, 138, 139,
7327 140, 141, 142, 143, 144, 145, 146, -1, 148, 149,
7328 52, 53, -1, -1, 56, -1, 156, 157, -1, -1,
7329 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7330 -1, -1, -1, -1, 76, 77, 78, 79, 80, 81,
7331 82, 83, 84, -1, -1, 87, 88, -1, -1, -1,
7332 -1, 93, 94, 95, 96, -1, -1, -1, -1, -1,
7333 -1, -1, -1, -1, -1, 107, 108, -1, -1, -1,
7334 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7335 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7336 -1, -1, -1, -1, -1, 137, 138, 139, 140, 141,
7337 142, 143, 144, 145, 146, -1, 148, 149, 52, 53,
7338 -1, -1, 56, -1, 156, 157, -1, -1, -1, -1,
7339 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7340 -1, -1, 76, 77, 78, 79, 80, 81, 82, 83,
7341 84, -1, -1, 87, 88, -1, -1, -1, -1, 93,
7342 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
7343 -1, -1, -1, 107, 108, -1, -1, -1, -1, -1,
7344 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7345 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7346 -1, -1, -1, 137, 138, 139, 140, 141, 142, 143,
7347 144, 145, 146, -1, 148, 149, 52, 53, -1, -1,
7348 56, -1, 156, 157, -1, -1, -1, -1, -1, -1,
7349 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7350 76, 77, 78, 79, 80, 81, 82, 83, 84, -1,
7351 -1, 87, 88, -1, -1, -1, -1, 93, 94, 95,
7352 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7353 -1, 107, 108, -1, -1, -1, -1, -1, -1, -1,
7354 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7355 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7356 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
7357 146, -1, 148, 149, 52, 53, -1, -1, 56, -1,
7358 156, 157, -1, -1, -1, -1, -1, -1, -1, -1,
7359 -1, -1, -1, -1, -1, -1, -1, -1, 76, 77,
7360 78, 79, 80, 81, 82, 83, 84, -1, -1, 87,
7361 88, -1, -1, -1, -1, 93, 94, 95, 96, -1,
7362 -1, -1, -1, -1, -1, -1, -1, -1, -1, 107,
7363 108, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7364 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7365 -1, -1, -1, -1, -1, -1, -1, -1, -1, 137,
7366 138, 139, 140, 141, 142, 143, 144, 145, 146, -1,
7367 148, 149, 52, 53, -1, -1, 56, -1, 156, 157,
7368 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7369 -1, -1, -1, -1, -1, -1, 76, 77, 78, 79,
7370 80, 81, 82, 83, 84, -1, -1, 87, 88, -1,
7371 -1, -1, -1, 93, 94, 95, 96, -1, -1, -1,
7372 -1, -1, -1, -1, -1, -1, -1, 107, 108, -1,
7373 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7374 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7375 -1, -1, -1, -1, -1, -1, -1, 137, 138, 139,
7376 140, 141, 142, 143, 144, 145, 146, -1, 148, 149,
7377 52, 53, -1, -1, 56, -1, 156, 157, -1, -1,
7378 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7379 -1, -1, -1, -1, 76, 77, 78, 79, 80, 81,
7380 82, 83, 84, -1, -1, 87, 88, -1, -1, -1,
7381 -1, 93, 94, 95, 96, -1, -1, -1, -1, -1,
7382 -1, -1, -1, -1, -1, 107, 108, -1, -1, -1,
7383 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7384 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7385 -1, -1, -1, -1, -1, 137, 138, 139, 140, 141,
7386 142, 143, 144, 145, 146, -1, 148, 149, 52, 53,
7387 -1, -1, 56, -1, 156, 157, -1, -1, -1, -1,
7388 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7389 -1, -1, 76, 77, 78, 79, 80, 81, 82, 83,
7390 84, -1, -1, 87, 88, -1, -1, -1, -1, 93,
7391 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
7392 -1, -1, -1, 107, 108, -1, -1, -1, -1, -1,
7393 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7394 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7395 -1, -1, -1, 137, 138, 139, 140, 141, 142, 143,
7396 144, 145, 146, -1, 148, 149, 52, 53, -1, -1,
7397 56, -1, 156, 157, -1, -1, -1, -1, -1, -1,
7398 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7399 76, 77, 78, 79, 80, 81, 82, 83, 84, -1,
7400 -1, 87, 88, -1, -1, -1, -1, 93, 94, 95,
7401 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7402 -1, 107, 108, -1, -1, -1, -1, -1, -1, -1,
7403 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7404 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
7405 -1, 137, 138, 139, 140, 141, 142, 143, 144, 145,
7406 146, -1, 148, 149, -1, -1, -1, -1, -1, -1,
7412static const yytype_int16 yystos[] =
7414 0, 165, 166, 1, 3, 4, 5, 6, 7, 11,
7415 12, 16, 18, 19, 20, 21, 22, 23, 24, 30,
7416 31, 32, 33, 34, 35, 36, 39, 45, 46, 47,
7417 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
7418 59, 60, 61, 62, 63, 64, 65, 76, 77, 91,
7419 92, 99, 102, 103, 104, 105, 107, 110, 111, 112,
7420 113, 114, 115, 116, 117, 118, 147, 148, 149, 164,
7421 167, 168, 180, 182, 183, 184, 185, 186, 187, 191,
7422 195, 197, 203, 206, 208, 209, 210, 212, 214, 215,
7423 216, 217, 226, 227, 228, 229, 232, 253, 265, 266,
7424 267, 268, 269, 270, 271, 272, 273, 274, 275, 276,
7425 285, 286, 319, 324, 325, 375, 376, 377, 378, 379,
7426 380, 382, 383, 386, 387, 389, 390, 391, 392, 405,
7427 406, 408, 409, 410, 411, 412, 413, 414, 415, 416,
7428 464, 0, 3, 4, 5, 6, 7, 8, 9, 10,
7429 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
7430 21, 22, 23, 24, 25, 26, 30, 31, 32, 33,
7431 34, 35, 36, 37, 38, 39, 45, 46, 47, 48,
7432 49, 50, 51, 52, 53, 56, 76, 77, 78, 79,
7433 80, 81, 82, 83, 84, 87, 88, 93, 94, 95,
7434 96, 107, 108, 137, 138, 139, 140, 141, 142, 143,
7435 144, 145, 146, 148, 149, 156, 220, 221, 222, 224,
7436 225, 405, 179, 179, 179, 39, 58, 99, 102, 107,
7437 108, 109, 112, 148, 195, 197, 209, 217, 227, 236,
7438 237, 243, 244, 247, 249, 250, 266, 412, 413, 415,
7439 416, 451, 452, 244, 157, 240, 245, 246, 154, 157,
7440 189, 54, 221, 189, 151, 169, 170, 233, 464, 21,
7441 22, 32, 208, 227, 266, 285, 286, 227, 227, 227,
7442 56, 47, 102, 171, 176, 177, 182, 211, 212, 464,
7443 171, 238, 249, 451, 464, 237, 450, 451, 464, 46,
7444 99, 147, 155, 195, 197, 216, 253, 266, 412, 413,
7445 416, 317, 220, 395, 407, 411, 395, 396, 397, 161,
7446 381, 381, 381, 381, 410, 203, 227, 227, 154, 160,
7447 163, 462, 463, 179, 40, 41, 42, 43, 44, 37,
7448 38, 157, 419, 420, 421, 422, 464, 419, 421, 26,
7449 151, 240, 246, 277, 326, 28, 278, 323, 134, 155,
7450 102, 107, 214, 134, 25, 78, 79, 80, 81, 82,
7451 83, 84, 85, 86, 87, 88, 89, 90, 95, 96,
7452 101, 135, 137, 138, 139, 140, 141, 142, 143, 144,
7453 145, 146, 231, 231, 69, 97, 98, 153, 456, 254,
7454 1, 191, 198, 199, 199, 200, 202, 202, 163, 199,
7455 463, 99, 210, 217, 266, 291, 412, 413, 416, 52,
7456 56, 95, 99, 218, 219, 266, 412, 413, 416, 219,
7457 33, 34, 35, 36, 49, 50, 51, 52, 56, 157,
7458 194, 220, 414, 446, 447, 448, 244, 157, 246, 98,
7459 456, 457, 326, 378, 100, 100, 155, 237, 56, 237,
7460 237, 237, 395, 419, 419, 134, 101, 155, 248, 464,
7461 98, 153, 456, 100, 100, 155, 248, 92, 242, 244,
7462 249, 431, 451, 464, 244, 189, 191, 458, 191, 54,
7463 64, 65, 181, 157, 233, 234, 164, 98, 456, 100,
7464 178, 211, 158, 163, 463, 458, 255, 159, 155, 189,
7465 461, 155, 461, 152, 461, 189, 56, 410, 213, 214,
7466 420, 155, 98, 153, 456, 314, 66, 119, 121, 122,
7467 398, 119, 119, 398, 67, 398, 161, 384, 393, 388,
7468 394, 78, 160, 168, 151, 199, 199, 199, 199, 233,
7469 235, 191, 191, 52, 54, 55, 56, 57, 58, 78,
7470 92, 102, 107, 108, 109, 141, 144, 296, 361, 423,
7471 424, 425, 426, 427, 428, 430, 431, 432, 433, 434,
7472 435, 436, 437, 438, 439, 440, 441, 442, 443, 444,
7473 134, 263, 430, 134, 264, 327, 328, 106, 207, 329,
7474 330, 330, 233, 211, 155, 216, 155, 233, 193, 227,
7475 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
7476 227, 227, 192, 227, 227, 227, 227, 227, 227, 227,
7477 227, 227, 227, 227, 52, 53, 56, 224, 240, 453,
7478 454, 242, 249, 52, 53, 56, 224, 240, 453, 171,
7479 174, 13, 287, 462, 287, 199, 171, 171, 257, 163,
7480 56, 98, 153, 456, 25, 199, 52, 56, 218, 138,
7481 418, 464, 98, 153, 456, 262, 449, 69, 98, 455,
7482 244, 458, 52, 56, 453, 233, 233, 223, 100, 124,
7483 134, 134, 233, 237, 237, 247, 250, 451, 52, 56,
7484 242, 52, 56, 233, 233, 452, 458, 155, 458, 155,
7485 158, 458, 221, 234, 227, 152, 56, 453, 453, 233,
7486 170, 458, 177, 158, 451, 155, 213, 52, 56, 242,
7487 52, 56, 315, 400, 399, 119, 385, 398, 66, 119,
7488 119, 385, 66, 119, 227, 171, 182, 102, 107, 292,
7489 293, 294, 295, 433, 155, 445, 464, 155, 445, 155,
7490 429, 458, 297, 298, 155, 429, 237, 34, 52, 52,
7491 155, 429, 52, 39, 188, 209, 227, 230, 174, 462,
7492 188, 230, 174, 314, 152, 328, 314, 10, 68, 284,
7493 284, 107, 203, 204, 205, 237, 249, 251, 252, 458,
7494 213, 155, 99, 185, 190, 205, 217, 227, 237, 239,
7495 252, 266, 416, 336, 336, 189, 100, 100, 151, 240,
7496 246, 189, 459, 155, 100, 100, 240, 241, 246, 464,
7497 233, 284, 171, 13, 171, 27, 288, 462, 284, 284,
7498 17, 281, 332, 25, 256, 338, 52, 56, 242, 52,
7499 56, 258, 261, 417, 260, 52, 56, 218, 242, 174,
7500 191, 196, 458, 241, 246, 190, 227, 239, 190, 239,
7501 221, 233, 237, 39, 248, 100, 100, 459, 100, 100,
7502 431, 451, 191, 190, 239, 461, 214, 459, 316, 401,
7503 404, 411, 416, 381, 398, 381, 381, 381, 152, 294,
7504 433, 155, 458, 155, 444, 423, 438, 440, 426, 427,
7505 436, 442, 134, 237, 428, 435, 442, 434, 436, 189,
7506 44, 44, 284, 284, 315, 152, 315, 237, 155, 44,
7507 213, 56, 44, 134, 44, 98, 153, 456, 334, 334,
7508 136, 233, 233, 328, 207, 159, 100, 233, 233, 207,
7509 8, 279, 371, 464, 14, 15, 282, 283, 289, 290,
7510 464, 290, 201, 107, 237, 331, 284, 336, 332, 284,
7511 459, 199, 462, 199, 174, 459, 284, 458, 194, 326,
7512 323, 189, 233, 233, 100, 233, 233, 458, 155, 458,
7513 179, 402, 458, 292, 295, 293, 445, 155, 429, 155,
7514 429, 155, 429, 155, 429, 429, 188, 230, 235, 235,
7515 316, 316, 107, 237, 235, 235, 233, 235, 52, 56,
7516 242, 52, 56, 335, 335, 227, 190, 239, 190, 239,
7517 152, 233, 190, 239, 190, 239, 237, 252, 372, 464,
7518 175, 282, 171, 199, 284, 284, 237, 155, 287, 334,
7519 284, 288, 174, 462, 284, 233, 157, 320, 430, 171,
7520 155, 155, 436, 436, 442, 436, 227, 227, 179, 179,
7521 237, 182, 182, 227, 459, 52, 56, 58, 91, 92,
7522 99, 102, 104, 105, 107, 112, 140, 319, 341, 342,
7523 343, 344, 347, 351, 352, 353, 356, 357, 358, 359,
7524 360, 361, 362, 363, 364, 365, 366, 367, 368, 369,
7525 370, 375, 376, 379, 380, 383, 387, 390, 392, 413,
7526 438, 341, 190, 239, 101, 373, 464, 9, 280, 374,
7527 464, 172, 287, 107, 237, 171, 335, 259, 284, 430,
7528 318, 0, 120, 403, 293, 429, 429, 155, 429, 429,
7529 139, 308, 309, 464, 308, 364, 366, 366, 56, 218,
7530 335, 342, 349, 350, 351, 352, 355, 459, 189, 335,
7531 460, 52, 395, 52, 102, 411, 101, 155, 139, 155,
7532 155, 342, 89, 90, 98, 153, 157, 345, 346, 52,
7533 99, 217, 266, 412, 413, 416, 287, 176, 171, 171,
7534 237, 290, 332, 333, 340, 341, 171, 189, 311, 29,
7535 123, 321, 436, 296, 299, 300, 301, 302, 304, 305,
7536 307, 310, 434, 436, 437, 442, 444, 171, 174, 342,
7537 459, 342, 353, 355, 459, 155, 152, 233, 124, 199,
7538 367, 349, 353, 347, 354, 355, 112, 358, 362, 366,
7539 366, 218, 335, 459, 335, 458, 349, 352, 356, 349,
7540 352, 356, 56, 98, 153, 456, 171, 163, 173, 289,
7541 287, 40, 41, 284, 160, 158, 322, 171, 429, 445,
7542 155, 445, 155, 306, 311, 298, 155, 303, 306, 99,
7543 266, 155, 306, 458, 155, 155, 348, 458, 155, 155,
7544 395, 458, 458, 458, 459, 459, 459, 52, 56, 242,
7545 52, 56, 371, 374, 337, 199, 199, 52, 312, 313,
7546 432, 174, 152, 299, 440, 302, 304, 436, 442, 139,
7547 266, 305, 442, 56, 98, 436, 354, 356, 354, 353,
7548 355, 459, 171, 155, 189, 284, 445, 155, 306, 155,
7549 306, 155, 306, 155, 306, 52, 56, 306, 155, 460,
7550 290, 338, 339, 313, 436, 436, 442, 436, 306, 306,
7551 155, 306, 306, 436, 306
7555static const yytype_int16 yyr1[] =
7557 0, 162, 165, 163, 163, 164, 166, 167, 167, 167,
7558 168, 168, 169, 170, 171, 172, 173, 174, 175, 174,
7559 176, 176, 176, 177, 178, 177, 179, 180, 181, 182,
7560 182, 182, 182, 182, 182, 182, 182, 182, 182, 182,
7561 182, 182, 183, 182, 182, 182, 182, 182, 184, 185,
7562 186, 186, 186, 186, 186, 186, 186, 186, 185, 187,
7563 187, 185, 188, 188, 189, 189, 188, 190, 190, 190,
7564 191, 191, 191, 191, 191, 192, 191, 193, 191, 191,
7565 194, 195, 196, 197, 198, 199, 199, 200, 201, 202,
7566 203, 203, 204, 205, 206, 206, 207, 208, 208, 208,
7567 209, 209, 209, 209, 209, 209, 209, 209, 209, 209,
7568 209, 209, 210, 210, 211, 211, 212, 212, 212, 213,
7569 213, 212, 212, 212, 212, 212, 212, 212, 214, 214,
7570 215, 215, 216, 216, 216, 216, 216, 216, 216, 216,
7571 216, 217, 217, 217, 217, 217, 217, 217, 217, 217,
7572 218, 218, 219, 219, 219, 220, 220, 220, 220, 220,
7573 221, 221, 222, 223, 222, 224, 224, 224, 224, 224,
7574 224, 224, 224, 224, 224, 224, 224, 224, 224, 224,
7575 224, 224, 224, 224, 224, 224, 224, 224, 224, 224,
7576 224, 224, 224, 224, 224, 225, 225, 225, 225, 225,
7577 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
7578 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
7579 225, 225, 225, 225, 225, 225, 225, 225, 225, 225,
7580 225, 225, 225, 225, 225, 225, 226, 227, 228, 228,
7581 228, 228, 228, 228, 228, 228, 227, 227, 227, 227,
7582 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
7583 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
7584 227, 227, 227, 227, 227, 227, 227, 227, 227, 227,
7585 229, 229, 227, 227, 230, 230, 230, 231, 231, 231,
7586 231, 232, 232, 233, 234, 235, 236, 237, 238, 238,
7587 238, 238, 239, 239, 240, 240, 240, 241, 241, 242,
7588 242, 242, 242, 242, 243, 244, 244, 244, 244, 244,
7589 245, 246, 247, 247, 248, 248, 249, 249, 249, 249,
7590 250, 250, 251, 251, 252, 252, 252, 253, 253, 253,
7591 253, 253, 253, 253, 253, 253, 253, 253, 254, 253,
7592 255, 253, 253, 253, 253, 253, 253, 253, 253, 253,
7593 253, 253, 253, 253, 253, 253, 253, 253, 253, 253,
7594 253, 253, 256, 253, 257, 253, 253, 258, 259, 253,
7595 260, 253, 261, 253, 262, 253, 263, 253, 264, 253,
7596 253, 253, 253, 253, 265, 266, 267, 268, 269, 270,
7597 271, 272, 273, 274, 275, 276, 277, 278, 279, 280,
7598 281, 282, 283, 284, 284, 285, 286, 287, 287, 287,
7599 288, 288, 289, 289, 290, 290, 291, 291, 292, 292,
7600 293, 293, 294, 294, 294, 294, 294, 295, 295, 296,
7601 296, 297, 298, 299, 299, 300, 300, 301, 301, 301,
7602 301, 302, 303, 304, 305, 305, 306, 306, 307, 307,
7603 307, 307, 307, 307, 307, 307, 307, 307, 307, 307,
7604 307, 307, 307, 308, 308, 309, 310, 310, 311, 311,
7605 312, 312, 313, 313, 314, 315, 316, 317, 318, 319,
7606 320, 320, 321, 322, 321, 323, 324, 324, 324, 324,
7607 325, 325, 325, 325, 325, 325, 325, 325, 325, 326,
7608 326, 327, 328, 329, 330, 331, 331, 331, 331, 332,
7609 333, 333, 334, 335, 336, 337, 338, 339, 339, 340,
7610 340, 340, 341, 341, 341, 341, 341, 341, 342, 343,
7611 343, 344, 344, 345, 346, 347, 347, 347, 347, 347,
7612 347, 347, 347, 347, 347, 347, 347, 347, 348, 347,
7613 347, 347, 349, 349, 349, 349, 349, 349, 350, 350,
7614 351, 351, 352, 353, 353, 354, 354, 355, 356, 356,
7615 356, 356, 357, 357, 358, 358, 359, 359, 360, 360,
7616 361, 362, 362, 363, 363, 363, 363, 363, 363, 363,
7617 363, 363, 363, 364, 364, 364, 364, 364, 364, 364,
7618 364, 364, 364, 365, 366, 367, 368, 368, 369, 370,
7619 370, 370, 371, 371, 372, 372, 372, 373, 373, 374,
7620 374, 375, 375, 376, 377, 377, 377, 378, 379, 380,
7621 381, 381, 382, 383, 384, 384, 385, 385, 386, 387,
7622 388, 388, 389, 390, 391, 392, 393, 393, 394, 394,
7623 395, 395, 396, 396, 397, 397, 398, 399, 398, 400,
7624 401, 402, 398, 403, 403, 404, 404, 405, 405, 406,
7625 407, 407, 408, 409, 409, 410, 410, 410, 410, 411,
7626 411, 411, 412, 412, 412, 413, 413, 413, 413, 413,
7627 413, 413, 414, 414, 415, 415, 416, 416, 417, 418,
7628 418, 419, 419, 420, 421, 422, 421, 423, 423, 424,
7629 424, 425, 425, 425, 425, 426, 426, 427, 428, 428,
7630 429, 429, 430, 430, 430, 430, 430, 430, 430, 430,
7631 430, 430, 430, 430, 430, 430, 430, 431, 432, 432,
7632 432, 432, 433, 433, 434, 435, 435, 436, 436, 437,
7633 438, 438, 439, 440, 440, 441, 441, 442, 442, 443,
7634 443, 444, 444, 445, 445, 446, 447, 448, 449, 448,
7635 450, 450, 451, 451, 452, 452, 452, 452, 452, 452,
7636 453, 453, 453, 453, 454, 454, 454, 455, 455, 456,
7637 456, 457, 457, 458, 459, 460, 461, 461, 462, 462,
7642static const yytype_int8 yyr2[] =
7644 0, 2, 0, 0, 1, 2, 2, 1, 1, 3,
7645 1, 2, 1, 3, 2, 0, 0, 8, 0, 5,
7646 1, 1, 3, 1, 0, 3, 0, 2, 0, 4,
7647 3, 3, 3, 2, 3, 3, 3, 3, 4, 5,
7648 1, 4, 4, 1, 7, 4, 1, 1, 4, 1,
7649 4, 7, 6, 6, 6, 6, 5, 4, 1, 4,
7650 4, 1, 1, 4, 0, 1, 3, 1, 4, 1,
7651 1, 3, 3, 3, 2, 0, 7, 0, 7, 1,
7652 1, 2, 0, 5, 1, 1, 1, 0, 0, 4,
7653 1, 1, 1, 1, 1, 4, 3, 1, 1, 1,
7654 2, 3, 4, 5, 4, 5, 6, 2, 2, 2,
7655 2, 2, 1, 3, 1, 3, 1, 2, 3, 1,
7656 3, 5, 2, 4, 2, 4, 1, 3, 1, 3,
7657 2, 3, 1, 1, 4, 3, 3, 3, 3, 2,
7658 1, 1, 1, 4, 3, 3, 3, 3, 2, 1,
7659 1, 1, 2, 1, 3, 1, 1, 1, 1, 1,
7660 1, 1, 1, 0, 4, 1, 1, 1, 1, 1,
7661 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7662 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7663 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7664 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7665 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7666 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7667 1, 1, 1, 1, 1, 1, 4, 1, 4, 7,
7668 6, 6, 6, 6, 5, 4, 1, 3, 3, 2,
7669 2, 2, 2, 3, 3, 3, 3, 3, 3, 4,
7670 2, 2, 3, 3, 3, 3, 1, 3, 3, 3,
7671 3, 3, 2, 2, 3, 3, 3, 3, 4, 6,
7672 4, 4, 1, 1, 1, 4, 3, 1, 1, 1,
7673 1, 3, 3, 1, 1, 1, 1, 1, 1, 2,
7674 4, 2, 1, 4, 3, 5, 3, 1, 1, 1,
7675 1, 2, 4, 2, 1, 1, 2, 2, 4, 1,
7676 0, 2, 2, 1, 2, 1, 1, 1, 3, 3,
7677 2, 1, 1, 1, 3, 4, 2, 1, 1, 1,
7678 1, 1, 1, 1, 1, 1, 1, 1, 0, 4,
7679 0, 4, 3, 3, 2, 3, 3, 1, 4, 3,
7680 1, 6, 4, 3, 2, 1, 2, 1, 6, 6,
7681 4, 4, 0, 6, 0, 5, 5, 0, 0, 9,
7682 0, 6, 0, 7, 0, 5, 0, 5, 0, 5,
7683 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
7684 2, 1, 2, 1, 1, 1, 1, 1, 1, 1,
7685 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
7686 1, 1, 1, 5, 1, 2, 1, 1, 1, 3,
7687 1, 3, 1, 3, 5, 1, 3, 2, 1, 1,
7688 1, 0, 2, 2, 1, 1, 3, 4, 2, 2,
7689 1, 1, 1, 3, 1, 3, 2, 0, 6, 8,
7690 4, 6, 4, 2, 6, 2, 4, 6, 2, 4,
7691 2, 4, 1, 1, 1, 4, 0, 1, 1, 4,
7692 1, 3, 1, 1, 0, 0, 0, 0, 0, 9,
7693 4, 1, 3, 0, 4, 3, 2, 4, 5, 5,
7694 2, 4, 4, 3, 3, 3, 2, 1, 4, 3,
7695 3, 0, 7, 0, 7, 1, 2, 3, 4, 5,
7696 1, 1, 0, 0, 0, 0, 9, 1, 1, 1,
7697 3, 3, 1, 2, 3, 1, 1, 1, 1, 3,
7698 1, 3, 1, 2, 2, 1, 1, 4, 4, 4,
7699 3, 4, 4, 4, 3, 3, 3, 2, 0, 6,
7700 2, 4, 1, 1, 2, 2, 4, 1, 2, 3,
7701 1, 3, 5, 2, 1, 1, 3, 1, 3, 1,
7702 2, 1, 1, 3, 2, 1, 1, 3, 2, 1,
7703 2, 1, 1, 1, 3, 3, 2, 2, 1, 1,
7704 1, 2, 2, 1, 1, 1, 1, 1, 1, 1,
7705 1, 1, 1, 1, 1, 1, 2, 2, 4, 2,
7706 3, 1, 6, 1, 1, 1, 1, 2, 1, 3,
7707 1, 1, 1, 1, 1, 1, 2, 3, 3, 3,
7708 1, 2, 4, 1, 0, 3, 1, 2, 4, 1,
7709 0, 3, 4, 1, 4, 1, 0, 3, 0, 3,
7710 0, 2, 0, 2, 0, 2, 1, 0, 3, 0,
7711 0, 0, 6, 1, 1, 1, 1, 1, 1, 2,
7712 1, 1, 3, 1, 2, 1, 1, 1, 1, 1,
7713 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7714 1, 1, 1, 1, 1, 1, 1, 1, 0, 4,
7715 1, 1, 1, 3, 1, 0, 3, 2, 1, 1,
7716 3, 4, 2, 2, 1, 1, 1, 3, 1, 3,
7717 2, 0, 6, 8, 4, 6, 4, 6, 2, 4,
7718 6, 2, 4, 2, 4, 1, 0, 1, 1, 1,
7719 1, 1, 1, 1, 1, 1, 3, 1, 3, 1,
7720 1, 1, 1, 2, 1, 1, 1, 2, 1, 1,
7721 1, 2, 1, 2, 1, 1, 1, 1, 0, 4,
7722 1, 2, 1, 3, 3, 2, 1, 4, 2, 1,
7723 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
7724 1, 1, 1, 2, 2, 2, 1, 1, 1, 1,
7729enum { YYENOMEM = -2 };
7731#define yyerrok (yyerrstatus = 0)
7732#define yyclearin (yychar = YYEMPTY)
7734#define YYACCEPT goto yyacceptlab
7735#define YYABORT goto yyabortlab
7736#define YYERROR goto yyerrorlab
7737#define YYNOMEM goto yyexhaustedlab
7740#define YYRECOVERING() (!!yyerrstatus)
7742#define YYBACKUP(Token, Value) \
7744 if (yychar == YYEMPTY) \
7748 YYPOPSTACK (yylen); \
7754 yyerror (&yylloc, p, YY_("syntax error: cannot back up")); \
7761#define YYERRCODE YYUNDEF
7767#ifndef YYLLOC_DEFAULT
7768# define YYLLOC_DEFAULT(Current, Rhs, N) \
7772 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
7773 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
7774 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
7775 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
7779 (Current).first_line = (Current).last_line = \
7780 YYRHSLOC (Rhs, 0).last_line; \
7781 (Current).first_column = (Current).last_column = \
7782 YYRHSLOC (Rhs, 0).last_column; \
7787#define YYRHSLOC(Rhs, K) ((Rhs)[K])
7795# define YYFPRINTF fprintf
7798# define YYDPRINTF(Args) \
7809# ifndef YYLOCATION_PRINT
7811# if defined YY_LOCATION_PRINT
7815# define YYLOCATION_PRINT(File, Loc, p) YY_LOCATION_PRINT(File, *(Loc), p)
7817# elif defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
7823yy_location_print_ (
FILE *yyo,
YYLTYPE const *
const yylocp)
7826 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
7827 if (0 <= yylocp->first_line)
7829 res += YYFPRINTF (yyo,
"%d", yylocp->first_line);
7830 if (0 <= yylocp->first_column)
7831 res += YYFPRINTF (yyo,
".%d", yylocp->first_column);
7833 if (0 <= yylocp->last_line)
7835 if (yylocp->first_line < yylocp->last_line)
7837 res += YYFPRINTF (yyo,
"-%d", yylocp->last_line);
7839 res += YYFPRINTF (yyo,
".%d", end_col);
7841 else if (0 <= end_col && yylocp->first_column < end_col)
7842 res += YYFPRINTF (yyo,
"-%d", end_col);
7847# define YYLOCATION_PRINT yy_location_print_
7851# define YY_LOCATION_PRINT(File, Loc, p) YYLOCATION_PRINT(File, &(Loc), p)
7855# define YYLOCATION_PRINT(File, Loc, p) ((void) 0)
7858# define YY_LOCATION_PRINT YYLOCATION_PRINT
7864# define YY_SYMBOL_PRINT(Title, Kind, Value, Location, p) \
7868 YYFPRINTF (stderr, "%s ", Title); \
7869 yy_symbol_print (stderr, \
7870 Kind, Value, Location, p); \
7871 YYFPRINTF (stderr, "\n"); \
7881yy_symbol_value_print (
FILE *yyo,
7884 FILE *yyoutput = yyo;
7886 YY_USE (yylocationp);
7890 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
7893 case YYSYMBOL_keyword_class:
7896 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7901 case YYSYMBOL_keyword_module:
7904 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7909 case YYSYMBOL_keyword_def:
7912 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7917 case YYSYMBOL_keyword_undef:
7920 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7925 case YYSYMBOL_keyword_begin:
7928 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7933 case YYSYMBOL_keyword_rescue:
7936 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7941 case YYSYMBOL_keyword_ensure:
7944 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7949 case YYSYMBOL_keyword_end:
7952 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7957 case YYSYMBOL_keyword_if:
7960 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7965 case YYSYMBOL_keyword_unless:
7968 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7973 case YYSYMBOL_keyword_then:
7976 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7981 case YYSYMBOL_keyword_elsif:
7984 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7989 case YYSYMBOL_keyword_else:
7992 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7997 case YYSYMBOL_keyword_case:
8000 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8005 case YYSYMBOL_keyword_when:
8008 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8013 case YYSYMBOL_keyword_while:
8016 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8021 case YYSYMBOL_keyword_until:
8024 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8029 case YYSYMBOL_keyword_for:
8032 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8037 case YYSYMBOL_keyword_break:
8040 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8045 case YYSYMBOL_keyword_next:
8048 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8053 case YYSYMBOL_keyword_redo:
8056 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8061 case YYSYMBOL_keyword_retry:
8064 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8069 case YYSYMBOL_keyword_in:
8072 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8077 case YYSYMBOL_keyword_do:
8080 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8085 case YYSYMBOL_keyword_do_cond:
8088 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8093 case YYSYMBOL_keyword_do_block:
8096 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8101 case YYSYMBOL_keyword_do_LAMBDA:
8104 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8109 case YYSYMBOL_keyword_return:
8112 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8117 case YYSYMBOL_keyword_yield:
8120 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8125 case YYSYMBOL_keyword_super:
8128 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8133 case YYSYMBOL_keyword_self:
8136 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8141 case YYSYMBOL_keyword_nil:
8144 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8149 case YYSYMBOL_keyword_true:
8152 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8157 case YYSYMBOL_keyword_false:
8160 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8165 case YYSYMBOL_keyword_and:
8168 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8173 case YYSYMBOL_keyword_or:
8176 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8181 case YYSYMBOL_keyword_not:
8184 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8189 case YYSYMBOL_modifier_if:
8192 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8197 case YYSYMBOL_modifier_unless:
8200 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8205 case YYSYMBOL_modifier_while:
8208 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8213 case YYSYMBOL_modifier_until:
8216 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8221 case YYSYMBOL_modifier_rescue:
8224 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8229 case YYSYMBOL_keyword_alias:
8232 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8237 case YYSYMBOL_keyword_defined:
8240 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8245 case YYSYMBOL_keyword_BEGIN:
8248 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8253 case YYSYMBOL_keyword_END:
8256 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8261 case YYSYMBOL_keyword__LINE__:
8264 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8269 case YYSYMBOL_keyword__FILE__:
8272 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8277 case YYSYMBOL_keyword__ENCODING__:
8280 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8285 case YYSYMBOL_tIDENTIFIER:
8288 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8296 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8301 case YYSYMBOL_tGVAR:
8304 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8309 case YYSYMBOL_tIVAR:
8312 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8317 case YYSYMBOL_tCONSTANT:
8320 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8325 case YYSYMBOL_tCVAR:
8328 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8333 case YYSYMBOL_tLABEL:
8336 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8341 case YYSYMBOL_tINTEGER:
8344 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8346 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8349 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8352 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8354 case NODE_IMAGINARY:
8355 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8364 case YYSYMBOL_tFLOAT:
8367 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8369 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8372 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8375 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8377 case NODE_IMAGINARY:
8378 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8387 case YYSYMBOL_tRATIONAL:
8390 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8392 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8395 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8398 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8400 case NODE_IMAGINARY:
8401 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8410 case YYSYMBOL_tIMAGINARY:
8413 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8415 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8418 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8421 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8423 case NODE_IMAGINARY:
8424 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8433 case YYSYMBOL_tCHAR:
8436 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8438 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8441 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8444 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8446 case NODE_IMAGINARY:
8447 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8456 case YYSYMBOL_tNTH_REF:
8459 rb_parser_printf(p,
"$%ld", RNODE_NTH_REF(((*yyvaluep).node))->nd_nth);
8464 case YYSYMBOL_tBACK_REF:
8467 rb_parser_printf(p,
"$%c", (
int)RNODE_BACK_REF(((*yyvaluep).node))->nd_nth);
8472 case YYSYMBOL_tSTRING_CONTENT:
8475 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8477 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8480 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8483 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8485 case NODE_IMAGINARY:
8486 rb_parser_printf(p,
"%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8498 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8503 case YYSYMBOL_70_backslash_:
8506 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8511 case YYSYMBOL_72_escaped_horizontal_tab_:
8514 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8519 case YYSYMBOL_73_escaped_form_feed_:
8522 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8527 case YYSYMBOL_74_escaped_carriage_return_:
8530 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8535 case YYSYMBOL_75_escaped_vertical_tab_:
8538 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8543 case YYSYMBOL_tANDDOT:
8546 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8551 case YYSYMBOL_tCOLON2:
8554 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8559 case YYSYMBOL_tOP_ASGN:
8562 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8567 case YYSYMBOL_compstmt_top_stmts:
8570 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8571 rb_parser_printf(p,
"NODE_SPECIAL");
8573 else if (((*yyvaluep).node)) {
8574 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8580 case YYSYMBOL_top_stmts:
8583 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8584 rb_parser_printf(p,
"NODE_SPECIAL");
8586 else if (((*yyvaluep).node)) {
8587 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8593 case YYSYMBOL_top_stmt:
8596 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8597 rb_parser_printf(p,
"NODE_SPECIAL");
8599 else if (((*yyvaluep).node)) {
8600 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8606 case YYSYMBOL_block_open:
8609 if ((
NODE *)((*yyvaluep).node_exits) == (
NODE *)-1) {
8610 rb_parser_printf(p,
"NODE_SPECIAL");
8612 else if (((*yyvaluep).node_exits)) {
8613 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
8619 case YYSYMBOL_begin_block:
8622 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8623 rb_parser_printf(p,
"NODE_SPECIAL");
8625 else if (((*yyvaluep).node)) {
8626 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8632 case YYSYMBOL_compstmt_stmts:
8635 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8636 rb_parser_printf(p,
"NODE_SPECIAL");
8638 else if (((*yyvaluep).node)) {
8639 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8645 case YYSYMBOL_bodystmt:
8648 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8649 rb_parser_printf(p,
"NODE_SPECIAL");
8651 else if (((*yyvaluep).node)) {
8652 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8658 case YYSYMBOL_stmts:
8661 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8662 rb_parser_printf(p,
"NODE_SPECIAL");
8664 else if (((*yyvaluep).node)) {
8665 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8671 case YYSYMBOL_stmt_or_begin:
8674 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8675 rb_parser_printf(p,
"NODE_SPECIAL");
8677 else if (((*yyvaluep).node)) {
8678 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8684 case YYSYMBOL_allow_exits:
8687 if ((
NODE *)((*yyvaluep).node_exits) == (
NODE *)-1) {
8688 rb_parser_printf(p,
"NODE_SPECIAL");
8690 else if (((*yyvaluep).node_exits)) {
8691 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
8700 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8701 rb_parser_printf(p,
"NODE_SPECIAL");
8703 else if (((*yyvaluep).node)) {
8704 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8710 case YYSYMBOL_asgn_lhs_mrhs:
8713 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8714 rb_parser_printf(p,
"NODE_SPECIAL");
8716 else if (((*yyvaluep).node)) {
8717 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8723 case YYSYMBOL_asgn_lhs_command_rhs:
8726 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8727 rb_parser_printf(p,
"NODE_SPECIAL");
8729 else if (((*yyvaluep).node)) {
8730 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8736 case YYSYMBOL_command_asgn:
8739 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8740 rb_parser_printf(p,
"NODE_SPECIAL");
8742 else if (((*yyvaluep).node)) {
8743 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8749 case YYSYMBOL_op_asgn_command_rhs:
8752 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8753 rb_parser_printf(p,
"NODE_SPECIAL");
8755 else if (((*yyvaluep).node)) {
8756 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8762 case YYSYMBOL_def_endless_method_endless_command:
8765 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8766 rb_parser_printf(p,
"NODE_SPECIAL");
8768 else if (((*yyvaluep).node)) {
8769 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8775 case YYSYMBOL_endless_command:
8778 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8779 rb_parser_printf(p,
"NODE_SPECIAL");
8781 else if (((*yyvaluep).node)) {
8782 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8788 case YYSYMBOL_command_rhs:
8791 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8792 rb_parser_printf(p,
"NODE_SPECIAL");
8794 else if (((*yyvaluep).node)) {
8795 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8804 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8805 rb_parser_printf(p,
"NODE_SPECIAL");
8807 else if (((*yyvaluep).node)) {
8808 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8814 case YYSYMBOL_def_name:
8817 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8822 case YYSYMBOL_defn_head:
8825 if ((
NODE *)((*yyvaluep).node_def_temp) == (
NODE *)-1) {
8826 rb_parser_printf(p,
"NODE_SPECIAL");
8828 else if (((*yyvaluep).node_def_temp)) {
8829 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
8835 case YYSYMBOL_defs_head:
8838 if ((
NODE *)((*yyvaluep).node_def_temp) == (
NODE *)-1) {
8839 rb_parser_printf(p,
"NODE_SPECIAL");
8841 else if (((*yyvaluep).node_def_temp)) {
8842 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
8848 case YYSYMBOL_value_expr_expr:
8851 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8852 rb_parser_printf(p,
"NODE_SPECIAL");
8854 else if (((*yyvaluep).node)) {
8855 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8861 case YYSYMBOL_expr_value:
8864 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8865 rb_parser_printf(p,
"NODE_SPECIAL");
8867 else if (((*yyvaluep).node)) {
8868 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8874 case YYSYMBOL_expr_value_do:
8877 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8878 rb_parser_printf(p,
"NODE_SPECIAL");
8880 else if (((*yyvaluep).node)) {
8881 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8887 case YYSYMBOL_command_call:
8890 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8891 rb_parser_printf(p,
"NODE_SPECIAL");
8893 else if (((*yyvaluep).node)) {
8894 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8900 case YYSYMBOL_value_expr_command_call:
8903 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8904 rb_parser_printf(p,
"NODE_SPECIAL");
8906 else if (((*yyvaluep).node)) {
8907 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8913 case YYSYMBOL_command_call_value:
8916 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8917 rb_parser_printf(p,
"NODE_SPECIAL");
8919 else if (((*yyvaluep).node)) {
8920 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8926 case YYSYMBOL_block_command:
8929 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8930 rb_parser_printf(p,
"NODE_SPECIAL");
8932 else if (((*yyvaluep).node)) {
8933 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8939 case YYSYMBOL_cmd_brace_block:
8942 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8943 rb_parser_printf(p,
"NODE_SPECIAL");
8945 else if (((*yyvaluep).node)) {
8946 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8952 case YYSYMBOL_fcall:
8955 if ((
NODE *)((*yyvaluep).node_fcall) == (
NODE *)-1) {
8956 rb_parser_printf(p,
"NODE_SPECIAL");
8958 else if (((*yyvaluep).node_fcall)) {
8959 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_fcall)))));
8965 case YYSYMBOL_command:
8968 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
8969 rb_parser_printf(p,
"NODE_SPECIAL");
8971 else if (((*yyvaluep).node)) {
8972 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8981 if ((
NODE *)((*yyvaluep).node_masgn) == (
NODE *)-1) {
8982 rb_parser_printf(p,
"NODE_SPECIAL");
8984 else if (((*yyvaluep).node_masgn)) {
8985 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
8991 case YYSYMBOL_mlhs_inner:
8994 if ((
NODE *)((*yyvaluep).node_masgn) == (
NODE *)-1) {
8995 rb_parser_printf(p,
"NODE_SPECIAL");
8997 else if (((*yyvaluep).node_masgn)) {
8998 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
9004 case YYSYMBOL_mlhs_basic:
9007 if ((
NODE *)((*yyvaluep).node_masgn) == (
NODE *)-1) {
9008 rb_parser_printf(p,
"NODE_SPECIAL");
9010 else if (((*yyvaluep).node_masgn)) {
9011 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
9017 case YYSYMBOL_mlhs_mlhs_item:
9020 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9021 rb_parser_printf(p,
"NODE_SPECIAL");
9023 else if (((*yyvaluep).node)) {
9024 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9030 case YYSYMBOL_mlhs_item:
9033 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9034 rb_parser_printf(p,
"NODE_SPECIAL");
9036 else if (((*yyvaluep).node)) {
9037 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9043 case YYSYMBOL_mlhs_head:
9046 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9047 rb_parser_printf(p,
"NODE_SPECIAL");
9049 else if (((*yyvaluep).node)) {
9050 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9056 case YYSYMBOL_mlhs_node:
9059 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9060 rb_parser_printf(p,
"NODE_SPECIAL");
9062 else if (((*yyvaluep).node)) {
9063 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9072 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9073 rb_parser_printf(p,
"NODE_SPECIAL");
9075 else if (((*yyvaluep).node)) {
9076 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9082 case YYSYMBOL_cname:
9085 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9090 case YYSYMBOL_cpath:
9093 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9094 rb_parser_printf(p,
"NODE_SPECIAL");
9096 else if (((*yyvaluep).node)) {
9097 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9103 case YYSYMBOL_fname:
9106 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9111 case YYSYMBOL_fitem:
9114 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9115 rb_parser_printf(p,
"NODE_SPECIAL");
9117 else if (((*yyvaluep).node)) {
9118 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9124 case YYSYMBOL_undef_list:
9127 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9128 rb_parser_printf(p,
"NODE_SPECIAL");
9130 else if (((*yyvaluep).node)) {
9131 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9140 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9145 case YYSYMBOL_reswords:
9148 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9153 case YYSYMBOL_asgn_lhs_arg_rhs:
9156 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9157 rb_parser_printf(p,
"NODE_SPECIAL");
9159 else if (((*yyvaluep).node)) {
9160 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9169 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9170 rb_parser_printf(p,
"NODE_SPECIAL");
9172 else if (((*yyvaluep).node)) {
9173 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9179 case YYSYMBOL_op_asgn_arg_rhs:
9182 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9183 rb_parser_printf(p,
"NODE_SPECIAL");
9185 else if (((*yyvaluep).node)) {
9186 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9192 case YYSYMBOL_def_endless_method_endless_arg:
9195 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9196 rb_parser_printf(p,
"NODE_SPECIAL");
9198 else if (((*yyvaluep).node)) {
9199 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9205 case YYSYMBOL_endless_arg:
9208 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9209 rb_parser_printf(p,
"NODE_SPECIAL");
9211 else if (((*yyvaluep).node)) {
9212 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9218 case YYSYMBOL_relop:
9221 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9226 case YYSYMBOL_rel_expr:
9229 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9230 rb_parser_printf(p,
"NODE_SPECIAL");
9232 else if (((*yyvaluep).node)) {
9233 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9239 case YYSYMBOL_value_expr_arg:
9242 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9243 rb_parser_printf(p,
"NODE_SPECIAL");
9245 else if (((*yyvaluep).node)) {
9246 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9252 case YYSYMBOL_arg_value:
9255 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9256 rb_parser_printf(p,
"NODE_SPECIAL");
9258 else if (((*yyvaluep).node)) {
9259 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9265 case YYSYMBOL_aref_args:
9268 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9269 rb_parser_printf(p,
"NODE_SPECIAL");
9271 else if (((*yyvaluep).node)) {
9272 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9278 case YYSYMBOL_arg_rhs:
9281 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9282 rb_parser_printf(p,
"NODE_SPECIAL");
9284 else if (((*yyvaluep).node)) {
9285 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9291 case YYSYMBOL_paren_args:
9294 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9295 rb_parser_printf(p,
"NODE_SPECIAL");
9297 else if (((*yyvaluep).node)) {
9298 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9304 case YYSYMBOL_opt_paren_args:
9307 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9308 rb_parser_printf(p,
"NODE_SPECIAL");
9310 else if (((*yyvaluep).node)) {
9311 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9317 case YYSYMBOL_opt_call_args:
9320 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9321 rb_parser_printf(p,
"NODE_SPECIAL");
9323 else if (((*yyvaluep).node)) {
9324 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9330 case YYSYMBOL_value_expr_command:
9333 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9334 rb_parser_printf(p,
"NODE_SPECIAL");
9336 else if (((*yyvaluep).node)) {
9337 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9343 case YYSYMBOL_call_args:
9346 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9347 rb_parser_printf(p,
"NODE_SPECIAL");
9349 else if (((*yyvaluep).node)) {
9350 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9356 case YYSYMBOL_command_args:
9359 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9360 rb_parser_printf(p,
"NODE_SPECIAL");
9362 else if (((*yyvaluep).node)) {
9363 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9369 case YYSYMBOL_block_arg:
9372 if ((
NODE *)((*yyvaluep).node_block_pass) == (
NODE *)-1) {
9373 rb_parser_printf(p,
"NODE_SPECIAL");
9375 else if (((*yyvaluep).node_block_pass)) {
9376 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_block_pass)))));
9382 case YYSYMBOL_opt_block_arg:
9385 if ((
NODE *)((*yyvaluep).node_block_pass) == (
NODE *)-1) {
9386 rb_parser_printf(p,
"NODE_SPECIAL");
9388 else if (((*yyvaluep).node_block_pass)) {
9389 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_block_pass)))));
9398 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9399 rb_parser_printf(p,
"NODE_SPECIAL");
9401 else if (((*yyvaluep).node)) {
9402 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9408 case YYSYMBOL_arg_splat:
9411 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9412 rb_parser_printf(p,
"NODE_SPECIAL");
9414 else if (((*yyvaluep).node)) {
9415 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9421 case YYSYMBOL_mrhs_arg:
9424 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9425 rb_parser_printf(p,
"NODE_SPECIAL");
9427 else if (((*yyvaluep).node)) {
9428 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9437 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9438 rb_parser_printf(p,
"NODE_SPECIAL");
9440 else if (((*yyvaluep).node)) {
9441 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9447 case YYSYMBOL_primary:
9450 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9451 rb_parser_printf(p,
"NODE_SPECIAL");
9453 else if (((*yyvaluep).node)) {
9454 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9460 case YYSYMBOL_value_expr_primary:
9463 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9464 rb_parser_printf(p,
"NODE_SPECIAL");
9466 else if (((*yyvaluep).node)) {
9467 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9473 case YYSYMBOL_primary_value:
9476 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9477 rb_parser_printf(p,
"NODE_SPECIAL");
9479 else if (((*yyvaluep).node)) {
9480 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9486 case YYSYMBOL_k_while:
9489 if ((
NODE *)((*yyvaluep).node_exits) == (
NODE *)-1) {
9490 rb_parser_printf(p,
"NODE_SPECIAL");
9492 else if (((*yyvaluep).node_exits)) {
9493 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9499 case YYSYMBOL_k_until:
9502 if ((
NODE *)((*yyvaluep).node_exits) == (
NODE *)-1) {
9503 rb_parser_printf(p,
"NODE_SPECIAL");
9505 else if (((*yyvaluep).node_exits)) {
9506 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9512 case YYSYMBOL_k_for:
9515 if ((
NODE *)((*yyvaluep).node_exits) == (
NODE *)-1) {
9516 rb_parser_printf(p,
"NODE_SPECIAL");
9518 else if (((*yyvaluep).node_exits)) {
9519 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9525 case YYSYMBOL_k_def:
9528 if ((
NODE *)((*yyvaluep).node_def_temp) == (
NODE *)-1) {
9529 rb_parser_printf(p,
"NODE_SPECIAL");
9531 else if (((*yyvaluep).node_def_temp)) {
9532 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
9541 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9546 case YYSYMBOL_if_tail:
9549 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9550 rb_parser_printf(p,
"NODE_SPECIAL");
9552 else if (((*yyvaluep).node)) {
9553 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9559 case YYSYMBOL_opt_else:
9562 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9563 rb_parser_printf(p,
"NODE_SPECIAL");
9565 else if (((*yyvaluep).node)) {
9566 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9572 case YYSYMBOL_for_var:
9575 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9576 rb_parser_printf(p,
"NODE_SPECIAL");
9578 else if (((*yyvaluep).node)) {
9579 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9585 case YYSYMBOL_f_marg:
9588 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9589 rb_parser_printf(p,
"NODE_SPECIAL");
9591 else if (((*yyvaluep).node)) {
9592 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9598 case YYSYMBOL_mlhs_f_marg:
9601 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9602 rb_parser_printf(p,
"NODE_SPECIAL");
9604 else if (((*yyvaluep).node)) {
9605 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9611 case YYSYMBOL_f_margs:
9614 if ((
NODE *)((*yyvaluep).node_masgn) == (
NODE *)-1) {
9615 rb_parser_printf(p,
"NODE_SPECIAL");
9617 else if (((*yyvaluep).node_masgn)) {
9618 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
9624 case YYSYMBOL_f_rest_marg:
9627 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9628 rb_parser_printf(p,
"NODE_SPECIAL");
9630 else if (((*yyvaluep).node)) {
9631 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9637 case YYSYMBOL_f_any_kwrest:
9640 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9645 case YYSYMBOL_f_kw_primary_value:
9648 if ((
NODE *)((*yyvaluep).node_kw_arg) == (
NODE *)-1) {
9649 rb_parser_printf(p,
"NODE_SPECIAL");
9651 else if (((*yyvaluep).node_kw_arg)) {
9652 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
9658 case YYSYMBOL_f_kwarg_primary_value:
9661 if ((
NODE *)((*yyvaluep).node_kw_arg) == (
NODE *)-1) {
9662 rb_parser_printf(p,
"NODE_SPECIAL");
9664 else if (((*yyvaluep).node_kw_arg)) {
9665 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
9671 case YYSYMBOL_args_tail_basic_primary_value:
9674 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9675 rb_parser_printf(p,
"NODE_SPECIAL");
9677 else if (((*yyvaluep).node_args)) {
9678 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9684 case YYSYMBOL_block_args_tail:
9687 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9688 rb_parser_printf(p,
"NODE_SPECIAL");
9690 else if (((*yyvaluep).node_args)) {
9691 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9697 case YYSYMBOL_excessed_comma:
9700 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9705 case YYSYMBOL_f_opt_primary_value:
9708 if ((
NODE *)((*yyvaluep).node_opt_arg) == (
NODE *)-1) {
9709 rb_parser_printf(p,
"NODE_SPECIAL");
9711 else if (((*yyvaluep).node_opt_arg)) {
9712 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
9718 case YYSYMBOL_f_optarg_primary_value:
9721 if ((
NODE *)((*yyvaluep).node_opt_arg) == (
NODE *)-1) {
9722 rb_parser_printf(p,
"NODE_SPECIAL");
9724 else if (((*yyvaluep).node_opt_arg)) {
9725 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
9731 case YYSYMBOL_opt_args_tail_block_args_tail:
9734 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9735 rb_parser_printf(p,
"NODE_SPECIAL");
9737 else if (((*yyvaluep).node_args)) {
9738 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9744 case YYSYMBOL_block_param:
9747 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9748 rb_parser_printf(p,
"NODE_SPECIAL");
9750 else if (((*yyvaluep).node_args)) {
9751 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9757 case YYSYMBOL_opt_block_param_def:
9760 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9761 rb_parser_printf(p,
"NODE_SPECIAL");
9763 else if (((*yyvaluep).node_args)) {
9764 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9770 case YYSYMBOL_block_param_def:
9773 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9774 rb_parser_printf(p,
"NODE_SPECIAL");
9776 else if (((*yyvaluep).node_args)) {
9777 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9783 case YYSYMBOL_opt_block_param:
9786 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9787 rb_parser_printf(p,
"NODE_SPECIAL");
9789 else if (((*yyvaluep).node_args)) {
9790 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9796 case YYSYMBOL_opt_bv_decl:
9799 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9804 case YYSYMBOL_bv_decls:
9807 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9815 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9820 case YYSYMBOL_numparam:
9823 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9824 rb_parser_printf(p,
"NODE_SPECIAL");
9826 else if (((*yyvaluep).node)) {
9827 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9833 case YYSYMBOL_it_id:
9836 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9841 case YYSYMBOL_lambda:
9844 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9845 rb_parser_printf(p,
"NODE_SPECIAL");
9847 else if (((*yyvaluep).node)) {
9848 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9854 case YYSYMBOL_f_larglist:
9857 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
9858 rb_parser_printf(p,
"NODE_SPECIAL");
9860 else if (((*yyvaluep).node_args)) {
9861 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9867 case YYSYMBOL_do_block:
9870 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9871 rb_parser_printf(p,
"NODE_SPECIAL");
9873 else if (((*yyvaluep).node)) {
9874 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9880 case YYSYMBOL_block_call:
9883 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9884 rb_parser_printf(p,
"NODE_SPECIAL");
9886 else if (((*yyvaluep).node)) {
9887 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9893 case YYSYMBOL_method_call:
9896 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9897 rb_parser_printf(p,
"NODE_SPECIAL");
9899 else if (((*yyvaluep).node)) {
9900 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9906 case YYSYMBOL_brace_block:
9909 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9910 rb_parser_printf(p,
"NODE_SPECIAL");
9912 else if (((*yyvaluep).node)) {
9913 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9919 case YYSYMBOL_brace_body:
9922 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9923 rb_parser_printf(p,
"NODE_SPECIAL");
9925 else if (((*yyvaluep).node)) {
9926 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9932 case YYSYMBOL_do_body:
9935 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9936 rb_parser_printf(p,
"NODE_SPECIAL");
9938 else if (((*yyvaluep).node)) {
9939 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9945 case YYSYMBOL_case_args:
9948 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9949 rb_parser_printf(p,
"NODE_SPECIAL");
9951 else if (((*yyvaluep).node)) {
9952 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9958 case YYSYMBOL_case_body:
9961 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9962 rb_parser_printf(p,
"NODE_SPECIAL");
9964 else if (((*yyvaluep).node)) {
9965 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9971 case YYSYMBOL_cases:
9974 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9975 rb_parser_printf(p,
"NODE_SPECIAL");
9977 else if (((*yyvaluep).node)) {
9978 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9984 case YYSYMBOL_p_case_body:
9987 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
9988 rb_parser_printf(p,
"NODE_SPECIAL");
9990 else if (((*yyvaluep).node)) {
9991 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9997 case YYSYMBOL_p_cases:
10000 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10001 rb_parser_printf(p,
"NODE_SPECIAL");
10003 else if (((*yyvaluep).node)) {
10004 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10007#line 10008 "parse.c"
10010 case YYSYMBOL_p_top_expr:
10011#line 2616 "parse.y"
10013 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10014 rb_parser_printf(p,
"NODE_SPECIAL");
10016 else if (((*yyvaluep).node)) {
10017 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10020#line 10021 "parse.c"
10023 case YYSYMBOL_p_top_expr_body:
10024#line 2616 "parse.y"
10026 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10027 rb_parser_printf(p,
"NODE_SPECIAL");
10029 else if (((*yyvaluep).node)) {
10030 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10033#line 10034 "parse.c"
10036 case YYSYMBOL_p_expr:
10037#line 2616 "parse.y"
10039 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10040 rb_parser_printf(p,
"NODE_SPECIAL");
10042 else if (((*yyvaluep).node)) {
10043 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10046#line 10047 "parse.c"
10049 case YYSYMBOL_p_as:
10050#line 2616 "parse.y"
10052 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10053 rb_parser_printf(p,
"NODE_SPECIAL");
10055 else if (((*yyvaluep).node)) {
10056 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10059#line 10060 "parse.c"
10062 case YYSYMBOL_p_alt:
10063#line 2616 "parse.y"
10065 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10066 rb_parser_printf(p,
"NODE_SPECIAL");
10068 else if (((*yyvaluep).node)) {
10069 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10072#line 10073 "parse.c"
10075 case YYSYMBOL_p_expr_basic:
10076#line 2616 "parse.y"
10078 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10079 rb_parser_printf(p,
"NODE_SPECIAL");
10081 else if (((*yyvaluep).node)) {
10082 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10085#line 10086 "parse.c"
10088 case YYSYMBOL_p_args:
10089#line 2616 "parse.y"
10091 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10092 rb_parser_printf(p,
"NODE_SPECIAL");
10094 else if (((*yyvaluep).node)) {
10095 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10098#line 10099 "parse.c"
10101 case YYSYMBOL_p_args_head:
10102#line 2616 "parse.y"
10104 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10105 rb_parser_printf(p,
"NODE_SPECIAL");
10107 else if (((*yyvaluep).node)) {
10108 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10111#line 10112 "parse.c"
10114 case YYSYMBOL_p_args_tail:
10115#line 2616 "parse.y"
10117 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10118 rb_parser_printf(p,
"NODE_SPECIAL");
10120 else if (((*yyvaluep).node)) {
10121 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10124#line 10125 "parse.c"
10127 case YYSYMBOL_p_find:
10128#line 2616 "parse.y"
10130 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10131 rb_parser_printf(p,
"NODE_SPECIAL");
10133 else if (((*yyvaluep).node)) {
10134 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10137#line 10138 "parse.c"
10140 case YYSYMBOL_p_rest:
10141#line 2616 "parse.y"
10143 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10144 rb_parser_printf(p,
"NODE_SPECIAL");
10146 else if (((*yyvaluep).node)) {
10147 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10150#line 10151 "parse.c"
10153 case YYSYMBOL_p_args_post:
10154#line 2616 "parse.y"
10156 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10157 rb_parser_printf(p,
"NODE_SPECIAL");
10159 else if (((*yyvaluep).node)) {
10160 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10163#line 10164 "parse.c"
10166 case YYSYMBOL_p_arg:
10167#line 2616 "parse.y"
10169 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10170 rb_parser_printf(p,
"NODE_SPECIAL");
10172 else if (((*yyvaluep).node)) {
10173 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10176#line 10177 "parse.c"
10179 case YYSYMBOL_p_kwargs:
10180#line 2616 "parse.y"
10182 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10183 rb_parser_printf(p,
"NODE_SPECIAL");
10185 else if (((*yyvaluep).node)) {
10186 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10189#line 10190 "parse.c"
10192 case YYSYMBOL_p_kwarg:
10193#line 2616 "parse.y"
10195 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10196 rb_parser_printf(p,
"NODE_SPECIAL");
10198 else if (((*yyvaluep).node)) {
10199 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10202#line 10203 "parse.c"
10205 case YYSYMBOL_p_kw:
10206#line 2616 "parse.y"
10208 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10209 rb_parser_printf(p,
"NODE_SPECIAL");
10211 else if (((*yyvaluep).node)) {
10212 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10215#line 10216 "parse.c"
10218 case YYSYMBOL_p_kw_label:
10219#line 2625 "parse.y"
10221 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10223#line 10224 "parse.c"
10226 case YYSYMBOL_p_kwrest:
10227#line 2625 "parse.y"
10229 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10231#line 10232 "parse.c"
10234 case YYSYMBOL_p_kwnorest:
10235#line 2625 "parse.y"
10237 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10239#line 10240 "parse.c"
10242 case YYSYMBOL_p_any_kwrest:
10243#line 2625 "parse.y"
10245 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10247#line 10248 "parse.c"
10250 case YYSYMBOL_p_value:
10251#line 2616 "parse.y"
10253 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10254 rb_parser_printf(p,
"NODE_SPECIAL");
10256 else if (((*yyvaluep).node)) {
10257 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10260#line 10261 "parse.c"
10263 case YYSYMBOL_p_primitive:
10264#line 2616 "parse.y"
10266 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10267 rb_parser_printf(p,
"NODE_SPECIAL");
10269 else if (((*yyvaluep).node)) {
10270 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10273#line 10274 "parse.c"
10276 case YYSYMBOL_value_expr_p_primitive:
10277#line 2616 "parse.y"
10279 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10280 rb_parser_printf(p,
"NODE_SPECIAL");
10282 else if (((*yyvaluep).node)) {
10283 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10286#line 10287 "parse.c"
10289 case YYSYMBOL_p_primitive_value:
10290#line 2616 "parse.y"
10292 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10293 rb_parser_printf(p,
"NODE_SPECIAL");
10295 else if (((*yyvaluep).node)) {
10296 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10299#line 10300 "parse.c"
10302 case YYSYMBOL_p_variable:
10303#line 2616 "parse.y"
10305 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10306 rb_parser_printf(p,
"NODE_SPECIAL");
10308 else if (((*yyvaluep).node)) {
10309 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10312#line 10313 "parse.c"
10315 case YYSYMBOL_p_var_ref:
10316#line 2616 "parse.y"
10318 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10319 rb_parser_printf(p,
"NODE_SPECIAL");
10321 else if (((*yyvaluep).node)) {
10322 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10325#line 10326 "parse.c"
10328 case YYSYMBOL_p_expr_ref:
10329#line 2616 "parse.y"
10331 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10332 rb_parser_printf(p,
"NODE_SPECIAL");
10334 else if (((*yyvaluep).node)) {
10335 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10338#line 10339 "parse.c"
10341 case YYSYMBOL_p_const:
10342#line 2616 "parse.y"
10344 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10345 rb_parser_printf(p,
"NODE_SPECIAL");
10347 else if (((*yyvaluep).node)) {
10348 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10351#line 10352 "parse.c"
10354 case YYSYMBOL_opt_rescue:
10355#line 2616 "parse.y"
10357 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10358 rb_parser_printf(p,
"NODE_SPECIAL");
10360 else if (((*yyvaluep).node)) {
10361 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10364#line 10365 "parse.c"
10367 case YYSYMBOL_exc_list:
10368#line 2616 "parse.y"
10370 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10371 rb_parser_printf(p,
"NODE_SPECIAL");
10373 else if (((*yyvaluep).node)) {
10374 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10377#line 10378 "parse.c"
10380 case YYSYMBOL_exc_var:
10381#line 2616 "parse.y"
10383 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10384 rb_parser_printf(p,
"NODE_SPECIAL");
10386 else if (((*yyvaluep).node)) {
10387 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10390#line 10391 "parse.c"
10393 case YYSYMBOL_opt_ensure:
10394#line 2616 "parse.y"
10396 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10397 rb_parser_printf(p,
"NODE_SPECIAL");
10399 else if (((*yyvaluep).node)) {
10400 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10403#line 10404 "parse.c"
10406 case YYSYMBOL_literal:
10407#line 2616 "parse.y"
10409 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10410 rb_parser_printf(p,
"NODE_SPECIAL");
10412 else if (((*yyvaluep).node)) {
10413 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10416#line 10417 "parse.c"
10419 case YYSYMBOL_strings:
10420#line 2616 "parse.y"
10422 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10423 rb_parser_printf(p,
"NODE_SPECIAL");
10425 else if (((*yyvaluep).node)) {
10426 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10429#line 10430 "parse.c"
10432 case YYSYMBOL_string:
10433#line 2616 "parse.y"
10435 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10436 rb_parser_printf(p,
"NODE_SPECIAL");
10438 else if (((*yyvaluep).node)) {
10439 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10442#line 10443 "parse.c"
10445 case YYSYMBOL_string1:
10446#line 2616 "parse.y"
10448 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10449 rb_parser_printf(p,
"NODE_SPECIAL");
10451 else if (((*yyvaluep).node)) {
10452 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10455#line 10456 "parse.c"
10458 case YYSYMBOL_xstring:
10459#line 2616 "parse.y"
10461 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10462 rb_parser_printf(p,
"NODE_SPECIAL");
10464 else if (((*yyvaluep).node)) {
10465 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10468#line 10469 "parse.c"
10471 case YYSYMBOL_regexp:
10472#line 2616 "parse.y"
10474 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10475 rb_parser_printf(p,
"NODE_SPECIAL");
10477 else if (((*yyvaluep).node)) {
10478 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10481#line 10482 "parse.c"
10484 case YYSYMBOL_words_tWORDS_BEG_word_list:
10485#line 2616 "parse.y"
10487 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10488 rb_parser_printf(p,
"NODE_SPECIAL");
10490 else if (((*yyvaluep).node)) {
10491 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10494#line 10495 "parse.c"
10497 case YYSYMBOL_words:
10498#line 2616 "parse.y"
10500 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10501 rb_parser_printf(p,
"NODE_SPECIAL");
10503 else if (((*yyvaluep).node)) {
10504 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10507#line 10508 "parse.c"
10510 case YYSYMBOL_word_list:
10511#line 2616 "parse.y"
10513 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10514 rb_parser_printf(p,
"NODE_SPECIAL");
10516 else if (((*yyvaluep).node)) {
10517 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10520#line 10521 "parse.c"
10523 case YYSYMBOL_word:
10524#line 2616 "parse.y"
10526 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10527 rb_parser_printf(p,
"NODE_SPECIAL");
10529 else if (((*yyvaluep).node)) {
10530 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10533#line 10534 "parse.c"
10536 case YYSYMBOL_words_tSYMBOLS_BEG_symbol_list:
10537#line 2616 "parse.y"
10539 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10540 rb_parser_printf(p,
"NODE_SPECIAL");
10542 else if (((*yyvaluep).node)) {
10543 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10546#line 10547 "parse.c"
10549 case YYSYMBOL_symbols:
10550#line 2616 "parse.y"
10552 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10553 rb_parser_printf(p,
"NODE_SPECIAL");
10555 else if (((*yyvaluep).node)) {
10556 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10559#line 10560 "parse.c"
10562 case YYSYMBOL_symbol_list:
10563#line 2616 "parse.y"
10565 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10566 rb_parser_printf(p,
"NODE_SPECIAL");
10568 else if (((*yyvaluep).node)) {
10569 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10572#line 10573 "parse.c"
10575 case YYSYMBOL_words_tQWORDS_BEG_qword_list:
10576#line 2616 "parse.y"
10578 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10579 rb_parser_printf(p,
"NODE_SPECIAL");
10581 else if (((*yyvaluep).node)) {
10582 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10585#line 10586 "parse.c"
10588 case YYSYMBOL_qwords:
10589#line 2616 "parse.y"
10591 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10592 rb_parser_printf(p,
"NODE_SPECIAL");
10594 else if (((*yyvaluep).node)) {
10595 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10598#line 10599 "parse.c"
10601 case YYSYMBOL_words_tQSYMBOLS_BEG_qsym_list:
10602#line 2616 "parse.y"
10604 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10605 rb_parser_printf(p,
"NODE_SPECIAL");
10607 else if (((*yyvaluep).node)) {
10608 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10611#line 10612 "parse.c"
10614 case YYSYMBOL_qsymbols:
10615#line 2616 "parse.y"
10617 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10618 rb_parser_printf(p,
"NODE_SPECIAL");
10620 else if (((*yyvaluep).node)) {
10621 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10624#line 10625 "parse.c"
10627 case YYSYMBOL_qword_list:
10628#line 2616 "parse.y"
10630 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10631 rb_parser_printf(p,
"NODE_SPECIAL");
10633 else if (((*yyvaluep).node)) {
10634 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10637#line 10638 "parse.c"
10640 case YYSYMBOL_qsym_list:
10641#line 2616 "parse.y"
10643 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10644 rb_parser_printf(p,
"NODE_SPECIAL");
10646 else if (((*yyvaluep).node)) {
10647 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10650#line 10651 "parse.c"
10653 case YYSYMBOL_string_contents:
10654#line 2616 "parse.y"
10656 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10657 rb_parser_printf(p,
"NODE_SPECIAL");
10659 else if (((*yyvaluep).node)) {
10660 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10663#line 10664 "parse.c"
10666 case YYSYMBOL_xstring_contents:
10667#line 2616 "parse.y"
10669 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10670 rb_parser_printf(p,
"NODE_SPECIAL");
10672 else if (((*yyvaluep).node)) {
10673 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10676#line 10677 "parse.c"
10679 case YYSYMBOL_regexp_contents:
10680#line 2616 "parse.y"
10682 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10683 rb_parser_printf(p,
"NODE_SPECIAL");
10685 else if (((*yyvaluep).node)) {
10686 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10689#line 10690 "parse.c"
10692 case YYSYMBOL_string_content:
10693#line 2616 "parse.y"
10695 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10696 rb_parser_printf(p,
"NODE_SPECIAL");
10698 else if (((*yyvaluep).node)) {
10699 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10702#line 10703 "parse.c"
10705 case YYSYMBOL_string_dvar:
10706#line 2616 "parse.y"
10708 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10709 rb_parser_printf(p,
"NODE_SPECIAL");
10711 else if (((*yyvaluep).node)) {
10712 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10715#line 10716 "parse.c"
10718 case YYSYMBOL_symbol:
10719#line 2616 "parse.y"
10721 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10722 rb_parser_printf(p,
"NODE_SPECIAL");
10724 else if (((*yyvaluep).node)) {
10725 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10728#line 10729 "parse.c"
10731 case YYSYMBOL_ssym:
10732#line 2616 "parse.y"
10734 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10735 rb_parser_printf(p,
"NODE_SPECIAL");
10737 else if (((*yyvaluep).node)) {
10738 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10741#line 10742 "parse.c"
10745#line 2625 "parse.y"
10747 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10749#line 10750 "parse.c"
10752 case YYSYMBOL_dsym:
10753#line 2616 "parse.y"
10755 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10756 rb_parser_printf(p,
"NODE_SPECIAL");
10758 else if (((*yyvaluep).node)) {
10759 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10762#line 10763 "parse.c"
10765 case YYSYMBOL_numeric:
10766#line 2616 "parse.y"
10768 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10769 rb_parser_printf(p,
"NODE_SPECIAL");
10771 else if (((*yyvaluep).node)) {
10772 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10775#line 10776 "parse.c"
10778 case YYSYMBOL_simple_numeric:
10779#line 2616 "parse.y"
10781 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10782 rb_parser_printf(p,
"NODE_SPECIAL");
10784 else if (((*yyvaluep).node)) {
10785 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10788#line 10789 "parse.c"
10791 case YYSYMBOL_nonlocal_var:
10792#line 2625 "parse.y"
10794 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10796#line 10797 "parse.c"
10799 case YYSYMBOL_user_variable:
10800#line 2625 "parse.y"
10802 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10804#line 10805 "parse.c"
10807 case YYSYMBOL_keyword_variable:
10808#line 2625 "parse.y"
10810 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10812#line 10813 "parse.c"
10815 case YYSYMBOL_var_ref:
10816#line 2616 "parse.y"
10818 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10819 rb_parser_printf(p,
"NODE_SPECIAL");
10821 else if (((*yyvaluep).node)) {
10822 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10825#line 10826 "parse.c"
10828 case YYSYMBOL_var_lhs:
10829#line 2616 "parse.y"
10831 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10832 rb_parser_printf(p,
"NODE_SPECIAL");
10834 else if (((*yyvaluep).node)) {
10835 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10838#line 10839 "parse.c"
10841 case YYSYMBOL_backref:
10842#line 2616 "parse.y"
10844 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10845 rb_parser_printf(p,
"NODE_SPECIAL");
10847 else if (((*yyvaluep).node)) {
10848 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10851#line 10852 "parse.c"
10854 case YYSYMBOL_superclass:
10855#line 2616 "parse.y"
10857 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
10858 rb_parser_printf(p,
"NODE_SPECIAL");
10860 else if (((*yyvaluep).node)) {
10861 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10864#line 10865 "parse.c"
10867 case YYSYMBOL_f_opt_paren_args:
10868#line 2616 "parse.y"
10870 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10871 rb_parser_printf(p,
"NODE_SPECIAL");
10873 else if (((*yyvaluep).node_args)) {
10874 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10877#line 10878 "parse.c"
10880 case YYSYMBOL_f_paren_args:
10881#line 2616 "parse.y"
10883 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10884 rb_parser_printf(p,
"NODE_SPECIAL");
10886 else if (((*yyvaluep).node_args)) {
10887 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10890#line 10891 "parse.c"
10893 case YYSYMBOL_f_arglist:
10894#line 2616 "parse.y"
10896 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10897 rb_parser_printf(p,
"NODE_SPECIAL");
10899 else if (((*yyvaluep).node_args)) {
10900 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10903#line 10904 "parse.c"
10906 case YYSYMBOL_f_kw_arg_value:
10907#line 2616 "parse.y"
10909 if ((
NODE *)((*yyvaluep).node_kw_arg) == (
NODE *)-1) {
10910 rb_parser_printf(p,
"NODE_SPECIAL");
10912 else if (((*yyvaluep).node_kw_arg)) {
10913 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
10916#line 10917 "parse.c"
10919 case YYSYMBOL_f_kwarg_arg_value:
10920#line 2616 "parse.y"
10922 if ((
NODE *)((*yyvaluep).node_kw_arg) == (
NODE *)-1) {
10923 rb_parser_printf(p,
"NODE_SPECIAL");
10925 else if (((*yyvaluep).node_kw_arg)) {
10926 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
10929#line 10930 "parse.c"
10932 case YYSYMBOL_args_tail_basic_arg_value:
10933#line 2616 "parse.y"
10935 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10936 rb_parser_printf(p,
"NODE_SPECIAL");
10938 else if (((*yyvaluep).node_args)) {
10939 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10942#line 10943 "parse.c"
10945 case YYSYMBOL_args_tail:
10946#line 2616 "parse.y"
10948 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10949 rb_parser_printf(p,
"NODE_SPECIAL");
10951 else if (((*yyvaluep).node_args)) {
10952 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10955#line 10956 "parse.c"
10958 case YYSYMBOL_f_opt_arg_value:
10959#line 2616 "parse.y"
10961 if ((
NODE *)((*yyvaluep).node_opt_arg) == (
NODE *)-1) {
10962 rb_parser_printf(p,
"NODE_SPECIAL");
10964 else if (((*yyvaluep).node_opt_arg)) {
10965 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
10968#line 10969 "parse.c"
10971 case YYSYMBOL_f_optarg_arg_value:
10972#line 2616 "parse.y"
10974 if ((
NODE *)((*yyvaluep).node_opt_arg) == (
NODE *)-1) {
10975 rb_parser_printf(p,
"NODE_SPECIAL");
10977 else if (((*yyvaluep).node_opt_arg)) {
10978 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
10981#line 10982 "parse.c"
10984 case YYSYMBOL_opt_args_tail_args_tail:
10985#line 2616 "parse.y"
10987 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
10988 rb_parser_printf(p,
"NODE_SPECIAL");
10990 else if (((*yyvaluep).node_args)) {
10991 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10994#line 10995 "parse.c"
10997 case YYSYMBOL_f_args:
10998#line 2616 "parse.y"
11000 if ((
NODE *)((*yyvaluep).node_args) == (
NODE *)-1) {
11001 rb_parser_printf(p,
"NODE_SPECIAL");
11003 else if (((*yyvaluep).node_args)) {
11004 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
11007#line 11008 "parse.c"
11010 case YYSYMBOL_args_forward:
11011#line 2625 "parse.y"
11013 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11015#line 11016 "parse.c"
11018 case YYSYMBOL_f_bad_arg:
11019#line 2625 "parse.y"
11021 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11023#line 11024 "parse.c"
11026 case YYSYMBOL_f_norm_arg:
11027#line 2625 "parse.y"
11029 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11031#line 11032 "parse.c"
11034 case YYSYMBOL_f_arg_asgn:
11035#line 2625 "parse.y"
11037 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11039#line 11040 "parse.c"
11042 case YYSYMBOL_f_arg_item:
11043#line 2616 "parse.y"
11045 if ((
NODE *)((*yyvaluep).node_args_aux) == (
NODE *)-1) {
11046 rb_parser_printf(p,
"NODE_SPECIAL");
11048 else if (((*yyvaluep).node_args_aux)) {
11049 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args_aux)))));
11052#line 11053 "parse.c"
11055 case YYSYMBOL_f_arg:
11056#line 2616 "parse.y"
11058 if ((
NODE *)((*yyvaluep).node_args_aux) == (
NODE *)-1) {
11059 rb_parser_printf(p,
"NODE_SPECIAL");
11061 else if (((*yyvaluep).node_args_aux)) {
11062 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args_aux)))));
11065#line 11066 "parse.c"
11068 case YYSYMBOL_f_label:
11069#line 2625 "parse.y"
11071 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11073#line 11074 "parse.c"
11076 case YYSYMBOL_f_no_kwarg:
11077#line 2625 "parse.y"
11079 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11081#line 11082 "parse.c"
11084 case YYSYMBOL_f_kwrest:
11085#line 2625 "parse.y"
11087 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11089#line 11090 "parse.c"
11092 case YYSYMBOL_f_rest_arg:
11093#line 2625 "parse.y"
11095 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11097#line 11098 "parse.c"
11100 case YYSYMBOL_f_block_arg:
11101#line 2625 "parse.y"
11103 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11105#line 11106 "parse.c"
11108 case YYSYMBOL_opt_f_block_arg:
11109#line 2625 "parse.y"
11111 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11113#line 11114 "parse.c"
11116 case YYSYMBOL_value_expr_singleton_expr:
11117#line 2616 "parse.y"
11119 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11120 rb_parser_printf(p,
"NODE_SPECIAL");
11122 else if (((*yyvaluep).node)) {
11123 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11126#line 11127 "parse.c"
11129 case YYSYMBOL_singleton:
11130#line 2616 "parse.y"
11132 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11133 rb_parser_printf(p,
"NODE_SPECIAL");
11135 else if (((*yyvaluep).node)) {
11136 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11139#line 11140 "parse.c"
11142 case YYSYMBOL_singleton_expr:
11143#line 2616 "parse.y"
11145 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11146 rb_parser_printf(p,
"NODE_SPECIAL");
11148 else if (((*yyvaluep).node)) {
11149 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11152#line 11153 "parse.c"
11155 case YYSYMBOL_assoc_list:
11156#line 2616 "parse.y"
11158 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11159 rb_parser_printf(p,
"NODE_SPECIAL");
11161 else if (((*yyvaluep).node)) {
11162 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11165#line 11166 "parse.c"
11168 case YYSYMBOL_assocs:
11169#line 2616 "parse.y"
11171 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11172 rb_parser_printf(p,
"NODE_SPECIAL");
11174 else if (((*yyvaluep).node)) {
11175 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11178#line 11179 "parse.c"
11181 case YYSYMBOL_assoc:
11182#line 2616 "parse.y"
11184 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11185 rb_parser_printf(p,
"NODE_SPECIAL");
11187 else if (((*yyvaluep).node)) {
11188 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11191#line 11192 "parse.c"
11194 case YYSYMBOL_operation2:
11195#line 2625 "parse.y"
11197 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11199#line 11200 "parse.c"
11202 case YYSYMBOL_operation3:
11203#line 2625 "parse.y"
11205 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11207#line 11208 "parse.c"
11210 case YYSYMBOL_dot_or_colon:
11211#line 2625 "parse.y"
11213 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11215#line 11216 "parse.c"
11218 case YYSYMBOL_call_op:
11219#line 2625 "parse.y"
11221 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11223#line 11224 "parse.c"
11226 case YYSYMBOL_call_op2:
11227#line 2625 "parse.y"
11229 rb_parser_printf(p,
"%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11231#line 11232 "parse.c"
11234 case YYSYMBOL_none:
11235#line 2616 "parse.y"
11237 if ((
NODE *)((*yyvaluep).node) == (
NODE *)-1) {
11238 rb_parser_printf(p,
"NODE_SPECIAL");
11240 else if (((*yyvaluep).node)) {
11241 rb_parser_printf(p,
"%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11244#line 11245 "parse.c"
11250 YY_IGNORE_MAYBE_UNINITIALIZED_END
11259yy_symbol_print (
FILE *yyo,
11262 YYFPRINTF (yyo,
"%s %s (",
11263 yykind < YYNTOKENS ?
"token" :
"nterm", yysymbol_name (yykind));
11265 YYLOCATION_PRINT (yyo, yylocationp, p);
11266 YYFPRINTF (yyo,
": ");
11267 yy_symbol_value_print (yyo, yykind, yyvaluep, yylocationp, p);
11268 YYFPRINTF (yyo,
")");
11277yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop,
struct parser_params *p)
11279 YYFPRINTF (stderr,
"Stack now");
11280 for (; yybottom <= yytop; yybottom++)
11282 int yybot = *yybottom;
11283 YYFPRINTF (stderr,
" %d", yybot);
11285 YYFPRINTF (stderr,
"\n");
11288# define YY_STACK_PRINT(Bottom, Top, p) \
11291 yy_stack_print ((Bottom), (Top), p); \
11300yy_reduce_print (yy_state_t *yyssp,
YYSTYPE *yyvsp,
YYLTYPE *yylsp,
11303 int yylno = yyrline[yyrule];
11304 int yynrhs = yyr2[yyrule];
11306 YYFPRINTF (stderr,
"Reducing stack by rule %d (line %d):\n",
11307 yyrule - 1, yylno);
11309 for (yyi = 0; yyi < yynrhs; yyi++)
11311 YYFPRINTF (stderr,
" $%d = ", yyi + 1);
11312 yy_symbol_print (stderr,
11313 YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
11314 &yyvsp[(yyi + 1) - (yynrhs)],
11315 &(yylsp[(yyi + 1) - (yynrhs)]), p);
11316 YYFPRINTF (stderr,
"\n");
11320# define YY_REDUCE_PRINT(Rule, p) \
11323 yy_reduce_print (yyssp, yyvsp, yylsp, Rule, p); \
11332# define YYDPRINTF(Args) ((void) 0)
11333# define YY_SYMBOL_PRINT(Title, Kind, Value, Location, p)
11334# define YY_STACK_PRINT(Bottom, Top, p)
11335# define YY_REDUCE_PRINT(Rule, p)
11341# define YYINITDEPTH 200
11352# define YYMAXDEPTH 10000
11360 yysymbol_kind_t yytoken;
11372 yysymbol_kind_t yyarg[],
int yyargn)
11376 int yyn = yypact[+*yyctx->yyssp];
11377 if (!yypact_value_is_default (yyn))
11382 int yyxbegin = yyn < 0 ? -yyn : 0;
11384 int yychecklim = YYLAST - yyn + 1;
11385 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
11387 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
11388 if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror
11389 && !yytable_value_is_error (yytable[yyx + yyn]))
11393 else if (yycount == yyargn)
11396 yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx);
11399 if (yyarg && yycount == 0 && 0 < yyargn)
11400 yyarg[0] = YYSYMBOL_YYEMPTY;
11408# if defined __GLIBC__ && defined _STRING_H
11409# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
11413yystrlen (
const char *yystr)
11416 for (yylen = 0; yystr[yylen]; yylen++)
11424# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
11425# define yystpcpy stpcpy
11430yystpcpy (
char *yydest,
const char *yysrc)
11432 char *yyd = yydest;
11433 const char *yys = yysrc;
11435 while ((*yyd++ = *yys++) !=
'\0')
11452yytnamerr (
char *yyres,
const char *yystr)
11456 YYPTRDIFF_T yyn = 0;
11457 char const *yyp = yystr;
11463 goto do_not_strip_quotes;
11466 if (*++yyp !=
'\\')
11467 goto do_not_strip_quotes;
11483 do_not_strip_quotes: ;
11487 return yystpcpy (yyres, yystr) - yyres;
11489 return yystrlen (yystr);
11496 yysymbol_kind_t yyarg[],
int yyargn)
11523 if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
11527 yyarg[yycount] = yyctx->yytoken;
11529 yyn = yypcontext_expected_tokens (yyctx,
11530 yyarg ? yyarg + 1 : yyarg, yyargn - 1);
11531 if (yyn == YYENOMEM)
11548yysyntax_error (YYPTRDIFF_T *yymsg_alloc,
char **yymsg,
11551 enum { YYARGS_MAX = 5 };
11553 const char *yyformat = YY_NULLPTR;
11556 yysymbol_kind_t yyarg[YYARGS_MAX];
11558 YYPTRDIFF_T yysize = 0;
11561 int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
11562 if (yycount == YYENOMEM)
11567#define YYCASE_(N, S) \
11572 YYCASE_(0, YY_(
"syntax error"));
11573 YYCASE_(1, YY_(
"syntax error, unexpected %s"));
11574 YYCASE_(2, YY_(
"syntax error, unexpected %s, expecting %s"));
11575 YYCASE_(3, YY_(
"syntax error, unexpected %s, expecting %s or %s"));
11576 YYCASE_(4, YY_(
"syntax error, unexpected %s, expecting %s or %s or %s"));
11577 YYCASE_(5, YY_(
"syntax error, unexpected %s, expecting %s or %s or %s or %s"));
11583 yysize = yystrlen (yyformat) - 2 * yycount + 1;
11586 for (yyi = 0; yyi < yycount; ++yyi)
11588 YYPTRDIFF_T yysize1
11589 = yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]);
11590 if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
11597 if (*yymsg_alloc < yysize)
11599 *yymsg_alloc = 2 * yysize;
11600 if (! (yysize <= *yymsg_alloc
11601 && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
11602 *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
11610 char *yyp = *yymsg;
11612 while ((*yyp = *yyformat) !=
'\0')
11613 if (*yyp ==
'%' && yyformat[1] ==
's' && yyi < yycount)
11615 yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]);
11633yydestruct (
const char *yymsg,
11637 YY_USE (yylocationp);
11640 yymsg =
"Deleting";
11641 YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp, p);
11643 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
11646 case YYSYMBOL_256_16:
11647#line 2653 "parse.y"
11649 if (CASE_LABELS_ENABLED_P(((*yyvaluep).labels))) st_free_table(((*yyvaluep).labels));
11651#line 11652 "parse.c"
11654 case YYSYMBOL_257_17:
11655#line 2653 "parse.y"
11657 if (CASE_LABELS_ENABLED_P(((*yyvaluep).labels))) st_free_table(((*yyvaluep).labels));
11659#line 11660 "parse.c"
11665 YY_IGNORE_MAYBE_UNINITIALIZED_END
11688static const YYSTYPE yyval_default = {};
11689(void) yyval_default;
11691YY_INITIAL_VALUE (
static const YYSTYPE yyval_default;)
11693YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
11696static const YYLTYPE yyloc_default
11697# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
11701YYLTYPE yylloc = yyloc_default;
11707 yy_state_fast_t yystate = 0;
11709 int yyerrstatus = 0;
11715 YYPTRDIFF_T yystacksize = YYINITDEPTH;
11718 yy_state_t yyssa[YYINITDEPTH];
11719 yy_state_t *yyss = yyssa;
11720 yy_state_t *yyssp = yyss;
11736 yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
11746 char yymsgbuf[128];
11747 char *yymsg = yymsgbuf;
11748 YYPTRDIFF_T yymsg_alloc =
sizeof yymsgbuf;
11750#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
11756 YYDPRINTF ((stderr,
"Starting parse\n"));
11762#line 2660 "parse.y"
11764 RUBY_SET_YYLLOC_OF_NONE(yylloc);
11767#line 11768 "parse.c"
11786 YYDPRINTF ((stderr,
"Entering state %d\n", yystate));
11787 YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
11788 YY_IGNORE_USELESS_CAST_BEGIN
11789 *yyssp = YY_CAST (yy_state_t, yystate);
11790 YY_IGNORE_USELESS_CAST_END
11791 YY_STACK_PRINT (yyss, yyssp, p);
11793 if (yyss + yystacksize - 1 <= yyssp)
11794#if !defined yyoverflow && !defined YYSTACK_RELOCATE
11799 YYPTRDIFF_T yysize = yyssp - yyss + 1;
11801# if defined yyoverflow
11806 yy_state_t *yyss1 = yyss;
11814 yyoverflow (YY_(
"memory exhausted"),
11815 &yyss1, yysize * YYSIZEOF (*yyssp),
11816 &yyvs1, yysize * YYSIZEOF (*yyvsp),
11817 &yyls1, yysize * YYSIZEOF (*yylsp),
11825 if (YYMAXDEPTH <= yystacksize)
11828 if (YYMAXDEPTH < yystacksize)
11829 yystacksize = YYMAXDEPTH;
11832 yy_state_t *yyss1 = yyss;
11833 union yyalloc *yyptr =
11834 YY_CAST (
union yyalloc *,
11835 YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
11838 YYSTACK_RELOCATE (yyss_alloc, yyss);
11839 YYSTACK_RELOCATE (yyvs_alloc, yyvs);
11840 YYSTACK_RELOCATE (yyls_alloc, yyls);
11841# undef YYSTACK_RELOCATE
11842 if (yyss1 != yyssa)
11843 YYSTACK_FREE (yyss1);
11847 yyssp = yyss + yysize - 1;
11848 yyvsp = yyvs + yysize - 1;
11849 yylsp = yyls + yysize - 1;
11851 YY_IGNORE_USELESS_CAST_BEGIN
11852 YYDPRINTF ((stderr,
"Stack size increased to %ld\n",
11853 YY_CAST (
long, yystacksize)));
11854 YY_IGNORE_USELESS_CAST_END
11856 if (yyss + yystacksize - 1 <= yyssp)
11862 if (yystate == YYFINAL)
11876 yyn = yypact[yystate];
11877 if (yypact_value_is_default (yyn))
11883 if (yychar == YYEMPTY)
11885 YYDPRINTF ((stderr,
"Reading a token\n"));
11886 yychar = yylex (&yylval, &yylloc, p);
11889 if (yychar <= END_OF_INPUT)
11891 yychar = END_OF_INPUT;
11892 yytoken = YYSYMBOL_YYEOF;
11893 YYDPRINTF ((stderr,
"Now at end of input.\n"));
11895 else if (yychar == YYerror)
11902 yytoken = YYSYMBOL_YYerror;
11903 yyerror_range[1] = yylloc;
11908 yytoken = YYTRANSLATE (yychar);
11909 YY_SYMBOL_PRINT (
"Next token is", yytoken, &yylval, &yylloc, p);
11915 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
11917 yyn = yytable[yyn];
11920 if (yytable_value_is_error (yyn))
11932 YY_SYMBOL_PRINT (
"Shifting", yytoken, &yylval, &yylloc, p);
11934 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
11936 YY_IGNORE_MAYBE_UNINITIALIZED_END
11939#line 2663 "parse.y"
11941#line 11942 "parse.c"
11953 yyn = yydefact[yystate];
11974 yyval = yyvsp[1-yylen];
11976#line 2664 "parse.y"
11977 {before_reduce(yylen, p);}
11978#line 11979 "parse.c"
11982 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
11983 yyerror_range[1] = yyloc;
11984 YY_REDUCE_PRINT (yyn, p);
11988#line 3117 "parse.y"
11990 SET_LEX_STATE(EXPR_BEG);
11991 local_push(p, ifndef_ripper(1)+0);
11993 if (!ifndef_ripper(p->do_loop) + 0) init_block_exit(p);
11995#line 11996 "parse.c"
11999#line 2973 "parse.y"
12001 void_stmts(p, (yyval.node) = (yyvsp[-1].node));
12003#line 12004 "parse.c"
12007#line 3124 "parse.y"
12009 if ((yyvsp[0].node) && !compile_for_eval) {
12010 NODE *node = (yyvsp[0].node);
12012 if (nd_type_p(node, NODE_BLOCK)) {
12013 while (RNODE_BLOCK(node)->nd_next) {
12014 node = RNODE_BLOCK(node)->nd_next;
12016 node = RNODE_BLOCK(node)->nd_head;
12018 node = remove_begin(node);
12019 void_expr(p, node);
12021 p->eval_tree = NEW_SCOPE(0, block_append(p, p->eval_tree, (yyvsp[0].node)), &(yyloc));
12025#line 12026 "parse.c"
12029#line 3144 "parse.y"
12031 (yyval.node) = NEW_BEGIN(0, &(yyloc));
12034#line 12035 "parse.c"
12038#line 3149 "parse.y"
12040 (yyval.node) = newline_node((yyvsp[0].node));
12043#line 12044 "parse.c"
12047#line 3154 "parse.y"
12049 (yyval.node) = block_append(p, (yyvsp[-2].node), newline_node((yyvsp[0].node)));
12052#line 12053 "parse.c"
12056#line 3161 "parse.y"
12058 clear_block_exit(p,
true);
12059 (yyval.node) = (yyvsp[0].node);
12061#line 12062 "parse.c"
12065#line 3166 "parse.y"
12067 (yyval.node) = (yyvsp[0].node);
12070#line 12071 "parse.c"
12074#line 3172 "parse.y"
12075 {(yyval.node_exits) = init_block_exit(p);}
12076#line 12077 "parse.c"
12080#line 3175 "parse.y"
12082 restore_block_exit(p, (yyvsp[-2].node_exits));
12083 p->eval_tree_begin = block_append(p, p->eval_tree_begin,
12084 NEW_BEGIN((yyvsp[-1].node), &(yyloc)));
12085 (yyval.node) = NEW_BEGIN(0, &(yyloc));
12088#line 12089 "parse.c"
12092#line 2973 "parse.y"
12094 void_stmts(p, (yyval.node) = (yyvsp[-1].node));
12096#line 12097 "parse.c"
12100#line 3188 "parse.y"
12102 if (!(yyvsp[-1].node)) yyerror1(&(yylsp[0]),
"else without rescue is useless");
12103 next_rescue_context(&p->ctxt, &(yyvsp[-2].ctxt), after_else);
12105#line 12106 "parse.c"
12109#line 3193 "parse.y"
12111 next_rescue_context(&p->ctxt, &(yyvsp[-4].ctxt), after_ensure);
12113#line 12114 "parse.c"
12117#line 3197 "parse.y"
12119 (yyval.node) = new_bodystmt(p, (yyvsp[-7].node), (yyvsp[-5].node), (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
12122#line 12123 "parse.c"
12126#line 3204 "parse.y"
12128 next_rescue_context(&p->ctxt, &(yyvsp[-1].ctxt), after_ensure);
12130#line 12131 "parse.c"
12134#line 3208 "parse.y"
12136 (yyval.node) = new_bodystmt(p, (yyvsp[-4].node), (yyvsp[-2].node), 0, (yyvsp[0].node), &(yyloc));
12139#line 12140 "parse.c"
12143#line 3215 "parse.y"
12145 (yyval.node) = NEW_BEGIN(0, &(yyloc));
12148#line 12149 "parse.c"
12152#line 3220 "parse.y"
12154 (yyval.node) = newline_node((yyvsp[0].node));
12157#line 12158 "parse.c"
12161#line 3225 "parse.y"
12163 (yyval.node) = block_append(p, (yyvsp[-2].node), newline_node((yyvsp[0].node)));
12166#line 12167 "parse.c"
12170#line 3233 "parse.y"
12172 yyerror1(&(yylsp[0]),
"BEGIN is permitted only at toplevel");
12174#line 12175 "parse.c"
12178#line 3237 "parse.y"
12180 (yyval.node) = (yyvsp[0].node);
12182#line 12183 "parse.c"
12186#line 3242 "parse.y"
12187 {(yyval.node_exits) = allow_block_exit(p);}
12188#line 12189 "parse.c"
12192#line 3245 "parse.y"
12194 (yyval.ctxt) = (yyvsp[0].ctxt);
12195 p->ctxt.in_rescue = before_rescue;
12198#line 12199 "parse.c"
12202#line 3251 "parse.y"
12203 {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);}
12204#line 12205 "parse.c"
12208#line 3252 "parse.y"
12210 (yyval.node) = NEW_ALIAS((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-3]));
12213#line 12214 "parse.c"
12217#line 3257 "parse.y"
12219 (yyval.node) = NEW_VALIAS((yyvsp[-1].
id), (yyvsp[0].id), &(yyloc), &(yylsp[-2]));
12222#line 12223 "parse.c"
12226#line 3262 "parse.y"
12230 buf[1] = (char)RNODE_BACK_REF((yyvsp[0].node))->nd_nth;
12231 (yyval.node) = NEW_VALIAS((yyvsp[-1].
id), rb_intern2(buf, 2), &(yyloc), &(yylsp[-2]));
12234#line 12235 "parse.c"
12238#line 3270 "parse.y"
12240 static const char mesg[] =
"can't make alias for the number variables";
12242 yyerror1(&(yylsp[0]), mesg);
12244 (yyval.node) = NEW_ERROR(&(yyloc));
12247#line 12248 "parse.c"
12251#line 3279 "parse.y"
12253 nd_set_first_loc((yyvsp[0].node), (yylsp[-1]).beg_pos);
12254 RNODE_UNDEF((yyvsp[0].node))->keyword_loc = (yylsp[-1]);
12255 (yyval.node) = (yyvsp[0].node);
12258#line 12259 "parse.c"
12262#line 3286 "parse.y"
12264 (yyval.node) = new_if(p, (yyvsp[0].node), remove_begin((yyvsp[-2].node)), 0, &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12265 fixpos((yyval.node), (yyvsp[0].node));
12268#line 12269 "parse.c"
12272#line 3292 "parse.y"
12274 (yyval.node) = new_unless(p, (yyvsp[0].node), remove_begin((yyvsp[-2].node)), 0, &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12275 fixpos((yyval.node), (yyvsp[0].node));
12278#line 12279 "parse.c"
12282#line 3298 "parse.y"
12284 clear_block_exit(p,
false);
12285 if ((yyvsp[-2].node) && nd_type_p((yyvsp[-2].node), NODE_BEGIN)) {
12286 (yyval.node) = NEW_WHILE(cond(p, (yyvsp[0].node), &(yylsp[0])), RNODE_BEGIN((yyvsp[-2].node))->nd_body, 0, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12289 (yyval.node) = NEW_WHILE(cond(p, (yyvsp[0].node), &(yylsp[0])), (yyvsp[-2].node), 1, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12293#line 12294 "parse.c"
12297#line 3309 "parse.y"
12299 clear_block_exit(p,
false);
12300 if ((yyvsp[-2].node) && nd_type_p((yyvsp[-2].node), NODE_BEGIN)) {
12301 (yyval.node) = NEW_UNTIL(cond(p, (yyvsp[0].node), &(yylsp[0])), RNODE_BEGIN((yyvsp[-2].node))->nd_body, 0, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12304 (yyval.node) = NEW_UNTIL(cond(p, (yyvsp[0].node), &(yylsp[0])), (yyvsp[-2].node), 1, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12308#line 12309 "parse.c"
12312#line 3320 "parse.y"
12314 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
12316 YYLTYPE loc = code_loc_gen(&(yylsp[-2]), &(yylsp[0]));
12317 resq = NEW_RESBODY(0, 0, remove_begin((yyvsp[0].node)), 0, &loc);
12318 (yyval.node) = NEW_RESCUE(remove_begin((yyvsp[-3].node)), resq, 0, &(yyloc));
12321#line 12322 "parse.c"
12325#line 3329 "parse.y"
12327 if (p->ctxt.in_def) {
12328 rb_warn0(
"END in method; use at_exit");
12330 restore_block_exit(p, (yyvsp[-3].node_exits));
12331 p->ctxt = (yyvsp[-4].ctxt);
12333 NODE *scope = NEW_SCOPE2(0 , 0 , (yyvsp[-1].node) , &(yyloc));
12334 (yyval.node) = NEW_POSTEXE(scope, &(yyloc), &(yylsp[-4]), &(yylsp[-2]), &(yylsp[0]));
12338#line 12339 "parse.c"
12342#line 3343 "parse.y"
12344 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-3].node_masgn), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12347#line 12348 "parse.c"
12351#line 2918 "parse.y"
12353 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12356#line 12357 "parse.c"
12360#line 3350 "parse.y"
12362 p->ctxt.in_rescue = (yyvsp[-4].ctxt).in_rescue;
12363 YYLTYPE loc = code_loc_gen(&(yylsp[-2]), &(yylsp[0]));
12364 (yyvsp[0].node) = NEW_RESBODY(0, 0, remove_begin((yyvsp[0].node)), 0, &loc);
12365 loc.beg_pos = (yylsp[-3]).beg_pos;
12366 (yyvsp[-3].node) = NEW_RESCUE((yyvsp[-3].node), (yyvsp[0].node), 0, &loc);
12367 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-6].node_masgn), (yyvsp[-3].node), (yyvsp[-4].ctxt), &(yyloc));
12370#line 12371 "parse.c"
12374#line 3360 "parse.y"
12376 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-3].node_masgn), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12379#line 12380 "parse.c"
12383#line 3366 "parse.y"
12386 (yyval.node) = NEW_ERROR(&(yyloc));
12388#line 12389 "parse.c"
12392#line 2918 "parse.y"
12394 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12397#line 12398 "parse.c"
12401#line 3043 "parse.y"
12403 (yyval.node) = new_op_assign(p, (yyvsp[-3].node), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12406#line 12407 "parse.c"
12410#line 3048 "parse.y"
12412 (yyval.node) = new_ary_op_assign(p, (yyvsp[-6].node), (yyvsp[-4].node), (yyvsp[-2].
id), (yyvsp[0].node), &(yylsp[-4]), &(yyloc), &NULL_LOC, &(yylsp[-5]), &(yylsp[-3]), &(yylsp[-2]));
12415#line 12416 "parse.c"
12419#line 3053 "parse.y"
12421 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), (yyvsp[-4].id), (yyvsp[-3].
id), (yyvsp[-2].id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
12424#line 12425 "parse.c"
12428#line 3058 "parse.y"
12430 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), (yyvsp[-4].id), (yyvsp[-3].
id), (yyvsp[-2].id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
12433#line 12434 "parse.c"
12437#line 3063 "parse.y"
12439 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), idCOLON2, (yyvsp[-3].id), (yyvsp[-2].
id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
12442#line 12443 "parse.c"
12446#line 3068 "parse.y"
12448 YYLTYPE loc = code_loc_gen(&(yylsp[-5]), &(yylsp[-3]));
12449 (yyval.node) = new_const_op_assign(p, NEW_COLON2((yyvsp[-5].node), (yyvsp[-3].
id), &loc), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12452#line 12453 "parse.c"
12456#line 3074 "parse.y"
12458 YYLTYPE loc = code_loc_gen(&(yylsp[-4]), &(yylsp[-3]));
12459 (yyval.node) = new_const_op_assign(p, NEW_COLON3((yyvsp[-3].
id), &loc), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12462#line 12463 "parse.c"
12466#line 3080 "parse.y"
12468 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[-3].node));
12469 (yyval.node) = NEW_ERROR(&(yyloc));
12472#line 12473 "parse.c"
12476#line 2948 "parse.y"
12478 endless_method_name(p, (yyvsp[-3].node_def_temp)->nd_mid, &(yylsp[-3]));
12479 restore_defun(p, (yyvsp[-3].node_def_temp));
12480 (yyvsp[0].node) = new_scope_body(p, (yyvsp[-2].node_args), (yyvsp[0].node), &(yyloc));
12481 ((yyval.node) = (yyvsp[-3].node_def_temp)->nd_def)->nd_loc = (yyloc);
12482 RNODE_DEFN((yyval.node))->nd_defn = (yyvsp[0].node);
12487#line 12488 "parse.c"
12491#line 2959 "parse.y"
12493 endless_method_name(p, (yyvsp[-3].node_def_temp)->nd_mid, &(yylsp[-3]));
12494 restore_defun(p, (yyvsp[-3].node_def_temp));
12495 (yyvsp[0].node) = new_scope_body(p, (yyvsp[-2].node_args), (yyvsp[0].node), &(yyloc));
12496 ((yyval.node) = (yyvsp[-3].node_def_temp)->nd_def)->nd_loc = (yyloc);
12497 RNODE_DEFS((yyval.node))->nd_defn = (yyvsp[0].node);
12502#line 12503 "parse.c"
12506#line 3379 "parse.y"
12508 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
12509 (yyval.node) = rescued_expr(p, (yyvsp[-3].node), (yyvsp[0].node), &(yylsp[-3]), &(yylsp[-2]), &(yylsp[0]));
12512#line 12513 "parse.c"
12516#line 3385 "parse.y"
12518 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
12521#line 12522 "parse.c"
12525#line 3393 "parse.y"
12527 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
12528 YYLTYPE loc = code_loc_gen(&(yylsp[-2]), &(yylsp[0]));
12529 (yyval.node) = NEW_RESCUE((yyvsp[-3].node), NEW_RESBODY(0, 0, remove_begin((yyvsp[0].node)), 0, &loc), 0, &(yyloc));
12532#line 12533 "parse.c"
12536#line 3404 "parse.y"
12538 (yyval.node) = logop(p, idAND, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12541#line 12542 "parse.c"
12545#line 3409 "parse.y"
12547 (yyval.node) = logop(p, idOR, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12550#line 12551 "parse.c"
12554#line 3414 "parse.y"
12556 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
12559#line 12560 "parse.c"
12563#line 3419 "parse.y"
12565 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])),
'!', &(yylsp[-1]), &(yyloc));
12568#line 12569 "parse.c"
12572#line 3424 "parse.y"
12574 value_expr((yyvsp[-1].node));
12576#line 12577 "parse.c"
12580#line 3429 "parse.y"
12582 pop_pktbl(p, (yyvsp[-1].tbl));
12583 pop_pvtbl(p, (yyvsp[-2].tbl));
12584 p->ctxt.in_kwarg = (yyvsp[-3].ctxt).in_kwarg;
12585 (yyval.node) = NEW_CASE3((yyvsp[-6].node), NEW_IN((yyvsp[0].node), 0, 0, &(yylsp[0])), &(yyloc), &NULL_LOC, &NULL_LOC);
12588#line 12589 "parse.c"
12592#line 3437 "parse.y"
12594 value_expr((yyvsp[-1].node));
12596#line 12597 "parse.c"
12600#line 3442 "parse.y"
12602 pop_pktbl(p, (yyvsp[-1].tbl));
12603 pop_pvtbl(p, (yyvsp[-2].tbl));
12604 p->ctxt.in_kwarg = (yyvsp[-3].ctxt).in_kwarg;
12605 (yyval.node) = NEW_CASE3((yyvsp[-6].node), NEW_IN((yyvsp[0].node), NEW_TRUE(&(yylsp[0])), NEW_FALSE(&(yylsp[0])), &(yylsp[0])), &(yyloc), &NULL_LOC, &NULL_LOC);
12608#line 12609 "parse.c"
12612#line 3453 "parse.y"
12614 numparam_name(p, (yyvsp[0].
id));
12616 p->ctxt.in_def = 1;
12617 p->ctxt.in_rescue = before_rescue;
12618 p->ctxt.cant_return = 0;
12619 (yyval.id) = (yyvsp[0].
id);
12621#line 12622 "parse.c"
12625#line 3464 "parse.y"
12627 (yyval.node_def_temp) = def_head_save(p, (yyvsp[-1].node_def_temp));
12628 (yyval.node_def_temp)->nd_mid = (yyvsp[0].
id);
12629 (yyval.node_def_temp)->nd_def = NEW_DEFN((yyvsp[0].
id), 0, &(yyloc));
12632#line 12633 "parse.c"
12636#line 3473 "parse.y"
12638 SET_LEX_STATE(EXPR_FNAME);
12640#line 12641 "parse.c"
12644#line 3477 "parse.y"
12646 SET_LEX_STATE(EXPR_ENDFN|EXPR_LABEL);
12647 (yyval.node_def_temp) = def_head_save(p, (yyvsp[-4].node_def_temp));
12648 (yyval.node_def_temp)->nd_mid = (yyvsp[0].
id);
12649 (yyval.node_def_temp)->nd_def = NEW_DEFS((yyvsp[-3].node), (yyvsp[0].id), 0, &(yyloc));
12652#line 12653 "parse.c"
12656#line 3102 "parse.y"
12658 value_expr((yyvsp[0].node));
12659 (yyval.node) = (yyvsp[0].node);
12661#line 12662 "parse.c"
12665#line 3488 "parse.y"
12667 (yyval.node) = NEW_ERROR(&(yyloc));
12669#line 12670 "parse.c"
12673#line 3493 "parse.y"
12675#line 12676 "parse.c"
12679#line 3493 "parse.y"
12681#line 12682 "parse.c"
12685#line 3494 "parse.y"
12687 (yyval.node) = (yyvsp[-2].node);
12690#line 12691 "parse.c"
12694#line 3102 "parse.y"
12696 value_expr((yyvsp[0].node));
12697 (yyval.node) = (yyvsp[0].node);
12699#line 12700 "parse.c"
12703#line 3509 "parse.y"
12705 (yyval.node) = new_qcall(p, (yyvsp[-2].
id), (yyvsp[-3].node), (yyvsp[-1].
id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12708#line 12709 "parse.c"
12712#line 3516 "parse.y"
12714 (yyval.node) = (yyvsp[-1].node);
12715 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
12718#line 12719 "parse.c"
12722#line 3524 "parse.y"
12724 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].
id), 0, &(yyloc));
12727#line 12728 "parse.c"
12731#line 3524 "parse.y"
12733 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].
id), 0, &(yyloc));
12736#line 12737 "parse.c"
12740#line 3524 "parse.y"
12742 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].
id), 0, &(yyloc));
12745#line 12746 "parse.c"
12749#line 3531 "parse.y"
12751 (yyvsp[-1].node_fcall)->nd_args = (yyvsp[0].node);
12752 nd_set_last_loc((yyvsp[-1].node_fcall), (yylsp[0]).end_pos);
12753 (yyval.node) = (
NODE *)(yyvsp[-1].node_fcall);
12756#line 12757 "parse.c"
12760#line 3538 "parse.y"
12762 block_dup_check(p, (yyvsp[-1].node), (yyvsp[0].node));
12763 (yyvsp[-2].node_fcall)->nd_args = (yyvsp[-1].node);
12764 (yyval.node) = method_add_block(p, (
NODE *)(yyvsp[-2].node_fcall), (yyvsp[0].node), &(yyloc));
12765 fixpos((yyval.node), RNODE((yyvsp[-2].node_fcall)));
12766 nd_set_last_loc((yyvsp[-2].node_fcall), (yylsp[-1]).end_pos);
12769#line 12770 "parse.c"
12773#line 3547 "parse.y"
12775 (yyval.node) = new_command_qcall(p, (yyvsp[-2].
id), (yyvsp[-3].node), (yyvsp[-1].
id), (yyvsp[0].node), 0, &(yylsp[-1]), &(yyloc));
12778#line 12779 "parse.c"
12782#line 3552 "parse.y"
12784 (yyval.node) = new_command_qcall(p, (yyvsp[-3].
id), (yyvsp[-4].node), (yyvsp[-2].
id), (yyvsp[-1].node), (yyvsp[0].node), &(yylsp[-2]), &(yyloc));
12787#line 12788 "parse.c"
12791#line 3557 "parse.y"
12793 (yyval.node) = new_command_qcall(p, idCOLON2, (yyvsp[-3].node), (yyvsp[-1].id), (yyvsp[0].node), 0, &(yylsp[-1]), &(yyloc));
12796#line 12797 "parse.c"
12800#line 3562 "parse.y"
12802 (yyval.node) = new_command_qcall(p, idCOLON2, (yyvsp[-4].node), (yyvsp[-2].id), (yyvsp[-1].node), (yyvsp[0].node), &(yylsp[-2]), &(yyloc));
12805#line 12806 "parse.c"
12809#line 3567 "parse.y"
12811 set_embraced_location((yyvsp[-1].node), &(yylsp[-2]), &(yylsp[0]));
12812 (yyval.node) = new_command_qcall(p, idCOLON2, (yyvsp[-5].node), (yyvsp[-3].id), 0, (yyvsp[-1].node), &(yylsp[-3]), &(yyloc));
12815#line 12816 "parse.c"
12819#line 3573 "parse.y"
12821 (yyval.node) = NEW_SUPER((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12822 fixpos((yyval.node), (yyvsp[0].node));
12825#line 12826 "parse.c"
12829#line 3579 "parse.y"
12831 (yyval.node) = NEW_YIELD((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12832 fixpos((yyval.node), (yyvsp[0].node));
12835#line 12836 "parse.c"
12839#line 3585 "parse.y"
12841 (yyval.node) = NEW_RETURN(ret_args(p, (yyvsp[0].node)), &(yyloc), &(yylsp[-1]));
12844#line 12845 "parse.c"
12848#line 3590 "parse.y"
12851 args = ret_args(p, (yyvsp[0].node));
12852 (yyval.node) = add_block_exit(p, NEW_BREAK(args, &(yyloc), &(yylsp[-1])));
12855#line 12856 "parse.c"
12859#line 3597 "parse.y"
12862 args = ret_args(p, (yyvsp[0].node));
12863 (yyval.node) = add_block_exit(p, NEW_NEXT(args, &(yyloc), &(yylsp[-1])));
12866#line 12867 "parse.c"
12870#line 3607 "parse.y"
12872 (yyval.node_masgn) = (yyvsp[-1].node_masgn);
12875#line 12876 "parse.c"
12879#line 3615 "parse.y"
12881 (yyval.node_masgn) = NEW_MASGN(NEW_LIST((
NODE *)(yyvsp[-1].node_masgn), &(yyloc)), 0, &(yyloc));
12884#line 12885 "parse.c"
12888#line 3622 "parse.y"
12890 (yyval.node_masgn) = NEW_MASGN((yyvsp[0].node), 0, &(yyloc));
12893#line 12894 "parse.c"
12897#line 3627 "parse.y"
12899 (yyval.node_masgn) = NEW_MASGN(list_append(p, (yyvsp[-1].node), (yyvsp[0].node)), 0, &(yyloc));
12902#line 12903 "parse.c"
12906#line 3632 "parse.y"
12908 (yyval.node_masgn) = NEW_MASGN((yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
12911#line 12912 "parse.c"
12915#line 3030 "parse.y"
12917 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
12920#line 12921 "parse.c"
12924#line 3035 "parse.y"
12926 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[0].node));
12929#line 12930 "parse.c"
12933#line 3637 "parse.y"
12935 (yyval.node_masgn) = NEW_MASGN((yyvsp[-4].node), NEW_POSTARG((yyvsp[-2].node),(yyvsp[0].node),&(yyloc)), &(yyloc));
12938#line 12939 "parse.c"
12942#line 3642 "parse.y"
12944 (yyval.node_masgn) = NEW_MASGN((yyvsp[-1].node), NODE_SPECIAL_NO_NAME_REST, &(yyloc));
12947#line 12948 "parse.c"
12951#line 3647 "parse.y"
12953 (yyval.node_masgn) = NEW_MASGN((yyvsp[-3].node), NEW_POSTARG(NODE_SPECIAL_NO_NAME_REST, (yyvsp[0].node), &(yyloc)), &(yyloc));
12956#line 12957 "parse.c"
12960#line 3652 "parse.y"
12962 (yyval.node_masgn) = NEW_MASGN(0, (yyvsp[0].node), &(yyloc));
12965#line 12966 "parse.c"
12969#line 3657 "parse.y"
12971 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG((yyvsp[-2].node),(yyvsp[0].node),&(yyloc)), &(yyloc));
12974#line 12975 "parse.c"
12978#line 3662 "parse.y"
12980 (yyval.node_masgn) = NEW_MASGN(0, NODE_SPECIAL_NO_NAME_REST, &(yyloc));
12983#line 12984 "parse.c"
12987#line 3667 "parse.y"
12989 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG(NODE_SPECIAL_NO_NAME_REST, (yyvsp[0].node), &(yyloc)), &(yyloc));
12992#line 12993 "parse.c"
12996#line 3675 "parse.y"
12998 (yyval.node) = (
NODE *)(yyvsp[-1].node_masgn);
13001#line 13002 "parse.c"
13005#line 3682 "parse.y"
13007 (yyval.node) = NEW_LIST((yyvsp[-1].node), &(yylsp[-1]));
13010#line 13011 "parse.c"
13014#line 3687 "parse.y"
13016 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
13019#line 13020 "parse.c"
13023#line 3695 "parse.y"
13026 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
13028#line 13029 "parse.c"
13032#line 3695 "parse.y"
13035 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
13037#line 13038 "parse.c"
13041#line 3700 "parse.y"
13043 (yyval.node) = aryset(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
13046#line 13047 "parse.c"
13050#line 3705 "parse.y"
13052 anddot_multiple_assignment_check(p, &(yylsp[-1]), (yyvsp[-1].
id));
13053 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].
id), &(yyloc));
13056#line 13057 "parse.c"
13060#line 3705 "parse.y"
13062 anddot_multiple_assignment_check(p, &(yylsp[-1]), (yyvsp[-1].
id));
13063 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].
id), &(yyloc));
13066#line 13067 "parse.c"
13070#line 3711 "parse.y"
13072 (yyval.node) = attrset(p, (yyvsp[-2].node), idCOLON2, (yyvsp[0].id), &(yyloc));
13075#line 13076 "parse.c"
13079#line 3716 "parse.y"
13082 (yyval.node) = const_decl(p, NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc)), &(yyloc));
13084#line 13085 "parse.c"
13088#line 3721 "parse.y"
13091 (yyval.node) = const_decl(p, NEW_COLON3((yyvsp[0].
id), &(yyloc)), &(yyloc));
13093#line 13094 "parse.c"
13097#line 3726 "parse.y"
13099 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[0].node));
13100 (yyval.node) = NEW_ERROR(&(yyloc));
13103#line 13104 "parse.c"
13107#line 3734 "parse.y"
13110 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
13112#line 13113 "parse.c"
13116#line 3734 "parse.y"
13119 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
13121#line 13122 "parse.c"
13125#line 3739 "parse.y"
13127 (yyval.node) = aryset(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
13130#line 13131 "parse.c"
13134#line 3744 "parse.y"
13136 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].
id), &(yyloc));
13139#line 13140 "parse.c"
13143#line 3744 "parse.y"
13145 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].
id), &(yyloc));
13148#line 13149 "parse.c"
13152#line 3749 "parse.y"
13154 (yyval.node) = attrset(p, (yyvsp[-2].node), idCOLON2, (yyvsp[0].id), &(yyloc));
13157#line 13158 "parse.c"
13161#line 3754 "parse.y"
13164 (yyval.node) = const_decl(p, NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc)), &(yyloc));
13166#line 13167 "parse.c"
13170#line 3759 "parse.y"
13173 (yyval.node) = const_decl(p, NEW_COLON3((yyvsp[0].
id), &(yyloc)), &(yyloc));
13175#line 13176 "parse.c"
13179#line 3764 "parse.y"
13181 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[0].node));
13182 (yyval.node) = NEW_ERROR(&(yyloc));
13185#line 13186 "parse.c"
13189#line 3772 "parse.y"
13191 static const char mesg[] =
"class/module name must be CONSTANT";
13193 yyerror1(&(yylsp[0]), mesg);
13197#line 13198 "parse.c"
13201#line 3783 "parse.y"
13203 (yyval.node) = NEW_COLON3((yyvsp[0].
id), &(yyloc));
13206#line 13207 "parse.c"
13210#line 3788 "parse.y"
13212 (yyval.node) = NEW_COLON2(0, (yyvsp[0].
id), &(yyloc));
13215#line 13216 "parse.c"
13219#line 3793 "parse.y"
13221 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
13224#line 13225 "parse.c"
13228#line 3801 "parse.y"
13230 SET_LEX_STATE(EXPR_ENDFN);
13231 (yyval.id) = (yyvsp[0].
id);
13233#line 13234 "parse.c"
13237#line 3809 "parse.y"
13239 (yyval.node) = NEW_SYM(rb_id2str((yyvsp[0].
id)), &(yyloc));
13242#line 13243 "parse.c"
13246#line 3817 "parse.y"
13248 (yyval.node) = NEW_UNDEF((yyvsp[0].node), &(yyloc));
13251#line 13252 "parse.c"
13255#line 3821 "parse.y"
13256 {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);}
13257#line 13258 "parse.c"
13261#line 3822 "parse.y"
13263 nd_set_last_loc((yyvsp[-3].node), (yylsp[0]).end_pos);
13264 rb_parser_ary_push_node(p, RNODE_UNDEF((yyvsp[-3].node))->nd_undefs, (yyvsp[0].node));
13267#line 13268 "parse.c"
13271#line 3829 "parse.y"
13272 { (yyval.id) =
'|'; }
13273#line 13274 "parse.c"
13277#line 3830 "parse.y"
13278 { (yyval.id) =
'^'; }
13279#line 13280 "parse.c"
13283#line 3831 "parse.y"
13284 { (yyval.id) =
'&'; }
13285#line 13286 "parse.c"
13289#line 3832 "parse.y"
13290 { (yyval.id) = tCMP; }
13291#line 13292 "parse.c"
13295#line 3833 "parse.y"
13296 { (yyval.id) = tEQ; }
13297#line 13298 "parse.c"
13301#line 3834 "parse.y"
13302 { (yyval.id) = tEQQ; }
13303#line 13304 "parse.c"
13307#line 3835 "parse.y"
13308 { (yyval.id) = tMATCH; }
13309#line 13310 "parse.c"
13313#line 3836 "parse.y"
13314 { (yyval.id) = tNMATCH; }
13315#line 13316 "parse.c"
13319#line 3837 "parse.y"
13320 { (yyval.id) =
'>'; }
13321#line 13322 "parse.c"
13325#line 3838 "parse.y"
13326 { (yyval.id) = tGEQ; }
13327#line 13328 "parse.c"
13331#line 3839 "parse.y"
13332 { (yyval.id) =
'<'; }
13333#line 13334 "parse.c"
13337#line 3840 "parse.y"
13338 { (yyval.id) = tLEQ; }
13339#line 13340 "parse.c"
13343#line 3841 "parse.y"
13344 { (yyval.id) = tNEQ; }
13345#line 13346 "parse.c"
13349#line 3842 "parse.y"
13350 { (yyval.id) = tLSHFT; }
13351#line 13352 "parse.c"
13355#line 3843 "parse.y"
13356 { (yyval.id) = tRSHFT; }
13357#line 13358 "parse.c"
13361#line 3844 "parse.y"
13362 { (yyval.id) =
'+'; }
13363#line 13364 "parse.c"
13367#line 3845 "parse.y"
13368 { (yyval.id) =
'-'; }
13369#line 13370 "parse.c"
13373#line 3846 "parse.y"
13374 { (yyval.id) =
'*'; }
13375#line 13376 "parse.c"
13379#line 3847 "parse.y"
13380 { (yyval.id) =
'*'; }
13381#line 13382 "parse.c"
13385#line 3848 "parse.y"
13386 { (yyval.id) =
'/'; }
13387#line 13388 "parse.c"
13391#line 3849 "parse.y"
13392 { (yyval.id) =
'%'; }
13393#line 13394 "parse.c"
13397#line 3850 "parse.y"
13398 { (yyval.id) = tPOW; }
13399#line 13400 "parse.c"
13403#line 3851 "parse.y"
13404 { (yyval.id) = tDSTAR; }
13405#line 13406 "parse.c"
13409#line 3852 "parse.y"
13410 { (yyval.id) =
'!'; }
13411#line 13412 "parse.c"
13415#line 3853 "parse.y"
13416 { (yyval.id) =
'~'; }
13417#line 13418 "parse.c"
13421#line 3854 "parse.y"
13422 { (yyval.id) = tUPLUS; }
13423#line 13424 "parse.c"
13427#line 3855 "parse.y"
13428 { (yyval.id) = tUMINUS; }
13429#line 13430 "parse.c"
13433#line 3856 "parse.y"
13434 { (yyval.id) = tAREF; }
13435#line 13436 "parse.c"
13439#line 3857 "parse.y"
13440 { (yyval.id) = tASET; }
13441#line 13442 "parse.c"
13445#line 3858 "parse.y"
13446 { (yyval.id) =
'`'; }
13447#line 13448 "parse.c"
13451#line 2918 "parse.y"
13453 (yyval.node) = node_assign(p, (
NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13456#line 13457 "parse.c"
13460#line 3043 "parse.y"
13462 (yyval.node) = new_op_assign(p, (yyvsp[-3].node), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13465#line 13466 "parse.c"
13469#line 3048 "parse.y"
13471 (yyval.node) = new_ary_op_assign(p, (yyvsp[-6].node), (yyvsp[-4].node), (yyvsp[-2].
id), (yyvsp[0].node), &(yylsp[-4]), &(yyloc), &NULL_LOC, &(yylsp[-5]), &(yylsp[-3]), &(yylsp[-2]));
13474#line 13475 "parse.c"
13478#line 3053 "parse.y"
13480 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), (yyvsp[-4].id), (yyvsp[-3].
id), (yyvsp[-2].id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
13483#line 13484 "parse.c"
13487#line 3058 "parse.y"
13489 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), (yyvsp[-4].id), (yyvsp[-3].
id), (yyvsp[-2].id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
13492#line 13493 "parse.c"
13496#line 3063 "parse.y"
13498 (yyval.node) = new_attr_op_assign(p, (yyvsp[-5].node), idCOLON2, (yyvsp[-3].id), (yyvsp[-2].
id), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-3]), &(yylsp[-2]));
13501#line 13502 "parse.c"
13505#line 3068 "parse.y"
13507 YYLTYPE loc = code_loc_gen(&(yylsp[-5]), &(yylsp[-3]));
13508 (yyval.node) = new_const_op_assign(p, NEW_COLON2((yyvsp[-5].node), (yyvsp[-3].
id), &loc), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13511#line 13512 "parse.c"
13515#line 3074 "parse.y"
13517 YYLTYPE loc = code_loc_gen(&(yylsp[-4]), &(yylsp[-3]));
13518 (yyval.node) = new_const_op_assign(p, NEW_COLON3((yyvsp[-3].
id), &loc), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13521#line 13522 "parse.c"
13525#line 3080 "parse.y"
13527 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[-3].node));
13528 (yyval.node) = NEW_ERROR(&(yyloc));
13531#line 13532 "parse.c"
13535#line 3878 "parse.y"
13537 value_expr((yyvsp[-2].node));
13538 value_expr((yyvsp[0].node));
13539 (yyval.node) = NEW_DOT2((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
13542#line 13543 "parse.c"
13546#line 3885 "parse.y"
13548 value_expr((yyvsp[-2].node));
13549 value_expr((yyvsp[0].node));
13550 (yyval.node) = NEW_DOT3((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
13553#line 13554 "parse.c"
13557#line 3892 "parse.y"
13559 value_expr((yyvsp[-1].node));
13560 (yyval.node) = NEW_DOT2((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
13563#line 13564 "parse.c"
13567#line 3898 "parse.y"
13569 value_expr((yyvsp[-1].node));
13570 (yyval.node) = NEW_DOT3((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
13573#line 13574 "parse.c"
13577#line 3904 "parse.y"
13579 value_expr((yyvsp[0].node));
13580 (yyval.node) = NEW_DOT2(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
13583#line 13584 "parse.c"
13587#line 3910 "parse.y"
13589 value_expr((yyvsp[0].node));
13590 (yyval.node) = NEW_DOT3(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
13593#line 13594 "parse.c"
13597#line 3916 "parse.y"
13599 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'+', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13602#line 13603 "parse.c"
13606#line 3921 "parse.y"
13608 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'-', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13611#line 13612 "parse.c"
13615#line 3926 "parse.y"
13617 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'*', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13620#line 13621 "parse.c"
13624#line 3931 "parse.y"
13626 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'/', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13629#line 13630 "parse.c"
13633#line 3936 "parse.y"
13635 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'%', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13638#line 13639 "parse.c"
13642#line 3941 "parse.y"
13644 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idPow, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13647#line 13648 "parse.c"
13651#line 3946 "parse.y"
13653 (yyval.node) = call_uni_op(p, call_bin_op(p, (yyvsp[-2].node), idPow, (yyvsp[0].node), &(yylsp[-2]), &(yyloc)), idUMinus, &(yylsp[-3]), &(yyloc));
13656#line 13657 "parse.c"
13660#line 3951 "parse.y"
13662 (yyval.node) = call_uni_op(p, (yyvsp[0].node), idUPlus, &(yylsp[-1]), &(yyloc));
13665#line 13666 "parse.c"
13669#line 3956 "parse.y"
13671 (yyval.node) = call_uni_op(p, (yyvsp[0].node), idUMinus, &(yylsp[-1]), &(yyloc));
13674#line 13675 "parse.c"
13678#line 3961 "parse.y"
13680 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'|', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13683#line 13684 "parse.c"
13687#line 3966 "parse.y"
13689 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'^', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13692#line 13693 "parse.c"
13696#line 3971 "parse.y"
13698 (yyval.node) = call_bin_op(p, (yyvsp[-2].node),
'&', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13701#line 13702 "parse.c"
13705#line 3976 "parse.y"
13707 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idCmp, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13710#line 13711 "parse.c"
13714#line 3982 "parse.y"
13716 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idEq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13719#line 13720 "parse.c"
13723#line 3987 "parse.y"
13725 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idEqq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13728#line 13729 "parse.c"
13732#line 3992 "parse.y"
13734 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idNeq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13737#line 13738 "parse.c"
13741#line 3997 "parse.y"
13743 (yyval.node) = match_op(p, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13746#line 13747 "parse.c"
13750#line 4002 "parse.y"
13752 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idNeqTilde, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13755#line 13756 "parse.c"
13759#line 4007 "parse.y"
13761 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])),
'!', &(yylsp[-1]), &(yyloc));
13764#line 13765 "parse.c"
13768#line 4012 "parse.y"
13770 (yyval.node) = call_uni_op(p, (yyvsp[0].node),
'~', &(yylsp[-1]), &(yyloc));
13773#line 13774 "parse.c"
13777#line 4017 "parse.y"
13779 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idLTLT, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13782#line 13783 "parse.c"
13786#line 4022 "parse.y"
13788 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idGTGT, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13791#line 13792 "parse.c"
13795#line 4027 "parse.y"
13797 (yyval.node) = logop(p, idANDOP, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13800#line 13801 "parse.c"
13804#line 4032 "parse.y"
13806 (yyval.node) = logop(p, idOROP, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13809#line 13810 "parse.c"
13813#line 4037 "parse.y"
13815 p->ctxt.in_defined = (yyvsp[-1].ctxt).in_defined;
13816 (yyval.node) = new_defined(p, (yyvsp[0].node), &(yyloc));
13819#line 13820 "parse.c"
13823#line 4043 "parse.y"
13825 value_expr((yyvsp[-5].node));
13826 (yyval.node) = new_if(p, (yyvsp[-5].node), (yyvsp[-3].node), (yyvsp[0].node), &(yyloc), &NULL_LOC, &(yylsp[-1]), &NULL_LOC);
13827 fixpos((yyval.node), (yyvsp[-5].node));
13830#line 13831 "parse.c"
13834#line 2948 "parse.y"
13836 endless_method_name(p, (yyvsp[-3].node_def_temp)->nd_mid, &(yylsp[-3]));
13837 restore_defun(p, (yyvsp[-3].node_def_temp));
13838 (yyvsp[0].node) = new_scope_body(p, (yyvsp[-2].node_args), (yyvsp[0].node), &(yyloc));
13839 ((yyval.node) = (yyvsp[-3].node_def_temp)->nd_def)->nd_loc = (yyloc);
13840 RNODE_DEFN((yyval.node))->nd_defn = (yyvsp[0].node);
13845#line 13846 "parse.c"
13849#line 2959 "parse.y"
13851 endless_method_name(p, (yyvsp[-3].node_def_temp)->nd_mid, &(yylsp[-3]));
13852 restore_defun(p, (yyvsp[-3].node_def_temp));
13853 (yyvsp[0].node) = new_scope_body(p, (yyvsp[-2].node_args), (yyvsp[0].node), &(yyloc));
13854 ((yyval.node) = (yyvsp[-3].node_def_temp)->nd_def)->nd_loc = (yyloc);
13855 RNODE_DEFS((yyval.node))->nd_defn = (yyvsp[0].node);
13860#line 13861 "parse.c"
13864#line 4055 "parse.y"
13866 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
13867 (yyval.node) = rescued_expr(p, (yyvsp[-3].node), (yyvsp[0].node), &(yylsp[-3]), &(yylsp[-2]), &(yylsp[0]));
13870#line 13871 "parse.c"
13874#line 4061 "parse.y"
13876 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
13879#line 13880 "parse.c"
13883#line 4067 "parse.y"
13884 {(yyval.id) =
'>';}
13885#line 13886 "parse.c"
13889#line 4068 "parse.y"
13890 {(yyval.id) =
'<';}
13891#line 13892 "parse.c"
13895#line 4069 "parse.y"
13896 {(yyval.id) = idGE;}
13897#line 13898 "parse.c"
13901#line 4070 "parse.y"
13902 {(yyval.id) = idLE;}
13903#line 13904 "parse.c"
13907#line 4074 "parse.y"
13909 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13912#line 13913 "parse.c"
13916#line 4079 "parse.y"
13918 rb_warning1(
"comparison '%s' after comparison", WARN_ID((yyvsp[-1].
id)));
13919 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13922#line 13923 "parse.c"
13926#line 4087 "parse.y"
13928 (yyval.ctxt) = p->ctxt;
13930#line 13931 "parse.c"
13934#line 4093 "parse.y"
13936 p->ctxt.in_defined = 1;
13937 (yyval.ctxt) = (yyvsp[0].ctxt);
13939#line 13940 "parse.c"
13943#line 4100 "parse.y"
13945 p->ctxt.in_rescue = after_rescue;
13946 (yyval.ctxt) = (yyvsp[0].ctxt);
13948#line 13949 "parse.c"
13952#line 3102 "parse.y"
13954 value_expr((yyvsp[0].node));
13955 (yyval.node) = (yyvsp[0].node);
13957#line 13958 "parse.c"
13961#line 4112 "parse.y"
13963 (yyval.node) = (yyvsp[-1].node) ? arg_append(p, (yyvsp[-3].node), new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : (yyvsp[-3].node);
13966#line 13967 "parse.c"
13970#line 4117 "parse.y"
13972 (yyval.node) = (yyvsp[-1].node) ? NEW_LIST(new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : 0;
13975#line 13976 "parse.c"
13979#line 4124 "parse.y"
13981 value_expr((yyvsp[0].node));
13982 (yyval.node) = (yyvsp[0].node);
13984#line 13985 "parse.c"
13988#line 4129 "parse.y"
13990 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
13991 value_expr((yyvsp[-3].node));
13992 (yyval.node) = rescued_expr(p, (yyvsp[-3].node), (yyvsp[0].node), &(yylsp[-3]), &(yylsp[-2]), &(yylsp[0]));
13995#line 13996 "parse.c"
13999#line 4138 "parse.y"
14001 (yyval.node) = (yyvsp[-1].node);
14004#line 14005 "parse.c"
14008#line 4143 "parse.y"
14010 if (!check_forwarding_args(p)) {
14014 (yyval.node) = new_args_forward_call(p, (yyvsp[-3].node), &(yylsp[-1]), &(yyloc));
14018#line 14019 "parse.c"
14022#line 4153 "parse.y"
14024 if (!check_forwarding_args(p)) {
14028 (yyval.node) = new_args_forward_call(p, 0, &(yylsp[-1]), &(yyloc));
14032#line 14033 "parse.c"
14036#line 4166 "parse.y"
14038 (yyval.node) = (yyvsp[0].node) ? (yyvsp[0].node) : NODE_SPECIAL_EMPTY_ARGS;
14040#line 14041 "parse.c"
14044#line 4175 "parse.y"
14046 (yyval.node) = (yyvsp[-1].node) ? arg_append(p, (yyvsp[-3].node), new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : (yyvsp[-3].node);
14049#line 14050 "parse.c"
14053#line 4180 "parse.y"
14055 (yyval.node) = (yyvsp[-1].node) ? NEW_LIST(new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yylsp[-1])) : 0;
14058#line 14059 "parse.c"
14062#line 3102 "parse.y"
14064 value_expr((yyvsp[0].node));
14065 (yyval.node) = (yyvsp[0].node);
14067#line 14068 "parse.c"
14071#line 4187 "parse.y"
14073 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
14076#line 14077 "parse.c"
14080#line 4192 "parse.y"
14082 (yyval.node) = arg_blk_pass((yyvsp[-1].node), (yyvsp[0].node_block_pass));
14085#line 14086 "parse.c"
14089#line 4197 "parse.y"
14091 (yyval.node) = (yyvsp[-1].node) ? NEW_LIST(new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yylsp[-1])) : 0;
14092 (yyval.node) = arg_blk_pass((yyval.node), (yyvsp[0].node_block_pass));
14095#line 14096 "parse.c"
14099#line 4203 "parse.y"
14101 (yyval.node) = (yyvsp[-1].node) ? arg_append(p, (yyvsp[-3].node), new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : (yyvsp[-3].node);
14102 (yyval.node) = arg_blk_pass((yyval.node), (yyvsp[0].node_block_pass));
14105#line 14106 "parse.c"
14109#line 4212 "parse.y"
14120 case '(':
case tLPAREN:
case tLPAREN_ARG:
case '[':
case tLBRACK:
14123 if (lookahead) CMDARG_POP();
14125 if (lookahead) CMDARG_PUSH(0);
14127#line 14128 "parse.c"
14131#line 4230 "parse.y"
14144 if (lookahead) CMDARG_POP();
14146 if (lookahead) CMDARG_PUSH(0);
14147 (yyval.node) = (yyvsp[0].node);
14150#line 14151 "parse.c"
14154#line 4251 "parse.y"
14156 (yyval.node_block_pass) = NEW_BLOCK_PASS((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14159#line 14160 "parse.c"
14163#line 4256 "parse.y"
14165 forwarding_arg_check(p, idFWD_BLOCK, idFWD_ALL,
"block");
14166 (yyval.node_block_pass) = NEW_BLOCK_PASS(NEW_LVAR(idFWD_BLOCK, &(yylsp[0])), &(yyloc), &(yylsp[0]));
14169#line 14170 "parse.c"
14173#line 4264 "parse.y"
14175 (yyval.node_block_pass) = (yyvsp[0].node_block_pass);
14178#line 14179 "parse.c"
14182#line 4269 "parse.y"
14184 (yyval.node_block_pass) = 0;
14187#line 14188 "parse.c"
14191#line 4277 "parse.y"
14193 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
14196#line 14197 "parse.c"
14200#line 4282 "parse.y"
14202 (yyval.node) = (yyvsp[0].node);
14205#line 14206 "parse.c"
14209#line 4287 "parse.y"
14211 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
14214#line 14215 "parse.c"
14218#line 4292 "parse.y"
14220 (yyval.node) = rest_arg_append(p, (yyvsp[-2].node), RNODE_SPLAT((yyvsp[0].node))->nd_head, &(yyloc));
14223#line 14224 "parse.c"
14227#line 4300 "parse.y"
14229 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14232#line 14233 "parse.c"
14236#line 4305 "parse.y"
14238 forwarding_arg_check(p, idFWD_REST, idFWD_ALL,
"rest");
14239 (yyval.node) = NEW_SPLAT(NEW_LVAR(idFWD_REST, &(yylsp[0])), &(yyloc), &(yylsp[0]));
14242#line 14243 "parse.c"
14246#line 4319 "parse.y"
14248 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
14251#line 14252 "parse.c"
14255#line 4324 "parse.y"
14257 (yyval.node) = rest_arg_append(p, (yyvsp[-3].node), (yyvsp[0].node), &(yyloc));
14260#line 14261 "parse.c"
14264#line 4329 "parse.y"
14266 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14269#line 14270 "parse.c"
14273#line 4350 "parse.y"
14275 (yyval.node) = (
NODE *)NEW_FCALL((yyvsp[0].
id), 0, &(yyloc));
14278#line 14279 "parse.c"
14282#line 4355 "parse.y"
14286#line 14287 "parse.c"
14290#line 4360 "parse.y"
14293 set_line_body((yyvsp[-1].node), (yylsp[-3]).end_pos.lineno);
14294 (yyval.node) = NEW_BEGIN((yyvsp[-1].node), &(yyloc));
14295 nd_set_line((yyval.node), (yylsp[-3]).end_pos.lineno);
14298#line 14299 "parse.c"
14302#line 4367 "parse.y"
14303 {SET_LEX_STATE(EXPR_ENDARG);}
14304#line 14305 "parse.c"
14308#line 4368 "parse.y"
14310 if (nd_type_p((yyvsp[-2].node), NODE_SELF)) RNODE_SELF((yyvsp[-2].node))->nd_state = 0;
14311 (yyval.node) = (yyvsp[-2].node);
14314#line 14315 "parse.c"
14318#line 4374 "parse.y"
14320 if (nd_type_p((yyvsp[-1].node), NODE_SELF)) RNODE_SELF((yyvsp[-1].node))->nd_state = 0;
14321 (yyval.node) = NEW_BLOCK((yyvsp[-1].node), &(yyloc));
14324#line 14325 "parse.c"
14328#line 4380 "parse.y"
14330 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
14333#line 14334 "parse.c"
14337#line 4385 "parse.y"
14339 (yyval.node) = NEW_COLON3((yyvsp[0].
id), &(yyloc));
14342#line 14343 "parse.c"
14346#line 4390 "parse.y"
14348 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
14351#line 14352 "parse.c"
14355#line 4395 "parse.y"
14357 (yyval.node) = new_hash(p, (yyvsp[-1].node), &(yyloc));
14358 RNODE_HASH((yyval.node))->nd_brace = TRUE;
14361#line 14362 "parse.c"
14365#line 4401 "parse.y"
14367 (yyval.node) = NEW_RETURN(0, &(yyloc), &(yylsp[0]));
14370#line 14371 "parse.c"
14374#line 4406 "parse.y"
14376 (yyval.node) = NEW_YIELD((yyvsp[-1].node), &(yyloc), &(yylsp[-3]), &(yylsp[-2]), &(yylsp[0]));
14379#line 14380 "parse.c"
14383#line 4411 "parse.y"
14385 (yyval.node) = NEW_YIELD(0, &(yyloc), &(yylsp[-2]), &(yylsp[-1]), &(yylsp[0]));
14388#line 14389 "parse.c"
14392#line 4416 "parse.y"
14394 (yyval.node) = NEW_YIELD(0, &(yyloc), &(yylsp[0]), &NULL_LOC, &NULL_LOC);
14397#line 14398 "parse.c"
14401#line 4421 "parse.y"
14403 p->ctxt.in_defined = (yyvsp[-2].ctxt).in_defined;
14404 (yyval.node) = new_defined(p, (yyvsp[-1].node), &(yyloc));
14407#line 14408 "parse.c"
14411#line 4427 "parse.y"
14413 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[-1].node), &(yylsp[-1])), METHOD_NOT, &(yylsp[-3]), &(yyloc));
14416#line 14417 "parse.c"
14420#line 4432 "parse.y"
14422 (yyval.node) = call_uni_op(p, method_cond(p, new_nil(&(yylsp[-1])), &(yylsp[-1])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
14425#line 14426 "parse.c"
14429#line 4437 "parse.y"
14431 (yyval.node) = method_add_block(p, (
NODE *)(yyvsp[-1].node_fcall), (yyvsp[0].node), &(yyloc));
14434#line 14435 "parse.c"
14438#line 4443 "parse.y"
14440 block_dup_check(p, get_nd_args(p, (yyvsp[-1].node)), (yyvsp[0].node));
14441 (yyval.node) = method_add_block(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
14444#line 14445 "parse.c"
14448#line 4453 "parse.y"
14450 if ((yyvsp[-1].node) && nd_type_p((yyvsp[-1].node), NODE_IF))
14451 RNODE_IF((yyvsp[-1].node))->end_keyword_loc = (yylsp[0]);
14453 (yyval.node) = new_if(p, (yyvsp[-4].node), (yyvsp[-2].node), (yyvsp[-1].node), &(yyloc), &(yylsp[-5]), &(yylsp[-3]), &(yylsp[0]));
14454 fixpos((yyval.node), (yyvsp[-4].node));
14457#line 14458 "parse.c"
14461#line 4465 "parse.y"
14463 (yyval.node) = new_unless(p, (yyvsp[-4].node), (yyvsp[-2].node), (yyvsp[-1].node), &(yyloc), &(yylsp[-5]), &(yylsp[-3]), &(yylsp[0]));
14464 fixpos((yyval.node), (yyvsp[-4].node));
14467#line 14468 "parse.c"
14471#line 4473 "parse.y"
14473 restore_block_exit(p, (yyvsp[-3].node_exits));
14474 (yyval.node) = NEW_WHILE(cond(p, (yyvsp[-2].node), &(yylsp[-2])), (yyvsp[-1].node), 1, &(yyloc), &(yylsp[-3]), &(yylsp[0]));
14475 fixpos((yyval.node), (yyvsp[-2].node));
14478#line 14479 "parse.c"
14482#line 4482 "parse.y"
14484 restore_block_exit(p, (yyvsp[-3].node_exits));
14485 (yyval.node) = NEW_UNTIL(cond(p, (yyvsp[-2].node), &(yylsp[-2])), (yyvsp[-1].node), 1, &(yyloc), &(yylsp[-3]), &(yylsp[0]));
14486 fixpos((yyval.node), (yyvsp[-2].node));
14489#line 14490 "parse.c"
14493#line 4489 "parse.y"
14495 (yyval.labels) = p->case_labels;
14496 p->case_labels = CHECK_LITERAL_WHEN;
14498#line 14499 "parse.c"
14502#line 4495 "parse.y"
14504 if (CASE_LABELS_ENABLED_P(p->case_labels)) st_free_table(p->case_labels);
14505 p->case_labels = (yyvsp[-2].labels);
14506 (yyval.node) = NEW_CASE((yyvsp[-4].node), (yyvsp[-1].node), &(yyloc), &(yylsp[-5]), &(yylsp[0]));
14507 fixpos((yyval.node), (yyvsp[-4].node));
14510#line 14511 "parse.c"
14514#line 4503 "parse.y"
14516 (yyval.labels) = p->case_labels;
14517 p->case_labels = 0;
14519#line 14520 "parse.c"
14523#line 4509 "parse.y"
14525 if (p->case_labels) st_free_table(p->case_labels);
14526 p->case_labels = (yyvsp[-2].labels);
14527 (yyval.node) = NEW_CASE2((yyvsp[-1].node), &(yyloc), &(yylsp[-4]), &(yylsp[0]));
14530#line 14531 "parse.c"
14534#line 4518 "parse.y"
14536 (yyval.node) = NEW_CASE3((yyvsp[-3].node), (yyvsp[-1].node), &(yyloc), &(yylsp[-4]), &(yylsp[0]));
14539#line 14540 "parse.c"
14543#line 4523 "parse.y"
14545#line 14546 "parse.c"
14549#line 4523 "parse.y"
14551#line 14552 "parse.c"
14555#line 4526 "parse.y"
14557 restore_block_exit(p, (yyvsp[-8].node_exits));
14567 ID id = internal_id(p);
14570 NODE *scope, *internal_var = NEW_DVAR(
id, &(yylsp[-7]));
14574 switch (nd_type((yyvsp[-7].node))) {
14577 set_nd_value(p, (yyvsp[-7].node), internal_var);
14580 m->nd_next = (yyvsp[-7].node);
14583 m->nd_next = node_assign(p, (yyvsp[-7].node), NEW_FOR_MASGN(internal_var, &(yylsp[-7])), NO_LEX_CTXT, &(yylsp[-7]));
14586 m->nd_next = node_assign(p, (
NODE *)NEW_MASGN(NEW_LIST((yyvsp[-7].node), &(yylsp[-7])), 0, &(yylsp[-7])), internal_var, NO_LEX_CTXT, &(yylsp[-7]));
14589 args = new_args(p, m, 0,
id, 0, new_args_tail(p, 0, 0, 0, &(yylsp[-7])), &(yylsp[-7]));
14590 scope = NEW_SCOPE2(tbl, args, (yyvsp[-1].node), &(yyloc));
14591 YYLTYPE do_keyword_loc = (yyvsp[-3].id) == keyword_do_cond ? (yylsp[-3]) : NULL_LOC;
14592 (yyval.node) = NEW_FOR((yyvsp[-4].node), scope, &(yyloc), &(yylsp[-8]), &(yylsp[-6]), &do_keyword_loc, &(yylsp[0]));
14593 fixpos((yyval.node), (yyvsp[-7].node));
14596#line 14597 "parse.c"
14600#line 4567 "parse.y"
14602 begin_definition(
"class", &(yylsp[-2]), &(yylsp[-1]));
14604#line 14605 "parse.c"
14608#line 4572 "parse.y"
14610 YYLTYPE inheritance_operator_loc = NULL_LOC;
14611 if ((yyvsp[-3].node)) {
14612 inheritance_operator_loc = (yylsp[-3]);
14613 inheritance_operator_loc.end_pos.column = inheritance_operator_loc.beg_pos.column + 1;
14615 (yyval.node) = NEW_CLASS((yyvsp[-4].node), (yyvsp[-1].node), (yyvsp[-3].node), &(yyloc), &(yylsp[-5]), &inheritance_operator_loc, &(yylsp[0]));
14616 nd_set_line(RNODE_CLASS((yyval.node))->nd_body, (yylsp[0]).end_pos.lineno);
14617 set_line_body((yyvsp[-1].node), (yylsp[-3]).end_pos.lineno);
14618 nd_set_line((yyval.node), (yylsp[-3]).end_pos.lineno);
14621 p->ctxt.in_class = (yyvsp[-5].ctxt).in_class;
14622 p->ctxt.cant_return = (yyvsp[-5].ctxt).cant_return;
14623 p->ctxt.shareable_constant_value = (yyvsp[-5].ctxt).shareable_constant_value;
14625#line 14626 "parse.c"
14629#line 4589 "parse.y"
14631 begin_definition(
"", &(yylsp[-2]), &(yylsp[-1]));
14633#line 14634 "parse.c"
14637#line 4595 "parse.y"
14639 (yyval.node) = NEW_SCLASS((yyvsp[-4].node), (yyvsp[-1].node), &(yyloc));
14640 nd_set_line(RNODE_SCLASS((yyval.node))->nd_body, (yylsp[0]).end_pos.lineno);
14641 set_line_body((yyvsp[-1].node), nd_line((yyvsp[-4].node)));
14642 fixpos((yyval.node), (yyvsp[-4].node));
14645 p->ctxt.in_def = (yyvsp[-6].ctxt).in_def;
14646 p->ctxt.in_class = (yyvsp[-6].ctxt).in_class;
14647 p->ctxt.cant_return = (yyvsp[-6].ctxt).cant_return;
14648 p->ctxt.shareable_constant_value = (yyvsp[-6].ctxt).shareable_constant_value;
14650#line 14651 "parse.c"
14654#line 4608 "parse.y"
14656 begin_definition(
"module", &(yylsp[-1]), &(yylsp[0]));
14658#line 14659 "parse.c"
14662#line 4613 "parse.y"
14664 (yyval.node) = NEW_MODULE((yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
14665 nd_set_line(RNODE_MODULE((yyval.node))->nd_body, (yylsp[0]).end_pos.lineno);
14666 set_line_body((yyvsp[-1].node), (yylsp[-3]).end_pos.lineno);
14667 nd_set_line((yyval.node), (yylsp[-3]).end_pos.lineno);
14670 p->ctxt.in_class = (yyvsp[-4].ctxt).in_class;
14671 p->ctxt.cant_return = (yyvsp[-4].ctxt).cant_return;
14672 p->ctxt.shareable_constant_value = (yyvsp[-4].ctxt).shareable_constant_value;
14674#line 14675 "parse.c"
14678#line 4626 "parse.y"
14680 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14682#line 14683 "parse.c"
14686#line 4631 "parse.y"
14688 restore_defun(p, (yyvsp[-4].node_def_temp));
14689 (yyvsp[-1].node) = new_scope_body(p, (yyvsp[-3].node_args), (yyvsp[-1].node), &(yyloc));
14690 ((yyval.node) = (yyvsp[-4].node_def_temp)->nd_def)->nd_loc = (yyloc);
14691 RNODE_DEFN((yyval.node))->nd_defn = (yyvsp[-1].node);
14695#line 14696 "parse.c"
14699#line 4641 "parse.y"
14701 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14703#line 14704 "parse.c"
14707#line 4646 "parse.y"
14709 restore_defun(p, (yyvsp[-4].node_def_temp));
14710 (yyvsp[-1].node) = new_scope_body(p, (yyvsp[-3].node_args), (yyvsp[-1].node), &(yyloc));
14711 ((yyval.node) = (yyvsp[-4].node_def_temp)->nd_def)->nd_loc = (yyloc);
14712 RNODE_DEFS((yyval.node))->nd_defn = (yyvsp[-1].node);
14716#line 14717 "parse.c"
14720#line 4655 "parse.y"
14722 (yyval.node) = add_block_exit(p, NEW_BREAK(0, &(yyloc), &(yylsp[0])));
14725#line 14726 "parse.c"
14729#line 4660 "parse.y"
14731 (yyval.node) = add_block_exit(p, NEW_NEXT(0, &(yyloc), &(yylsp[0])));
14734#line 14735 "parse.c"
14738#line 4665 "parse.y"
14740 (yyval.node) = add_block_exit(p, NEW_REDO(&(yyloc), &(yylsp[0])));
14743#line 14744 "parse.c"
14747#line 4670 "parse.y"
14749 if (!p->ctxt.in_defined) {
14750 switch (p->ctxt.in_rescue) {
14751 case before_rescue: yyerror1(&(yylsp[0]),
"Invalid retry without rescue");
break;
14752 case after_rescue:
break;
14753 case after_else: yyerror1(&(yylsp[0]),
"Invalid retry after else");
break;
14754 case after_ensure: yyerror1(&(yylsp[0]),
"Invalid retry after ensure");
break;
14757 (yyval.node) = NEW_RETRY(&(yyloc));
14760#line 14761 "parse.c"
14764#line 3102 "parse.y"
14766 value_expr((yyvsp[0].node));
14767 (yyval.node) = (yyvsp[0].node);
14769#line 14770 "parse.c"
14773#line 4688 "parse.y"
14775 token_info_push(p,
"begin", &(yyloc));
14776 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14778#line 14779 "parse.c"
14782#line 4695 "parse.y"
14785 token_info_push(p,
"if", &(yyloc));
14786 if (p->token_info && p->token_info->nonspc &&
14787 p->token_info->next && !strcmp(p->token_info->next->token,
"else")) {
14789 const char *beg = p->lex.pbeg + p->token_info->next->beg.column;
14791 while (beg < tok &&
ISSPACE(*beg)) beg++;
14793 p->token_info->nonspc = 0;
14796 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14798#line 14799 "parse.c"
14802#line 4713 "parse.y"
14804 token_info_push(p,
"unless", &(yyloc));
14805 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14807#line 14808 "parse.c"
14811#line 4720 "parse.y"
14813 (yyval.node_exits) = (yyvsp[0].node_exits);
14814 token_info_push(p,
"while", &(yyloc));
14815 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14817#line 14818 "parse.c"
14821#line 4728 "parse.y"
14823 (yyval.node_exits) = (yyvsp[0].node_exits);
14824 token_info_push(p,
"until", &(yyloc));
14825 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14827#line 14828 "parse.c"
14831#line 4736 "parse.y"
14833 token_info_push(p,
"case", &(yyloc));
14834 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14836#line 14837 "parse.c"
14840#line 4743 "parse.y"
14842 (yyval.node_exits) = (yyvsp[0].node_exits);
14843 token_info_push(p,
"for", &(yyloc));
14844 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14846#line 14847 "parse.c"
14850#line 4751 "parse.y"
14852 token_info_push(p,
"class", &(yyloc));
14853 (yyval.ctxt) = p->ctxt;
14854 p->ctxt.in_rescue = before_rescue;
14855 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14857#line 14858 "parse.c"
14861#line 4760 "parse.y"
14863 token_info_push(p,
"module", &(yyloc));
14864 (yyval.ctxt) = p->ctxt;
14865 p->ctxt.in_rescue = before_rescue;
14866 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14868#line 14869 "parse.c"
14872#line 4769 "parse.y"
14874 token_info_push(p,
"def", &(yyloc));
14875 (yyval.node_def_temp) = NEW_DEF_TEMP(&(yyloc));
14876 p->ctxt.in_argdef = 1;
14878#line 14879 "parse.c"
14882#line 4777 "parse.y"
14884 token_info_push(p,
"do", &(yyloc));
14885 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14887#line 14888 "parse.c"
14891#line 4784 "parse.y"
14893 token_info_push(p,
"do", &(yyloc));
14894 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14896#line 14897 "parse.c"
14900#line 4791 "parse.y"
14902 token_info_warn(p,
"rescue", p->token_info, 1, &(yyloc));
14903 (yyval.ctxt) = p->ctxt;
14904 p->ctxt.in_rescue = after_rescue;
14906#line 14907 "parse.c"
14910#line 4799 "parse.y"
14912 token_info_warn(p,
"ensure", p->token_info, 1, &(yyloc));
14913 (yyval.ctxt) = p->ctxt;
14915#line 14916 "parse.c"
14919#line 4806 "parse.y"
14921 token_info_warn(p,
"when", p->token_info, 0, &(yyloc));
14923#line 14924 "parse.c"
14927#line 4812 "parse.y"
14930 int same = ptinfo_beg && strcmp(ptinfo_beg->token,
"case") != 0;
14931 token_info_warn(p,
"else", p->token_info, same, &(yyloc));
14934 e.next = ptinfo_beg->next;
14936 token_info_setup(&e, p->lex.pbeg, &(yyloc));
14937 if (!e.nonspc) *ptinfo_beg = e;
14940#line 14941 "parse.c"
14944#line 4827 "parse.y"
14947 token_info_warn(p,
"elsif", p->token_info, 1, &(yyloc));
14949#line 14950 "parse.c"
14953#line 4834 "parse.y"
14955 token_info_pop(p,
"end", &(yyloc));
14956 pop_end_expect_token_locations(p);
14958#line 14959 "parse.c"
14962#line 4839 "parse.y"
14964 compile_error(p,
"syntax error, unexpected end-of-input");
14966#line 14967 "parse.c"
14970#line 4845 "parse.y"
14972 if (p->ctxt.cant_return && !dyna_in_block(p))
14973 yyerror1(&(yylsp[0]),
"Invalid return in class/module body");
14975#line 14976 "parse.c"
14979#line 4852 "parse.y"
14981 if (!p->ctxt.in_defined && !p->ctxt.in_def && !compile_for_eval)
14982 yyerror1(&(yylsp[0]),
"Invalid yield");
14984#line 14985 "parse.c"
14988#line 4864 "parse.y"
14989 { (yyval.id) = keyword_do_cond; }
14990#line 14991 "parse.c"
14994#line 4871 "parse.y"
14996 (yyval.node) = new_if(p, (yyvsp[-3].node), (yyvsp[-1].node), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-2]), &NULL_LOC);
14997 fixpos((yyval.node), (yyvsp[-3].node));
15000#line 15001 "parse.c"
15004#line 4880 "parse.y"
15006 (yyval.node) = (yyvsp[0].node);
15009#line 15010 "parse.c"
15013#line 4891 "parse.y"
15015 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
15016 mark_lvar_used(p, (yyval.node));
15018#line 15019 "parse.c"
15022#line 4896 "parse.y"
15024 (yyval.node) = (
NODE *)(yyvsp[-1].node_masgn);
15027#line 15028 "parse.c"
15031#line 3030 "parse.y"
15033 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
15036#line 15037 "parse.c"
15040#line 3035 "parse.y"
15042 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[0].node));
15045#line 15046 "parse.c"
15049#line 4904 "parse.y"
15051 (yyval.node_masgn) = NEW_MASGN((yyvsp[0].node), 0, &(yyloc));
15054#line 15055 "parse.c"
15058#line 4909 "parse.y"
15060 (yyval.node_masgn) = NEW_MASGN((yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
15063#line 15064 "parse.c"
15067#line 4914 "parse.y"
15069 (yyval.node_masgn) = NEW_MASGN((yyvsp[-4].node), NEW_POSTARG((yyvsp[-2].node), (yyvsp[0].node), &(yyloc)), &(yyloc));
15072#line 15073 "parse.c"
15076#line 4919 "parse.y"
15078 (yyval.node_masgn) = NEW_MASGN(0, (yyvsp[0].node), &(yyloc));
15081#line 15082 "parse.c"
15085#line 4924 "parse.y"
15087 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG((yyvsp[-2].node), (yyvsp[0].node), &(yyloc)), &(yyloc));
15090#line 15091 "parse.c"
15094#line 4931 "parse.y"
15097 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
15098 mark_lvar_used(p, (yyval.node));
15100#line 15101 "parse.c"
15104#line 4937 "parse.y"
15106 (yyval.node) = NODE_SPECIAL_NO_NAME_REST;
15109#line 15110 "parse.c"
15113#line 4945 "parse.y"
15115 (yyval.id) = idNil;
15118#line 15119 "parse.c"
15122#line 4951 "parse.y"
15123 {p->ctxt.in_argdef = 0;}
15124#line 15125 "parse.c"
15128#line 3002 "parse.y"
15130 p->ctxt.in_argdef = 1;
15131 (yyval.node_kw_arg) = new_kw_arg(p, assignable(p, (yyvsp[-1].
id), (yyvsp[0].node), &(yyloc)), &(yyloc));
15134#line 15135 "parse.c"
15138#line 3008 "parse.y"
15140 p->ctxt.in_argdef = 1;
15141 (yyval.node_kw_arg) = new_kw_arg(p, assignable(p, (yyvsp[0].
id), NODE_SPECIAL_REQUIRED_KEYWORD, &(yyloc)), &(yyloc));
15144#line 15145 "parse.c"
15148#line 3017 "parse.y"
15150 (yyval.node_kw_arg) = (yyvsp[0].node_kw_arg);
15153#line 15154 "parse.c"
15157#line 3022 "parse.y"
15159 (yyval.node_kw_arg) = kwd_append((yyvsp[-2].node_kw_arg), (yyvsp[0].node_kw_arg));
15162#line 15163 "parse.c"
15166#line 2926 "parse.y"
15168 (yyval.node_args) = new_args_tail(p, (yyvsp[-3].node_kw_arg), (yyvsp[-1].id), (yyvsp[0].
id), &(yylsp[-1]));
15171#line 15172 "parse.c"
15175#line 2931 "parse.y"
15177 (yyval.node_args) = new_args_tail(p, (yyvsp[-1].node_kw_arg), 0, (yyvsp[0].id), &(yylsp[-1]));
15180#line 15181 "parse.c"
15184#line 2936 "parse.y"
15186 (yyval.node_args) = new_args_tail(p, 0, (yyvsp[-1].
id), (yyvsp[0].id), &(yylsp[-1]));
15189#line 15190 "parse.c"
15193#line 2941 "parse.y"
15195 (yyval.node_args) = new_args_tail(p, 0, 0, (yyvsp[0].
id), &(yylsp[0]));
15198#line 15199 "parse.c"
15202#line 4957 "parse.y"
15205 (yyval.id) = NODE_SPECIAL_EXCESSIVE_COMMA;
15208#line 15209 "parse.c"
15212#line 2980 "parse.y"
15214 p->ctxt.in_argdef = 1;
15215 (yyval.node_opt_arg) = NEW_OPT_ARG(assignable(p, (yyvsp[-2].
id), (yyvsp[0].node), &(yyloc)), &(yyloc));
15218#line 15219 "parse.c"
15222#line 2989 "parse.y"
15224 (yyval.node_opt_arg) = (yyvsp[0].node_opt_arg);
15227#line 15228 "parse.c"
15231#line 2994 "parse.y"
15233 (yyval.node_opt_arg) = opt_arg_append((yyvsp[-2].node_opt_arg), (yyvsp[0].node_opt_arg));
15236#line 15237 "parse.c"
15240#line 3089 "parse.y"
15242 (yyval.node_args) = (yyvsp[0].node_args);
15245#line 15246 "parse.c"
15249#line 3094 "parse.y"
15251 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
15254#line 15255 "parse.c"
15258#line 4965 "parse.y"
15260 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), (yyvsp[-3].node_opt_arg), (yyvsp[-1].
id), 0, (yyvsp[0].node_args), &(yyloc));
15263#line 15264 "parse.c"
15267#line 4970 "parse.y"
15269 (yyval.node_args) = new_args(p, (yyvsp[-7].node_args_aux), (yyvsp[-5].node_opt_arg), (yyvsp[-3].
id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15272#line 15273 "parse.c"
15276#line 4975 "parse.y"
15278 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
15281#line 15282 "parse.c"
15285#line 4980 "parse.y"
15287 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15290#line 15291 "parse.c"
15294#line 4985 "parse.y"
15296 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
15299#line 15300 "parse.c"
15303#line 4990 "parse.y"
15305 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
15306 (yyval.node_args) = new_args(p, (yyvsp[-1].node_args_aux), 0, (yyvsp[0].id), 0, (yyval.node_args), &(yyloc));
15309#line 15310 "parse.c"
15313#line 4996 "parse.y"
15315 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), 0, (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15318#line 15319 "parse.c"
15322#line 5001 "parse.y"
15324 (yyval.node_args) = new_args(p, (yyvsp[-1].node_args_aux), 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
15327#line 15328 "parse.c"
15331#line 5006 "parse.y"
15333 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
15336#line 15337 "parse.c"
15340#line 5011 "parse.y"
15342 (yyval.node_args) = new_args(p, 0, (yyvsp[-5].node_opt_arg), (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15345#line 15346 "parse.c"
15349#line 5016 "parse.y"
15351 (yyval.node_args) = new_args(p, 0, (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
15354#line 15355 "parse.c"
15358#line 5021 "parse.y"
15360 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15363#line 15364 "parse.c"
15367#line 5026 "parse.y"
15369 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-1].
id), 0, (yyvsp[0].node_args), &(yyloc));
15372#line 15373 "parse.c"
15376#line 5031 "parse.y"
15378 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-3].
id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15381#line 15382 "parse.c"
15385#line 5036 "parse.y"
15387 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
15390#line 15391 "parse.c"
15394#line 5044 "parse.y"
15396 p->command_start = TRUE;
15398#line 15399 "parse.c"
15402#line 5050 "parse.y"
15404 p->max_numparam = ORDINAL_PARAM;
15405 p->ctxt.in_argdef = 0;
15406 (yyval.node_args) = (yyvsp[-2].node_args);
15409#line 15410 "parse.c"
15413#line 5059 "parse.y"
15415 (yyval.node_args) = 0;
15418#line 15419 "parse.c"
15422#line 5067 "parse.y"
15427#line 15428 "parse.c"
15431#line 5072 "parse.y"
15436#line 15437 "parse.c"
15440#line 5085 "parse.y"
15442 new_bv(p, (yyvsp[0].
id));
15445#line 15446 "parse.c"
15449#line 5092 "parse.y"
15451 (yyval.num) = p->max_numparam;
15452 p->max_numparam = 0;
15454#line 15455 "parse.c"
15458#line 5098 "parse.y"
15460 (yyval.node) = numparam_push(p);
15462#line 15463 "parse.c"
15466#line 5103 "parse.y"
15468 (yyval.id) = p->it_id;
15471#line 15472 "parse.c"
15475#line 5110 "parse.y"
15477 token_info_push(p,
"->", &(yylsp[0]));
15478 (yyval.vars) = dyna_push(p);
15480#line 15481 "parse.c"
15484#line 5116 "parse.y"
15488#line 15489 "parse.c"
15492#line 5120 "parse.y"
15494 int max_numparam = p->max_numparam;
15495 ID it_id = p->it_id;
15496 p->lex.lpar_beg = (yyvsp[-8].num);
15497 p->max_numparam = (yyvsp[-6].num);
15498 p->it_id = (yyvsp[-4].id);
15499 restore_block_exit(p, (yyvsp[-3].node_exits));
15501 (yyvsp[-2].node_args) = args_with_numbered(p, (yyvsp[-2].node_args), max_numparam, it_id);
15503 YYLTYPE loc = code_loc_gen(&(yylsp[-2]), &(yylsp[0]));
15504 (yyval.node) = NEW_LAMBDA((yyvsp[-2].node_args), (yyvsp[0].locations_lambda_body)->node, &loc, &(yylsp[-8]), &(yyvsp[0].locations_lambda_body)->opening_loc, &(yyvsp[0].locations_lambda_body)->closing_loc);
15505 nd_set_line(RNODE_LAMBDA((yyval.node))->nd_body, (yylsp[0]).end_pos.lineno);
15506 nd_set_line((yyval.node), (yylsp[-2]).end_pos.lineno);
15507 nd_set_first_loc((yyval.node), (yylsp[-8]).beg_pos);
15508 xfree((yyvsp[0].locations_lambda_body));
15511 numparam_pop(p, (yyvsp[-5].node));
15512 dyna_pop(p, (yyvsp[-7].vars));
15514#line 15515 "parse.c"
15518#line 5144 "parse.y"
15520 p->ctxt.in_argdef = 0;
15521 (yyval.node_args) = (yyvsp[-2].node_args);
15522 p->max_numparam = ORDINAL_PARAM;
15525#line 15526 "parse.c"
15529#line 5151 "parse.y"
15531 p->ctxt.in_argdef = 0;
15532 if (!args_info_empty_p(&(yyvsp[0].node_args)->nd_ainfo))
15533 p->max_numparam = ORDINAL_PARAM;
15534 (yyval.node_args) = (yyvsp[0].node_args);
15536#line 15537 "parse.c"
15540#line 5160 "parse.y"
15542 token_info_pop(p,
"}", &(yylsp[0]));
15543 (yyval.locations_lambda_body) = new_locations_lambda_body(p, (yyvsp[-1].node), &(yylsp[-1]), &(yylsp[-2]), &(yylsp[0]));
15546#line 15547 "parse.c"
15550#line 5166 "parse.y"
15552 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
15554#line 15555 "parse.c"
15558#line 5170 "parse.y"
15560 (yyval.locations_lambda_body) = new_locations_lambda_body(p, (yyvsp[-1].node), &(yylsp[-1]), &(yylsp[-3]), &(yylsp[0]));
15563#line 15564 "parse.c"
15567#line 5177 "parse.y"
15569 (yyval.node) = (yyvsp[-1].node);
15570 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15573#line 15574 "parse.c"
15577#line 5185 "parse.y"
15579 if (nd_type_p((yyvsp[-1].node), NODE_YIELD)) {
15580 compile_error(p,
"block given to yield");
15583 block_dup_check(p, get_nd_args(p, (yyvsp[-1].node)), (yyvsp[0].node));
15585 (yyval.node) = method_add_block(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
15586 fixpos((yyval.node), (yyvsp[-1].node));
15589#line 15590 "parse.c"
15593#line 5197 "parse.y"
15595 bool has_args = (yyvsp[0].node) != 0;
15596 if (NODE_EMPTY_ARGS_P((yyvsp[0].node))) (yyvsp[0].node) = 0;
15597 (yyval.node) = new_qcall(p, (yyvsp[-2].
id), (yyvsp[-3].node), (yyvsp[-1].
id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
15603#line 15604 "parse.c"
15607#line 5207 "parse.y"
15609 if (NODE_EMPTY_ARGS_P((yyvsp[-1].node))) (yyvsp[-1].node) = 0;
15610 (yyval.node) = new_command_qcall(p, (yyvsp[-3].
id), (yyvsp[-4].node), (yyvsp[-2].
id), (yyvsp[-1].node), (yyvsp[0].node), &(yylsp[-2]), &(yyloc));
15612 if ((yyvsp[0].node)) {
15616#line 15617 "parse.c"
15620#line 5216 "parse.y"
15622 (yyval.node) = new_command_qcall(p, (yyvsp[-3].
id), (yyvsp[-4].node), (yyvsp[-2].
id), (yyvsp[-1].node), (yyvsp[0].node), &(yylsp[-2]), &(yyloc));
15625#line 15626 "parse.c"
15629#line 5223 "parse.y"
15631 (yyvsp[-1].node_fcall)->nd_args = (yyvsp[0].node);
15632 (yyval.node) = (
NODE *)(yyvsp[-1].node_fcall);
15633 nd_set_last_loc((yyvsp[-1].node_fcall), (yylsp[0]).end_pos);
15636#line 15637 "parse.c"
15640#line 5230 "parse.y"
15642 bool has_args = (yyvsp[0].node) != 0;
15643 if (NODE_EMPTY_ARGS_P((yyvsp[0].node))) (yyvsp[0].node) = 0;
15644 (yyval.node) = new_qcall(p, (yyvsp[-2].
id), (yyvsp[-3].node), (yyvsp[-1].
id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
15645 nd_set_line((yyval.node), (yylsp[-1]).end_pos.lineno);
15651#line 15652 "parse.c"
15655#line 5241 "parse.y"
15657 (yyval.node) = new_qcall(p, idCOLON2, (yyvsp[-3].node), (yyvsp[-1].id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
15658 nd_set_line((yyval.node), (yylsp[-1]).end_pos.lineno);
15661#line 15662 "parse.c"
15665#line 5247 "parse.y"
15667 (yyval.node) = new_qcall(p, idCOLON2, (yyvsp[-2].node), (yyvsp[0].id), 0, &(yylsp[0]), &(yyloc));
15670#line 15671 "parse.c"
15674#line 5252 "parse.y"
15676 (yyval.node) = new_qcall(p, (yyvsp[-1].
id), (yyvsp[-2].node), idCall, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
15677 nd_set_line((yyval.node), (yylsp[-1]).end_pos.lineno);
15680#line 15681 "parse.c"
15684#line 5258 "parse.y"
15686 (yyval.node) = new_qcall(p, idCOLON2, (yyvsp[-2].node), idCall, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
15687 nd_set_line((yyval.node), (yylsp[-1]).end_pos.lineno);
15690#line 15691 "parse.c"
15694#line 5264 "parse.y"
15698 lparen_loc.end_pos.column = lparen_loc.beg_pos.column + 1;
15699 rparen_loc.beg_pos.column = rparen_loc.end_pos.column - 1;
15701 (yyval.node) = NEW_SUPER((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &lparen_loc, &rparen_loc);
15704#line 15705 "parse.c"
15708#line 5274 "parse.y"
15710 (yyval.node) = NEW_ZSUPER(&(yyloc));
15713#line 15714 "parse.c"
15717#line 5279 "parse.y"
15719 (yyval.node) = NEW_CALL((yyvsp[-3].node), tAREF, (yyvsp[-1].node), &(yyloc));
15720 fixpos((yyval.node), (yyvsp[-3].node));
15723#line 15724 "parse.c"
15727#line 5287 "parse.y"
15729 (yyval.node) = (yyvsp[-1].node);
15730 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15733#line 15734 "parse.c"
15737#line 5293 "parse.y"
15739 (yyval.node) = (yyvsp[-1].node);
15740 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15743#line 15744 "parse.c"
15747#line 5300 "parse.y"
15748 {(yyval.vars) = dyna_push(p);}
15749#line 15750 "parse.c"
15753#line 5303 "parse.y"
15755 int max_numparam = p->max_numparam;
15756 ID it_id = p->it_id;
15757 p->max_numparam = (yyvsp[-5].num);
15758 p->it_id = (yyvsp[-3].id);
15759 (yyvsp[-1].node_args) = args_with_numbered(p, (yyvsp[-1].node_args), max_numparam, it_id);
15760 (yyval.node) = NEW_ITER((yyvsp[-1].node_args), (yyvsp[0].node), &(yyloc));
15762 restore_block_exit(p, (yyvsp[-2].node_exits));
15763 numparam_pop(p, (yyvsp[-4].node));
15764 dyna_pop(p, (yyvsp[-6].vars));
15766#line 15767 "parse.c"
15770#line 5317 "parse.y"
15772 (yyval.vars) = dyna_push(p);
15775#line 15776 "parse.c"
15779#line 5323 "parse.y"
15781 int max_numparam = p->max_numparam;
15782 ID it_id = p->it_id;
15783 p->max_numparam = (yyvsp[-5].num);
15784 p->it_id = (yyvsp[-3].id);
15785 (yyvsp[-1].node_args) = args_with_numbered(p, (yyvsp[-1].node_args), max_numparam, it_id);
15786 (yyval.node) = NEW_ITER((yyvsp[-1].node_args), (yyvsp[0].node), &(yyloc));
15789 restore_block_exit(p, (yyvsp[-2].node_exits));
15790 numparam_pop(p, (yyvsp[-4].node));
15791 dyna_pop(p, (yyvsp[-6].vars));
15793#line 15794 "parse.c"
15797#line 5339 "parse.y"
15799 check_literal_when(p, (yyvsp[0].node), &(yylsp[0]));
15800 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
15803#line 15804 "parse.c"
15807#line 5345 "parse.y"
15809 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
15812#line 15813 "parse.c"
15816#line 5350 "parse.y"
15818 check_literal_when(p, (yyvsp[0].node), &(yylsp[0]));
15819 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
15822#line 15823 "parse.c"
15826#line 5356 "parse.y"
15828 (yyval.node) = rest_arg_append(p, (yyvsp[-3].node), (yyvsp[0].node), &(yyloc));
15831#line 15832 "parse.c"
15835#line 5365 "parse.y"
15837 (yyval.node) = NEW_WHEN((yyvsp[-3].node), (yyvsp[-1].node), (yyvsp[0].node), &(yyloc), &(yylsp[-4]), &(yylsp[-2]));
15838 fixpos((yyval.node), (yyvsp[-3].node));
15841#line 15842 "parse.c"
15845#line 5376 "parse.y"
15846 {(yyval.tbl) = p->pvtbl; p->pvtbl = st_init_numtable();}
15847#line 15848 "parse.c"
15851#line 5377 "parse.y"
15852 {(yyval.tbl) = p->pktbl; p->pktbl = 0;}
15853#line 15854 "parse.c"
15857#line 5379 "parse.y"
15859 (yyval.ctxt) = p->ctxt;
15860 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
15861 p->command_start = FALSE;
15862 p->ctxt.in_kwarg = 1;
15864#line 15865 "parse.c"
15868#line 5390 "parse.y"
15870 pop_pktbl(p, (yyvsp[-2].tbl));
15871 pop_pvtbl(p, (yyvsp[-3].tbl));
15872 p->ctxt.in_kwarg = (yyvsp[-4].ctxt).in_kwarg;
15874#line 15875 "parse.c"
15878#line 5397 "parse.y"
15880 (yyval.node) = NEW_IN((yyvsp[-4].node), (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
15883#line 15884 "parse.c"
15887#line 5409 "parse.y"
15889 (yyval.node) = new_if(p, (yyvsp[0].node), (yyvsp[-2].node), 0, &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
15890 fixpos((yyval.node), (yyvsp[0].node));
15893#line 15894 "parse.c"
15897#line 5415 "parse.y"
15899 (yyval.node) = new_unless(p, (yyvsp[0].node), (yyvsp[-2].node), 0, &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
15900 fixpos((yyval.node), (yyvsp[0].node));
15903#line 15904 "parse.c"
15907#line 5424 "parse.y"
15909 (yyval.node) = new_array_pattern_tail(p, 0, 1, 0, 0, &(yyloc));
15910 (yyval.node) = new_array_pattern(p, 0, (yyvsp[-1].node), (yyval.node), &(yyloc));
15913#line 15914 "parse.c"
15917#line 5430 "parse.y"
15919 (yyval.node) = new_array_pattern(p, 0, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
15920 nd_set_first_loc((yyval.node), (yylsp[-2]).beg_pos);
15923#line 15924 "parse.c"
15927#line 5436 "parse.y"
15929 (yyval.node) = new_find_pattern(p, 0, (yyvsp[0].node), &(yyloc));
15932#line 15933 "parse.c"
15936#line 5441 "parse.y"
15938 (yyval.node) = new_array_pattern(p, 0, 0, (yyvsp[0].node), &(yyloc));
15941#line 15942 "parse.c"
15945#line 5446 "parse.y"
15947 (yyval.node) = new_hash_pattern(p, 0, (yyvsp[0].node), &(yyloc));
15950#line 15951 "parse.c"
15954#line 5456 "parse.y"
15956 NODE *n = NEW_LIST((yyvsp[-2].node), &(yyloc));
15957 n = list_append(p, n, (yyvsp[0].node));
15958 (yyval.node) = new_hash(p, n, &(yyloc));
15961#line 15962 "parse.c"
15965#line 5466 "parse.y"
15967 (yyval.node) = NEW_OR((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
15970#line 15971 "parse.c"
15974#line 5474 "parse.y"
15976 (yyval.tbl) = (yyvsp[0].tbl);
15979#line 15980 "parse.c"
15983#line 5481 "parse.y"
15985 (yyval.tbl) = (yyvsp[0].tbl);
15988#line 15989 "parse.c"
15992#line 5490 "parse.y"
15994 pop_pktbl(p, (yyvsp[-2].tbl));
15995 (yyval.node) = new_array_pattern(p, (yyvsp[-3].node), 0, (yyvsp[-1].node), &(yyloc));
15996 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
15999#line 16000 "parse.c"
16003#line 5497 "parse.y"
16005 pop_pktbl(p, (yyvsp[-2].tbl));
16006 (yyval.node) = new_find_pattern(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
16007 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
16010#line 16011 "parse.c"
16014#line 5504 "parse.y"
16016 pop_pktbl(p, (yyvsp[-2].tbl));
16017 (yyval.node) = new_hash_pattern(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
16018 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
16021#line 16022 "parse.c"
16025#line 5511 "parse.y"
16027 (yyval.node) = new_array_pattern_tail(p, 0, 0, 0, 0, &(yyloc));
16028 (yyval.node) = new_array_pattern(p, (yyvsp[-2].node), 0, (yyval.node), &(yyloc));
16031#line 16032 "parse.c"
16035#line 5517 "parse.y"
16037 pop_pktbl(p, (yyvsp[-2].tbl));
16038 (yyval.node) = new_array_pattern(p, (yyvsp[-3].node), 0, (yyvsp[-1].node), &(yyloc));
16039 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
16042#line 16043 "parse.c"
16046#line 5524 "parse.y"
16048 pop_pktbl(p, (yyvsp[-2].tbl));
16049 (yyval.node) = new_find_pattern(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
16050 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
16053#line 16054 "parse.c"
16057#line 5531 "parse.y"
16059 pop_pktbl(p, (yyvsp[-2].tbl));
16060 (yyval.node) = new_hash_pattern(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
16061 nd_set_first_loc((yyval.node), (yylsp[-3]).beg_pos);
16064#line 16065 "parse.c"
16068#line 5538 "parse.y"
16070 (yyval.node) = new_array_pattern_tail(p, 0, 0, 0, 0, &(yyloc));
16071 (yyval.node) = new_array_pattern(p, (yyvsp[-2].node), 0, (yyval.node), &(yyloc));
16074#line 16075 "parse.c"
16078#line 5544 "parse.y"
16080 (yyval.node) = new_array_pattern(p, 0, 0, (yyvsp[-1].node), &(yyloc));
16083#line 16084 "parse.c"
16087#line 5549 "parse.y"
16089 (yyval.node) = new_find_pattern(p, 0, (yyvsp[-1].node), &(yyloc));
16092#line 16093 "parse.c"
16096#line 5554 "parse.y"
16098 (yyval.node) = new_array_pattern_tail(p, 0, 0, 0, 0, &(yyloc));
16099 (yyval.node) = new_array_pattern(p, 0, 0, (yyval.node), &(yyloc));
16102#line 16103 "parse.c"
16106#line 5560 "parse.y"
16108 p->ctxt.in_kwarg = 0;
16110#line 16111 "parse.c"
16114#line 5564 "parse.y"
16116 pop_pktbl(p, (yyvsp[-4].tbl));
16117 p->ctxt.in_kwarg = (yyvsp[-3].ctxt).in_kwarg;
16118 (yyval.node) = new_hash_pattern(p, 0, (yyvsp[-1].node), &(yyloc));
16121#line 16122 "parse.c"
16125#line 5571 "parse.y"
16127 (yyval.node) = new_hash_pattern_tail(p, 0, 0, &(yyloc));
16128 (yyval.node) = new_hash_pattern(p, 0, (yyval.node), &(yyloc));
16131#line 16132 "parse.c"
16135#line 5577 "parse.y"
16137 pop_pktbl(p, (yyvsp[-2].tbl));
16138 (yyval.node) = (yyvsp[-1].node);
16141#line 16142 "parse.c"
16145#line 5585 "parse.y"
16147 NODE *pre_args = NEW_LIST((yyvsp[0].node), &(yyloc));
16148 (yyval.node) = new_array_pattern_tail(p, pre_args, 0, 0, 0, &(yyloc));
16151#line 16152 "parse.c"
16155#line 5591 "parse.y"
16157 (yyval.node) = new_array_pattern_tail(p, (yyvsp[0].node), 1, 0, 0, &(yyloc));
16160#line 16161 "parse.c"
16164#line 5596 "parse.y"
16166 (yyval.node) = new_array_pattern_tail(p, list_concat((yyvsp[-1].node), (yyvsp[0].node)), 0, 0, 0, &(yyloc));
16169#line 16170 "parse.c"
16173#line 5601 "parse.y"
16175 (yyval.node) = new_array_pattern_tail(p, (yyvsp[-1].node), 1, (yyvsp[0].node), 0, &(yyloc));
16178#line 16179 "parse.c"
16182#line 5606 "parse.y"
16184 (yyval.node) = new_array_pattern_tail(p, (yyvsp[-3].node), 1, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16187#line 16188 "parse.c"
16191#line 5615 "parse.y"
16193 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[-1].node));
16196#line 16197 "parse.c"
16200#line 5622 "parse.y"
16202 (yyval.node) = new_array_pattern_tail(p, 0, 1, (yyvsp[0].node), 0, &(yyloc));
16205#line 16206 "parse.c"
16209#line 5627 "parse.y"
16211 (yyval.node) = new_array_pattern_tail(p, 0, 1, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16214#line 16215 "parse.c"
16218#line 5634 "parse.y"
16220 (yyval.node) = new_find_pattern_tail(p, (yyvsp[-4].node), (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16223#line 16224 "parse.c"
16227#line 5642 "parse.y"
16229 error_duplicate_pattern_variable(p, (yyvsp[0].
id), &(yylsp[0]));
16231 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
16233#line 16234 "parse.c"
16237#line 5648 "parse.y"
16242#line 16243 "parse.c"
16246#line 5656 "parse.y"
16248 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[0].node));
16251#line 16252 "parse.c"
16255#line 5663 "parse.y"
16257 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
16260#line 16261 "parse.c"
16264#line 5670 "parse.y"
16266 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[-2].node), &(yyloc)), (yyvsp[0].id), &(yyloc));
16269#line 16270 "parse.c"
16273#line 5675 "parse.y"
16275 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[0].node), &(yyloc)), 0, &(yyloc));
16278#line 16279 "parse.c"
16282#line 5680 "parse.y"
16284 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[-1].node), &(yyloc)), 0, &(yyloc));
16287#line 16288 "parse.c"
16291#line 5685 "parse.y"
16293 (yyval.node) = new_hash_pattern_tail(p, new_hash(p, 0, &(yyloc)), (yyvsp[0].
id), &(yyloc));
16296#line 16297 "parse.c"
16300#line 5694 "parse.y"
16302 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[0].node));
16305#line 16306 "parse.c"
16309#line 5701 "parse.y"
16311 error_duplicate_pattern_key(p, (yyvsp[-1].
id), &(yylsp[-1]));
16312 (yyval.node) = list_append(p, NEW_LIST(NEW_SYM(rb_id2str((yyvsp[-1].
id)), &(yylsp[-1])), &(yyloc)), (yyvsp[0].node));
16315#line 16316 "parse.c"
16319#line 5707 "parse.y"
16321 error_duplicate_pattern_key(p, (yyvsp[0].
id), &(yylsp[0]));
16322 if ((yyvsp[0].
id) && !is_local_id((yyvsp[0].
id))) {
16323 yyerror1(&(yylsp[0]),
"key must be valid as local variables");
16325 error_duplicate_pattern_variable(p, (yyvsp[0].
id), &(yylsp[0]));
16326 (yyval.node) = list_append(p, NEW_LIST(NEW_SYM(rb_id2str((yyvsp[0].
id)), &(yyloc)), &(yyloc)), assignable(p, (yyvsp[0].
id), 0, &(yyloc)));
16329#line 16330 "parse.c"
16333#line 5720 "parse.y"
16335 YYLTYPE loc = code_loc_gen(&(yylsp[-2]), &(yylsp[0]));
16336 if (!(yyvsp[-1].node) || nd_type_p((yyvsp[-1].node), NODE_STR)) {
16337 NODE *node = dsym_node(p, (yyvsp[-1].node), &loc);
16338 (yyval.id) =
rb_sym2id(rb_node_sym_string_val(node));
16341 yyerror1(&loc,
"symbol literal with interpolation is not allowed");
16342 (yyval.id) = rb_intern_str(STR_NEW0());
16346#line 16347 "parse.c"
16350#line 5735 "parse.y"
16352 (yyval.id) = (yyvsp[0].
id);
16355#line 16356 "parse.c"
16359#line 5740 "parse.y"
16364#line 16365 "parse.c"
16368#line 5747 "parse.y"
16372#line 16373 "parse.c"
16376#line 5754 "parse.y"
16378 (yyval.id) = idNil;
16381#line 16382 "parse.c"
16385#line 5762 "parse.y"
16387 (yyval.node) = NEW_DOT2((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16390#line 16391 "parse.c"
16394#line 5767 "parse.y"
16396 (yyval.node) = NEW_DOT3((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16399#line 16400 "parse.c"
16403#line 5772 "parse.y"
16405 (yyval.node) = NEW_DOT2((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
16408#line 16409 "parse.c"
16412#line 5777 "parse.y"
16414 (yyval.node) = NEW_DOT3((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
16417#line 16418 "parse.c"
16421#line 5785 "parse.y"
16423 (yyval.node) = NEW_DOT2(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16426#line 16427 "parse.c"
16430#line 5790 "parse.y"
16432 (yyval.node) = NEW_DOT3(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16435#line 16436 "parse.c"
16439#line 5798 "parse.y"
16441 if (!((yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16444#line 16445 "parse.c"
16448#line 3102 "parse.y"
16450 value_expr((yyvsp[0].node));
16451 (yyval.node) = (yyvsp[0].node);
16453#line 16454 "parse.c"
16457#line 5809 "parse.y"
16459 error_duplicate_pattern_variable(p, (yyvsp[0].
id), &(yylsp[0]));
16461 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
16463#line 16464 "parse.c"
16467#line 5817 "parse.y"
16469 NODE *n = gettable(p, (yyvsp[0].
id), &(yyloc));
16471 n = NEW_ERROR(&(yyloc));
16473 else if (!(nd_type_p(n, NODE_LVAR) || nd_type_p(n, NODE_DVAR))) {
16474 compile_error(p,
"%"PRIsVALUE
": no such local variable", rb_id2str((yyvsp[0].
id)));
16479#line 16480 "parse.c"
16483#line 5829 "parse.y"
16485 if (!((yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16488#line 16489 "parse.c"
16492#line 5836 "parse.y"
16494 (yyval.node) = NEW_BLOCK((yyvsp[-1].node), &(yyloc));
16497#line 16498 "parse.c"
16501#line 5843 "parse.y"
16503 (yyval.node) = NEW_COLON3((yyvsp[0].
id), &(yyloc));
16506#line 16507 "parse.c"
16510#line 5848 "parse.y"
16512 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
16515#line 16516 "parse.c"
16519#line 5853 "parse.y"
16521 (yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc));
16524#line 16525 "parse.c"
16528#line 5862 "parse.y"
16530 NODE *err = (yyvsp[-3].node);
16531 if ((yyvsp[-3].node)) {
16532 err = NEW_ERRINFO(&(yylsp[-3]));
16533 err = node_assign(p, (yyvsp[-3].node), err, NO_LEX_CTXT, &(yylsp[-3]));
16535 (yyval.node) = NEW_RESBODY((yyvsp[-4].node), (yyvsp[-3].node), (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16536 if ((yyvsp[-4].node)) {
16537 fixpos((yyval.node), (yyvsp[-4].node));
16539 else if ((yyvsp[-3].node)) {
16540 fixpos((yyval.node), (yyvsp[-3].node));
16543 fixpos((yyval.node), (yyvsp[-1].node));
16547#line 16548 "parse.c"
16551#line 5884 "parse.y"
16553 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
16556#line 16557 "parse.c"
16560#line 5889 "parse.y"
16562 if (!((yyval.node) = splat_array((yyvsp[0].node)))) (yyval.node) = (yyvsp[0].node);
16564#line 16565 "parse.c"
16568#line 5896 "parse.y"
16570 (yyval.node) = (yyvsp[0].node);
16573#line 16574 "parse.c"
16577#line 5904 "parse.y"
16579 p->ctxt.in_rescue = (yyvsp[-2].ctxt).in_rescue;
16580 (yyval.node) = (yyvsp[-1].node);
16581 void_expr(p, void_stmts(p, (yyval.node)));
16584#line 16585 "parse.c"
16588#line 5918 "parse.y"
16590 if (!(yyvsp[0].node)) {
16591 (yyval.node) = NEW_STR(STRING_NEW0(), &(yyloc));
16593 (yyval.node) = evstr2dstr(p, (yyvsp[0].node));
16597#line 16598 "parse.c"
16601#line 5931 "parse.y"
16603 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16606#line 16607 "parse.c"
16610#line 5938 "parse.y"
16612 (yyval.node) = heredoc_dedent(p, (yyvsp[-1].node));
16613 if ((yyval.node)) nd_set_loc((yyval.node), &(yyloc));
16615 if (p->heredoc_indent > 0) {
16617 p->heredoc_indent = 0;
16621#line 16622 "parse.c"
16625#line 5951 "parse.y"
16627 (yyval.node) = new_xstring(p, heredoc_dedent(p, (yyvsp[-1].node)), &(yyloc));
16629 if (p->heredoc_indent > 0) {
16631 p->heredoc_indent = 0;
16635#line 16636 "parse.c"
16639#line 5963 "parse.y"
16641 (yyval.node) = new_regexp(p, (yyvsp[-1].node), (yyvsp[0].num), &(yyloc), &(yylsp[-2]), &(yylsp[-1]), &(yylsp[0]));
16644#line 16645 "parse.c"
16648#line 3110 "parse.y"
16650 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16653#line 16654 "parse.c"
16657#line 5973 "parse.y"
16662#line 16663 "parse.c"
16666#line 5978 "parse.y"
16668 (yyval.node) = list_append(p, (yyvsp[-2].node), evstr2dstr(p, (yyvsp[-1].node)));
16671#line 16672 "parse.c"
16675#line 5987 "parse.y"
16677 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16680#line 16681 "parse.c"
16684#line 3110 "parse.y"
16686 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16689#line 16690 "parse.c"
16693#line 5997 "parse.y"
16698#line 16699 "parse.c"
16702#line 6002 "parse.y"
16704 (yyval.node) = symbol_append(p, (yyvsp[-2].node), evstr2dstr(p, (yyvsp[-1].node)));
16707#line 16708 "parse.c"
16711#line 3110 "parse.y"
16713 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16716#line 16717 "parse.c"
16720#line 3110 "parse.y"
16722 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16725#line 16726 "parse.c"
16729#line 6015 "parse.y"
16734#line 16735 "parse.c"
16738#line 6020 "parse.y"
16740 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
16743#line 16744 "parse.c"
16747#line 6027 "parse.y"
16752#line 16753 "parse.c"
16756#line 6032 "parse.y"
16758 (yyval.node) = symbol_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
16761#line 16762 "parse.c"
16765#line 6039 "parse.y"
16770#line 16771 "parse.c"
16774#line 6044 "parse.y"
16776 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16779#line 16780 "parse.c"
16783#line 6051 "parse.y"
16788#line 16789 "parse.c"
16792#line 6056 "parse.y"
16794 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16797#line 16798 "parse.c"
16801#line 6063 "parse.y"
16806#line 16807 "parse.c"
16810#line 6068 "parse.y"
16812 NODE *head = (yyvsp[-1].node), *tail = (yyvsp[0].node);
16814 (yyval.node) = tail;
16817 (yyval.node) = head;
16820 switch (nd_type(head)) {
16822 head = str2dstr(p, head);
16827 head = list_append(p, NEW_DSTR(0, &(yyloc)), head);
16830 (yyval.node) = list_append(p, head, tail);
16834#line 16835 "parse.c"
16838#line 6096 "parse.y"
16841 (yyval.strterm) = p->lex.strterm;
16842 p->lex.strterm = 0;
16843 SET_LEX_STATE(EXPR_BEG);
16845#line 16846 "parse.c"
16849#line 6103 "parse.y"
16851 p->lex.strterm = (yyvsp[-1].strterm);
16852 (yyval.node) = NEW_EVSTR((yyvsp[0].node), &(yyloc), &(yylsp[-2]), &NULL_LOC);
16853 nd_set_line((yyval.node), (yylsp[0]).end_pos.lineno);
16856#line 16857 "parse.c"
16860#line 6110 "parse.y"
16865 (yyval.strterm) = p->lex.strterm;
16866 p->lex.strterm = 0;
16867 SET_LEX_STATE(EXPR_BEG);
16869#line 16870 "parse.c"
16873#line 6118 "parse.y"
16875 (yyval.num) = p->lex.brace_nest;
16876 p->lex.brace_nest = 0;
16878#line 16879 "parse.c"
16882#line 6122 "parse.y"
16884 (yyval.num) = p->heredoc_indent;
16885 p->heredoc_indent = 0;
16887#line 16888 "parse.c"
16891#line 6127 "parse.y"
16895 p->lex.strterm = (yyvsp[-4].strterm);
16896 SET_LEX_STATE((yyvsp[-5].state));
16897 p->lex.brace_nest = (yyvsp[-3].num);
16898 p->heredoc_indent = (yyvsp[-2].num);
16899 p->heredoc_line_indent = -1;
16900 if ((yyvsp[-1].node)) nd_unset_fl_newline((yyvsp[-1].node));
16901 (yyval.node) = new_evstr(p, (yyvsp[-1].node), &(yyloc), &(yylsp[-5]), &(yylsp[0]));
16904#line 16905 "parse.c"
16908#line 6146 "parse.y"
16910 if (!((yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16913#line 16914 "parse.c"
16917#line 6158 "parse.y"
16919 SET_LEX_STATE(EXPR_END);
16920 VALUE str = rb_id2str((yyvsp[0].
id));
16927 if (!str) str = STR_NEW0();
16928 (yyval.node) = NEW_SYM(str, &(yyloc));
16931#line 16932 "parse.c"
16935#line 6178 "parse.y"
16937 SET_LEX_STATE(EXPR_END);
16938 (yyval.node) = dsym_node(p, (yyvsp[-1].node), &(yyloc));
16941#line 16942 "parse.c"
16945#line 6187 "parse.y"
16947 (yyval.node) = (yyvsp[0].node);
16948 negate_lit(p, (yyval.node));
16951#line 16952 "parse.c"
16955#line 6209 "parse.y"
16956 {(yyval.id) = KWD2EID(nil, (yyvsp[0].
id));}
16957#line 16958 "parse.c"
16961#line 6210 "parse.y"
16962 {(yyval.id) = KWD2EID(self, (yyvsp[0].
id));}
16963#line 16964 "parse.c"
16967#line 6211 "parse.y"
16968 {(yyval.id) = KWD2EID(
true, (yyvsp[0].
id));}
16969#line 16970 "parse.c"
16973#line 6212 "parse.y"
16974 {(yyval.id) = KWD2EID(
false, (yyvsp[0].
id));}
16975#line 16976 "parse.c"
16979#line 6213 "parse.y"
16980 {(yyval.id) = KWD2EID(_FILE__, (yyvsp[0].
id));}
16981#line 16982 "parse.c"
16985#line 6214 "parse.y"
16986 {(yyval.id) = KWD2EID(_LINE__, (yyvsp[0].
id));}
16987#line 16988 "parse.c"
16991#line 6215 "parse.y"
16992 {(yyval.id) = KWD2EID(_ENCODING__, (yyvsp[0].
id));}
16993#line 16994 "parse.c"
16997#line 6219 "parse.y"
16999 if (!((yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
17000 if (ifdef_ripper(id_is_var(p, (yyvsp[0].
id)),
false)) {
17007#line 17008 "parse.c"
17011#line 6229 "parse.y"
17013 if (!((yyval.node) = gettable(p, (yyvsp[0].
id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
17016#line 17017 "parse.c"
17020#line 6236 "parse.y"
17023 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
17025#line 17026 "parse.c"
17029#line 6236 "parse.y"
17032 (yyval.node) = assignable(p, (yyvsp[0].
id), 0, &(yyloc));
17034#line 17035 "parse.c"
17038#line 6247 "parse.y"
17040 SET_LEX_STATE(EXPR_BEG);
17041 p->command_start = TRUE;
17043#line 17044 "parse.c"
17047#line 6252 "parse.y"
17049 (yyval.node) = (yyvsp[-1].node);
17052#line 17053 "parse.c"
17056#line 6261 "parse.y"
17058 p->ctxt.in_argdef = 0;
17059 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[-1]));
17060 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyval.node_args), &(yylsp[-1]));
17063#line 17064 "parse.c"
17067#line 6270 "parse.y"
17069 (yyval.node_args) = (yyvsp[-1].node_args);
17071 SET_LEX_STATE(EXPR_BEG);
17072 p->command_start = TRUE;
17073 p->ctxt.in_argdef = 0;
17075#line 17076 "parse.c"
17079#line 6280 "parse.y"
17081 (yyval.ctxt) = p->ctxt;
17082 p->ctxt.in_kwarg = 1;
17083 p->ctxt.in_argdef = 1;
17084 SET_LEX_STATE(p->lex.state|EXPR_LABEL);
17086#line 17087 "parse.c"
17090#line 6287 "parse.y"
17092 p->ctxt.in_kwarg = (yyvsp[-2].ctxt).in_kwarg;
17093 p->ctxt.in_argdef = 0;
17094 (yyval.node_args) = (yyvsp[-1].node_args);
17095 SET_LEX_STATE(EXPR_BEG);
17096 p->command_start = TRUE;
17099#line 17100 "parse.c"
17103#line 3002 "parse.y"
17105 p->ctxt.in_argdef = 1;
17106 (yyval.node_kw_arg) = new_kw_arg(p, assignable(p, (yyvsp[-1].
id), (yyvsp[0].node), &(yyloc)), &(yyloc));
17109#line 17110 "parse.c"
17113#line 3008 "parse.y"
17115 p->ctxt.in_argdef = 1;
17116 (yyval.node_kw_arg) = new_kw_arg(p, assignable(p, (yyvsp[0].
id), NODE_SPECIAL_REQUIRED_KEYWORD, &(yyloc)), &(yyloc));
17119#line 17120 "parse.c"
17123#line 3017 "parse.y"
17125 (yyval.node_kw_arg) = (yyvsp[0].node_kw_arg);
17128#line 17129 "parse.c"
17132#line 3022 "parse.y"
17134 (yyval.node_kw_arg) = kwd_append((yyvsp[-2].node_kw_arg), (yyvsp[0].node_kw_arg));
17137#line 17138 "parse.c"
17141#line 2926 "parse.y"
17143 (yyval.node_args) = new_args_tail(p, (yyvsp[-3].node_kw_arg), (yyvsp[-1].id), (yyvsp[0].
id), &(yylsp[-1]));
17146#line 17147 "parse.c"
17150#line 2931 "parse.y"
17152 (yyval.node_args) = new_args_tail(p, (yyvsp[-1].node_kw_arg), 0, (yyvsp[0].id), &(yylsp[-1]));
17155#line 17156 "parse.c"
17159#line 2936 "parse.y"
17161 (yyval.node_args) = new_args_tail(p, 0, (yyvsp[-1].
id), (yyvsp[0].id), &(yylsp[-1]));
17164#line 17165 "parse.c"
17168#line 2941 "parse.y"
17170 (yyval.node_args) = new_args_tail(p, 0, 0, (yyvsp[0].
id), &(yylsp[0]));
17173#line 17174 "parse.c"
17177#line 6299 "parse.y"
17179 ID fwd = (yyvsp[0].id);
17180 if (lambda_beginning_p() ||
17181 (p->lex.lpar_beg >= 0 && p->lex.lpar_beg+1 == p->lex.paren_nest)) {
17182 yyerror0(
"unexpected ... in lambda argument");
17186 add_forwarding_args(p);
17188 (yyval.node_args) = new_args_tail(p, 0, fwd, arg_FWD_BLOCK, &(yylsp[0]));
17189 (yyval.node_args)->nd_ainfo.forwarding = 1;
17192#line 17193 "parse.c"
17196#line 2980 "parse.y"
17198 p->ctxt.in_argdef = 1;
17199 (yyval.node_opt_arg) = NEW_OPT_ARG(assignable(p, (yyvsp[-2].
id), (yyvsp[0].node), &(yyloc)), &(yyloc));
17202#line 17203 "parse.c"
17206#line 2989 "parse.y"
17208 (yyval.node_opt_arg) = (yyvsp[0].node_opt_arg);
17211#line 17212 "parse.c"
17215#line 2994 "parse.y"
17217 (yyval.node_opt_arg) = opt_arg_append((yyvsp[-2].node_opt_arg), (yyvsp[0].node_opt_arg));
17220#line 17221 "parse.c"
17224#line 3089 "parse.y"
17226 (yyval.node_args) = (yyvsp[0].node_args);
17229#line 17230 "parse.c"
17233#line 3094 "parse.y"
17235 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
17238#line 17239 "parse.c"
17242#line 6316 "parse.y"
17244 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), (yyvsp[-3].node_opt_arg), (yyvsp[-1].
id), 0, (yyvsp[0].node_args), &(yyloc));
17247#line 17248 "parse.c"
17251#line 6321 "parse.y"
17253 (yyval.node_args) = new_args(p, (yyvsp[-7].node_args_aux), (yyvsp[-5].node_opt_arg), (yyvsp[-3].
id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17256#line 17257 "parse.c"
17260#line 6326 "parse.y"
17262 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
17265#line 17266 "parse.c"
17269#line 6331 "parse.y"
17271 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17274#line 17275 "parse.c"
17278#line 6336 "parse.y"
17280 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
17283#line 17284 "parse.c"
17287#line 6341 "parse.y"
17289 (yyval.node_args) = new_args(p, (yyvsp[-5].node_args_aux), 0, (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17292#line 17293 "parse.c"
17296#line 6346 "parse.y"
17298 (yyval.node_args) = new_args(p, (yyvsp[-1].node_args_aux), 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
17301#line 17302 "parse.c"
17305#line 6351 "parse.y"
17307 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
17310#line 17311 "parse.c"
17314#line 6356 "parse.y"
17316 (yyval.node_args) = new_args(p, 0, (yyvsp[-5].node_opt_arg), (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17319#line 17320 "parse.c"
17323#line 6361 "parse.y"
17325 (yyval.node_args) = new_args(p, 0, (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
17328#line 17329 "parse.c"
17332#line 6366 "parse.y"
17334 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17337#line 17338 "parse.c"
17341#line 6371 "parse.y"
17343 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-1].
id), 0, (yyvsp[0].node_args), &(yyloc));
17346#line 17347 "parse.c"
17350#line 6376 "parse.y"
17352 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-3].
id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17355#line 17356 "parse.c"
17359#line 6381 "parse.y"
17361 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
17364#line 17365 "parse.c"
17368#line 6386 "parse.y"
17370 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
17371 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyval.node_args), &(yylsp[0]));
17374#line 17375 "parse.c"
17378#line 6394 "parse.y"
17380#ifdef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
17383 (yyval.id) = idFWD_KWREST;
17387#line 17388 "parse.c"
17391#line 6405 "parse.y"
17393 static const char mesg[] =
"formal argument cannot be a constant";
17395 yyerror1(&(yylsp[0]), mesg);
17400#line 17401 "parse.c"
17404#line 6414 "parse.y"
17406 static const char mesg[] =
"formal argument cannot be an instance variable";
17408 yyerror1(&(yylsp[0]), mesg);
17413#line 17414 "parse.c"
17417#line 6423 "parse.y"
17419 static const char mesg[] =
"formal argument cannot be a global variable";
17421 yyerror1(&(yylsp[0]), mesg);
17426#line 17427 "parse.c"
17430#line 6432 "parse.y"
17432 static const char mesg[] =
"formal argument cannot be a class variable";
17434 yyerror1(&(yylsp[0]), mesg);
17439#line 17440 "parse.c"
17443#line 6444 "parse.y"
17445 VALUE e = formal_argument_error(p, (yyval.id) = (yyvsp[0].id));
17449 p->max_numparam = ORDINAL_PARAM;
17451#line 17452 "parse.c"
17455#line 6454 "parse.y"
17457 arg_var(p, (yyvsp[0].
id));
17458 (yyval.id) = (yyvsp[0].
id);
17460#line 17461 "parse.c"
17464#line 6461 "parse.y"
17466 (yyval.node_args_aux) = NEW_ARGS_AUX((yyvsp[0].
id), 1, &NULL_LOC);
17469#line 17470 "parse.c"
17473#line 6466 "parse.y"
17475 ID tid = internal_id(p);
17477 loc.beg_pos = (yylsp[-1]).beg_pos;
17478 loc.end_pos = (yylsp[-1]).beg_pos;
17480 if (dyna_in_block(p)) {
17481 (yyvsp[-1].node_masgn)->nd_value = NEW_DVAR(tid, &loc);
17484 (yyvsp[-1].node_masgn)->nd_value = NEW_LVAR(tid, &loc);
17486 (yyval.node_args_aux) = NEW_ARGS_AUX(tid, 1, &NULL_LOC);
17487 (yyval.node_args_aux)->nd_next = (
NODE *)(yyvsp[-1].node_masgn);
17490#line 17491 "parse.c"
17494#line 6487 "parse.y"
17496 (yyval.node_args_aux) = (yyvsp[-2].node_args_aux);
17497 (yyval.node_args_aux)->nd_plen++;
17498 (yyval.node_args_aux)->nd_next = block_append(p, (yyval.node_args_aux)->nd_next, (yyvsp[0].node_args_aux)->nd_next);
17499 rb_discard_node(p, (
NODE *)(yyvsp[0].node_args_aux));
17502#line 17503 "parse.c"
17506#line 6498 "parse.y"
17508 VALUE e = formal_argument_error(p, (yyval.id) = (yyvsp[0].id));
17519 arg_var(p, ifdef_ripper(0, (yyvsp[0].
id)));
17521 p->max_numparam = ORDINAL_PARAM;
17522 p->ctxt.in_argdef = 0;
17524#line 17525 "parse.c"
17528#line 6522 "parse.y"
17532#line 17533 "parse.c"
17536#line 6528 "parse.y"
17538 arg_var(p, shadowing_lvar(p, (yyvsp[0].
id)));
17539 (yyval.id) = (yyvsp[0].
id);
17542#line 17543 "parse.c"
17546#line 6534 "parse.y"
17548 arg_var(p, idFWD_KWREST);
17549 (yyval.id) = idFWD_KWREST;
17552#line 17553 "parse.c"
17556#line 6546 "parse.y"
17558 arg_var(p, shadowing_lvar(p, (yyvsp[0].
id)));
17559 (yyval.id) = (yyvsp[0].
id);
17562#line 17563 "parse.c"
17566#line 6552 "parse.y"
17568 arg_var(p, idFWD_REST);
17569 (yyval.id) = idFWD_REST;
17572#line 17573 "parse.c"
17576#line 6564 "parse.y"
17578 arg_var(p, shadowing_lvar(p, (yyvsp[0].
id)));
17579 (yyval.id) = (yyvsp[0].
id);
17582#line 17583 "parse.c"
17586#line 6570 "parse.y"
17588 arg_var(p, idFWD_BLOCK);
17589 (yyval.id) = idFWD_BLOCK;
17592#line 17593 "parse.c"
17596#line 6578 "parse.y"
17598 (yyval.id) = (yyvsp[0].
id);
17601#line 17602 "parse.c"
17605#line 3102 "parse.y"
17607 value_expr((yyvsp[0].node));
17608 (yyval.node) = (yyvsp[0].node);
17610#line 17611 "parse.c"
17614#line 6587 "parse.y"
17616 NODE *expr = last_expr_node((yyvsp[0].node));
17617 switch (nd_type(expr)) {
17627 case NODE_ENCODING:
17630 case NODE_RATIONAL:
17631 case NODE_IMAGINARY:
17635 yyerror1(&expr->nd_loc,
"can't define singleton method for literals");
17640 (yyval.node) = (yyvsp[0].node);
17642#line 17643 "parse.c"
17646#line 6618 "parse.y"
17648 SET_LEX_STATE(EXPR_BEG);
17649 p->ctxt.in_argdef = 0;
17651#line 17652 "parse.c"
17655#line 6623 "parse.y"
17657 p->ctxt.in_argdef = 1;
17658 (yyval.node) = (yyvsp[-1].node);
17661#line 17662 "parse.c"
17665#line 6632 "parse.y"
17667 (yyval.node) = (yyvsp[-1].node);
17670#line 17671 "parse.c"
17674#line 6641 "parse.y"
17676 NODE *assocs = (yyvsp[-2].node);
17677 NODE *tail = (yyvsp[0].node);
17682 if (RNODE_LIST(assocs)->nd_head) {
17683 NODE *n = RNODE_LIST(tail)->nd_next;
17684 if (!RNODE_LIST(tail)->nd_head && nd_type_p(n, NODE_LIST) &&
17685 nd_type_p((n = RNODE_LIST(n)->nd_head), NODE_HASH)) {
17687 tail = RNODE_HASH(n)->nd_head;
17691 assocs = list_concat(assocs, tail);
17694 (yyval.node) = assocs;
17697#line 17698 "parse.c"
17701#line 6666 "parse.y"
17703 (yyval.node) = list_append(p, NEW_LIST((yyvsp[-2].node), &(yyloc)), (yyvsp[0].node));
17706#line 17707 "parse.c"
17710#line 6671 "parse.y"
17712 (yyval.node) = list_append(p, NEW_LIST(NEW_SYM(rb_id2str((yyvsp[-1].
id)), &(yylsp[-1])), &(yyloc)), (yyvsp[0].node));
17715#line 17716 "parse.c"
17719#line 6676 "parse.y"
17721 NODE *val = gettable(p, (yyvsp[0].
id), &(yyloc));
17722 if (!val) val = NEW_ERROR(&(yyloc));
17723 (yyval.node) = list_append(p, NEW_LIST(NEW_SYM(rb_id2str((yyvsp[0].
id)), &(yylsp[0])), &(yyloc)), val);
17726#line 17727 "parse.c"
17730#line 6683 "parse.y"
17732 YYLTYPE loc = code_loc_gen(&(yylsp[-3]), &(yylsp[-1]));
17733 (yyval.node) = list_append(p, NEW_LIST(dsym_node(p, (yyvsp[-2].node), &loc), &loc), (yyvsp[0].node));
17736#line 17737 "parse.c"
17740#line 6689 "parse.y"
17742 (yyval.node) = list_append(p, NEW_LIST(0, &(yyloc)), (yyvsp[0].node));
17745#line 17746 "parse.c"
17749#line 6694 "parse.y"
17751 forwarding_arg_check(p, idFWD_KWREST, idFWD_ALL,
"keyword rest");
17752 (yyval.node) = list_append(p, NEW_LIST(0, &(yyloc)),
17753 NEW_LVAR(idFWD_KWREST, &(yyloc)));
17756#line 17757 "parse.c"
17760#line 6740 "parse.y"
17761 {yyerrok;token_flush(p);}
17762#line 17763 "parse.c"
17766#line 6742 "parse.y"
17768 (yyloc).end_pos = (yyloc).beg_pos;
17771#line 17772 "parse.c"
17775#line 6749 "parse.y"
17777#line 17778 "parse.c"
17781#line 6753 "parse.y"
17786#line 17787 "parse.c"
17790#line 17791 "parse.c"
17805 YY_SYMBOL_PRINT (
"-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc, p);
17807 YYPOPSTACK (yylen);
17809#line 2665 "parse.y"
17810 {after_reduce(yylen, p);}
17811#line 17812 "parse.c"
17822 const int yylhs = yyr1[yyn] - YYNTOKENS;
17823 const int yyi = yypgoto[yylhs] + *yyssp;
17824 yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
17826 : yydefgoto[yylhs]);
17838 yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
17845 = {yyssp, yytoken, &yylloc};
17846 char const *yymsgp = YY_(
"syntax error");
17847 int yysyntax_error_status;
17848 yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx, p);
17849 if (yysyntax_error_status == 0)
17851 else if (yysyntax_error_status == -1)
17853 if (yymsg != yymsgbuf)
17854 YYSTACK_FREE (yymsg);
17855 yymsg = YY_CAST (
char *,
17856 YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
17859 yysyntax_error_status
17860 = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx, p);
17866 yymsg_alloc =
sizeof yymsgbuf;
17867 yysyntax_error_status = YYENOMEM;
17870 yyerror (&yylloc, p, yymsgp);
17871 if (yysyntax_error_status == YYENOMEM)
17876 yyerror_range[1] = yylloc;
17877 if (yyerrstatus == 3)
17882 if (yychar <= END_OF_INPUT)
17885 if (yychar == END_OF_INPUT)
17890 yydestruct (
"Error: discarding",
17891 yytoken, &yylval, &yylloc, p);
17913 YYPOPSTACK (yylen);
17915#line 2667 "parse.y"
17916 {after_pop_stack(yylen, p);}
17917#line 17918 "parse.c"
17920 YY_STACK_PRINT (yyss, yyssp, p);
17934 yyn = yypact[yystate];
17935 if (!yypact_value_is_default (yyn))
17937 yyn += YYSYMBOL_YYerror;
17938 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
17940 yyn = yytable[yyn];
17950 yyerror_range[1] = *yylsp;
17951 yydestruct (
"Error: popping",
17952 YY_ACCESSING_SYMBOL (yystate), yyvsp, yylsp, p);
17955#line 2667 "parse.y"
17956 {after_pop_stack(1, p);}
17957#line 17958 "parse.c"
17960 YY_STACK_PRINT (yyss, yyssp, p);
17963 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
17965 YY_IGNORE_MAYBE_UNINITIALIZED_END
17967 yyerror_range[2] = yylloc;
17969 YYLLOC_DEFAULT (*yylsp, yyerror_range, 2);
17972 YY_SYMBOL_PRINT (
"Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp, p);
17974#line 2666 "parse.y"
17975 {after_shift_error_token(p);}
17976#line 17977 "parse.c"
18003 yyerror (&yylloc, p, YY_(
"memory exhausted"));
18012 if (yychar != YYEMPTY)
18016 yytoken = YYTRANSLATE (yychar);
18017 yydestruct (
"Cleanup: discarding lookahead",
18018 yytoken, &yylval, &yylloc, p);
18022 YYPOPSTACK (yylen);
18023 YY_STACK_PRINT (yyss, yyssp, p);
18024 while (yyssp != yyss)
18026 yydestruct (
"Cleanup: popping",
18027 YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, yylsp, p);
18032 YYSTACK_FREE (yyss);
18034 if (yymsg != yymsgbuf)
18035 YYSTACK_FREE (yymsg);
18039#line 6758 "parse.y"
18044# define yylval (*p->lval)
18052#define set_parser_s_value(x) (ifdef_ripper(p->s_value = (x), (void)0))
18054# define set_yylval_node(x) { \
18055 YYLTYPE _cur_loc; \
18056 rb_parser_set_location(p, &_cur_loc); \
18057 yylval.node = (x); \
18058 set_parser_s_value(STR_NEW(p->lex.ptok, p->lex.pcur-p->lex.ptok)); \
18060# define set_yylval_str(x) \
18062 set_yylval_node(NEW_STR(x, &_cur_loc)); \
18063 set_parser_s_value(rb_str_new_mutable_parser_string(x)); \
18065# define set_yylval_num(x) { \
18066 yylval.num = (x); \
18067 set_parser_s_value(x); \
18069# define set_yylval_id(x) (yylval.id = (x))
18070# define set_yylval_name(x) { \
18071 (yylval.id = (x)); \
18072 set_parser_s_value(ID2SYM(x)); \
18074# define yylval_id() (yylval.id)
18076#define set_yylval_noname() set_yylval_id(keyword_nil)
18077#define has_delayed_token(p) (p->delayed.token != NULL)
18080#define literal_flush(p, ptr) ((p)->lex.ptok = (ptr))
18081#define dispatch_scan_event(p, t) parser_dispatch_scan_event(p, t, __LINE__)
18086 const char *
const pcur = p->lex.pcur;
18087 const char *
const ptok = p->lex.ptok;
18088 if (p->keep_tokens && (pcur < ptok)) {
18089 rb_bug(
"lex.pcur < lex.ptok. (line: %d) %"PRIdPTRDIFF
"|%"PRIdPTRDIFF
"|%"PRIdPTRDIFF
"",
18090 p->ruby_sourceline, ptok - p->lex.pbeg, pcur - ptok, p->lex.pend - pcur);
18092 return pcur > ptok;
18099 case '"':
return "\\\"";
18100 case '\\':
return "\\\\";
18101 case '\0':
return "\\0";
18102 case '\n':
return "\\n";
18103 case '\r':
return "\\r";
18104 case '\t':
return "\\t";
18105 case '\f':
return "\\f";
18106 case '\013':
return "\\v";
18107 case '\010':
return "\\b";
18108 case '\007':
return "\\a";
18109 case '\033':
return "\\e";
18110 case '\x7f':
return "\\c?";
18119 const char *ptr = str->ptr;
18120 const char *pend = ptr + str->len;
18121 const char *prev = ptr;
18122 char charbuf[5] = {
'\\',
'x', 0, 0, 0};
18125 while (ptr < pend) {
18128 int n = rb_enc_precise_mbclen(ptr, pend, enc);
18130 if (ptr > prev) parser_str_cat(result, prev, ptr - prev);
18131 n = rb_enc_mbminlen(enc);
18132 if (pend < ptr + n)
18133 n = (int)(pend - ptr);
18135 c = *ptr & 0xf0 >> 4;
18136 charbuf[2] = (c < 10) ?
'0' + c :
'A' + c - 10;
18138 charbuf[3] = (c < 10) ?
'0' + c :
'A' + c - 10;
18139 parser_str_cat(result, charbuf, 4);
18145 c = rb_enc_mbc_to_codepoint(ptr, pend, enc);
18147 cc = escaped_char(c);
18149 if (ptr - n > prev) parser_str_cat(result, prev, ptr - n - prev);
18150 parser_str_cat_cstr(result, cc);
18153 else if (rb_enc_isascii(c, enc) &&
ISPRINT(c)) {
18156 if (ptr - n > prev) {
18157 parser_str_cat(result, prev, ptr - n - prev);
18160 parser_str_cat(result, prev, ptr - prev);
18164 if (ptr > prev) parser_str_cat(result, prev, ptr - prev);
18173 token->id = p->token_id;
18174 token->type_name = parser_token2char(p, t);
18176 token->loc.beg_pos = p->yylloc->beg_pos;
18177 token->loc.end_pos = p->yylloc->end_pos;
18178 rb_parser_ary_push_ast_token(p, p->tokens, token);
18183 rb_parser_printf(p,
"Append tokens (line: %d) [%d, :%s, \"%s\", [%d, %d, %d, %d]]\n",
18184 line, token->id, token->type_name, str_escaped->ptr,
18185 token->loc.beg_pos.lineno, token->loc.beg_pos.column,
18186 token->loc.end_pos.lineno, token->loc.end_pos.column);
18187 rb_parser_string_free(p, str_escaped);
18192parser_dispatch_scan_event(
struct parser_params *p,
enum yytokentype t,
int line)
18194 debug_token_line(p,
"parser_dispatch_scan_event", line);
18196 if (!parser_has_token(p))
return;
18198 RUBY_SET_YYLLOC(*p->yylloc);
18200 if (p->keep_tokens) {
18201 rb_parser_string_t *str = rb_parser_encoding_string_new(p, p->lex.ptok, p->lex.pcur - p->lex.ptok, p->enc);
18202 parser_append_tokens(p, str, t, line);
18208#define dispatch_delayed_token(p, t) parser_dispatch_delayed_token(p, t, __LINE__)
18210parser_dispatch_delayed_token(
struct parser_params *p,
enum yytokentype t,
int line)
18212 debug_token_line(p,
"parser_dispatch_delayed_token", line);
18214 if (!has_delayed_token(p))
return;
18216 RUBY_SET_YYLLOC_OF_DELAYED_TOKEN(*p->yylloc);
18218 if (p->keep_tokens) {
18220 parser_append_tokens(p, p->delayed.token, t, line);
18222 rb_parser_string_free(p, p->delayed.token);
18225 p->delayed.token = NULL;
18228#define literal_flush(p, ptr) ((void)(ptr))
18233 if (p->lex.pcur < p->lex.ptok) rb_raise(
rb_eRuntimeError,
"lex.pcur < lex.ptok");
18234 return p->lex.pcur > p->lex.ptok;
18238ripper_scan_event_val(
struct parser_params *p,
enum yytokentype t)
18240 VALUE str = STR_NEW(p->lex.ptok, p->lex.pcur - p->lex.ptok);
18241 VALUE rval = ripper_dispatch1(p, ripper_token2eventid(t), str);
18242 RUBY_SET_YYLLOC(*p->yylloc);
18248ripper_dispatch_scan_event(
struct parser_params *p,
enum yytokentype t)
18250 if (!ripper_has_scan_event(p))
return;
18252 set_parser_s_value(ripper_scan_event_val(p, t));
18254#define dispatch_scan_event(p, t) ripper_dispatch_scan_event(p, t)
18257ripper_dispatch_delayed_token(
struct parser_params *p,
enum yytokentype t)
18260 int saved_line = p->ruby_sourceline;
18261 const char *saved_tokp = p->lex.ptok;
18262 VALUE s_value, str;
18264 if (!has_delayed_token(p))
return;
18265 p->ruby_sourceline = p->delayed.beg_line;
18266 p->lex.ptok = p->lex.pbeg + p->delayed.beg_col;
18267 str = rb_str_new_mutable_parser_string(p->delayed.token);
18268 rb_parser_string_free(p, p->delayed.token);
18269 s_value = ripper_dispatch1(p, ripper_token2eventid(t), str);
18270 set_parser_s_value(s_value);
18271 p->delayed.token = NULL;
18272 p->ruby_sourceline = saved_line;
18273 p->lex.ptok = saved_tokp;
18275#define dispatch_delayed_token(p, t) ripper_dispatch_delayed_token(p, t)
18281 return rb_enc_isalnum((
unsigned char)*ptr, enc) || *ptr ==
'_' || !
ISASCII(*ptr);
18287 return !(p)->eofp && is_identchar(p, p->lex.pcur-1, p->lex.pend, p->enc);
18293 return ISASCII(*(p->lex.pcur-1));
18299 int column = 1, nonspc = 0, i;
18300 for (i = 0; i < loc->beg_pos.column; i++, ptr++) {
18301 if (*ptr ==
'\t') {
18302 column = (((column - 1) / TAB_WIDTH) + 1) * TAB_WIDTH;
18305 if (*ptr !=
' ' && *ptr !=
'\t') {
18310 ptinfo->beg = loc->beg_pos;
18311 ptinfo->indent = column;
18312 ptinfo->nonspc = nonspc;
18320 if (!p->token_info_enabled)
return;
18322 ptinfo->token = token;
18323 ptinfo->next = p->token_info;
18324 token_info_setup(ptinfo, p->lex.pbeg, loc);
18326 p->token_info = ptinfo;
18334 if (!ptinfo_beg)
return;
18337 token_info_warn(p, token, ptinfo_beg, 1, loc);
18339 p->token_info = ptinfo_beg->next;
18340 ruby_sized_xfree(ptinfo_beg,
sizeof(*ptinfo_beg));
18348 if (!ptinfo_beg)
return;
18349 p->token_info = ptinfo_beg->next;
18351 if (ptinfo_beg->beg.lineno != beg_pos.lineno ||
18352 ptinfo_beg->beg.column != beg_pos.column ||
18353 strcmp(ptinfo_beg->token, token)) {
18354 compile_error(p,
"token position mismatch: %d:%d:%s expected but %d:%d:%s",
18355 beg_pos.lineno, beg_pos.column, token,
18356 ptinfo_beg->beg.lineno, ptinfo_beg->beg.column,
18357 ptinfo_beg->token);
18360 ruby_sized_xfree(ptinfo_beg,
sizeof(*ptinfo_beg));
18366 token_info ptinfo_end_body, *ptinfo_end = &ptinfo_end_body;
18367 if (!p->token_info_enabled)
return;
18368 if (!ptinfo_beg)
return;
18369 token_info_setup(ptinfo_end, p->lex.pbeg, loc);
18370 if (ptinfo_beg->beg.lineno == ptinfo_end->beg.lineno)
return;
18371 if (ptinfo_beg->nonspc || ptinfo_end->nonspc)
return;
18372 if (ptinfo_beg->indent == ptinfo_end->indent)
return;
18373 if (!same && ptinfo_beg->indent < ptinfo_end->indent)
return;
18374 rb_warn3L(ptinfo_end->beg.lineno,
18375 "mismatched indentations at '%s' with '%s' at %d",
18376 WARN_S(token), WARN_S(ptinfo_beg->token), WARN_I(ptinfo_beg->beg.lineno));
18380parser_precise_mbclen(
struct parser_params *p,
const char *ptr)
18382 int len = rb_enc_precise_mbclen(ptr, p->lex.pend, p->enc);
18384 compile_error(p,
"invalid multibyte char (%s)", rb_enc_name(p->enc));
18395 int lineno = p->ruby_sourceline;
18399 else if (yylloc->beg_pos.lineno == lineno) {
18400 str = p->lex.lastline;
18405 ruby_show_error_line(p, p->error_buffer, yylloc, lineno, str);
18415 yylloc = RUBY_SET_YYLLOC(current);
18417 else if ((p->ruby_sourceline != yylloc->beg_pos.lineno &&
18418 p->ruby_sourceline != yylloc->end_pos.lineno)) {
18422 parser_compile_error(p, yylloc,
"%s", msg);
18423 parser_show_error_line(p, yylloc);
18431 return parser_yyerror(p, RUBY_SET_YYLLOC(current), msg);
18438 const int max_line_margin = 30;
18439 const char *ptr, *ptr_end, *pt, *pb;
18440 const char *pre =
"", *post =
"", *pend;
18441 const char *code =
"", *caret =
"";
18443 const char *
const pbeg = PARSER_STRING_PTR(str);
18448 if (!yylloc)
return;
18449 pend = rb_parser_string_end(str);
18450 if (pend > pbeg && pend[-1] ==
'\n') {
18451 if (--pend > pbeg && pend[-1] ==
'\r') --pend;
18455 if (lineno == yylloc->end_pos.lineno &&
18456 (pend - pbeg) > yylloc->end_pos.column) {
18457 pt = pbeg + yylloc->end_pos.column;
18460 ptr = ptr_end = pt;
18461 lim = ptr - pbeg > max_line_margin ? ptr - max_line_margin : pbeg;
18462 while ((lim < ptr) && (*(ptr-1) !=
'\n')) ptr--;
18464 lim = pend - ptr_end > max_line_margin ? ptr_end + max_line_margin : pend;
18465 while ((ptr_end < lim) && (*ptr_end !=
'\n') && (*ptr_end !=
'\r')) ptr_end++;
18467 len = ptr_end - ptr;
18470 ptr = rb_enc_prev_char(pbeg, ptr, pt, rb_parser_str_get_encoding(str));
18471 if (ptr > pbeg) pre =
"...";
18473 if (ptr_end < pend) {
18474 ptr_end = rb_enc_prev_char(pt, ptr_end, pend, rb_parser_str_get_encoding(str));
18475 if (ptr_end < pend) post =
"...";
18479 if (lineno == yylloc->beg_pos.lineno) {
18480 pb += yylloc->beg_pos.column;
18481 if (pb > pt) pb = pt;
18483 if (pb < ptr) pb = ptr;
18484 if (len <= 4 && yylloc->beg_pos.lineno == yylloc->end_pos.lineno) {
18487 if (
RTEST(errbuf)) {
18488 mesg = rb_attr_get(errbuf, idMesg);
18489 if (char_at_end(p, mesg,
'\n') !=
'\n')
18493 mesg = rb_enc_str_new(0, 0, rb_parser_str_get_encoding(str));
18495 if (!errbuf && rb_stderr_tty_p()) {
18496#define CSI_BEGIN "\033["
18499 CSI_BEGIN
""CSI_SGR
"%s"
18500 CSI_BEGIN
"1"CSI_SGR
"%.*s"
18501 CSI_BEGIN
"1;4"CSI_SGR
"%.*s"
18502 CSI_BEGIN
";1"CSI_SGR
"%.*s"
18503 CSI_BEGIN
""CSI_SGR
"%s"
18506 (
int)(pb - ptr), ptr,
18507 (
int)(pt - pb), pb,
18508 (
int)(ptr_end - pt), pt,
18514 len = ptr_end - ptr;
18515 lim = pt < pend ? pt : pend;
18516 i = (int)(lim - ptr);
18522 *p2++ = *ptr++ ==
'\t' ?
'\t' :
' ';
18528 memset(p2,
'~', (lim - ptr));
18532 rb_str_catf(mesg,
"%s%.*s%s\n""%s%s\n",
18533 pre, (
int)
len, code, post,
18536 if (!errbuf) rb_write_error_str(mesg);
18543 const char *pcur = 0, *ptok = 0;
18544 if (p->ruby_sourceline == yylloc->beg_pos.lineno &&
18545 p->ruby_sourceline == yylloc->end_pos.lineno) {
18546 pcur = p->lex.pcur;
18547 ptok = p->lex.ptok;
18548 p->lex.ptok = p->lex.pbeg + yylloc->beg_pos.column;
18549 p->lex.pcur = p->lex.pbeg + yylloc->end_pos.column;
18551 parser_yyerror0(p, msg);
18553 p->lex.ptok = ptok;
18554 p->lex.pcur = pcur;
18562 dispatch1(parse_error, STR_NEW2(msg));
18574vtable_size(
const struct vtable *tbl)
18576 if (!DVARS_TERMINAL_P(tbl)) {
18594 rb_parser_printf(p,
"vtable_alloc:%d: %p\n", line, (
void *)tbl);
18599#define vtable_alloc(prev) vtable_alloc_gen(p, __LINE__, prev)
18602vtable_free_gen(
struct parser_params *p,
int line,
const char *name,
18607 rb_parser_printf(p,
"vtable_free:%d: %s(%p)\n", line, name, (
void *)tbl);
18610 if (!DVARS_TERMINAL_P(tbl)) {
18612 ruby_sized_xfree(tbl->tbl, tbl->capa *
sizeof(
ID));
18614 ruby_sized_xfree(tbl,
sizeof(*tbl));
18617#define vtable_free(tbl) vtable_free_gen(p, __LINE__, #tbl, tbl)
18620vtable_add_gen(
struct parser_params *p,
int line,
const char *name,
18625 rb_parser_printf(p,
"vtable_add:%d: %s(%p), %s\n",
18626 line, name, (
void *)tbl, rb_id2name(
id));
18629 if (DVARS_TERMINAL_P(tbl)) {
18630 rb_parser_fatal(p,
"vtable_add: vtable is not allocated (%p)", (
void *)tbl);
18633 if (tbl->pos == tbl->capa) {
18634 tbl->capa = tbl->capa * 2;
18635 SIZED_REALLOC_N(tbl->tbl,
ID, tbl->capa, tbl->pos);
18637 tbl->tbl[tbl->pos++] = id;
18639#define vtable_add(tbl, id) vtable_add_gen(p, __LINE__, #tbl, tbl, id)
18642vtable_pop_gen(
struct parser_params *p,
int line,
const char *name,
18643 struct vtable *tbl,
int n)
18646 rb_parser_printf(p,
"vtable_pop:%d: %s(%p), %d\n",
18647 line, name, (
void *)tbl, n);
18649 if (tbl->pos < n) {
18650 rb_parser_fatal(p,
"vtable_pop: unreachable (%d < %d)", tbl->pos, n);
18655#define vtable_pop(tbl, n) vtable_pop_gen(p, __LINE__, #tbl, tbl, n)
18658vtable_included(
const struct vtable * tbl,
ID id)
18662 if (!DVARS_TERMINAL_P(tbl)) {
18663 for (i = 0; i < tbl->pos; i++) {
18664 if (tbl->tbl[i] ==
id) {
18677 return strcmp(p->ruby_sourcefile,
"-e") == 0;
18684yycompile0(
VALUE arg)
18691 if (!compile_for_eval && !
NIL_P(p->ruby_sourcefile_string) && !e_option_supplied(p)) {
18695 if (p->debug_lines) {
18696 p->ast->body.script_lines = p->debug_lines;
18700#define RUBY_DTRACE_PARSE_HOOK(name) \
18701 if (RUBY_DTRACE_PARSE_##name##_ENABLED()) { \
18702 RUBY_DTRACE_PARSE_##name(p->ruby_sourcefile, p->ruby_sourceline); \
18704 RUBY_DTRACE_PARSE_HOOK(BEGIN);
18706 RUBY_DTRACE_PARSE_HOOK(END);
18708 p->debug_lines = 0;
18710 xfree(p->lex.strterm);
18711 p->lex.strterm = 0;
18712 p->lex.pcur = p->lex.pbeg = p->lex.pend = 0;
18713 if (n || p->error_p) {
18714 VALUE mesg = p->error_buffer;
18716 mesg = syntax_error_new();
18718 if (!p->error_tolerant) {
18719 rb_set_errinfo(mesg);
18723 tree = p->eval_tree;
18725 tree = NEW_NIL(&NULL_LOC);
18730 NODE *body = parser_append_options(p, RNODE_SCOPE(tree)->nd_body);
18731 prelude = block_append(p, p->eval_tree_begin, body);
18732 RNODE_SCOPE(tree)->nd_body = prelude;
18733 p->ast->body.frozen_string_literal = p->frozen_string_literal;
18734 p->ast->body.coverage_enabled = cov;
18735 if (p->keep_tokens) {
18736 p->ast->node_buffer->tokens = tokens;
18740 p->ast->body.root = tree;
18741 p->ast->body.line_count = p->line_count;
18749 if (
NIL_P(fname)) {
18750 p->ruby_sourcefile_string =
Qnil;
18751 p->ruby_sourcefile =
"(none)";
18754 p->ruby_sourcefile_string = rb_str_to_interned_str(fname);
18757 p->ruby_sourceline = line - 1;
18761 p->ast = ast = rb_ast_new();
18762 compile_callback(yycompile0, (
VALUE)p);
18776 rb_encoding *enc = rb_parser_str_get_encoding(s);
18777 if (!rb_enc_asciicompat(enc)) {
18778 rb_raise(rb_eArgError,
"invalid source encoding");
18787 if (!line)
return 0;
18789 string_buffer_append(p, line);
18790 must_be_ascii_compatible(p, line);
18796rb_parser_compile(
rb_parser_t *p, rb_parser_lex_gets_func *gets,
VALUE fname, rb_parser_input_data input,
int line)
18798 p->lex.gets = gets;
18799 p->lex.input = input;
18800 p->lex.pbeg = p->lex.pcur = p->lex.pend = 0;
18802 return yycompile(p, fname, line);
18806#define STR_FUNC_ESCAPE 0x01
18807#define STR_FUNC_EXPAND 0x02
18808#define STR_FUNC_REGEXP 0x04
18809#define STR_FUNC_QWORDS 0x08
18810#define STR_FUNC_SYMBOL 0x10
18811#define STR_FUNC_INDENT 0x20
18812#define STR_FUNC_LABEL 0x40
18813#define STR_FUNC_LIST 0x4000
18814#define STR_FUNC_TERM 0x8000
18817 str_label = STR_FUNC_LABEL,
18819 str_dquote = (STR_FUNC_EXPAND),
18820 str_xquote = (STR_FUNC_EXPAND),
18821 str_regexp = (STR_FUNC_REGEXP|STR_FUNC_ESCAPE|STR_FUNC_EXPAND),
18822 str_sword = (STR_FUNC_QWORDS|STR_FUNC_LIST),
18823 str_dword = (STR_FUNC_QWORDS|STR_FUNC_EXPAND|STR_FUNC_LIST),
18824 str_ssym = (STR_FUNC_SYMBOL),
18825 str_dsym = (STR_FUNC_SYMBOL|STR_FUNC_EXPAND)
18833 pstr = rb_parser_encoding_string_new(p, ptr,
len, enc);
18835 if (!(func & STR_FUNC_REGEXP)) {
18836 if (rb_parser_is_ascii_string(p, pstr)) {
18838 else if (rb_is_usascii_enc((
void *)enc0) && enc != rb_utf8_encoding()) {
18840 enc = rb_ascii8bit_encoding();
18841 PARSER_ENCODING_CODERANGE_SET(pstr, enc, RB_PARSER_ENC_CODERANGE_VALID);
18851 return strterm->heredoc;
18855new_strterm(
struct parser_params *p,
int func,
int term,
int paren)
18858 strterm->u.literal.func = func;
18859 strterm->u.literal.term = term;
18860 strterm->u.literal.paren = paren;
18868 strterm->heredoc =
true;
18872#define peek(p,c) peek_n(p, (c), 0)
18873#define peek_n(p,c,n) (!lex_eol_n_p(p, n) && (c) == (unsigned char)(p)->lex.pcur[n])
18874#define peekc(p) peekc_n(p, 0)
18875#define peekc_n(p,n) (lex_eol_n_p(p, n) ? -1 : (unsigned char)(p)->lex.pcur[n])
18877#define add_delayed_token(p, tok, end) parser_add_delayed_token(p, tok, end, __LINE__)
18879parser_add_delayed_token(
struct parser_params *p,
const char *tok,
const char *end,
int line)
18881 debug_token_line(p,
"add_delayed_token", line);
18884 if (has_delayed_token(p)) {
18885 bool next_line = parser_string_char_at_end(p, p->delayed.token, 0) ==
'\n';
18886 int end_line = (next_line ? 1 : 0) + p->delayed.end_line;
18887 int end_col = (next_line ? 0 : p->delayed.end_col);
18888 if (end_line != p->ruby_sourceline || end_col != tok - p->lex.pbeg) {
18889 dispatch_delayed_token(p, tSTRING_CONTENT);
18892 if (!has_delayed_token(p)) {
18893 p->delayed.token = rb_parser_string_new(p, 0, 0);
18894 rb_parser_enc_associate(p, p->delayed.token, p->enc);
18895 p->delayed.beg_line = p->ruby_sourceline;
18896 p->delayed.beg_col =
rb_long2int(tok - p->lex.pbeg);
18898 parser_str_cat(p->delayed.token, tok, end - tok);
18899 p->delayed.end_line = p->ruby_sourceline;
18900 p->delayed.end_col =
rb_long2int(end - p->lex.pbeg);
18908 p->lex.pbeg = p->lex.pcur = PARSER_STRING_PTR(str);
18909 p->lex.pend = p->lex.pcur + PARSER_STRING_LEN(str);
18910 p->lex.lastline = str;
18917 p->lex.nextline = 0;
18922 if (!lex_eol_ptr_p(p, p->lex.pbeg) && *(p->lex.pend-1) !=
'\n') {
18926 if (!p->lex.input || !(str = lex_getline(p))) {
18933 if (p->debug_lines) {
18934 if (set_encoding) rb_parser_enc_associate(p, str, p->enc);
18936 rb_parser_ary_push_script_line(p, p->debug_lines, copy);
18939 p->cr_seen = FALSE;
18941 else if (str == AFTER_HEREDOC_WITHOUT_TERMINATOR) {
18945 add_delayed_token(p, p->lex.ptok, p->lex.pend);
18946 if (p->heredoc_end > 0) {
18947 p->ruby_sourceline = p->heredoc_end;
18948 p->heredoc_end = 0;
18950 p->ruby_sourceline++;
18951 set_lastline(p, str);
18959 if (peek(p,
'\n')) {
18971 if (UNLIKELY(lex_eol_p(p) || p->eofp || p->lex.nextline > AFTER_HEREDOC_WITHOUT_TERMINATOR)) {
18972 if (nextline(p, set_encoding))
return -1;
18974 c = (
unsigned char)*p->lex.pcur++;
18975 if (UNLIKELY(c ==
'\r')) {
18976 c = parser_cr(p, c);
18981#define nextc(p) nextc0(p, TRUE)
18986 if (c == -1)
return;
18989 if (p->lex.pcur > p->lex.pbeg && p->lex.pcur[0] ==
'\n' && p->lex.pcur[-1] ==
'\r') {
18994#define was_bol(p) ((p)->lex.pcur == (p)->lex.pbeg + 1)
18996#define tokfix(p) ((p)->tokenbuf[(p)->tokidx]='\0')
18997#define tok(p) (p)->tokenbuf
18998#define toklen(p) (p)->tokidx
19003 const char *ptr = p->lex.pcur;
19004 while (!lex_eol_ptr_p(p, ptr)) {
19005 int c = (
unsigned char)*ptr++;
19006 int eol = (c ==
'\n' || c ==
'#');
19018 if (!p->tokenbuf) {
19020 p->tokenbuf =
ALLOC_N(
char, 60);
19022 if (p->toksiz > 4096) {
19026 return p->tokenbuf;
19034 if (p->tokidx >= p->toksiz) {
19035 do {p->toksiz *= 2;}
while (p->toksiz < p->tokidx);
19036 REALLOC_N(p->tokenbuf,
char, p->toksiz);
19038 return &p->tokenbuf[p->tokidx-n];
19044 p->tokenbuf[p->tokidx++] = (char)c;
19045 if (p->tokidx >= p->toksiz) {
19047 REALLOC_N(p->tokenbuf,
char, p->toksiz);
19056 c = (int)ruby_scan_hex(p->lex.pcur, 2, numlen);
19059 yyerror0(
"invalid hex escape");
19060 dispatch_scan_event(p, tSTRING_CONTENT);
19063 p->lex.pcur += *numlen;
19067#define tokcopy(p, n) memcpy(tokspace(p, n), (p)->lex.pcur - (n), (n))
19070escaped_control_code(
int c)
19096#define WARN_SPACE_CHAR(c, prefix) \
19097 rb_warn1("invalid character syntax; use "prefix"\\%c", WARN_I(c))
19101 int regexp_literal,
const char *begin)
19103 const int wide = !begin;
19105 int codepoint = (int)ruby_scan_hex(p->lex.pcur, wide ? p->lex.pend - p->lex.pcur : 4, &numlen);
19107 p->lex.pcur += numlen;
19108 if (p->lex.strterm == NULL ||
19109 strterm_is_heredoc(p->lex.strterm) ||
19110 (p->lex.strterm->u.literal.func != str_regexp)) {
19111 if (!begin) begin = p->lex.pcur;
19112 if (wide ? (numlen == 0 || numlen > 6) : (numlen < 4)) {
19113 flush_string_content(p, rb_utf8_encoding(), p->lex.pcur - begin);
19114 yyerror0(
"invalid Unicode escape");
19115 dispatch_scan_event(p, tSTRING_CONTENT);
19116 return wide && numlen > 0;
19118 if (codepoint > 0x10ffff) {
19119 flush_string_content(p, rb_utf8_encoding(), p->lex.pcur - begin);
19120 yyerror0(
"invalid Unicode codepoint (too large)");
19121 dispatch_scan_event(p, tSTRING_CONTENT);
19124 if ((codepoint & 0xfffff800) == 0xd800) {
19125 flush_string_content(p, rb_utf8_encoding(), p->lex.pcur - begin);
19126 yyerror0(
"invalid Unicode codepoint");
19127 dispatch_scan_event(p, tSTRING_CONTENT);
19131 if (regexp_literal) {
19132 tokcopy(p, (
int)numlen);
19134 else if (codepoint >= 0x80) {
19136 if (*encp && utf8 != *encp) {
19137 YYLTYPE loc = RUBY_INIT_YYLLOC();
19138 compile_error(p,
"UTF-8 mixed within %s source", rb_enc_name(*encp));
19139 parser_show_error_line(p, &loc);
19143 tokaddmbc(p, codepoint, *encp);
19146 tokadd(p, codepoint);
19156 int len = parser_precise_mbclen(p, p->lex.pcur-1);
19158 p->lex.pcur +=
len - 1;
19166 int term,
int symbol_literal,
int regexp_literal)
19173 static const char multiple_codepoints[] =
"Multiple codepoints at single character literal";
19175 const int open_brace =
'{', close_brace =
'}';
19177 if (regexp_literal) { tokadd(p,
'\\'); tokadd(p,
'u'); }
19179 if (peek(p, open_brace)) {
19180 if (regexp_literal && p->lex.strterm->u.literal.func == str_regexp) {
19187 tokadd(p, open_brace);
19188 while (!lex_eol_ptr_p(p, ++p->lex.pcur)) {
19190 if (c == close_brace) {
19195 else if (c == term) {
19198 if (c ==
'\\' && !lex_eol_n_p(p, 1)) {
19200 c = *++p->lex.pcur;
19202 tokadd_mbchar(p, c);
19206 const char *second = NULL;
19207 int c, last = nextc(p);
19208 if (lex_eol_p(p))
goto unterminated;
19209 while (
ISSPACE(c = peekc(p)) && !lex_eol_ptr_p(p, ++p->lex.pcur));
19210 while (c != close_brace) {
19211 if (c == term)
goto unterminated;
19212 if (second == multiple_codepoints)
19213 second = p->lex.pcur;
19214 if (regexp_literal) tokadd(p, last);
19215 if (!tokadd_codepoint(p, encp, regexp_literal, NULL)) {
19218 while (
ISSPACE(c = peekc(p))) {
19219 if (lex_eol_ptr_p(p, ++p->lex.pcur))
goto unterminated;
19222 if (term == -1 && !second)
19223 second = multiple_codepoints;
19226 if (c != close_brace) {
19228 flush_string_content(p, rb_utf8_encoding(), 0);
19229 yyerror0(
"unterminated Unicode escape");
19230 dispatch_scan_event(p, tSTRING_CONTENT);
19233 if (second && second != multiple_codepoints) {
19234 const char *pcur = p->lex.pcur;
19235 p->lex.pcur = second;
19236 dispatch_scan_event(p, tSTRING_CONTENT);
19238 p->lex.pcur = pcur;
19239 yyerror0(multiple_codepoints);
19243 if (regexp_literal) tokadd(p, close_brace);
19248 if (!tokadd_codepoint(p, encp, regexp_literal, p->lex.pcur -
rb_strlen_lit(
"\\u"))) {
19255#define ESCAPE_CONTROL 1
19256#define ESCAPE_META 2
19259read_escape(
struct parser_params *p,
int flags,
const char *begin)
19264 switch (c = nextc(p)) {
19289 case '0':
case '1':
case '2':
case '3':
19290 case '4':
case '5':
case '6':
case '7':
19292 c = (int)ruby_scan_oct(p->lex.pcur, 3, &numlen);
19293 p->lex.pcur += numlen;
19297 c = tok_hex(p, &numlen);
19298 if (numlen == 0)
return 0;
19308 if (flags & ESCAPE_META)
goto eof;
19309 if ((c = nextc(p)) !=
'-') {
19312 if ((c = nextc(p)) ==
'\\') {
19313 switch (peekc(p)) {
19314 case 'u':
case 'U':
19318 return read_escape(p, flags|ESCAPE_META, begin) | 0x80;
19320 else if (c == -1)
goto eof;
19326 int c2 = escaped_control_code(c);
19328 if (
ISCNTRL(c) || !(flags & ESCAPE_CONTROL)) {
19329 WARN_SPACE_CHAR(c2,
"\\M-");
19332 WARN_SPACE_CHAR(c2,
"\\C-\\M-");
19335 else if (
ISCNTRL(c))
goto eof;
19336 return ((c & 0xff) | 0x80);
19340 if ((c = nextc(p)) !=
'-') {
19344 if (flags & ESCAPE_CONTROL)
goto eof;
19345 if ((c = nextc(p))==
'\\') {
19346 switch (peekc(p)) {
19347 case 'u':
case 'U':
19351 c = read_escape(p, flags|ESCAPE_CONTROL, begin);
19355 else if (c == -1)
goto eof;
19361 int c2 = escaped_control_code(c);
19364 if (flags & ESCAPE_META) {
19365 WARN_SPACE_CHAR(c2,
"\\M-");
19368 WARN_SPACE_CHAR(c2,
"");
19372 if (flags & ESCAPE_META) {
19373 WARN_SPACE_CHAR(c2,
"\\M-\\C-");
19376 WARN_SPACE_CHAR(c2,
"\\C-");
19380 else if (
ISCNTRL(c))
goto eof;
19386 flush_string_content(p, p->enc, p->lex.pcur - begin);
19387 yyerror0(
"Invalid escape character syntax");
19388 dispatch_scan_event(p, tSTRING_CONTENT);
19403 int len = rb_enc_codelen(c, enc);
19404 rb_enc_mbcput(c, tokspace(p,
len), enc);
19412 const char *begin = p->lex.pcur;
19414 switch (c = nextc(p)) {
19418 case '0':
case '1':
case '2':
case '3':
19419 case '4':
case '5':
case '6':
case '7':
19421 ruby_scan_oct(--p->lex.pcur, 3, &numlen);
19422 if (numlen == 0)
goto eof;
19423 p->lex.pcur += numlen;
19424 tokcopy(p, (
int)numlen + 1);
19430 tok_hex(p, &numlen);
19431 if (numlen == 0)
return -1;
19432 tokcopy(p, (
int)numlen + 2);
19438 flush_string_content(p, p->enc, p->lex.pcur - begin);
19439 yyerror0(
"Invalid escape character syntax");
19451char_to_option(
int c)
19457 val = RE_ONIG_OPTION_IGNORECASE;
19460 val = RE_ONIG_OPTION_EXTEND;
19463 val = RE_ONIG_OPTION_MULTILINE;
19472#define ARG_ENCODING_FIXED 16
19473#define ARG_ENCODING_NONE 32
19474#define ENC_ASCII8BIT 1
19475#define ENC_EUC_JP 2
19476#define ENC_Windows_31J 3
19480char_to_option_kcode(
int c,
int *option,
int *kcode)
19486 *kcode = ENC_ASCII8BIT;
19487 return (*option = ARG_ENCODING_NONE);
19489 *kcode = ENC_EUC_JP;
19492 *kcode = ENC_Windows_31J;
19499 return (*option = char_to_option(c));
19501 *option = ARG_ENCODING_FIXED;
19514 while (c = nextc(p),
ISALPHA(c)) {
19516 options |= RE_OPTION_ONCE;
19518 else if (char_to_option_kcode(c, &opt, &kc)) {
19520 if (kc != ENC_ASCII8BIT) kcode = c;
19534 YYLTYPE loc = RUBY_INIT_YYLLOC();
19536 compile_error(p,
"unknown regexp option%s - %*s",
19537 toklen(p) > 1 ?
"s" :
"", toklen(p), tok(p));
19538 parser_show_error_line(p, &loc);
19540 return options | RE_OPTION_ENCODING(kcode);
19546 int len = parser_precise_mbclen(p, p->lex.pcur-1);
19547 if (
len < 0)
return -1;
19549 p->lex.pcur += --
len;
19550 if (
len > 0) tokcopy(p,
len);
19555simple_re_meta(
int c)
19558 case '$':
case '*':
case '+':
case '.':
19559 case '?':
case '^':
case '|':
19560 case ')':
case ']':
case '}':
case '>':
19568parser_update_heredoc_indent(
struct parser_params *p,
int c)
19570 if (p->heredoc_line_indent == -1) {
19571 if (c ==
'\n') p->heredoc_line_indent = 0;
19575 p->heredoc_line_indent++;
19578 else if (c ==
'\t') {
19579 int w = (p->heredoc_line_indent / TAB_WIDTH) + 1;
19580 p->heredoc_line_indent = w * TAB_WIDTH;
19583 else if (c !=
'\n') {
19584 if (p->heredoc_indent > p->heredoc_line_indent) {
19585 p->heredoc_indent = p->heredoc_line_indent;
19587 p->heredoc_line_indent = -1;
19591 p->heredoc_line_indent = 0;
19600 YYLTYPE loc = RUBY_INIT_YYLLOC();
19601 const char *n1 = rb_enc_name(enc1), *n2 = rb_enc_name(enc2);
19602 compile_error(p,
"%s mixed within %s source", n1, n2);
19603 parser_show_error_line(p, &loc);
19609 const char *pos = p->lex.pcur;
19611 parser_mixed_error(p, enc1, enc2);
19616nibble_char_upper(
unsigned int c)
19619 return c + (c < 10 ?
'0' :
'A' - 10);
19624 int func,
int term,
int paren,
long *nest,
19628 bool erred =
false;
19630 const int heredoc_end = (p->heredoc_end ? p->heredoc_end + 1 : 0);
19631 int top_of_line = FALSE;
19634#define mixed_error(enc1, enc2) \
19635 (void)(erred || (parser_mixed_error(p, enc1, enc2), erred = true))
19636#define mixed_escape(beg, enc1, enc2) \
19637 (void)(erred || (parser_mixed_escape(p, beg, enc1, enc2), erred = true))
19639 while ((c = nextc(p)) != -1) {
19640 if (p->heredoc_indent > 0) {
19641 parser_update_heredoc_indent(p, c);
19644 if (top_of_line && heredoc_end == p->ruby_sourceline) {
19650 if (paren && c == paren) {
19653 else if (c == term) {
19654 if (!nest || !*nest) {
19660 else if ((func & STR_FUNC_EXPAND) && c ==
'#' && !lex_eol_p(p)) {
19661 unsigned char c2 = *p->lex.pcur;
19662 if (c2 ==
'$' || c2 ==
'@' || c2 ==
'{') {
19667 else if (c ==
'\\') {
19671 if (func & STR_FUNC_QWORDS)
break;
19672 if (func & STR_FUNC_EXPAND) {
19673 if (!(func & STR_FUNC_INDENT) || (p->heredoc_indent < 0))
19684 if (func & STR_FUNC_ESCAPE) tokadd(p, c);
19688 if ((func & STR_FUNC_EXPAND) == 0) {
19692 tokadd_utf8(p, enc, term,
19693 func & STR_FUNC_SYMBOL,
19694 func & STR_FUNC_REGEXP);
19698 if (c == -1)
return -1;
19700 if ((func & STR_FUNC_EXPAND) == 0) tokadd(p,
'\\');
19703 if (func & STR_FUNC_REGEXP) {
19709 c = read_escape(p, 0, p->lex.pcur - 1);
19714 *t++ = nibble_char_upper(c >> 4);
19715 *t++ = nibble_char_upper(c);
19720 if (c == term && !simple_re_meta(c)) {
19725 if ((c = tokadd_escape(p)) < 0)
19727 if (*enc && *enc != *encp) {
19728 mixed_escape(p->lex.ptok+2, *enc, *encp);
19732 else if (func & STR_FUNC_EXPAND) {
19734 if (func & STR_FUNC_ESCAPE) tokadd(p,
'\\');
19735 c = read_escape(p, 0, p->lex.pcur - 1);
19737 else if ((func & STR_FUNC_QWORDS) &&
ISSPACE(c)) {
19740 else if (c != term && !(paren && c == paren)) {
19747 else if (!parser_isascii(p)) {
19752 else if (*enc != *encp) {
19753 mixed_error(*enc, *encp);
19756 if (tokadd_mbchar(p, c) == -1)
return -1;
19759 else if ((func & STR_FUNC_QWORDS) &&
ISSPACE(c)) {
19767 else if (*enc != *encp) {
19768 mixed_error(*enc, *encp);
19774 top_of_line = (c ==
'\n');
19778 if (*enc) *encp = *enc;
19782#define NEW_STRTERM(func, term, paren) new_strterm(p, func, term, paren)
19787 p->lex.pcur -= back;
19788 if (has_delayed_token(p)) {
19789 ptrdiff_t
len = p->lex.pcur - p->lex.ptok;
19791 rb_parser_enc_str_buf_cat(p, p->delayed.token, p->lex.ptok,
len, enc);
19792 p->delayed.end_line = p->ruby_sourceline;
19793 p->delayed.end_col =
rb_long2int(p->lex.pcur - p->lex.pbeg);
19795 dispatch_delayed_token(p, tSTRING_CONTENT);
19796 p->lex.ptok = p->lex.pcur;
19798 dispatch_scan_event(p, tSTRING_CONTENT);
19799 p->lex.pcur += back;
19805#define BIT(c, idx) (((c) / 32 - 1 == idx) ? (1U << ((c) % 32)) : 0)
19806#define SPECIAL_PUNCT(idx) ( \
19807 BIT('~', idx) | BIT('*', idx) | BIT('$', idx) | BIT('?', idx) | \
19808 BIT('!', idx) | BIT('@', idx) | BIT('/', idx) | BIT('\\', idx) | \
19809 BIT(';', idx) | BIT(',', idx) | BIT('.', idx) | BIT('=', idx) | \
19810 BIT(':', idx) | BIT('<', idx) | BIT('>', idx) | BIT('\"', idx) | \
19811 BIT('&', idx) | BIT('`', idx) | BIT('\'', idx) | BIT('+', idx) | \
19813const uint_least32_t ruby_global_name_punct_bits[] = {
19819#undef SPECIAL_PUNCT
19822static enum yytokentype
19823parser_peek_variable_name(struct parser_params *p)
19826 const char *ptr = p->lex.pcur;
19828 if (lex_eol_ptr_n_p(p, ptr, 1)) return 0;
19832 if ((c = *ptr) == '-') {
19833 if (lex_eol_ptr_p(p, ++ptr)) return 0;
19836 else if (is_global_name_punct(c) || ISDIGIT(c)) {
19837 return tSTRING_DVAR;
19841 if ((c = *ptr) == '@') {
19842 if (lex_eol_ptr_p(p, ++ptr)) return 0;
19848 p->command_start = TRUE;
19849 yylval.state = p->lex.state;
19850 return tSTRING_DBEG;
19854 if (!ISASCII(c) || c == '_' || ISALPHA(c))
19855 return tSTRING_DVAR;
19859#define IS_ARG() IS_lex_state(EXPR_ARG_ANY)
19860#define IS_END() IS_lex_state(EXPR_END_ANY)
19861#define IS_BEG() (IS_lex_state(EXPR_BEG_ANY) || IS_lex_state_all(EXPR_ARG|EXPR_LABELED))
19862#define IS_SPCARG(c) (IS_ARG() && space_seen && !ISSPACE(c))
19863#define IS_LABEL_POSSIBLE() (\
19864 (IS_lex_state(EXPR_LABEL|EXPR_ENDFN) && !cmd_state) || \
19866#define IS_LABEL_SUFFIX(n) (peek_n(p, ':',(n)) && !peek_n(p, ':', (n)+1))
19867#define IS_AFTER_OPERATOR() IS_lex_state(EXPR_FNAME | EXPR_DOT)
19869static inline enum yytokentype
19870parser_string_term(struct parser_params *p, int func)
19872 xfree(p->lex.strterm);
19873 p->lex.strterm = 0;
19874 if (func & STR_FUNC_REGEXP) {
19875 set_yylval_num(regx_options(p));
19876 dispatch_scan_event(p, tREGEXP_END);
19877 SET_LEX_STATE(EXPR_END);
19878 return tREGEXP_END;
19880 if ((func & STR_FUNC_LABEL) && IS_LABEL_SUFFIX(0)) {
19882 SET_LEX_STATE(EXPR_ARG|EXPR_LABELED);
19885 SET_LEX_STATE(EXPR_END);
19886 return tSTRING_END;
19889static enum yytokentype
19890parse_string(struct parser_params *p, rb_strterm_literal_t *quote)
19892 int func = quote->func;
19893 int term = quote->term;
19894 int paren = quote->paren;
19896 rb_encoding *enc = p->enc;
19897 rb_encoding *base_enc = 0;
19898 rb_parser_string_t *lit;
19900 if (func & STR_FUNC_TERM) {
19901 if (func & STR_FUNC_QWORDS) nextc(p); /* delayed term */
19902 SET_LEX_STATE(EXPR_END);
19903 xfree(p->lex.strterm);
19904 p->lex.strterm = 0;
19905 return func & STR_FUNC_REGEXP ? tREGEXP_END : tSTRING_END;
19908 if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
19909 while (c != '\n' && ISSPACE(c = nextc(p)));
19912 if (func & STR_FUNC_LIST) {
19913 quote->func &= ~STR_FUNC_LIST;
19916 if (c == term && !quote->nest) {
19917 if (func & STR_FUNC_QWORDS) {
19918 quote->func |= STR_FUNC_TERM;
19919 pushback(p, c); /* dispatch the term at tSTRING_END */
19920 add_delayed_token(p, p->lex.ptok, p->lex.pcur);
19923 return parser_string_term(p, func);
19926 if (!ISSPACE(c)) pushback(p, c);
19927 add_delayed_token(p, p->lex.ptok, p->lex.pcur);
19931 if ((func & STR_FUNC_EXPAND) && c == '#') {
19932 enum yytokentype t = parser_peek_variable_name(p);
19938 if (tokadd_string(p, func, term, paren, "e->nest,
19939 &enc, &base_enc) == -1) {
19942# define unterminated_literal(mesg) yyerror0(mesg)
19944# define unterminated_literal(mesg) compile_error(p, mesg)
19946 literal_flush(p, p->lex.pcur);
19947 if (func & STR_FUNC_QWORDS) {
19948 /* no content to add, bailing out here */
19949 unterminated_literal("unterminated list meets end of file");
19950 xfree(p->lex.strterm);
19951 p->lex.strterm = 0;
19952 return tSTRING_END;
19954 if (func & STR_FUNC_REGEXP) {
19955 unterminated_literal("unterminated regexp meets end of file");
19958 unterminated_literal("unterminated string meets end of file");
19960 quote->func |= STR_FUNC_TERM;
19965 lit = STR_NEW3(tok(p), toklen(p), enc, func);
19966 set_yylval_str(lit);
19967 flush_string_content(p, enc, 0);
19969 return tSTRING_CONTENT;
19972static enum yytokentype
19973heredoc_identifier(struct parser_params *p)
19976 * term_len is length of `<<"END"` except `END`,
19977 * in this case term_len is 4 (<, <, " and ").
19979 long len, offset = p->lex.pcur - p->lex.pbeg;
19980 int c = nextc(p), term, func = 0, quote = 0;
19981 enum yytokentype token = tSTRING_BEG;
19986 func = STR_FUNC_INDENT;
19989 else if (c == '~') {
19991 func = STR_FUNC_INDENT;
19997 func |= str_squote; goto quoted;
19999 func |= str_dquote;
goto quoted;
20001 token = tXSTRING_BEG;
20002 func |= str_xquote;
goto quoted;
20009 while ((c = nextc(p)) != term) {
20010 if (c == -1 || c ==
'\r' || c ==
'\n') {
20011 yyerror0(
"unterminated here document identifier");
20018 if (!parser_is_identchar(p)) {
20020 if (func & STR_FUNC_INDENT) {
20021 pushback(p, indent > 0 ?
'~' :
'-');
20025 func |= str_dquote;
20027 int n = parser_precise_mbclen(p, p->lex.pcur-1);
20028 if (n < 0)
return 0;
20029 p->lex.pcur += --n;
20030 }
while ((c = nextc(p)) != -1 && parser_is_identchar(p));
20035 len = p->lex.pcur - (p->lex.pbeg + offset) - quote;
20036 if ((
unsigned long)
len >= HERETERM_LENGTH_MAX)
20037 yyerror0(
"too long here document identifier");
20038 dispatch_scan_event(p, tHEREDOC_BEG);
20041 p->lex.strterm = new_heredoc(p);
20043 here->offset = offset;
20044 here->sourceline = p->ruby_sourceline;
20045 here->length = (unsigned)
len;
20046 here->quote = quote;
20048 here->lastline = p->lex.lastline;
20051 p->heredoc_indent = indent;
20052 p->heredoc_line_indent = 0;
20062 p->lex.strterm = 0;
20063 line = here->lastline;
20064 p->lex.lastline = line;
20065 p->lex.pbeg = PARSER_STRING_PTR(line);
20066 p->lex.pend = p->lex.pbeg + PARSER_STRING_LEN(line);
20067 p->lex.pcur = p->lex.pbeg + here->offset + here->length + here->quote;
20068 p->lex.ptok = p->lex.pbeg + here->offset - here->quote;
20069 p->heredoc_end = p->ruby_sourceline;
20070 p->ruby_sourceline = (int)here->sourceline;
20071 if (p->eofp) p->lex.nextline = AFTER_HEREDOC_WITHOUT_TERMINATOR;
20077dedent_string_column(
const char *str,
long len,
int width)
20081 for (i = 0; i <
len && col < width; i++) {
20082 if (str[i] ==
' ') {
20085 else if (str[i] ==
'\t') {
20086 int n = TAB_WIDTH * (col / TAB_WIDTH + 1);
20087 if (n > width)
break;
20105 len = PARSER_STRING_LEN(
string);
20106 str = PARSER_STRING_PTR(
string);
20108 i = dedent_string_column(str,
len, width);
20111 rb_parser_str_modify(
string);
20112 str = PARSER_STRING_PTR(
string);
20113 if (PARSER_STRING_LEN(
string) !=
len)
20114 rb_fatal(
"literal string changed: %s", PARSER_STRING_PTR(
string));
20116 rb_parser_str_set_len(p,
string,
len - i);
20123 NODE *node, *str_node, *prev_node;
20124 int indent = p->heredoc_indent;
20127 if (indent <= 0)
return root;
20128 if (!root)
return root;
20130 prev_node = node = str_node = root;
20131 if (nd_type_p(root, NODE_LIST)) str_node = RNODE_LIST(root)->nd_head;
20135 if (nd_fl_newline(str_node)) {
20136 dedent_string(p, lit, indent);
20141 else if (!literal_concat0(p, prev_lit, lit)) {
20145 NODE *end = RNODE_LIST(node)->as.nd_end;
20146 node = RNODE_LIST(prev_node)->nd_next = RNODE_LIST(node)->nd_next;
20148 if (nd_type_p(prev_node, NODE_DSTR))
20149 nd_set_type(prev_node, NODE_STR);
20152 RNODE_LIST(node)->as.nd_end = end;
20157 while ((nd_type_p(node, NODE_LIST) || nd_type_p(node, NODE_DSTR)) && (node = RNODE_LIST(prev_node = node)->nd_next) != 0) {
20159 if (!nd_type_p(node, NODE_LIST))
break;
20160 if ((str_node = RNODE_LIST(node)->nd_head) != 0) {
20161 enum node_type
type = nd_type(str_node);
20162 if (
type == NODE_STR ||
type == NODE_DSTR)
break;
20172whole_match_p(
struct parser_params *p,
const char *eos,
long len,
int indent)
20174 const char *beg = p->lex.pbeg;
20175 const char *ptr = p->lex.pend;
20177 if (ptr - beg <
len)
return FALSE;
20178 if (ptr > beg && ptr[-1] ==
'\n') {
20179 if (--ptr > beg && ptr[-1] ==
'\r') --ptr;
20180 if (ptr - beg <
len)
return FALSE;
20182 if (strncmp(eos, ptr -=
len,
len))
return FALSE;
20184 while (beg < ptr &&
ISSPACE(*beg)) beg++;
20192 if (strncmp(p->lex.pcur, word,
len))
return 0;
20193 if (lex_eol_n_p(p,
len))
return 1;
20194 int c = (
unsigned char)p->lex.pcur[
len];
20197 case '\0':
case '\004':
case '\032':
return 1;
20202#define NUM_SUFFIX_R (1<<0)
20203#define NUM_SUFFIX_I (1<<1)
20204#define NUM_SUFFIX_ALL 3
20210 const char *lastp = p->lex.pcur;
20212 while ((c = nextc(p)) != -1) {
20213 if ((mask & NUM_SUFFIX_I) && c ==
'i') {
20214 result |= (mask & NUM_SUFFIX_I);
20215 mask &= ~NUM_SUFFIX_I;
20217 mask &= ~NUM_SUFFIX_R;
20220 if ((mask & NUM_SUFFIX_R) && c ==
'r') {
20221 result |= (mask & NUM_SUFFIX_R);
20222 mask &= ~NUM_SUFFIX_R;
20226 p->lex.pcur = lastp;
20227 literal_flush(p, p->lex.pcur);
20236static enum yytokentype
20237set_number_literal(
struct parser_params *p,
enum yytokentype
type,
int suffix,
int base,
int seen_point)
20239 enum rb_numeric_type numeric_type = integer_literal;
20241 if (
type == tFLOAT) {
20242 numeric_type = float_literal;
20245 if (suffix & NUM_SUFFIX_R) {
20247 numeric_type = rational_literal;
20249 if (suffix & NUM_SUFFIX_I) {
20255 set_yylval_node(NEW_INTEGER(
strdup(tok(p)), base, &_cur_loc));
20258 set_yylval_node(NEW_FLOAT(
strdup(tok(p)), &_cur_loc));
20261 set_yylval_node(NEW_RATIONAL(
strdup(tok(p)), base, seen_point, &_cur_loc));
20264 set_yylval_node(NEW_IMAGINARY(
strdup(tok(p)), base, seen_point, numeric_type, &_cur_loc));
20265 (void)numeric_type;
20268 rb_bug(
"unexpected token: %d",
type);
20270 SET_LEX_STATE(EXPR_END);
20274#define dispatch_heredoc_end(p) parser_dispatch_heredoc_end(p, __LINE__)
20276parser_dispatch_heredoc_end(
struct parser_params *p,
int line)
20278 if (has_delayed_token(p))
20279 dispatch_delayed_token(p, tSTRING_CONTENT);
20282 VALUE str = STR_NEW(p->lex.ptok, p->lex.pend - p->lex.ptok);
20283 ripper_dispatch1(p, ripper_token2eventid(tHEREDOC_END), str);
20285 if (p->keep_tokens) {
20286 rb_parser_string_t *str = rb_parser_encoding_string_new(p, p->lex.ptok, p->lex.pend - p->lex.ptok, p->enc);
20287 RUBY_SET_YYLLOC_OF_HEREDOC_END(*p->yylloc);
20288 parser_append_tokens(p, str, tHEREDOC_END, line);
20292 RUBY_SET_YYLLOC_FROM_STRTERM_HEREDOC(*p->yylloc);
20297static enum yytokentype
20300 int c, func, indent = 0;
20301 const char *eos, *ptr, *ptr_end;
20311 eos = PARSER_STRING_PTR(here->lastline) + here->offset;
20312 len = here->length;
20313 indent = (func = here->func) & STR_FUNC_INDENT;
20315 if ((c = nextc(p)) == -1) {
20318 if (!has_delayed_token(p)) {
20319 dispatch_scan_event(p, tSTRING_CONTENT);
20321 else if (p->delayed.end_line + 1 == p->ruby_sourceline) {
20322 if ((
len = p->lex.pcur - p->lex.ptok) > 0) {
20323 if (!(func & STR_FUNC_REGEXP)) {
20327 rb_is_usascii_enc(p->enc) &&
20328 enc != rb_utf8_encoding()) {
20329 enc = rb_ascii8bit_encoding();
20332 rb_parser_enc_str_buf_cat(p, p->delayed.token, p->lex.ptok,
len, enc);
20334 dispatch_delayed_token(p, tSTRING_CONTENT);
20337 dispatch_delayed_token(p, tSTRING_CONTENT);
20338 dispatch_scan_event(p, tSTRING_CONTENT);
20342 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20343 compile_error(p,
"can't find string \"%.*s\" anywhere before EOF",
20346 SET_LEX_STATE(EXPR_END);
20347 return tSTRING_END;
20353 else if (p->heredoc_line_indent == -1) {
20358 p->heredoc_line_indent = 0;
20360 else if (whole_match_p(p, eos,
len, indent)) {
20361 dispatch_heredoc_end(p);
20363 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20365 SET_LEX_STATE(EXPR_END);
20366 return tSTRING_END;
20369 if (!(func & STR_FUNC_EXPAND)) {
20371 ptr = PARSER_STRING_PTR(p->lex.lastline);
20372 ptr_end = p->lex.pend;
20373 if (ptr_end > ptr) {
20374 switch (ptr_end[-1]) {
20376 if (--ptr_end == ptr || ptr_end[-1] !=
'\r') {
20385 if (p->heredoc_indent > 0) {
20387 while (ptr + i < ptr_end && parser_update_heredoc_indent(p, ptr[i]))
20389 p->heredoc_line_indent = 0;
20393 parser_str_cat(str, ptr, ptr_end - ptr);
20395 str = rb_parser_encoding_string_new(p, ptr, ptr_end - ptr, enc);
20396 if (!lex_eol_ptr_p(p, ptr_end)) parser_str_cat_cstr(str,
"\n");
20398 if (p->heredoc_indent > 0) {
20401 if (nextc(p) == -1) {
20403 rb_parser_string_free(p, str);
20408 }
while (!whole_match_p(p, eos,
len, indent));
20414 enum yytokentype t = parser_peek_variable_name(p);
20415 if (p->heredoc_line_indent != -1) {
20416 if (p->heredoc_indent > p->heredoc_line_indent) {
20417 p->heredoc_indent = p->heredoc_line_indent;
20419 p->heredoc_line_indent = -1;
20428 if ((c = tokadd_string(p, func,
'\n', 0, NULL, &enc, &base_enc)) == -1) {
20429 if (p->eofp)
goto error;
20433 if (c ==
'\\') p->heredoc_line_indent = -1;
20435 str = STR_NEW3(tok(p), toklen(p), enc, func);
20437 set_yylval_str(str);
20439 if (bol) nd_set_fl_newline(yylval.node);
20441 flush_string_content(p, enc, 0);
20442 return tSTRING_CONTENT;
20444 tokadd(p, nextc(p));
20445 if (p->heredoc_indent > 0) {
20450 if ((c = nextc(p)) == -1)
goto error;
20451 }
while (!whole_match_p(p, eos,
len, indent));
20452 str = STR_NEW3(tok(p), toklen(p), enc, func);
20454 dispatch_heredoc_end(p);
20455 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20457 p->lex.strterm = NEW_STRTERM(func | STR_FUNC_TERM, 0, 0);
20460 s_value = p->s_value;
20462 set_yylval_str(str);
20464 set_parser_s_value(s_value);
20468 if (bol) nd_set_fl_newline(yylval.node);
20470 return tSTRING_CONTENT;
20480 rb_warning1(
"ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after '%c' operator", WARN_I(c));
20483 rb_warning1(
"ambiguous first argument; put parentheses or a space even after '%c' operator", WARN_I(c));
20496 switch (id_type(
id)) {
20500# define ERR(mesg) (yyerror0(mesg), Qtrue)
20502# define ERR(mesg) WARN_S(mesg)
20505 return ERR(
"formal argument cannot be a constant");
20507 return ERR(
"formal argument cannot be an instance variable");
20509 return ERR(
"formal argument cannot be a global variable");
20511 return ERR(
"formal argument cannot be a class variable");
20513 return ERR(
"formal argument must be local variable");
20516 shadowing_lvar(p,
id);
20524 return (dyna_in_block(p) && dvar_defined(p,
id)) || local_id(p,
id);
20533 if (
len > 5 && name[nlen =
len - 5] ==
'-') {
20534 if (rb_memcicmp(name + nlen + 1,
"unix", 4) == 0)
20537 if (
len > 4 && name[nlen =
len - 4] ==
'-') {
20538 if (rb_memcicmp(name + nlen + 1,
"dos", 3) == 0)
20540 if (rb_memcicmp(name + nlen + 1,
"mac", 3) == 0 &&
20541 !(
len == 8 && rb_memcicmp(name,
"utf8-mac",
len) == 0))
20549parser_set_encode(
struct parser_params *p,
const char *name)
20555 const char *wrong = 0;
20557 case 'e':
case 'E': wrong =
"external";
break;
20558 case 'i':
case 'I': wrong =
"internal";
break;
20559 case 'f':
case 'F': wrong =
"filesystem";
break;
20560 case 'l':
case 'L': wrong =
"locale";
break;
20562 if (wrong &&
STRCASECMP(name, wrong) == 0)
goto unknown;
20563 idx = rb_enc_find_index(name);
20566 excargs[1] = rb_sprintf(
"unknown encoding name: %s", name);
20568 excargs[0] = rb_eArgError;
20569 excargs[2] = rb_make_backtrace();
20570 rb_ary_unshift(excargs[2], rb_sprintf(
"%"PRIsVALUE
":%d", p->ruby_sourcefile_string, p->ruby_sourceline));
20571 VALUE exc = rb_make_exception(3, excargs);
20572 ruby_show_error_line(p, exc, &(
YYLTYPE)RUBY_INIT_YYLLOC(), p->ruby_sourceline, p->lex.lastline);
20574 rb_ast_free(p->ast);
20579 enc = rb_enc_from_index(idx);
20580 if (!rb_enc_asciicompat(enc)) {
20581 excargs[1] = rb_sprintf(
"%s is not ASCII compatible", rb_enc_name(enc));
20586 if (p->debug_lines) {
20588 for (i = 0; i < p->debug_lines->len; i++) {
20589 rb_parser_enc_associate(p, p->debug_lines->data[i], enc);
20598 if (p->token_seen)
return false;
20599 return (p->line_count == (p->has_shebang ? 2 : 1));
20602typedef long (*rb_magic_comment_length_t)(
struct parser_params *p,
const char *name,
long len);
20603typedef void (*rb_magic_comment_setter_t)(
struct parser_params *p,
const char *name,
const char *val);
20605static int parser_invalid_pragma_value(
struct parser_params *p,
const char *name,
const char *val);
20608magic_comment_encoding(
struct parser_params *p,
const char *name,
const char *val)
20610 if (!comment_at_top(p)) {
20613 parser_set_encode(p, val);
20617parser_get_bool(
struct parser_params *p,
const char *name,
const char *val)
20620 case 't':
case 'T':
20625 case 'f':
case 'F':
20631 return parser_invalid_pragma_value(p, name, val);
20635parser_invalid_pragma_value(
struct parser_params *p,
const char *name,
const char *val)
20637 rb_warning2(
"invalid value for %s: %s", WARN_S(name), WARN_S(val));
20642parser_set_token_info(
struct parser_params *p,
const char *name,
const char *val)
20644 int b = parser_get_bool(p, name, val);
20645 if (b >= 0) p->token_info_enabled = b;
20649parser_set_frozen_string_literal(
struct parser_params *p,
const char *name,
const char *val)
20653 if (p->token_seen) {
20654 rb_warning1(
"'%s' is ignored after any tokens", WARN_S(name));
20658 b = parser_get_bool(p, name, val);
20661 p->frozen_string_literal = b;
20665parser_set_shareable_constant_value(
struct parser_params *p,
const char *name,
const char *val)
20667 for (
const char *s = p->lex.pbeg, *e = p->lex.pcur; s < e; ++s) {
20668 if (*s ==
' ' || *s ==
'\t')
continue;
20669 if (*s ==
'#')
break;
20670 rb_warning1(
"'%s' is ignored unless in comment-only line", WARN_S(name));
20675 case 'n':
case 'N':
20677 p->ctxt.shareable_constant_value = rb_parser_shareable_none;
20681 case 'l':
case 'L':
20683 p->ctxt.shareable_constant_value = rb_parser_shareable_literal;
20687 case 'e':
case 'E':
20688 if (
STRCASECMP(val,
"experimental_copy") == 0) {
20689 p->ctxt.shareable_constant_value = rb_parser_shareable_copy;
20692 if (
STRCASECMP(val,
"experimental_everything") == 0) {
20693 p->ctxt.shareable_constant_value = rb_parser_shareable_everything;
20698 parser_invalid_pragma_value(p, name, val);
20701# if WARN_PAST_SCOPE
20703parser_set_past_scope(
struct parser_params *p,
const char *name,
const char *val)
20705 int b = parser_get_bool(p, name, val);
20706 if (b >= 0) p->past_scope_enabled = b;
20712 rb_magic_comment_setter_t func;
20713 rb_magic_comment_length_t length;
20717 {
"coding", magic_comment_encoding, parser_encode_length},
20718 {
"encoding", magic_comment_encoding, parser_encode_length},
20719 {
"frozen_string_literal", parser_set_frozen_string_literal},
20720 {
"shareable_constant_value", parser_set_shareable_constant_value},
20721 {
"warn_indent", parser_set_token_info},
20722# if WARN_PAST_SCOPE
20723 {
"warn_past_scope", parser_set_past_scope},
20728magic_comment_marker(
const char *str,
long len)
20735 if (str[i-1] ==
'*' && str[i-2] ==
'-') {
20736 return str + i + 1;
20741 if (i + 1 >=
len)
return 0;
20742 if (str[i+1] !=
'-') {
20745 else if (str[i-1] !=
'-') {
20749 return str + i + 2;
20764 VALUE name = 0, val = 0;
20765 const char *beg, *end, *vbeg, *vend;
20766#define str_copy(_s, _p, _n) ((_s) \
20767 ? (void)(rb_str_resize((_s), (_n)), \
20768 MEMCPY(RSTRING_PTR(_s), (_p), char, (_n)), (_s)) \
20769 : (void)((_s) = STR_NEW((_p), (_n))))
20771 if (
len <= 7)
return FALSE;
20772 if (!!(beg = magic_comment_marker(str,
len))) {
20773 if (!(end = magic_comment_marker(beg, str +
len - beg)))
20777 len = end - beg - 3;
20787 for (;
len > 0 && *str; str++, --
len) {
20789 case '\'':
case '"':
case ':':
case ';':
20794 for (beg = str;
len > 0; str++, --
len) {
20796 case '\'':
case '"':
case ':':
case ';':
20807 if (!indicator)
return FALSE;
20811 do str++;
while (--
len > 0 &&
ISSPACE(*str));
20813 const char *tok_beg = str;
20815 for (vbeg = ++str; --
len > 0 && *str !=
'"'; str++) {
20816 if (*str ==
'\\') {
20828 for (vbeg = str;
len > 0 && *str !=
'"' && *str !=
';' && !
ISSPACE(*str); --
len, str++);
20831 const char *tok_end = str;
20833 while (
len > 0 && (*str ==
';' ||
ISSPACE(*str))) --
len, str++;
20837 if (
len)
return FALSE;
20841 str_copy(name, beg, n);
20842 s = RSTRING_PTR(name);
20843 for (i = 0; i < n; ++i) {
20844 if (s[i] ==
'-') s[i] =
'_';
20847 if (
STRNCASECMP(mc->name, s, n) == 0 && !mc->name[n]) {
20850 n = (*mc->length)(p, vbeg, n);
20852 str_copy(val, vbeg, n);
20853 p->lex.ptok = tok_beg;
20854 p->lex.pcur = tok_end;
20855 (*mc->func)(p, mc->name, RSTRING_PTR(val));
20858 }
while (++mc < magic_comments + numberof(magic_comments));
20860 str_copy(val, vbeg, vend - vbeg);
20869set_file_encoding(
struct parser_params *p,
const char *str,
const char *send)
20872 const char *beg = str;
20876 if (send - str <= 6)
return;
20878 case 'C':
case 'c': str += 6;
continue;
20879 case 'O':
case 'o': str += 5;
continue;
20880 case 'D':
case 'd': str += 4;
continue;
20881 case 'I':
case 'i': str += 3;
continue;
20882 case 'N':
case 'n': str += 2;
continue;
20883 case 'G':
case 'g': str += 1;
continue;
20884 case '=':
case ':':
20898 if (++str >= send)
return;
20901 if (*str !=
'=' && *str !=
':')
return;
20906 while ((*str ==
'-' || *str ==
'_' ||
ISALNUM(*str)) && ++str < send);
20907 s =
rb_str_new(beg, parser_encode_length(p, beg, str - beg));
20910 parser_set_encode(p, RSTRING_PTR(s));
20911 rb_str_resize(s, 0);
20917 int c = nextc0(p, FALSE);
20921 if (peek(p,
'!')) p->has_shebang = 1;
20924 if (!lex_eol_n_p(p, 2) &&
20925 (
unsigned char)p->lex.pcur[0] == 0xbb &&
20926 (
unsigned char)p->lex.pcur[1] == 0xbf) {
20927 p->enc = rb_utf8_encoding();
20930 if (p->debug_lines) {
20931 rb_parser_string_set_encoding(p->lex.lastline, p->enc);
20934 p->lex.pbeg = p->lex.pcur;
20943 p->enc = rb_parser_str_get_encoding(p->lex.lastline);
20947#define ambiguous_operator(tok, op, syn) ( \
20948 rb_warning0("'"op"' after local variable or literal is interpreted as binary operator"), \
20949 rb_warning0("even though it seems like "syn""))
20951#define ambiguous_operator(tok, op, syn) \
20952 dispatch2(operator_ambiguous, TOKEN2VAL(tok), rb_str_new_cstr(syn))
20954#define warn_balanced(tok, op, syn) ((void) \
20955 (!IS_lex_state_for(last_state, EXPR_CLASS|EXPR_DOT|EXPR_FNAME|EXPR_ENDFN) && \
20956 space_seen && !ISSPACE(c) && \
20957 (ambiguous_operator(tok, op, syn), 0)), \
20958 (enum yytokentype)(tok))
20960static enum yytokentype
20963 yyerror0(
"numeric literal without digits");
20964 if (peek(p,
'_')) nextc(p);
20966 return set_number_literal(p, tINTEGER, 0, 10, 0);
20969static enum yytokentype
20972 int is_float, seen_point, seen_e, nondigit;
20975 is_float = seen_point = seen_e = nondigit = 0;
20976 SET_LEX_STATE(EXPR_END);
20978 if (c ==
'-' || c ==
'+') {
20983 int start = toklen(p);
20985 if (c ==
'x' || c ==
'X') {
20991 if (nondigit)
break;
20998 }
while ((c = nextc(p)) != -1);
21002 if (toklen(p) == start) {
21003 return no_digits(p);
21005 else if (nondigit)
goto trailing_uc;
21006 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21007 return set_number_literal(p, tINTEGER, suffix, 16, 0);
21009 if (c ==
'b' || c ==
'B') {
21012 if (c ==
'0' || c ==
'1') {
21015 if (nondigit)
break;
21019 if (c !=
'0' && c !=
'1')
break;
21022 }
while ((c = nextc(p)) != -1);
21026 if (toklen(p) == start) {
21027 return no_digits(p);
21029 else if (nondigit)
goto trailing_uc;
21030 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21031 return set_number_literal(p, tINTEGER, suffix, 2, 0);
21033 if (c ==
'd' || c ==
'D') {
21039 if (nondigit)
break;
21046 }
while ((c = nextc(p)) != -1);
21050 if (toklen(p) == start) {
21051 return no_digits(p);
21053 else if (nondigit)
goto trailing_uc;
21054 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21055 return set_number_literal(p, tINTEGER, suffix, 10, 0);
21061 if (c ==
'o' || c ==
'O') {
21064 if (c == -1 || c ==
'_' || !
ISDIGIT(c)) {
21066 return no_digits(p);
21069 if (c >=
'0' && c <=
'7') {
21074 if (nondigit)
break;
21078 if (c <
'0' || c >
'9')
break;
21079 if (c >
'7')
goto invalid_octal;
21082 }
while ((c = nextc(p)) != -1);
21083 if (toklen(p) > start) {
21086 if (nondigit)
goto trailing_uc;
21087 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21088 return set_number_literal(p, tINTEGER, suffix, 8, 0);
21095 if (c >
'7' && c <=
'9') {
21097 yyerror0(
"Invalid octal digit");
21099 else if (c ==
'.' || c ==
'e' || c ==
'E') {
21105 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21106 return set_number_literal(p, tINTEGER, suffix, 10, 0);
21112 case '0':
case '1':
case '2':
case '3':
case '4':
21113 case '5':
case '6':
case '7':
case '8':
case '9':
21119 if (nondigit)
goto trailing_uc;
21120 if (seen_point || seen_e) {
21125 if (c0 == -1 || !
ISDIGIT(c0)) {
21131 seen_point = toklen(p);
21150 if (c !=
'-' && c !=
'+' && !
ISDIGIT(c)) {
21156 tokadd(p, nondigit);
21160 nondigit = (c ==
'-' || c ==
'+') ? c : 0;
21164 if (nondigit)
goto decode_num;
21178 literal_flush(p, p->lex.pcur - 1);
21179 YYLTYPE loc = RUBY_INIT_YYLLOC();
21180 compile_error(p,
"trailing '%c' in number", nondigit);
21181 parser_show_error_line(p, &loc);
21185 enum yytokentype
type = tFLOAT;
21187 suffix = number_literal_suffix(p, seen_e ? NUM_SUFFIX_I : NUM_SUFFIX_ALL);
21188 if (suffix & NUM_SUFFIX_R) {
21193 if (
errno == ERANGE) {
21194 rb_warning1(
"Float %s out of range", WARN_S(tok(p)));
21198 return set_number_literal(p,
type, suffix, 0, seen_point);
21200 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21201 return set_number_literal(p, tINTEGER, suffix, 10, 0);
21204static enum yytokentype
21210 const char *start = p->lex.pcur;
21213 SET_LEX_STATE(EXPR_VALUE);
21218 compile_error(p,
"incomplete character syntax");
21221 if (rb_enc_isspace(c, p->enc)) {
21223 int c2 = escaped_control_code(c);
21225 WARN_SPACE_CHAR(c2,
"?");
21230 SET_LEX_STATE(EXPR_VALUE);
21235 int w = parser_precise_mbclen(p, start);
21236 if (is_identchar(p, start, p->lex.pend, p->enc) &&
21237 !(lex_eol_ptr_n_p(p, start, w) || !is_identchar(p, start + w, p->lex.pend, p->enc))) {
21239 const char *ptr = start;
21241 int n = parser_precise_mbclen(p, ptr);
21242 if (n < 0)
return -1;
21244 }
while (!lex_eol_ptr_p(p, ptr) && is_identchar(p, ptr, p->lex.pend, p->enc));
21245 rb_warn2(
"'?' just followed by '%.*s' is interpreted as" \
21246 " a conditional operator, put a space after '?'",
21247 WARN_I((
int)(ptr - start)), WARN_S_L(start, (ptr - start)));
21251 else if (c ==
'\\') {
21252 if (peek(p,
'u')) {
21254 enc = rb_utf8_encoding();
21255 tokadd_utf8(p, &enc, -1, 0, 0);
21257 else if (!
ISASCII(c = peekc(p)) && c != -1) {
21259 if (tokadd_mbchar(p, c) == -1)
return 0;
21267 if (tokadd_mbchar(p, c) == -1)
return 0;
21270 lit = STR_NEW3(tok(p), toklen(p), enc, 0);
21271 set_yylval_str(lit);
21272 SET_LEX_STATE(EXPR_END);
21276static enum yytokentype
21277parse_percent(
struct parser_params *p,
const int space_seen,
const enum lex_state_e last_state)
21280 const char *ptok = p->lex.pcur;
21288 if (c == -1)
goto unterminated;
21291 if (!
ISASCII(c))
goto unknown;
21296 if (rb_enc_isalnum(term, p->enc) || !parser_isascii(p)) {
21299 c = parser_precise_mbclen(p, p->lex.pcur);
21300 if (c < 0)
return 0;
21302 yyerror0(
"unknown type of %string");
21308 compile_error(p,
"unterminated quoted string meets end of file");
21312 if (term ==
'(') term =
')';
21313 else if (term ==
'[') term =
']';
21314 else if (term ==
'{') term =
'}';
21315 else if (term ==
'<') term =
'>';
21318 p->lex.ptok = ptok-1;
21321 p->lex.strterm = NEW_STRTERM(str_dquote, term, paren);
21322 return tSTRING_BEG;
21325 p->lex.strterm = NEW_STRTERM(str_squote, term, paren);
21326 return tSTRING_BEG;
21329 p->lex.strterm = NEW_STRTERM(str_dword, term, paren);
21333 p->lex.strterm = NEW_STRTERM(str_sword, term, paren);
21334 return tQWORDS_BEG;
21337 p->lex.strterm = NEW_STRTERM(str_dword, term, paren);
21338 return tSYMBOLS_BEG;
21341 p->lex.strterm = NEW_STRTERM(str_sword, term, paren);
21342 return tQSYMBOLS_BEG;
21345 p->lex.strterm = NEW_STRTERM(str_xquote, term, paren);
21346 return tXSTRING_BEG;
21349 p->lex.strterm = NEW_STRTERM(str_regexp, term, paren);
21350 return tREGEXP_BEG;
21353 p->lex.strterm = NEW_STRTERM(str_ssym, term, paren);
21354 SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);
21358 yyerror0(
"unknown type of %string");
21362 if ((c = nextc(p)) ==
'=') {
21363 set_yylval_id(
'%');
21364 SET_LEX_STATE(EXPR_BEG);
21367 if (IS_SPCARG(c) || (IS_lex_state(EXPR_FITEM) && c ==
's')) {
21370 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21372 return warn_balanced(
'%',
"%%",
"string literal");
21379 if (tokadd_mbchar(p, c) == -1)
return -1;
21381 }
while (parser_is_identchar(p));
21389 ID ident = TOK_INTERN();
21391 set_yylval_name(ident);
21401 unsigned long n = ruby_scan_digits(tok(p)+1, toklen(p)-1, 10, &
len, &overflow);
21402 const unsigned long nth_ref_max =
21403 ((FIXNUM_MAX < INT_MAX) ? FIXNUM_MAX : INT_MAX) >> 1;
21407 if (overflow || n > nth_ref_max) {
21409 rb_warn1(
"'%s' is too big for a number variable, always nil", WARN_S(tok(p)));
21417static enum yytokentype
21418parse_gvar(
struct parser_params *p,
const enum lex_state_e last_state)
21420 const char *ptr = p->lex.pcur;
21423 SET_LEX_STATE(EXPR_END);
21424 p->lex.ptok = ptr - 1;
21430 if (parser_is_identchar(p)) {
21462 if (parser_is_identchar(p)) {
21463 if (tokadd_mbchar(p, c) == -1)
return 0;
21478 if (IS_lex_state_for(last_state, EXPR_FNAME)) {
21483 set_yylval_node(NEW_BACK_REF(c, &_cur_loc));
21486 case '1':
case '2':
case '3':
21487 case '4':
case '5':
case '6':
21488 case '7':
case '8':
case '9':
21493 }
while (c != -1 &&
ISDIGIT(c));
21495 if (IS_lex_state_for(last_state, EXPR_FNAME))
goto gvar;
21497 c = parse_numvar(p);
21498 set_yylval_node(NEW_NTH_REF(c, &_cur_loc));
21502 if (!parser_is_identchar(p)) {
21503 YYLTYPE loc = RUBY_INIT_YYLLOC();
21505 compile_error(p,
"'$' without identifiers is not allowed as a global variable name");
21509 compile_error(p,
"'$%c' is not allowed as a global variable name", c);
21511 parser_show_error_line(p, &loc);
21512 set_yylval_noname();
21520 if (tokadd_ident(p, c))
return 0;
21521 SET_LEX_STATE(EXPR_END);
21522 if (VALID_SYMNAME_P(tok(p), toklen(p), p->enc, ID_GLOBAL)) {
21526 compile_error(p,
"'%.*s' is not allowed as a global variable name", toklen(p), tok(p));
21527 set_yylval_noname();
21535 if (n < 0)
return false;
21537 if (DVARS_TERMINAL_P(p->lvtbl->args) || DVARS_TERMINAL_P(p->lvtbl->args->prev)) {
21540 if (p->max_numparam == ORDINAL_PARAM) {
21541 compile_error(p,
"ordinary parameter is defined");
21544 struct vtable *args = p->lvtbl->args;
21545 if (p->max_numparam < n) {
21546 p->max_numparam = n;
21548 while (n > args->pos) {
21549 vtable_add(args, NUMPARAM_IDX_TO_ID(args->pos+1));
21554static enum yytokentype
21555parse_atmark(
struct parser_params *p,
const enum lex_state_e last_state)
21557 const char *ptr = p->lex.pcur;
21558 enum yytokentype result = tIVAR;
21559 register int c = nextc(p);
21562 p->lex.ptok = ptr - 1;
21570 SET_LEX_STATE(IS_lex_state_for(last_state, EXPR_FNAME) ? EXPR_ENDFN : EXPR_END);
21571 if (c == -1 || !parser_is_identchar(p)) {
21573 RUBY_SET_YYLLOC(loc);
21574 if (result == tIVAR) {
21575 compile_error(p,
"'@' without identifiers is not allowed as an instance variable name");
21578 compile_error(p,
"'@@' without identifiers is not allowed as a class variable name");
21580 parser_show_error_line(p, &loc);
21581 set_yylval_noname();
21582 SET_LEX_STATE(EXPR_END);
21587 RUBY_SET_YYLLOC(loc);
21588 if (result == tIVAR) {
21589 compile_error(p,
"'@%c' is not allowed as an instance variable name", c);
21592 compile_error(p,
"'@@%c' is not allowed as a class variable name", c);
21594 parser_show_error_line(p, &loc);
21595 set_yylval_noname();
21596 SET_LEX_STATE(EXPR_END);
21600 if (tokadd_ident(p, c))
return 0;
21605static enum yytokentype
21608 enum yytokentype result;
21609 bool is_ascii =
true;
21610 const enum lex_state_e last_state = p->lex.state;
21612 int enforce_keyword_end = 0;
21615 if (!
ISASCII(c)) is_ascii =
false;
21616 if (tokadd_mbchar(p, c) == -1)
return 0;
21618 }
while (parser_is_identchar(p));
21619 if ((c ==
'!' || c ==
'?') && !peek(p,
'=')) {
21623 else if (c ==
'=' && IS_lex_state(EXPR_FNAME) &&
21624 (!peek(p,
'~') && !peek(p,
'>') && (!peek(p,
'=') || (peek_n(p,
'>', 1))))) {
21625 result = tIDENTIFIER;
21629 result = tCONSTANT;
21634 if (IS_LABEL_POSSIBLE()) {
21635 if (IS_LABEL_SUFFIX(0)) {
21636 SET_LEX_STATE(EXPR_ARG|EXPR_LABELED);
21644 if (peek_end_expect_token_locations(p)) {
21646 int lineno, column;
21647 int beg_pos = (int)(p->lex.ptok - p->lex.pbeg);
21649 end_pos = peek_end_expect_token_locations(p)->pos;
21650 lineno = end_pos->lineno;
21651 column = end_pos->column;
21654 rb_parser_printf(p,
"enforce_keyword_end check. current: (%d, %d), peek: (%d, %d)\n",
21655 p->ruby_sourceline, beg_pos, lineno, column);
21658 if ((p->ruby_sourceline > lineno) && (beg_pos <= column)) {
21661 if ((IS_lex_state(EXPR_DOT)) && (kw = rb_reserved_word(tok(p), toklen(p))) && (kw && kw->id[0] == keyword_end)) {
21662 if (p->debug) rb_parser_printf(p,
"enforce_keyword_end is enabled\n");
21663 enforce_keyword_end = 1;
21669 if (is_ascii && (!IS_lex_state(EXPR_DOT) || enforce_keyword_end)) {
21673 kw = rb_reserved_word(tok(p), toklen(p));
21675 enum lex_state_e state = p->lex.state;
21676 if (IS_lex_state_for(state, EXPR_FNAME)) {
21677 SET_LEX_STATE(EXPR_ENDFN);
21678 set_yylval_name(rb_intern2(tok(p), toklen(p)));
21681 SET_LEX_STATE(kw->state);
21682 if (IS_lex_state(EXPR_BEG)) {
21683 p->command_start = TRUE;
21685 if (kw->id[0] == keyword_do) {
21686 if (lambda_beginning_p()) {
21687 p->lex.lpar_beg = -1;
21688 return keyword_do_LAMBDA;
21690 if (COND_P())
return keyword_do_cond;
21691 if (CMDARG_P() && !IS_lex_state_for(state, EXPR_CMDARG))
21692 return keyword_do_block;
21695 if (IS_lex_state_for(state, (EXPR_BEG | EXPR_LABELED | EXPR_CLASS)))
21698 if (kw->id[0] != kw->id[1])
21699 SET_LEX_STATE(EXPR_BEG | EXPR_LABEL);
21705 if (IS_lex_state(EXPR_BEG_ANY | EXPR_ARG_ANY | EXPR_DOT)) {
21707 SET_LEX_STATE(EXPR_CMDARG);
21710 SET_LEX_STATE(EXPR_ARG);
21713 else if (p->lex.state == EXPR_FNAME) {
21714 SET_LEX_STATE(EXPR_ENDFN);
21717 SET_LEX_STATE(EXPR_END);
21720 ident = tokenize_ident(p);
21721 if (result == tCONSTANT && is_local_id(ident)) result = tIDENTIFIER;
21722 if (!IS_lex_state_for(last_state, EXPR_DOT|EXPR_FNAME) &&
21723 (result == tIDENTIFIER) &&
21724 (lvar_defined(p, ident) || NUMPARAM_ID_P(ident))) {
21725 SET_LEX_STATE(EXPR_END|EXPR_LABEL);
21736 rb_warn0(
"encountered \\r in middle of line, treated as a mere space");
21740static enum yytokentype
21744 int space_seen = 0;
21747 enum lex_state_e last_state;
21748 int fallthru = FALSE;
21749 int token_seen = p->token_seen;
21751 if (p->lex.strterm) {
21752 if (strterm_is_heredoc(p->lex.strterm)) {
21754 return here_document(p, &p->lex.strterm->u.heredoc);
21758 return parse_string(p, &p->lex.strterm->u.literal);
21761 cmd_state = p->command_start;
21762 p->command_start = FALSE;
21763 p->token_seen = TRUE;
21768 last_state = p->lex.state;
21769 switch (c = nextc(p)) {
21776 if (p->end_expect_token_locations) {
21777 pop_end_expect_token_locations(p);
21778 RUBY_SET_YYLLOC_OF_DUMMY_END(*p->yylloc);
21783 RUBY_SET_YYLLOC(*p->yylloc);
21784 return END_OF_INPUT;
21790 case ' ':
case '\t':
case '\f':
21793 while ((c = nextc(p))) {
21798 case ' ':
case '\t':
case '\f':
21807 dispatch_scan_event(p, tSP);
21814 p->token_seen = token_seen;
21815 const char *
const pcur = p->lex.pcur, *
const ptok = p->lex.ptok;
21817 if (!parser_magic_comment(p, p->lex.pcur, p->lex.pend - p->lex.pcur)) {
21818 if (comment_at_top(p)) {
21819 set_file_encoding(p, p->lex.pcur, p->lex.pend);
21822 p->lex.pcur = pcur, p->lex.ptok = ptok;
21824 dispatch_scan_event(p, tCOMMENT);
21828 p->token_seen = token_seen;
21830 c = (IS_lex_state(EXPR_BEG|EXPR_CLASS|EXPR_FNAME|EXPR_DOT) &&
21831 !IS_lex_state(EXPR_LABELED));
21832 if (c || IS_lex_state_all(EXPR_ARG|EXPR_LABELED)) {
21834 dispatch_scan_event(p, tIGNORED_NL);
21837 if (!c && p->ctxt.in_kwarg) {
21838 goto normal_newline;
21843 switch (c = nextc(p)) {
21844 case ' ':
case '\t':
case '\f':
case '\r':
21851 dispatch_scan_event(p, tSP);
21857 dispatch_delayed_token(p, tIGNORED_NL);
21858 if (peek(p,
'.') == (c ==
'&')) {
21860 dispatch_scan_event(p, tSP);
21865 p->ruby_sourceline--;
21866 p->lex.nextline = p->lex.lastline;
21867 set_lastline(p, prevline);
21869 if (c == -1 && space_seen) {
21870 dispatch_scan_event(p, tSP);
21875 RUBY_SET_YYLLOC(*p->yylloc);
21877 goto normal_newline;
21881 p->command_start = TRUE;
21882 SET_LEX_STATE(EXPR_BEG);
21886 if ((c = nextc(p)) ==
'*') {
21887 if ((c = nextc(p)) ==
'=') {
21888 set_yylval_id(idPow);
21889 SET_LEX_STATE(EXPR_BEG);
21893 if (IS_SPCARG(c)) {
21894 rb_warning0(
"'**' interpreted as argument prefix");
21897 else if (IS_BEG()) {
21901 c = warn_balanced((
enum ruby_method_ids)tPOW,
"**",
"argument prefix");
21906 set_yylval_id(
'*');
21907 SET_LEX_STATE(EXPR_BEG);
21911 if (IS_SPCARG(c)) {
21912 rb_warning0(
"'*' interpreted as argument prefix");
21915 else if (IS_BEG()) {
21919 c = warn_balanced(
'*',
"*",
"argument prefix");
21922 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21927 if (IS_AFTER_OPERATOR()) {
21928 SET_LEX_STATE(EXPR_ARG);
21934 SET_LEX_STATE(EXPR_BEG);
21948 if (word_match_p(p,
"begin", 5)) {
21949 int first_p = TRUE;
21952 dispatch_scan_event(p, tEMBDOC_BEG);
21956 dispatch_scan_event(p, tEMBDOC);
21961 compile_error(p,
"embedded document meets end of file");
21962 return END_OF_INPUT;
21964 if (c ==
'=' && word_match_p(p,
"end", 3)) {
21970 dispatch_scan_event(p, tEMBDOC_END);
21975 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21976 if ((c = nextc(p)) ==
'=') {
21977 if ((c = nextc(p)) ==
'=') {
21986 else if (c ==
'>') {
21995 !IS_lex_state(EXPR_DOT | EXPR_CLASS) &&
21997 (!IS_ARG() || IS_lex_state(EXPR_LABELED) || space_seen)) {
21998 enum yytokentype token = heredoc_identifier(p);
21999 if (token)
return token < 0 ? 0 : token;
22001 if (IS_AFTER_OPERATOR()) {
22002 SET_LEX_STATE(EXPR_ARG);
22005 if (IS_lex_state(EXPR_CLASS))
22006 p->command_start = TRUE;
22007 SET_LEX_STATE(EXPR_BEG);
22010 if ((c = nextc(p)) ==
'>') {
22017 if ((c = nextc(p)) ==
'=') {
22018 set_yylval_id(idLTLT);
22019 SET_LEX_STATE(EXPR_BEG);
22023 return warn_balanced((
enum ruby_method_ids)tLSHFT,
"<<",
"here document");
22029 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22030 if ((c = nextc(p)) ==
'=') {
22034 if ((c = nextc(p)) ==
'=') {
22035 set_yylval_id(idGTGT);
22036 SET_LEX_STATE(EXPR_BEG);
22046 label = (IS_LABEL_POSSIBLE() ? str_label : 0);
22047 p->lex.strterm = NEW_STRTERM(str_dquote | label,
'"', 0);
22048 p->lex.ptok = p->lex.pcur-1;
22049 return tSTRING_BEG;
22052 if (IS_lex_state(EXPR_FNAME)) {
22053 SET_LEX_STATE(EXPR_ENDFN);
22056 if (IS_lex_state(EXPR_DOT)) {
22058 SET_LEX_STATE(EXPR_CMDARG);
22060 SET_LEX_STATE(EXPR_ARG);
22063 p->lex.strterm = NEW_STRTERM(str_xquote,
'`', 0);
22064 return tXSTRING_BEG;
22067 label = (IS_LABEL_POSSIBLE() ? str_label : 0);
22068 p->lex.strterm = NEW_STRTERM(str_squote | label,
'\'', 0);
22069 p->lex.ptok = p->lex.pcur-1;
22070 return tSTRING_BEG;
22073 return parse_qmark(p, space_seen);
22076 if ((c = nextc(p)) ==
'&') {
22077 SET_LEX_STATE(EXPR_BEG);
22078 if ((c = nextc(p)) ==
'=') {
22079 set_yylval_id(idANDOP);
22080 SET_LEX_STATE(EXPR_BEG);
22086 else if (c ==
'=') {
22087 set_yylval_id(
'&');
22088 SET_LEX_STATE(EXPR_BEG);
22091 else if (c ==
'.') {
22092 set_yylval_id(idANDDOT);
22093 SET_LEX_STATE(EXPR_DOT);
22097 if (IS_SPCARG(c)) {
22099 (c = peekc_n(p, 1)) == -1 ||
22100 !(c ==
'\'' || c ==
'"' ||
22101 is_identchar(p, (p->lex.pcur+1), p->lex.pend, p->enc))) {
22102 rb_warning0(
"'&' interpreted as argument prefix");
22106 else if (IS_BEG()) {
22110 c = warn_balanced(
'&',
"&",
"argument prefix");
22112 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22116 if ((c = nextc(p)) ==
'|') {
22117 SET_LEX_STATE(EXPR_BEG);
22118 if ((c = nextc(p)) ==
'=') {
22119 set_yylval_id(idOROP);
22120 SET_LEX_STATE(EXPR_BEG);
22124 if (IS_lex_state_for(last_state, EXPR_BEG)) {
22132 set_yylval_id(
'|');
22133 SET_LEX_STATE(EXPR_BEG);
22136 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG|EXPR_LABEL);
22142 if (IS_AFTER_OPERATOR()) {
22143 SET_LEX_STATE(EXPR_ARG);
22151 set_yylval_id(
'+');
22152 SET_LEX_STATE(EXPR_BEG);
22155 if (IS_BEG() || (IS_SPCARG(c) && arg_ambiguous(p,
'+'))) {
22156 SET_LEX_STATE(EXPR_BEG);
22159 return parse_numeric(p,
'+');
22163 SET_LEX_STATE(EXPR_BEG);
22165 return warn_balanced(
'+',
"+",
"unary operator");
22169 if (IS_AFTER_OPERATOR()) {
22170 SET_LEX_STATE(EXPR_ARG);
22178 set_yylval_id(
'-');
22179 SET_LEX_STATE(EXPR_BEG);
22183 SET_LEX_STATE(EXPR_ENDFN);
22184 yylval.num = p->lex.lpar_beg;
22185 p->lex.lpar_beg = p->lex.paren_nest;
22188 if (IS_BEG() || (IS_SPCARG(c) && arg_ambiguous(p,
'-'))) {
22189 SET_LEX_STATE(EXPR_BEG);
22192 return tUMINUS_NUM;
22196 SET_LEX_STATE(EXPR_BEG);
22198 return warn_balanced(
'-',
"-",
"unary operator");
22201 int is_beg = IS_BEG();
22202 SET_LEX_STATE(EXPR_BEG);
22203 if ((c = nextc(p)) ==
'.') {
22204 if ((c = nextc(p)) ==
'.') {
22205 if (p->ctxt.in_argdef || IS_LABEL_POSSIBLE()) {
22206 SET_LEX_STATE(EXPR_ENDARG);
22209 if (p->lex.paren_nest == 0 && looking_at_eol_p(p)) {
22210 rb_warn0(
"... at EOL, should be parenthesized?");
22212 return is_beg ? tBDOT3 : tDOT3;
22215 return is_beg ? tBDOT2 : tDOT2;
22219 char prev = p->lex.pcur-1 > p->lex.pbeg ? *(p->lex.pcur-2) : 0;
22220 parse_numeric(p,
'.');
22222 yyerror0(
"unexpected fraction part after numeric literal");
22225 yyerror0(
"no .<digit> floating literal anymore; put 0 before dot");
22227 SET_LEX_STATE(EXPR_END);
22228 p->lex.ptok = p->lex.pcur;
22231 set_yylval_id(
'.');
22232 SET_LEX_STATE(EXPR_DOT);
22236 case '0':
case '1':
case '2':
case '3':
case '4':
22237 case '5':
case '6':
case '7':
case '8':
case '9':
22238 return parse_numeric(p, c);
22243 SET_LEX_STATE(EXPR_ENDFN);
22244 p->lex.paren_nest--;
22250 SET_LEX_STATE(EXPR_END);
22251 p->lex.paren_nest--;
22256 if (!p->lex.brace_nest--)
return tSTRING_DEND;
22259 SET_LEX_STATE(EXPR_END);
22260 p->lex.paren_nest--;
22266 if (IS_BEG() || IS_lex_state(EXPR_CLASS) || IS_SPCARG(-1)) {
22267 SET_LEX_STATE(EXPR_BEG);
22270 set_yylval_id(idCOLON2);
22271 SET_LEX_STATE(EXPR_DOT);
22274 if (IS_END() ||
ISSPACE(c) || c ==
'#') {
22276 c = warn_balanced(
':',
":",
"symbol literal");
22277 SET_LEX_STATE(EXPR_BEG);
22282 p->lex.strterm = NEW_STRTERM(str_ssym, c, 0);
22285 p->lex.strterm = NEW_STRTERM(str_dsym, c, 0);
22291 SET_LEX_STATE(EXPR_FNAME);
22296 p->lex.strterm = NEW_STRTERM(str_regexp,
'/', 0);
22297 return tREGEXP_BEG;
22299 if ((c = nextc(p)) ==
'=') {
22300 set_yylval_id(
'/');
22301 SET_LEX_STATE(EXPR_BEG);
22305 if (IS_SPCARG(c)) {
22306 arg_ambiguous(p,
'/');
22307 p->lex.strterm = NEW_STRTERM(str_regexp,
'/', 0);
22308 return tREGEXP_BEG;
22310 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22311 return warn_balanced(
'/',
"/",
"regexp literal");
22314 if ((c = nextc(p)) ==
'=') {
22315 set_yylval_id(
'^');
22316 SET_LEX_STATE(EXPR_BEG);
22319 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22324 SET_LEX_STATE(EXPR_BEG);
22325 p->command_start = TRUE;
22329 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22333 if (IS_AFTER_OPERATOR()) {
22334 if ((c = nextc(p)) !=
'@') {
22337 SET_LEX_STATE(EXPR_ARG);
22340 SET_LEX_STATE(EXPR_BEG);
22348 else if (!space_seen) {
22351 else if (IS_ARG() || IS_lex_state_all(EXPR_END|EXPR_LABEL)) {
22354 else if (IS_lex_state(EXPR_ENDFN) && !lambda_beginning_p()) {
22355 rb_warning0(
"parentheses after method name is interpreted as "
22356 "an argument list, not a decomposed argument");
22358 p->lex.paren_nest++;
22361 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22365 p->lex.paren_nest++;
22366 if (IS_AFTER_OPERATOR()) {
22367 if ((c = nextc(p)) ==
']') {
22368 p->lex.paren_nest--;
22369 SET_LEX_STATE(EXPR_ARG);
22370 if ((c = nextc(p)) ==
'=') {
22377 SET_LEX_STATE(EXPR_ARG|EXPR_LABEL);
22380 else if (IS_BEG()) {
22383 else if (IS_ARG() && (space_seen || IS_lex_state(EXPR_LABELED))) {
22386 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22392 ++p->lex.brace_nest;
22393 if (lambda_beginning_p())
22395 else if (IS_lex_state(EXPR_LABELED))
22397 else if (IS_lex_state(EXPR_ARG_ANY | EXPR_END | EXPR_ENDFN))
22399 else if (IS_lex_state(EXPR_ENDARG))
22403 if (c != tLBRACE) {
22404 p->command_start = TRUE;
22405 SET_LEX_STATE(EXPR_BEG);
22408 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22410 ++p->lex.paren_nest;
22419 dispatch_scan_event(p, tSP);
22422 if (c ==
' ')
return tSP;
22428 return parse_percent(p, space_seen, last_state);
22431 return parse_gvar(p, last_state);
22434 return parse_atmark(p, last_state);
22437 if (was_bol(p) && whole_match_p(p,
"__END__", 7, 0)) {
22438 p->ruby__end__seen = 1;
22442 dispatch_scan_event(p, k__END__);
22444 return END_OF_INPUT;
22450 if (!parser_is_identchar(p)) {
22451 compile_error(p,
"Invalid char '\\x%02X' in expression", c);
22460 return parse_ident(p, c, cmd_state);
22463static enum yytokentype
22466 enum yytokentype t;
22470 p->yylloc = yylloc;
22472 t = parser_yylex(p);
22474 if (has_delayed_token(p))
22475 dispatch_delayed_token(p, t);
22476 else if (t != END_OF_INPUT)
22477 dispatch_scan_event(p, t);
22482#define LVAR_USED ((ID)1 << (sizeof(ID) * CHAR_BIT - 1))
22485node_new_internal(
struct parser_params *p,
enum node_type
type,
size_t size,
size_t alignment)
22487 NODE *n = rb_ast_newnode(p->ast,
type, size, alignment);
22489 rb_node_init(n,
type);
22497 nd_set_line(nd, loc->beg_pos.lineno);
22504 NODE *n = node_new_internal(p,
type, size, alignment);
22506 nd_set_loc(n, loc);
22507 nd_set_node_id(n, parser_get_node_id(p));
22511#define NODE_NEWNODE(node_type, type, loc) (type *)(node_newnode(p, node_type, sizeof(type), RUBY_ALIGNOF(type), loc))
22517 nd_tbl = local_tbl(p);
22519 n->nd_tbl = nd_tbl;
22520 n->nd_body = nd_body;
22521 n->nd_args = nd_args;
22530 n->nd_tbl = nd_tbl;
22531 n->nd_body = nd_body;
22532 n->nd_args = nd_args;
22541 n->nd_mid = nd_mid;
22542 n->nd_defn = nd_defn;
22551 n->nd_recv = nd_recv;
22552 n->nd_mid = nd_mid;
22553 n->nd_defn = nd_defn;
22562 n->nd_head = nd_head;
22563 n->nd_end = (
NODE *)n;
22573 n->nd_body = nd_body;
22574 n->nd_iter = nd_iter;
22575 n->for_keyword_loc = *for_keyword_loc;
22576 n->in_keyword_loc = *in_keyword_loc;
22577 n->do_keyword_loc = *do_keyword_loc;
22578 n->end_keyword_loc = *end_keyword_loc;
22587 n->nd_var = nd_var;
22604 n->nd_body = nd_body;
22613 n->nd_head = nd_head;
22614 n->nd_resq = nd_resq;
22615 n->nd_else = nd_else;
22624 n->nd_args = nd_args;
22625 n->nd_exc_var = nd_exc_var;
22626 n->nd_body = nd_body;
22627 n->nd_next = nd_next;
22636 n->nd_head = nd_head;
22637 n->nd_ensr = nd_ensr;
22646 n->nd_1st = nd_1st;
22647 n->nd_2nd = nd_2nd;
22648 n->operator_loc = *operator_loc;
22657 n->nd_1st = nd_1st;
22658 n->nd_2nd = nd_2nd;
22659 n->operator_loc = *operator_loc;
22668 n->nd_stts = nd_stts;
22669 n->keyword_loc = *keyword_loc;
22676 if (nd_head) no_blockarg(p, nd_head);
22679 n->nd_head = nd_head;
22680 n->keyword_loc = *keyword_loc;
22681 n->lparen_loc = *lparen_loc;
22682 n->rparen_loc = *rparen_loc;
22691 n->nd_cond = nd_cond;
22692 n->nd_body = nd_body;
22693 n->nd_else = nd_else;
22694 n->if_keyword_loc = *if_keyword_loc;
22695 n->then_keyword_loc = *then_keyword_loc;
22696 n->end_keyword_loc = *end_keyword_loc;
22705 n->nd_cond = nd_cond;
22706 n->nd_body = nd_body;
22707 n->nd_else = nd_else;
22708 n->keyword_loc = *keyword_loc;
22709 n->then_keyword_loc = *then_keyword_loc;
22710 n->end_keyword_loc = *end_keyword_loc;
22719 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22721 n->nd_cpath = nd_cpath;
22722 n->nd_body = scope;
22723 n->nd_super = nd_super;
22724 n->class_keyword_loc = *class_keyword_loc;
22725 n->inheritance_operator_loc = *inheritance_operator_loc;
22726 n->end_keyword_loc = *end_keyword_loc;
22735 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22737 n->nd_recv = nd_recv;
22738 n->nd_body = scope;
22747 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22749 n->nd_cpath = nd_cpath;
22750 n->nd_body = scope;
22759 NODE *scope = NEW_SCOPE(nd_args, nd_body, loc);
22761 n->nd_body = scope;
22771 NODE *scope = NEW_SCOPE(nd_args, nd_body, loc);
22772 YYLTYPE lambda_loc = code_loc_gen(operator_loc, closing_loc);
22774 n->nd_body = scope;
22775 n->operator_loc = *operator_loc;
22776 n->opening_loc = *opening_loc;
22777 n->closing_loc = *closing_loc;
22786 n->nd_head = nd_head;
22787 n->nd_body = nd_body;
22788 n->case_keyword_loc = *case_keyword_loc;
22789 n->end_keyword_loc = *end_keyword_loc;
22799 n->nd_body = nd_body;
22800 n->case_keyword_loc = *case_keyword_loc;
22801 n->end_keyword_loc = *end_keyword_loc;
22810 n->nd_head = nd_head;
22811 n->nd_body = nd_body;
22812 n->case_keyword_loc = *case_keyword_loc;
22813 n->end_keyword_loc = *end_keyword_loc;
22822 n->nd_head = nd_head;
22823 n->nd_body = nd_body;
22824 n->nd_next = nd_next;
22825 n->keyword_loc = *keyword_loc;
22826 n->then_keyword_loc = *then_keyword_loc;
22835 n->nd_head = nd_head;
22836 n->nd_body = nd_body;
22837 n->nd_next = nd_next;
22846 n->nd_cond = nd_cond;
22847 n->nd_body = nd_body;
22848 n->nd_state = nd_state;
22849 n->keyword_loc = *keyword_loc;
22850 n->closing_loc = *closing_loc;
22859 n->nd_cond = nd_cond;
22860 n->nd_body = nd_body;
22861 n->nd_state = nd_state;
22862 n->keyword_loc = *keyword_loc;
22863 n->closing_loc = *closing_loc;
22872 n->nd_head = nd_head;
22873 n->nd_mid = nd_mid;
22882 n->nd_mid = nd_mid;
22891 n->nd_beg = nd_beg;
22892 n->nd_end = nd_end;
22893 n->operator_loc = *operator_loc;
22902 n->nd_beg = nd_beg;
22903 n->nd_end = nd_end;
22904 n->operator_loc = *operator_loc;
22947 n->nd_args = nd_args;
22948 n->keyword_loc = *keyword_loc;
22949 n->lparen_loc = *lparen_loc;
22950 n->rparen_loc = *rparen_loc;
22967 n->nd_recv = nd_recv;
22968 n->nd_value = nd_value;
22978 n->nd_recv = nd_recv;
22979 n->nd_value = nd_value;
22989 n->nd_head = nd_head;
23000 n->nd_head = nd_head;
23001 n->as.nd_alen = nd_alen;
23002 n->nd_next = nd_next;
23019 n->nd_head = nd_head;
23029 n->nd_head = nd_head;
23031 n->nd_args = nd_args;
23040 n->nd_vid = nd_vid;
23041 n->nd_value = nd_value;
23050 n->nd_vid = nd_vid;
23051 n->nd_value = nd_value;
23060 n->nd_vid = nd_vid;
23061 n->nd_value = nd_value;
23070 n->nd_vid = nd_vid;
23071 n->nd_value = nd_value;
23080 n->nd_vid = nd_vid;
23081 n->nd_value = nd_value;
23090 n->nd_recv = nd_recv;
23091 n->nd_mid = nd_mid;
23092 n->nd_index = index;
23093 n->nd_rvalue = rvalue;
23094 n->call_operator_loc = *call_operator_loc;
23095 n->opening_loc = *opening_loc;
23096 n->closing_loc = *closing_loc;
23097 n->binary_operator_loc = *binary_operator_loc;
23106 n->nd_recv = nd_recv;
23107 n->nd_value = nd_value;
23108 n->nd_vid = nd_vid;
23109 n->nd_mid = nd_mid;
23110 n->nd_aid = nd_aid;
23111 n->call_operator_loc = *call_operator_loc;
23112 n->message_loc = *message_loc;
23113 n->binary_operator_loc = *binary_operator_loc;
23122 n->nd_head = nd_head;
23123 n->nd_value = nd_value;
23132 n->nd_head = nd_head;
23133 n->nd_value = nd_value;
23142 n->nd_vid = nd_vid;
23151 n->nd_vid = nd_vid;
23160 n->nd_vid = nd_vid;
23169 n->nd_vid = nd_vid;
23178 n->nd_vid = nd_vid;
23187 n->nd_vid = nd_vid;
23196 n->nd_nth = nd_nth;
23205 n->nd_nth = nd_nth;
23232rb_node_rational_new(
struct parser_params *p,
char* val,
int base,
int seen_point,
const YYLTYPE *loc)
23238 n->seen_point = seen_point;
23244rb_node_imaginary_new(
struct parser_params *p,
char* val,
int base,
int seen_point,
enum rb_numeric_type numeric_type,
const YYLTYPE *loc)
23250 n->seen_point = seen_point;
23251 n->type = numeric_type;
23260 n->string = string;
23270 n->string = string;
23271 n->as.nd_alen = nd_alen;
23280 return rb_node_dstr_new0(p,
string, 1, 0, loc);
23287 n->string = string;
23296 n->string = string;
23297 n->as.nd_alen = nd_alen;
23307 n->string = rb_str_to_parser_string(p, str);
23316 n->string = string;
23317 n->as.nd_alen = nd_alen;
23327 n->nd_body = nd_body;
23328 n->opening_loc = *opening_loc;
23329 n->closing_loc = *closing_loc;
23338 n->string = string;
23339 n->options = options & RE_OPTION_MASK;
23340 n->opening_loc = *opening_loc;
23341 n->content_loc = *content_loc;
23342 n->closing_loc = *closing_loc;
23351 n->nd_recv = nd_recv;
23352 n->nd_mid = nd_mid;
23353 n->nd_args = nd_args;
23362 n->nd_recv = nd_recv;
23363 n->nd_mid = nd_mid;
23364 n->nd_args = nd_args;
23373 n->nd_mid = nd_mid;
23374 n->nd_args = nd_args;
23383 n->nd_recv = nd_recv;
23384 n->nd_mid = nd_mid;
23385 n->nd_args = nd_args;
23394 n->nd_mid = nd_mid;
23403 n->nd_body = nd_body;
23421 n->nd_pid = nd_pid;
23422 n->nd_plen = nd_plen;
23432 n->nd_body = nd_body;
23442 n->nd_body = nd_body;
23452 n->nd_1st = nd_1st;
23453 n->nd_2nd = nd_2nd;
23462 n->nd_head = nd_head;
23463 n->nd_body = nd_body;
23472 n->nd_head = nd_head;
23473 n->nd_body = nd_body;
23482 n->nd_head = nd_head;
23483 n->operator_loc = *operator_loc;
23494 n->nd_body = nd_body;
23495 n->operator_loc = *operator_loc;
23504 n->nd_1st = nd_1st;
23505 n->nd_2nd = nd_2nd;
23506 n->keyword_loc = *keyword_loc;
23515 n->nd_alias = nd_alias;
23516 n->nd_orig = nd_orig;
23517 n->keyword_loc = *keyword_loc;
23526 n->nd_undefs = rb_parser_ary_new_capa_for_node(p, 1);
23527 n->keyword_loc = NULL_LOC;
23528 rb_parser_ary_push_node(p, n->nd_undefs, nd_undef);
23545 n->nd_head = nd_head;
23554 n->nd_body = nd_body;
23555 n->keyword_loc = *keyword_loc;
23556 n->opening_loc = *opening_loc;
23557 n->closing_loc = *closing_loc;
23566 n->nd_recv = nd_recv;
23567 n->nd_mid = nd_mid;
23568 n->nd_args = nd_args;
23578 n->pre_args = pre_args;
23579 n->rest_arg = rest_arg;
23580 n->post_args = post_args;
23589 n->nd_pconst = nd_pconst;
23590 n->nd_pkwargs = nd_pkwargs;
23591 n->nd_pkwrestarg = nd_pkwrestarg;
23601 n->pre_rest_arg = pre_rest_arg;
23603 n->post_rest_arg = post_rest_arg;
23620 n->path = rb_str_to_parser_string(p, str);
23635rb_node_cdecl_new(
struct parser_params *p,
ID nd_vid,
NODE *nd_value,
NODE *nd_else,
enum rb_parser_shareability shareability,
const YYLTYPE *loc)
23638 n->nd_vid = nd_vid;
23639 n->nd_value = nd_value;
23640 n->nd_else = nd_else;
23641 n->shareability = shareability;
23647rb_node_op_cdecl_new(
struct parser_params *p,
NODE *nd_head,
NODE *nd_value,
ID nd_aid,
enum rb_parser_shareability shareability,
const YYLTYPE *loc)
23650 n->nd_head = nd_head;
23651 n->nd_value = nd_value;
23652 n->nd_aid = nd_aid;
23653 n->shareability = shareability;
23670 n->nd_stts = nd_stts;
23672 n->keyword_loc = *keyword_loc;
23681 n->nd_stts = nd_stts;
23683 n->keyword_loc = *keyword_loc;
23693 n->keyword_loc = *keyword_loc;
23702 n->save.numparam_save = 0;
23703 n->save.max_numparam = 0;
23704 n->save.ctxt = p->ctxt;
23714 n->save.numparam_save = numparam_push(p);
23715 n->save.max_numparam = p->max_numparam;
23720static enum node_type
23721nodetype(
NODE *node)
23723 return (
enum node_type)nd_type(node);
23727nodeline(
NODE *node)
23729 return nd_line(node);
23734newline_node(
NODE *node)
23737 node = remove_begin(node);
23738 nd_set_fl_newline(node);
23748 nd_set_line(node, nd_line(orig));
23754 NODE *end, *h = head, *nd;
23756 if (tail == 0)
return head;
23758 if (h == 0)
return tail;
23759 switch (nd_type(h)) {
23761 h = end = NEW_BLOCK(head, &head->nd_loc);
23765 end = RNODE_BLOCK(h)->nd_end;
23769 nd = RNODE_BLOCK(end)->nd_head;
23770 switch (nd_type(nd)) {
23776 rb_warning0L(nd_line(tail),
"statement not reached");
23783 if (!nd_type_p(tail, NODE_BLOCK)) {
23784 tail = NEW_BLOCK(tail, &tail->nd_loc);
23786 RNODE_BLOCK(end)->nd_next = tail;
23787 RNODE_BLOCK(h)->nd_end = RNODE_BLOCK(tail)->nd_end;
23788 nd_set_last_loc(head, nd_last_loc(tail));
23798 if (list == 0)
return NEW_LIST(item, &item->nd_loc);
23799 if (RNODE_LIST(list)->nd_next) {
23800 last = RNODE_LIST(RNODE_LIST(list)->nd_next)->as.nd_end;
23806 RNODE_LIST(list)->as.nd_alen += 1;
23807 RNODE_LIST(last)->nd_next = NEW_LIST(item, &item->nd_loc);
23808 RNODE_LIST(RNODE_LIST(list)->nd_next)->as.nd_end = RNODE_LIST(last)->nd_next;
23810 nd_set_last_loc(list, nd_last_loc(item));
23817list_concat(
NODE *head,
NODE *tail)
23821 if (RNODE_LIST(head)->nd_next) {
23822 last = RNODE_LIST(RNODE_LIST(head)->nd_next)->as.nd_end;
23828 RNODE_LIST(head)->as.nd_alen += RNODE_LIST(tail)->as.nd_alen;
23829 RNODE_LIST(last)->nd_next = tail;
23830 if (RNODE_LIST(tail)->nd_next) {
23831 RNODE_LIST(RNODE_LIST(head)->nd_next)->as.nd_end = RNODE_LIST(RNODE_LIST(tail)->nd_next)->as.nd_end;
23834 RNODE_LIST(RNODE_LIST(head)->nd_next)->as.nd_end = tail;
23837 nd_set_last_loc(head, nd_last_loc(tail));
23845 if (!tail)
return 1;
23846 if (!rb_parser_enc_compatible(p, head, tail)) {
23847 compile_error(p,
"string literal encodings differ (%s / %s)",
23848 rb_enc_name(rb_parser_str_get_encoding(head)),
23849 rb_enc_name(rb_parser_str_get_encoding(tail)));
23850 rb_parser_str_resize(p, head, 0);
23851 rb_parser_str_resize(p, tail, 0);
23854 rb_parser_str_buf_append(p, head, tail);
23861 if (htype != NODE_DSTR)
return NULL;
23862 if (RNODE_DSTR(head)->nd_next) {
23863 head = RNODE_LIST(RNODE_LIST(RNODE_DSTR(head)->nd_next)->as.nd_end)->nd_head;
23864 if (!head || !nd_type_p(head, NODE_STR))
return NULL;
23876 if (!orig)
return NULL;
23877 copy = rb_parser_string_new(p, PARSER_STRING_PTR(orig), PARSER_STRING_LEN(orig));
23878 copy->coderange = orig->coderange;
23879 copy->enc = orig->enc;
23888 enum node_type htype;
23891 if (!head)
return tail;
23892 if (!tail)
return head;
23894 htype = nd_type(head);
23895 if (htype == NODE_EVSTR) {
23896 head = new_dstr(p, head, loc);
23899 if (p->heredoc_indent > 0) {
23902 head = str2dstr(p, head);
23904 return list_append(p, head, tail);
23909 switch (nd_type(tail)) {
23911 if ((lit = string_literal_head(p, htype, head)) !=
false) {
23915 lit = RNODE_DSTR(head)->string;
23917 if (htype == NODE_STR) {
23918 if (!literal_concat0(p, lit, RNODE_STR(tail)->
string)) {
23920 rb_discard_node(p, head);
23921 rb_discard_node(p, tail);
23924 rb_discard_node(p, tail);
23927 list_append(p, head, tail);
23932 if (htype == NODE_STR) {
23933 if (!literal_concat0(p, RNODE_STR(head)->
string, RNODE_DSTR(tail)->
string))
23935 rb_parser_string_free(p, RNODE_DSTR(tail)->
string);
23936 RNODE_DSTR(tail)->string = RNODE_STR(head)->string;
23937 RNODE_STR(head)->string = NULL;
23938 rb_discard_node(p, head);
23941 else if (!RNODE_DSTR(tail)->
string) {
23943 RNODE_DSTR(head)->as.nd_alen += RNODE_DSTR(tail)->as.nd_alen - 1;
23944 if (!RNODE_DSTR(head)->nd_next) {
23945 RNODE_DSTR(head)->nd_next = RNODE_DSTR(tail)->nd_next;
23947 else if (RNODE_DSTR(tail)->nd_next) {
23948 RNODE_DSTR(RNODE_DSTR(RNODE_DSTR(head)->nd_next)->as.nd_end)->nd_next = RNODE_DSTR(tail)->nd_next;
23949 RNODE_DSTR(RNODE_DSTR(head)->nd_next)->as.nd_end = RNODE_DSTR(RNODE_DSTR(tail)->nd_next)->as.nd_end;
23951 rb_discard_node(p, tail);
23953 else if ((lit = string_literal_head(p, htype, head)) !=
false) {
23954 if (!literal_concat0(p, lit, RNODE_DSTR(tail)->
string))
23956 rb_parser_string_free(p, RNODE_DSTR(tail)->
string);
23957 RNODE_DSTR(tail)->string = 0;
23961 list_concat(head, NEW_LIST2(NEW_STR(RNODE_DSTR(tail)->
string, loc), RNODE_DSTR(tail)->as.nd_alen, (
NODE *)RNODE_DSTR(tail)->nd_next, loc));
23962 RNODE_DSTR(tail)->string = 0;
23967 if (htype == NODE_STR) {
23968 head = str2dstr(p, head);
23969 RNODE_DSTR(head)->as.nd_alen = 1;
23971 list_append(p, head, tail);
23978nd_copy_flag(
NODE *new_node,
NODE *old_node)
23980 if (nd_fl_newline(old_node)) nd_set_fl_newline(new_node);
23981 nd_set_line(new_node, nd_line(old_node));
23982 new_node->nd_loc = old_node->nd_loc;
23983 new_node->node_id = old_node->node_id;
23990 nd_copy_flag(new_node, node);
23991 RNODE_DSTR(new_node)->string = RNODE_STR(node)->string;
23992 RNODE_DSTR(new_node)->as.nd_alen = 0;
23993 RNODE_DSTR(new_node)->nd_next = 0;
23994 RNODE_STR(node)->string = 0;
24003 nd_copy_flag(new_node, node);
24004 RNODE_REGX(new_node)->string = RNODE_STR(node)->string;
24005 RNODE_REGX(new_node)->options = options;
24006 nd_set_loc(new_node, loc);
24007 RNODE_REGX(new_node)->opening_loc = *opening_loc;
24008 RNODE_REGX(new_node)->content_loc = *content_loc;
24009 RNODE_REGX(new_node)->closing_loc = *closing_loc;
24010 RNODE_STR(node)->string = 0;
24018 if (nd_type_p(node, NODE_EVSTR)) {
24019 node = new_dstr(p, node, &node->nd_loc);
24030 switch (nd_type(node)) {
24032 return str2dstr(p, node);
24039 return NEW_EVSTR(head, loc, opening_loc, closing_loc);
24045 NODE *dstr = NEW_DSTR(STRING_NEW0(), loc);
24046 return list_append(p, dstr, node);
24056 expr = NEW_OPCALL(recv,
id, NEW_LIST(arg1, &arg1->nd_loc), loc);
24057 nd_set_line(expr, op_loc->beg_pos.lineno);
24066 opcall = NEW_OPCALL(recv,
id, 0, loc);
24067 nd_set_line(opcall, op_loc->beg_pos.lineno);
24074 NODE *qcall = NEW_QCALL(atype, recv, mid, args, loc);
24075 nd_set_line(qcall, op_loc->beg_pos.lineno);
24083 if (block) block_dup_check(p, args, block);
24084 ret = new_qcall(p, atype, recv, mid, args, op_loc, loc);
24085 if (block) ret = method_add_block(p, ret, block, loc);
24095 body->opening_loc = *opening_loc;
24096 body->closing_loc = *closing_loc;
24100#define nd_once_body(node) (nd_type_p((node), NODE_ONCE) ? RNODE_ONCE(node)->nd_body : node)
24103last_expr_once_body(
NODE *node)
24105 if (!node)
return 0;
24106 return nd_once_body(node);
24113 int line = op_loc->beg_pos.lineno;
24118 if ((n = last_expr_once_body(node1)) != 0) {
24119 switch (nd_type(n)) {
24122 NODE *match = NEW_MATCH2(node1, node2, loc);
24123 nd_set_line(match, line);
24129 const VALUE lit = rb_node_regx_string_val(n);
24131 NODE *match = NEW_MATCH2(node1, node2, loc);
24132 RNODE_MATCH2(match)->nd_args = reg_named_capture_assign(p, lit, loc, assignable);
24133 nd_set_line(match, line);
24140 if ((n = last_expr_once_body(node2)) != 0) {
24143 switch (nd_type(n)) {
24145 match3 = NEW_MATCH3(node2, node1, loc);
24150 n = NEW_CALL(node1, tMATCH, NEW_LIST(node2, &node2->nd_loc), loc);
24151 nd_set_line(n, line);
24155# if WARN_PAST_SCOPE
24159 struct vtable *past = p->lvtbl->past;
24161 if (vtable_included(past,
id))
return 1;
24172 NODE *outer = local->numparam.outer;
24173 NODE *inner = local->numparam.inner;
24174 if (outer || inner) {
24175 NODE *used = outer ? outer : inner;
24176 compile_error(p,
"numbered parameter is already used in\n"
24177 "%s:%d: %s block here",
24178 p->ruby_sourcefile, nd_line(used),
24179 outer ?
"outer" :
"inner");
24180 parser_show_error_line(p, &used->nd_loc);
24189 NODE *numparam = p->lvtbl->numparam.current;
24191 compile_error(p,
"numbered parameter is already used in\n"
24192 "%s:%d: current block here",
24193 p->ruby_sourcefile, nd_line(numparam));
24194 parser_show_error_line(p, &numparam->nd_loc);
24203 NODE *it = p->lvtbl->it;
24205 compile_error(p,
"'it' is already used in\n"
24206 "%s:%d: current block here",
24207 p->ruby_sourcefile, nd_line(it));
24208 parser_show_error_line(p, &it->nd_loc);
24221 return NEW_SELF(loc);
24223 return NEW_NIL(loc);
24225 return NEW_TRUE(loc);
24226 case keyword_false:
24227 return NEW_FALSE(loc);
24228 case keyword__FILE__:
24230 VALUE file = p->ruby_sourcefile_string;
24233 node = NEW_FILE(file, loc);
24236 case keyword__LINE__:
24237 return NEW_LINE(loc);
24238 case keyword__ENCODING__:
24239 return NEW_ENCODING(loc);
24242 switch (id_type(
id)) {
24244 if (dyna_in_block(p) && dvar_defined_ref(p,
id, &vidp)) {
24245 if (NUMPARAM_ID_P(
id) && (numparam_nested_p(p) || it_used_p(p)))
return 0;
24246 if (vidp) *vidp |= LVAR_USED;
24247 node = NEW_DVAR(
id, loc);
24250 if (local_id_ref(p,
id, &vidp)) {
24251 if (vidp) *vidp |= LVAR_USED;
24252 node = NEW_LVAR(
id, loc);
24255 if (dyna_in_block(p) && NUMPARAM_ID_P(
id) &&
24256 parser_numbered_param(p, NUMPARAM_ID_TO_IDX(
id))) {
24257 if (numparam_nested_p(p) || it_used_p(p))
return 0;
24258 node = NEW_DVAR(
id, loc);
24260 if (!local->numparam.current) local->numparam.current = node;
24263# if WARN_PAST_SCOPE
24265 rb_warning1(
"possible reference to past scope - %"PRIsWARN, rb_id2str(
id));
24269 if (dyna_in_block(p) &&
id == rb_intern(
"it") && !(DVARS_TERMINAL_P(p->lvtbl->args) || DVARS_TERMINAL_P(p->lvtbl->args->prev))) {
24270 if (numparam_used_p(p))
return 0;
24271 if (p->max_numparam == ORDINAL_PARAM) {
24272 compile_error(p,
"ordinary parameter is defined");
24276 p->it_id = internal_id(p);
24277 vtable_add(p->lvtbl->args, p->it_id);
24279 NODE *node = NEW_DVAR(p->it_id, loc);
24280 if (!p->lvtbl->it) p->lvtbl->it = node;
24283 return NEW_VCALL(
id, loc);
24285 return NEW_GVAR(
id, loc);
24287 return NEW_IVAR(
id, loc);
24289 return NEW_CONST(
id, loc);
24291 return NEW_CVAR(
id, loc);
24293 compile_error(p,
"identifier %"PRIsVALUE
" is not valid to get", rb_id2str(
id));
24301 RNODE(opts)->nd_loc.end_pos = RNODE(opt)->nd_loc.end_pos;
24303 while (opts->nd_next) {
24304 opts = opts->nd_next;
24305 RNODE(opts)->nd_loc.end_pos = RNODE(opt)->nd_loc.end_pos;
24307 opts->nd_next = opt;
24317 opt_arg_append(RNODE_OPT_ARG(kwlist), RNODE_OPT_ARG(kw));
24327 if (nd_type_p(n, NODE_BEGIN)) {
24328 n = RNODE_BEGIN(n)->nd_body;
24330 else if (nd_type_p(n, NODE_BLOCK) && RNODE_BLOCK(n)->nd_end == n) {
24331 n = RNODE_BLOCK(n)->nd_head;
24337 return NEW_DEFINED(n, loc);
24345 if (rb_parser_enc_str_coderange(p, str) == RB_PARSER_ENC_CODERANGE_BROKEN) {
24346 yyerror1(loc,
"invalid symbol");
24350 lit = rb_str_new_parser_string(str);
24352 return NEW_SYM(lit, loc);
24358 enum node_type
type = nd_type(symbol);
24361 nd_set_type(symbol, NODE_DSYM);
24364 symbol = str_to_sym_node(p, symbol, &RNODE(symbol)->nd_loc);
24367 compile_error(p,
"unexpected node as symbol: %s", parser_node_name(
type));
24369 return list_append(p, symbols, symbol);
24375 if (dreg->string) {
24376 reg_fragment_setenc(p, dreg->string, options);
24378 for (
struct RNode_LIST *list = dreg->nd_next; list; list = RNODE_LIST(list->nd_next)) {
24379 NODE *frag = list->nd_head;
24380 if (nd_type_p(frag, NODE_STR)) {
24381 reg_fragment_setenc(p, RNODE_STR(frag)->
string, options);
24383 else if (nd_type_p(frag, NODE_DSTR)) {
24384 dregex_fragment_setenc(p, RNODE_DSTR(frag), options);
24395 reg_compile(p, str, options);
24396 node = NEW_REGX(str, options, loc, opening_loc, content_loc, closing_loc);
24399 switch (nd_type(node)) {
24403 reg_compile(p, RNODE_STR(node)->
string, options);
24404 node = str2regx(p, node, options, loc, opening_loc, content_loc, closing_loc);
24408 node = NEW_DSTR0(STRING_NEW0(), 1, NEW_LIST(node, loc), loc);
24411 nd_set_type(node, NODE_DREGX);
24412 nd_set_loc(node, loc);
24414 dreg->as.nd_cflag = options & RE_OPTION_MASK;
24415 if (dreg->nd_next) {
24416 dregex_fragment_setenc(p, dreg, options);
24418 if (options & RE_OPTION_ONCE) {
24419 node = NEW_ONCE(node, loc);
24430 return NEW_KW_ARG((k), loc);
24437 NODE *xstr = NEW_XSTR(STRING_NEW0(), loc);
24440 switch (nd_type(node)) {
24442 nd_set_type(node, NODE_XSTR);
24443 nd_set_loc(node, loc);
24446 nd_set_type(node, NODE_DXSTR);
24447 nd_set_loc(node, loc);
24450 node = NEW_DXSTR(0, 1, NEW_LIST(node, loc), loc);
24462static int nd_type_st_key_enable_p(
NODE *node);
24468 if (!arg || !p->case_labels)
return;
24469 if (!nd_type_st_key_enable_p(arg))
return;
24471 if (p->case_labels == CHECK_LITERAL_WHEN) {
24472 p->case_labels = st_init_table(&literal_type);
24476 if (st_lookup(p->case_labels, (st_data_t)arg, &line)) {
24477 rb_warning2(
"'when' clause on line %d duplicates 'when' clause on line %d and is ignored",
24478 WARN_I((
int)nd_line(arg)), WARN_I((
int)line));
24482 st_insert(p->case_labels, (st_data_t)arg, (st_data_t)p->ruby_sourceline);
24489 if (is_notop_id(
id)) {
24490 switch (
id & ID_SCOPE_MASK) {
24491 case ID_GLOBAL:
case ID_INSTANCE:
case ID_CONST:
case ID_CLASS:
24494 if (dyna_in_block(p)) {
24495 if (NUMPARAM_ID_P(
id) || dvar_defined(p,
id))
return 1;
24497 if (local_id(p,
id))
return 1;
24502 compile_error(p,
"identifier %"PRIsVALUE
" is not valid to get", rb_id2str(
id));
24507static inline enum lex_state_e
24508parser_set_lex_state(
struct parser_params *p,
enum lex_state_e ls,
int line)
24511 ls = rb_parser_trace_lex_state(p, p->lex.state, ls, line);
24513 return p->lex.state = ls;
24520 VALUE mesg = p->debug_buffer;
24522 if (!
NIL_P(mesg) && RSTRING_LEN(mesg)) {
24523 p->debug_buffer =
Qnil;
24524 rb_io_puts(1, &mesg, out);
24526 if (!
NIL_P(str) && RSTRING_LEN(str)) {
24527 rb_io_write(p->debug_output, str);
24531static const char rb_parser_lex_state_names[][8] = {
24532 "BEG",
"END",
"ENDARG",
"ENDFN",
"ARG",
24533 "CMDARG",
"MID",
"FNAME",
"DOT",
"CLASS",
24534 "LABEL",
"LABELED",
"FITEM",
24541 unsigned int mask = 1;
24542 static const char none[] =
"NONE";
24544 for (i = 0; i < EXPR_MAX_STATE; ++i, mask <<= 1) {
24545 if ((
unsigned)state & mask) {
24560rb_parser_trace_lex_state(
struct parser_params *p,
enum lex_state_e from,
24561 enum lex_state_e to,
int line)
24565 append_lex_state_name(p, from, mesg);
24567 append_lex_state_name(p, to, mesg);
24568 rb_str_catf(mesg,
" at line %d\n", line);
24569 flush_debug_buffer(p, p->debug_output, mesg);
24574rb_parser_lex_state_name(
struct parser_params *p,
enum lex_state_e state)
24576 return rb_str_to_interned_str(append_lex_state_name(p, state,
rb_str_new(0, 0)));
24586 stack_type mask = (stack_type)1U << (CHAR_BIT *
sizeof(stack_type) - 1);
24587 for (; mask && !(stack & mask); mask >>= 1)
continue;
24588 for (; mask; mask >>= 1)
rb_str_cat(mesg, stack & mask ?
"1" :
"0", 1);
24593rb_parser_show_bitstack(
struct parser_params *p, stack_type stack,
24594 const char *name,
int line)
24596 VALUE mesg = rb_sprintf(
"%s: ", name);
24597 append_bitstack_value(p, stack, mesg);
24598 rb_str_catf(mesg,
" at line %d\n", line);
24599 flush_debug_buffer(p, p->debug_output, mesg);
24603rb_parser_fatal(
struct parser_params *p,
const char *fmt, ...)
24609 rb_str_vcatf(mesg, fmt, ap);
24611 yyerror0(RSTRING_PTR(mesg));
24615 append_lex_state_name(p, p->lex.state, mesg);
24616 compile_error(p,
"lex.state: %"PRIsVALUE, mesg);
24617 rb_str_resize(mesg, 0);
24618 append_bitstack_value(p, p->cond_stack, mesg);
24619 compile_error(p,
"cond_stack: %"PRIsVALUE, mesg);
24620 rb_str_resize(mesg, 0);
24621 append_bitstack_value(p, p->cmdarg_stack, mesg);
24622 compile_error(p,
"cmdarg_stack: %"PRIsVALUE, mesg);
24623 if (p->debug_output == rb_ractor_stdout())
24624 p->debug_output = rb_ractor_stderr();
24629rb_parser_set_pos(
YYLTYPE *yylloc,
int sourceline,
int beg_pos,
int end_pos)
24631 yylloc->beg_pos.lineno = sourceline;
24632 yylloc->beg_pos.column = beg_pos;
24633 yylloc->end_pos.lineno = sourceline;
24634 yylloc->end_pos.column = end_pos;
24641 int sourceline = here->sourceline;
24642 int beg_pos = (int)here->offset - here->quote
24643 - (
rb_strlen_lit(
"<<-") - !(here->func & STR_FUNC_INDENT));
24644 int end_pos = (int)here->offset + here->length + here->quote;
24646 return rb_parser_set_pos(yylloc, sourceline, beg_pos, end_pos);
24652 yylloc->beg_pos.lineno = p->delayed.beg_line;
24653 yylloc->beg_pos.column = p->delayed.beg_col;
24654 yylloc->end_pos.lineno = p->delayed.end_line;
24655 yylloc->end_pos.column = p->delayed.end_col;
24663 int sourceline = p->ruby_sourceline;
24664 int beg_pos = (int)(p->lex.ptok - p->lex.pbeg);
24665 int end_pos = (int)(p->lex.pend - p->lex.pbeg);
24666 return rb_parser_set_pos(yylloc, sourceline, beg_pos, end_pos);
24672 yylloc->end_pos = yylloc->beg_pos;
24680 int sourceline = p->ruby_sourceline;
24681 int beg_pos = (int)(p->lex.ptok - p->lex.pbeg);
24682 int end_pos = (int)(p->lex.ptok - p->lex.pbeg);
24683 return rb_parser_set_pos(yylloc, sourceline, beg_pos, end_pos);
24689 int sourceline = p->ruby_sourceline;
24690 int beg_pos = (int)(p->lex.ptok - p->lex.pbeg);
24691 int end_pos = (int)(p->lex.pcur - p->lex.pbeg);
24692 return rb_parser_set_pos(yylloc, sourceline, beg_pos, end_pos);
24699 if (!
id)
return -1;
24702 *err =
"Can't change the value of self";
24705 *err =
"Can't assign to nil";
24708 *err =
"Can't assign to true";
24710 case keyword_false:
24711 *err =
"Can't assign to false";
24713 case keyword__FILE__:
24714 *err =
"Can't assign to __FILE__";
24716 case keyword__LINE__:
24717 *err =
"Can't assign to __LINE__";
24719 case keyword__ENCODING__:
24720 *err =
"Can't assign to __ENCODING__";
24723 switch (id_type(
id)) {
24725 if (dyna_in_block(p)) {
24726 if (p->max_numparam > NO_PARAM && NUMPARAM_ID_P(
id)) {
24727 compile_error(p,
"Can't assign to numbered parameter _%d",
24728 NUMPARAM_ID_TO_IDX(
id));
24731 if (dvar_curr(p,
id))
return NODE_DASGN;
24732 if (dvar_defined(p,
id))
return NODE_DASGN;
24733 if (local_id(p,
id))
return NODE_LASGN;
24738 if (!local_id(p,
id)) local_var(p,
id);
24742 case ID_GLOBAL:
return NODE_GASGN;
24743 case ID_INSTANCE:
return NODE_IASGN;
24745 if (!p->ctxt.in_def)
return NODE_CDECL;
24746 *err =
"dynamic constant assignment";
24748 case ID_CLASS:
return NODE_CVASGN;
24750 compile_error(p,
"identifier %"PRIsVALUE
" is not valid to set", rb_id2str(
id));
24758 const char *err = 0;
24759 int node_type = assignable0(p,
id, &err);
24760 switch (node_type) {
24761 case NODE_DASGN:
return NEW_DASGN(
id, val, loc);
24762 case NODE_LASGN:
return NEW_LASGN(
id, val, loc);
24763 case NODE_GASGN:
return NEW_GASGN(
id, val, loc);
24764 case NODE_IASGN:
return NEW_IASGN(
id, val, loc);
24765 case NODE_CDECL:
return NEW_CDECL(
id, val, 0, p->ctxt.shareable_constant_value, loc);
24766 case NODE_CVASGN:
return NEW_CVASGN(
id, val, loc);
24770 if (err) yyerror1(loc, err);
24772 if (err) set_value(assign_error(p, err, p->s_lvalue));
24774 return NEW_ERROR(loc);
24781 if (name == idUScore)
return 1;
24782 if (!is_local_id(name))
return 0;
24783 s = rb_id2str(name);
24785 return RSTRING_PTR(s)[0] ==
'_';
24791 if (dyna_in_block(p)) {
24792 if (dvar_curr(p, name)) {
24793 if (is_private_local_id(p, name))
return 1;
24794 yyerror0(
"duplicated argument name");
24796 else if (dvar_defined(p, name) || local_id(p, name)) {
24797 vtable_add(p->lvtbl->vars, name);
24798 if (p->lvtbl->used) {
24799 vtable_add(p->lvtbl->used, (
ID)p->ruby_sourceline | LVAR_USED);
24805 if (local_id(p, name)) {
24806 if (is_private_local_id(p, name))
return 1;
24807 yyerror0(
"duplicated argument name");
24816 shadowing_lvar_0(p, name);
24824 if (!is_local_id(name)) {
24825 compile_error(p,
"invalid local variable - %"PRIsVALUE,
24829 if (!shadowing_lvar_0(p, name))
return;
24832 if (dvar_defined_ref(p, name, &vidp)) {
24833 if (vidp) *vidp |= LVAR_USED;
24840 NODE *block = 0, *kwds = 0;
24841 if (args && nd_type_p(args, NODE_BLOCK_PASS)) {
24842 block = RNODE_BLOCK_PASS(args)->nd_body;
24843 args = RNODE_BLOCK_PASS(args)->nd_head;
24845 if (args && nd_type_p(args, NODE_ARGSCAT)) {
24846 args = RNODE_ARGSCAT(args)->nd_body;
24848 if (args && nd_type_p(args, NODE_ARGSPUSH)) {
24849 kwds = RNODE_ARGSPUSH(args)->nd_body;
24852 for (
NODE *next = args; next && nd_type_p(next, NODE_LIST);
24853 next = RNODE_LIST(next)->nd_next) {
24854 kwds = RNODE_LIST(next)->nd_head;
24857 if (kwds && nd_type_p(kwds, NODE_HASH) && !RNODE_HASH(kwds)->nd_brace) {
24858 yyerror1(&kwds->nd_loc,
"keyword arg given in index assignment");
24861 yyerror1(&block->nd_loc,
"block arg given in index assignment");
24868 aryset_check(p, idx);
24869 return NEW_ATTRASGN(recv, tASET, idx, loc);
24875 if (node2 && node1 && nd_type_p(node1, NODE_BLOCK_PASS)) {
24876 compile_error(p,
"both block arg and actual block given");
24883 if (!CALL_Q_P(atype))
id = rb_id_attrset(
id);
24884 return NEW_ATTRASGN(recv,
id, 0, loc);
24891# define ERR(...) (compile_error(p, __VA_ARGS__), Qtrue)
24893# define ERR(...) rb_sprintf(__VA_ARGS__)
24895 switch (nd_type(node)) {
24897 return ERR(
"Can't set variable $%ld", RNODE_NTH_REF(node)->nd_nth);
24898 case NODE_BACK_REF:
24899 return ERR(
"Can't set variable $%c", (
int)RNODE_BACK_REF(node)->nd_nth);
24908 if (!node1)
return NEW_LIST(node2, &node2->nd_loc);
24909 switch (nd_type(node1)) {
24911 return list_append(p, node1, node2);
24912 case NODE_BLOCK_PASS:
24913 RNODE_BLOCK_PASS(node1)->nd_head = arg_append(p, RNODE_BLOCK_PASS(node1)->nd_head, node2, loc);
24914 node1->nd_loc.end_pos = RNODE_BLOCK_PASS(node1)->nd_head->nd_loc.end_pos;
24916 case NODE_ARGSPUSH:
24917 RNODE_ARGSPUSH(node1)->nd_body = list_append(p, NEW_LIST(RNODE_ARGSPUSH(node1)->nd_body, &RNODE_ARGSPUSH(node1)->nd_body->nd_loc), node2);
24918 node1->nd_loc.end_pos = RNODE_ARGSPUSH(node1)->nd_body->nd_loc.end_pos;
24919 nd_set_type(node1, NODE_ARGSCAT);
24922 if (!nd_type_p(RNODE_ARGSCAT(node1)->nd_body, NODE_LIST))
break;
24923 RNODE_ARGSCAT(node1)->nd_body = list_append(p, RNODE_ARGSCAT(node1)->nd_body, node2);
24924 node1->nd_loc.end_pos = RNODE_ARGSCAT(node1)->nd_body->nd_loc.end_pos;
24927 return NEW_ARGSPUSH(node1, node2, loc);
24933 if (!node2)
return node1;
24934 switch (nd_type(node1)) {
24935 case NODE_BLOCK_PASS:
24936 if (RNODE_BLOCK_PASS(node1)->nd_head)
24937 RNODE_BLOCK_PASS(node1)->nd_head = arg_concat(p, RNODE_BLOCK_PASS(node1)->nd_head, node2, loc);
24939 RNODE_LIST(node1)->nd_head = NEW_LIST(node2, loc);
24941 case NODE_ARGSPUSH:
24942 if (!nd_type_p(node2, NODE_LIST))
break;
24943 RNODE_ARGSPUSH(node1)->nd_body = list_concat(NEW_LIST(RNODE_ARGSPUSH(node1)->nd_body, loc), node2);
24944 nd_set_type(node1, NODE_ARGSCAT);
24947 if (!nd_type_p(node2, NODE_LIST) ||
24948 !nd_type_p(RNODE_ARGSCAT(node1)->nd_body, NODE_LIST))
break;
24949 RNODE_ARGSCAT(node1)->nd_body = list_concat(RNODE_ARGSCAT(node1)->nd_body, node2);
24952 return NEW_ARGSCAT(node1, node2, loc);
24959 if ((n1 = splat_array(args)) != 0) {
24960 return list_append(p, n1, last_arg);
24962 return arg_append(p, args, last_arg, loc);
24969 if ((nd_type_p(rest_arg, NODE_LIST)) && (n1 = splat_array(args)) != 0) {
24970 return list_concat(n1, rest_arg);
24972 return arg_concat(p, args, rest_arg, loc);
24976splat_array(
NODE* node)
24978 if (nd_type_p(node, NODE_SPLAT)) node = RNODE_SPLAT(node)->nd_head;
24979 if (nd_type_p(node, NODE_LIST))
return node;
24988 switch (nd_type(rhs)) {
24990 if (local_id_ref(p, RNODE_LASGN(rhs)->nd_vid, &vidp)) {
24991 if (vidp) *vidp |= LVAR_USED;
24995 if (dvar_defined_ref(p, RNODE_DASGN(rhs)->nd_vid, &vidp)) {
24996 if (vidp) *vidp |= LVAR_USED;
25001 for (rhs = rhs->nd_head; rhs; rhs = rhs->nd_next) {
25002 mark_lvar_used(p, rhs->nd_head);
25009static int is_static_content(
NODE *node);
25014 if (!lhs)
return 0;
25016 switch (nd_type(lhs)) {
25024 set_nd_value(p, lhs, rhs);
25025 nd_set_loc(lhs, loc);
25028 case NODE_ATTRASGN:
25029 RNODE_ATTRASGN(lhs)->nd_args = arg_append(p, RNODE_ATTRASGN(lhs)->nd_args, rhs, loc);
25030 nd_set_loc(lhs, loc);
25044 NODE *void_node = 0, *vn;
25047 rb_warning0(
"empty expression");
25050 switch (nd_type(node)) {
25052 vn = RNODE_ENSURE(node)->nd_head;
25053 node = RNODE_ENSURE(node)->nd_ensr;
25055 if (vn && (vn = value_expr_check(p, vn))) {
25062 vn = RNODE_RESCUE(node)->nd_head;
25063 if (!vn || !(vn = value_expr_check(p, vn)))
return NULL;
25064 if (!void_node) void_node = vn;
25065 for (
NODE *r = RNODE_RESCUE(node)->nd_resq; r; r = RNODE_RESBODY(r)->nd_next) {
25066 if (!nd_type_p(r, NODE_RESBODY)) {
25067 compile_error(p,
"unexpected node");
25070 if (!(vn = value_expr_check(p, RNODE_RESBODY(r)->nd_body))) {
25074 if (!void_node) void_node = vn;
25076 node = RNODE_RESCUE(node)->nd_else;
25077 if (!node)
return void_node;
25088 if (!RNODE_CASE3(node)->nd_body || !nd_type_p(RNODE_CASE3(node)->nd_body, NODE_IN)) {
25089 compile_error(p,
"unexpected node");
25092 if (RNODE_IN(RNODE_CASE3(node)->nd_body)->nd_body) {
25099 while (RNODE_BLOCK(node)->nd_next) {
25100 node = RNODE_BLOCK(node)->nd_next;
25102 node = RNODE_BLOCK(node)->nd_head;
25106 node = RNODE_BEGIN(node)->nd_body;
25111 if (!RNODE_IF(node)->nd_body) {
25114 else if (!RNODE_IF(node)->nd_else) {
25117 vn = value_expr_check(p, RNODE_IF(node)->nd_body);
25118 if (!vn)
return NULL;
25119 if (!void_node) void_node = vn;
25120 node = RNODE_IF(node)->nd_else;
25125 node = RNODE_AND(node)->nd_1st;
25131 mark_lvar_used(p, node);
25143 return void_node ? void_node : node;
25149 NODE *void_node = value_expr_check(p, node);
25151 yyerror1(&void_node->nd_loc,
"void value expression");
25161 const char *useless = 0;
25165 if (!node || !(node = nd_once_body(node)))
return;
25166 switch (nd_type(node)) {
25168 switch (RNODE_OPCALL(node)->nd_mid) {
25187 useless = rb_id2name(RNODE_OPCALL(node)->nd_mid);
25198 case NODE_BACK_REF:
25199 useless =
"a variable";
25202 useless =
"a constant";
25207 case NODE_ENCODING:
25210 case NODE_RATIONAL:
25211 case NODE_IMAGINARY:
25216 useless =
"a literal";
25241 useless =
"defined?";
25246 rb_warn1L(nd_line(node),
"possibly useless use of %s in void context", WARN_S(useless));
25254 NODE *
const n = node;
25256 if (!node)
return n;
25257 if (!nd_type_p(node, NODE_BLOCK))
return n;
25259 while (RNODE_BLOCK(node)->nd_next) {
25260 void_expr(p, RNODE_BLOCK(node)->nd_head);
25261 node = RNODE_BLOCK(node)->nd_next;
25263 return RNODE_BLOCK(node)->nd_head;
25267remove_begin(
NODE *node)
25269 NODE **n = &node, *n1 = node;
25270 while (n1 && nd_type_p(n1, NODE_BEGIN) && RNODE_BEGIN(n1)->nd_body) {
25271 *n = n1 = RNODE_BEGIN(n1)->nd_body;
25279 NODE *node = *body;
25282 *body = NEW_NIL(&NULL_LOC);
25285#define subnodes(type, n1, n2) \
25286 ((!type(node)->n1) ? (type(node)->n2 ? (body = &type(node)->n2, 1) : 0) : \
25287 (!type(node)->n2) ? (body = &type(node)->n1, 1) : \
25288 (reduce_nodes(p, &type(node)->n1), body = &type(node)->n2, 1))
25291 int newline = (int)nd_fl_newline(node);
25292 switch (nd_type(node)) {
25298 *body = node = RNODE_BEGIN(node)->nd_body;
25299 if (newline && node) nd_set_fl_newline(node);
25302 body = &RNODE_BLOCK(RNODE_BLOCK(node)->nd_end)->nd_head;
25306 if (subnodes(RNODE_IF, nd_body, nd_else))
break;
25309 body = &RNODE_CASE(node)->nd_body;
25312 if (!subnodes(RNODE_WHEN, nd_body, nd_next))
goto end;
25315 body = &RNODE_ENSURE(node)->nd_head;
25319 if (RNODE_RESCUE(node)->nd_else) {
25320 body = &RNODE_RESCUE(node)->nd_resq;
25323 if (!subnodes(RNODE_RESCUE, nd_head, nd_resq))
goto end;
25329 if (newline && node) nd_set_fl_newline(node);
25336is_static_content(
NODE *node)
25338 if (!node)
return 1;
25339 switch (nd_type(node)) {
25341 if (!(node = RNODE_HASH(node)->nd_head))
break;
25344 if (!is_static_content(RNODE_LIST(node)->nd_head))
return 0;
25345 }
while ((node = RNODE_LIST(node)->nd_next) != 0);
25350 case NODE_ENCODING:
25353 case NODE_RATIONAL:
25354 case NODE_IMAGINARY:
25370 switch (nd_type(node)) {
25384 if (!get_nd_value(p, node))
return 1;
25385 if (is_static_content(get_nd_value(p, node))) {
25387 rb_warn0L(nd_line(get_nd_value(p, node)),
"found '= literal' in conditional, should be ==");
25398#define SWITCH_BY_COND_TYPE(t, w, arg) do { \
25400 case COND_IN_OP: break; \
25401 case COND_IN_COND: rb_##w##0(arg "literal in condition"); break; \
25402 case COND_IN_FF: rb_##w##0(arg "literal in flip-flop"); break; \
25411 enum node_type
type;
25413 if (node == 0)
return 0;
25415 type = nd_type(node);
25417 if (
type == NODE_INTEGER) {
25418 if (!e_option_supplied(p)) rb_warn0L(nd_line(node),
"integer literal in flip-flop");
25419 ID lineno = rb_intern(
"$.");
25420 return NEW_CALL(node, tEQ, NEW_LIST(NEW_GVAR(lineno, loc), loc), loc);
25422 return cond0(p, node, COND_IN_FF, loc,
true);
25428 if (node == 0)
return 0;
25429 if (!(node = nd_once_body(node)))
return 0;
25430 assign_in_cond(p, node);
25432 switch (nd_type(node)) {
25434 RNODE_BEGIN(node)->nd_body = cond0(p, RNODE_BEGIN(node)->nd_body,
type, loc, top);
25441 SWITCH_BY_COND_TYPE(
type, warn,
"string ");
25445 if (!e_option_supplied(p)) SWITCH_BY_COND_TYPE(
type, warn,
"regex ");
25446 nd_set_type(node, NODE_MATCH);
25450 if (!e_option_supplied(p)) SWITCH_BY_COND_TYPE(
type, warning,
"regex ");
25452 return NEW_MATCH2(node, NEW_GVAR(idLASTLINE, loc), loc);
25456 NODE *end = RNODE_BLOCK(node)->nd_end;
25457 NODE **expr = &RNODE_BLOCK(end)->nd_head;
25458 if (top) top = node == end;
25459 *expr = cond0(p, *expr,
type, loc, top);
25465 RNODE_AND(node)->nd_1st = cond0(p, RNODE_AND(node)->nd_1st, COND_IN_COND, loc,
true);
25466 RNODE_AND(node)->nd_2nd = cond0(p, RNODE_AND(node)->nd_2nd, COND_IN_COND, loc,
true);
25472 RNODE_DOT2(node)->nd_beg = range_op(p, RNODE_DOT2(node)->nd_beg, loc);
25473 RNODE_DOT2(node)->nd_end = range_op(p, RNODE_DOT2(node)->nd_end, loc);
25474 switch (nd_type(node)) {
25476 nd_set_type(node,NODE_FLIP2);
25481 nd_set_type(node, NODE_FLIP3);
25490 SWITCH_BY_COND_TYPE(
type, warning,
"symbol ");
25494 case NODE_ENCODING:
25497 case NODE_RATIONAL:
25498 case NODE_IMAGINARY:
25499 SWITCH_BY_COND_TYPE(
type, warning,
"");
25511 if (node == 0)
return 0;
25512 return cond0(p, node, COND_IN_COND, loc,
true);
25518 if (node == 0)
return 0;
25519 return cond0(p, node, COND_IN_OP, loc,
true);
25526 return NEW_NIL(&loc);
25532 if (!cc)
return right;
25533 cc = cond0(p, cc, COND_IN_COND, loc,
true);
25534 return newline_node(NEW_IF(cc, left, right, loc, if_keyword_loc, then_keyword_loc, end_keyword_loc));
25540 if (!cc)
return right;
25541 cc = cond0(p, cc, COND_IN_COND, loc,
true);
25542 return newline_node(NEW_UNLESS(cc, left, right, loc, keyword_loc, then_keyword_loc, end_keyword_loc));
25545#define NEW_AND_OR(type, f, s, loc, op_loc) (type == NODE_AND ? NEW_AND(f,s,loc,op_loc) : NEW_OR(f,s,loc,op_loc))
25551 enum node_type
type =
id == idAND ||
id == idANDOP ? NODE_AND : NODE_OR;
25554 if (left && nd_type_p(left,
type)) {
25555 NODE *node = left, *second;
25556 while ((second = RNODE_AND(node)->nd_2nd) != 0 && nd_type_p(second,
type)) {
25559 RNODE_AND(node)->nd_2nd = NEW_AND_OR(
type, second, right, loc, op_loc);
25560 nd_set_line(RNODE_AND(node)->nd_2nd, op_loc->beg_pos.lineno);
25561 left->nd_loc.end_pos = loc->end_pos;
25564 op = NEW_AND_OR(
type, left, right, loc, op_loc);
25565 nd_set_line(op, op_loc->beg_pos.lineno);
25574 if (nd_type_p(node, NODE_BLOCK_PASS)) {
25575 compile_error(p,
"block argument should not be given");
25583 no_blockarg(p, node);
25584 if (nd_type_p(node, NODE_LIST) && !RNODE_LIST(node)->nd_next) {
25585 node = RNODE_LIST(node)->nd_head;
25594 switch (nd_type(node)) {
25596 RNODE_INTEGER(node)->minus = TRUE;
25599 RNODE_FLOAT(node)->minus = TRUE;
25601 case NODE_RATIONAL:
25602 RNODE_RATIONAL(node)->minus = TRUE;
25604 case NODE_IMAGINARY:
25605 RNODE_IMAGINARY(node)->minus = TRUE;
25615 if (!node1)
return (
NODE *)node2;
25616 node2->nd_head = node1;
25617 nd_set_first_lineno(node2, nd_first_lineno(node1));
25618 nd_set_first_column(node2, nd_first_column(node1));
25619 return (
NODE *)node2;
25627 if (args->pre_args_num)
return false;
25628 if (args->post_args_num)
return false;
25629 if (args->rest_arg)
return false;
25630 if (args->opt_args)
return false;
25631 if (args->block_arg)
return false;
25632 if (args->kw_args)
return false;
25633 if (args->kw_rest_arg)
return false;
25642 if (args->forwarding) {
25644 yyerror1(&RNODE(tail)->nd_loc,
"... after rest argument");
25647 rest_arg = idFWD_REST;
25650 args->pre_args_num = pre_args ? pre_args->nd_plen : 0;
25651 args->pre_init = pre_args ? pre_args->nd_next : 0;
25653 args->post_args_num = post_args ? post_args->nd_plen : 0;
25654 args->post_init = post_args ? post_args->nd_next : 0;
25655 args->first_post_arg = post_args ? post_args->nd_pid : 0;
25657 args->rest_arg = rest_arg;
25659 args->opt_args = opt_args;
25661#ifdef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
25662 args->ruby2_keywords = args->forwarding;
25664 args->ruby2_keywords = 0;
25667 nd_set_loc(RNODE(tail), loc);
25677 if (p->error_p)
return node;
25679 args->block_arg = block;
25680 args->kw_args = kw_args;
25689 ID kw_bits = internal_id(p), *required_kw_vars, *kw_vars;
25690 struct vtable *vtargs = p->lvtbl->args;
25693 if (block) block = vtargs->tbl[vtargs->pos-1];
25694 vtable_pop(vtargs, !!block + !!kw_rest_arg);
25695 required_kw_vars = kw_vars = &vtargs->tbl[vtargs->pos];
25697 if (!NODE_REQUIRED_KEYWORD_P(get_nd_value(p, kwn->nd_body)))
25699 --required_kw_vars;
25700 kwn = kwn->nd_next;
25703 for (kwn = kw_args; kwn; kwn = kwn->nd_next) {
25704 ID vid = get_nd_vid(p, kwn->nd_body);
25705 if (NODE_REQUIRED_KEYWORD_P(get_nd_value(p, kwn->nd_body))) {
25706 *required_kw_vars++ = vid;
25713 arg_var(p, kw_bits);
25714 if (kw_rest_arg) arg_var(p, kw_rest_arg);
25715 if (block) arg_var(p, block);
25717 args->kw_rest_arg = NEW_DVAR(kw_rest_arg, kw_rest_loc);
25719 else if (kw_rest_arg == idNil) {
25720 args->no_kwarg = 1;
25722 else if (kw_rest_arg) {
25723 args->kw_rest_arg = NEW_DVAR(kw_rest_arg, kw_rest_loc);
25732 if (max_numparam > NO_PARAM || it_id) {
25734 YYLTYPE loc = RUBY_INIT_YYLLOC();
25735 args = new_args_tail(p, 0, 0, 0, 0);
25736 nd_set_loc(RNODE(args), &loc);
25738 args->nd_ainfo.pre_args_num = it_id ? 1 : max_numparam;
25746 RNODE_ARYPTN(aryptn)->nd_pconst = constant;
25749 NODE *pre_args = NEW_LIST(pre_arg, loc);
25750 if (RNODE_ARYPTN(aryptn)->pre_args) {
25751 RNODE_ARYPTN(aryptn)->pre_args = list_concat(pre_args, RNODE_ARYPTN(aryptn)->pre_args);
25754 RNODE_ARYPTN(aryptn)->pre_args = pre_args;
25764 rest_arg = rest_arg ? rest_arg : NODE_SPECIAL_NO_NAME_REST;
25769 NODE *node = NEW_ARYPTN(pre_args, rest_arg, post_args, loc);
25777 RNODE_FNDPTN(fndptn)->nd_pconst = constant;
25785 pre_rest_arg = pre_rest_arg ? pre_rest_arg : NODE_SPECIAL_NO_NAME_REST;
25786 post_rest_arg = post_rest_arg ? post_rest_arg : NODE_SPECIAL_NO_NAME_REST;
25787 NODE *node = NEW_FNDPTN(pre_rest_arg, args, post_rest_arg, loc);
25795 RNODE_HSHPTN(hshptn)->nd_pconst = constant;
25802 NODE *node, *kw_rest_arg_node;
25804 if (kw_rest_arg == idNil) {
25805 kw_rest_arg_node = NODE_SPECIAL_NO_REST_KEYWORD;
25807 else if (kw_rest_arg) {
25808 kw_rest_arg_node = assignable(p, kw_rest_arg, 0, loc);
25811 kw_rest_arg_node = NULL;
25814 node = NEW_HSHPTN(0, kw_args, kw_rest_arg_node, loc);
25823 return NEW_SYM(STR_NEW0(), loc);
25826 switch (nd_type(node)) {
25828 nd_set_type(node, NODE_DSYM);
25829 nd_set_loc(node, loc);
25832 node = str_to_sym_node(p, node, loc);
25835 node = NEW_DSYM(0, 1, NEW_LIST(node, loc), loc);
25842nd_type_st_key_enable_p(
NODE *node)
25844 switch (nd_type(node)) {
25847 case NODE_RATIONAL:
25848 case NODE_IMAGINARY:
25854 case NODE_ENCODING:
25864 switch (nd_type(node)) {
25866 return rb_node_str_string_val(node);
25868 return rb_node_integer_literal_val(node);
25870 return rb_node_float_literal_val(node);
25871 case NODE_RATIONAL:
25872 return rb_node_rational_literal_val(node);
25873 case NODE_IMAGINARY:
25874 return rb_node_imaginary_literal_val(node);
25876 return rb_node_sym_string_val(node);
25878 return rb_node_regx_string_val(node);
25880 return rb_node_line_lineno_val(node);
25881 case NODE_ENCODING:
25882 return rb_node_encoding_val(node);
25884 return rb_node_file_path_val(node);
25886 rb_bug(
"unexpected node: %s", ruby_node_name(nd_type(node)));
25895 p->warn_duplicate_keys_table = st_init_table_with_size(&literal_type, RNODE_LIST(hash)->as.nd_alen / 2);
25896 while (hash && RNODE_LIST(hash)->nd_next) {
25897 NODE *head = RNODE_LIST(hash)->nd_head;
25898 NODE *value = RNODE_LIST(hash)->nd_next;
25899 NODE *next = RNODE_LIST(value)->nd_next;
25908 if (nd_type_st_key_enable_p(head)) {
25909 key = (st_data_t)head;
25911 if (st_delete(p->warn_duplicate_keys_table, &key, &data)) {
25912 rb_warn2L(nd_line((
NODE *)data),
25913 "key %+"PRIsWARN
" is duplicated and overwritten on line %d",
25914 nd_value(p, head), WARN_I(nd_line(head)));
25916 st_insert(p->warn_duplicate_keys_table, (st_data_t)key, (st_data_t)hash);
25920 st_free_table(p->warn_duplicate_keys_table);
25921 p->warn_duplicate_keys_table = NULL;
25927 if (hash) warn_duplicate_keys(p, hash);
25928 return NEW_HASH(hash, loc);
25934 if (is_private_local_id(p,
id)) {
25937 if (st_is_member(p->pvtbl,
id)) {
25938 yyerror1(loc,
"duplicated variable name");
25941 st_insert(p->pvtbl, (st_data_t)
id, 0);
25949 p->pktbl = st_init_numtable();
25951 else if (st_is_member(p->pktbl, key)) {
25952 yyerror1(loc,
"duplicated key name");
25955 st_insert(p->pktbl, (st_data_t)key, 0);
25961 return NEW_HASH(hash, loc);
25970 ID vid = get_nd_vid(p, lhs);
25971 YYLTYPE lhs_loc = lhs->nd_loc;
25973 set_nd_value(p, lhs, rhs);
25974 nd_set_loc(lhs, loc);
25975 asgn = NEW_OP_ASGN_OR(gettable(p, vid, &lhs_loc), lhs, loc);
25977 else if (op == tANDOP) {
25978 set_nd_value(p, lhs, rhs);
25979 nd_set_loc(lhs, loc);
25980 asgn = NEW_OP_ASGN_AND(gettable(p, vid, &lhs_loc), lhs, loc);
25984 rhs = NEW_CALL(gettable(p, vid, &lhs_loc), op, NEW_LIST(rhs, &rhs->nd_loc), loc);
25985 set_nd_value(p, asgn, rhs);
25986 nd_set_loc(asgn, loc);
25990 asgn = NEW_ERROR(loc);
26002 aryset_check(p, args);
26003 args = make_list(args, args_loc);
26004 asgn = NEW_OP_ASGN1(ary, op, args, rhs, loc, call_operator_loc, opening_loc, closing_loc, binary_operator_loc);
26016 asgn = NEW_OP_ASGN2(lhs, CALL_Q_P(atype), attr, op, rhs, loc, call_operator_loc, message_loc, binary_operator_loc);
26027 asgn = NEW_OP_CDECL(lhs, op, rhs, ctxt.shareable_constant_value, loc);
26030 asgn = NEW_ERROR(loc);
26039 if (p->ctxt.in_def) {
26041 yyerror1(loc,
"dynamic constant assignment");
26043 set_value(assign_error(p,
"dynamic constant assignment", p->s_lvalue));
26046 return NEW_CDECL(0, 0, (path), p->ctxt.shareable_constant_value, loc);
26053 a = dispatch2(assign_error, ERR_MESG(), a);
26062 NODE *result = head;
26064 NODE *tmp = rescue_else ? rescue_else : rescue;
26065 YYLTYPE rescue_loc = code_loc_gen(&head->nd_loc, &tmp->nd_loc);
26067 result = NEW_RESCUE(head, rescue, rescue_else, &rescue_loc);
26068 nd_set_line(result, rescue->nd_loc.beg_pos.lineno);
26071 result = NEW_ENSURE(result, ensure, loc);
26073 fixpos(result, head);
26082 if (!local->used)
return;
26083 cnt = local->used->pos;
26084 if (cnt != local->vars->pos) {
26085 rb_parser_fatal(p,
"local->used->pos != local->vars->pos");
26088 ID *v = local->vars->tbl;
26089 ID *u = local->used->tbl;
26090 for (
int i = 0; i < cnt; ++i) {
26091 if (!v[i] || (u[i] & LVAR_USED))
continue;
26092 if (is_private_local_id(p, v[i]))
continue;
26093 rb_warn1L((
int)u[i],
"assigned but unused variable - %"PRIsWARN, rb_id2str(v[i]));
26102 int inherits_dvars = toplevel_scope && compile_for_eval;
26106 local->prev = p->lvtbl;
26107 local->args = vtable_alloc(0);
26108 local->vars = vtable_alloc(inherits_dvars ? DVARS_INHERIT : DVARS_TOPSCOPE);
26110 if (toplevel_scope && compile_for_eval) warn_unused_vars = 0;
26111 if (toplevel_scope && e_option_supplied(p)) warn_unused_vars = 0;
26113 local->numparam.outer = 0;
26114 local->numparam.inner = 0;
26115 local->numparam.current = 0;
26117 local->used = warn_unused_vars ? vtable_alloc(0) : 0;
26119# if WARN_PAST_SCOPE
26130 while (!DVARS_TERMINAL_P(table)) {
26131 struct vtable *cur_table = table;
26132 table = cur_table->prev;
26133 vtable_free(cur_table);
26140 vtable_chain_free(p, local->used);
26142# if WARN_PAST_SCOPE
26143 vtable_chain_free(p, local->past);
26146 vtable_chain_free(p, local->args);
26147 vtable_chain_free(p, local->vars);
26149 ruby_sized_xfree(local,
sizeof(
struct local_vars));
26156 if (p->lvtbl->used) {
26157 warn_unused_var(p, p->lvtbl);
26160 local_free(p, p->lvtbl);
26170 int cnt_args = vtable_size(p->lvtbl->args);
26171 int cnt_vars = vtable_size(p->lvtbl->vars);
26172 int cnt = cnt_args + cnt_vars;
26176 if (cnt <= 0)
return 0;
26177 tbl = rb_ast_new_local_table(p->ast, cnt);
26178 MEMCPY(tbl->ids, p->lvtbl->args->tbl,
ID, cnt_args);
26180 for (i = 0, j = cnt_args; i < cnt_vars; ++i) {
26181 ID id = p->lvtbl->vars->tbl[i];
26182 if (!vtable_included(p->lvtbl->args,
id)) {
26183 tbl->ids[j++] = id;
26187 tbl = rb_ast_resize_latest_local_table(p->ast, j);
26196 if (!NUMPARAM_ID_P(
id))
return;
26197 compile_error(p,
"_%d is reserved for numbered parameter",
26198 NUMPARAM_ID_TO_IDX(
id));
26204 numparam_name(p,
id);
26205 vtable_add(p->lvtbl->args,
id);
26211 numparam_name(p,
id);
26212 vtable_add(p->lvtbl->vars,
id);
26213 if (p->lvtbl->used) {
26214 vtable_add(p->lvtbl->used, (
ID)p->ruby_sourceline);
26222 return rb_local_defined(
id, iseq);
26229 struct vtable *vars, *args, *used;
26231 vars = p->lvtbl->vars;
26232 args = p->lvtbl->args;
26233 used = p->lvtbl->used;
26235 while (vars && !DVARS_TERMINAL_P(vars->prev)) {
26238 if (used) used = used->prev;
26241 if (vars && vars->prev == DVARS_INHERIT) {
26242 return rb_parser_local_defined(p,
id, p->parent_iseq);
26244 else if (vtable_included(args,
id)) {
26248 int i = vtable_included(vars,
id);
26249 if (i && used && vidrefp) *vidrefp = &used->tbl[i-1];
26257 return local_id_ref(p,
id, NULL);
26263 if (local_id(p, idFWD_ALL))
return TRUE;
26264 compile_error(p,
"unexpected ...");
26271 arg_var(p, idFWD_REST);
26272#ifndef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
26273 arg_var(p, idFWD_KWREST);
26275 arg_var(p, idFWD_BLOCK);
26276 arg_var(p, idFWD_ALL);
26282 bool conflict =
false;
26284 struct vtable *vars, *args;
26286 vars = p->lvtbl->vars;
26287 args = p->lvtbl->args;
26289 while (vars && !DVARS_TERMINAL_P(vars->prev)) {
26290 conflict |= (vtable_included(args, arg) && !(all && vtable_included(args, all)));
26295 bool found =
false;
26296 if (vars && vars->prev == DVARS_INHERIT && !found) {
26297 found = (rb_parser_local_defined(p, arg, p->parent_iseq) &&
26298 !(all && rb_parser_local_defined(p, all, p->parent_iseq)));
26301 found = (vtable_included(args, arg) &&
26302 !(all && vtable_included(args, all)));
26306 compile_error(p,
"no anonymous %s parameter", var);
26308 else if (conflict) {
26309 compile_error(p,
"anonymous %s parameter is also used within block", var);
26316 NODE *rest = NEW_LVAR(idFWD_REST, loc);
26317#ifndef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
26318 NODE *kwrest = list_append(p, NEW_LIST(0, loc), NEW_LVAR(idFWD_KWREST, loc));
26321 NODE *args = leading ? rest_arg_append(p, leading, rest, argsloc) : NEW_SPLAT(rest, loc, &NULL_LOC);
26322 block->forwarding = TRUE;
26323#ifndef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
26324 args = arg_append(p, args, new_hash(p, kwrest, loc), argsloc);
26326 return arg_blk_pass(args, block);
26333 NODE *inner = local->numparam.inner;
26334 if (!local->numparam.outer) {
26335 local->numparam.outer = local->numparam.current;
26337 local->numparam.inner = 0;
26338 local->numparam.current = 0;
26349 local->numparam.inner = prev_inner;
26351 else if (local->numparam.current) {
26353 local->numparam.inner = local->numparam.current;
26355 if (p->max_numparam > NO_PARAM) {
26357 local->numparam.current = local->numparam.outer;
26358 local->numparam.outer = 0;
26362 local->numparam.current = 0;
26367static const struct vtable *
26370 p->lvtbl->args = vtable_alloc(p->lvtbl->args);
26371 p->lvtbl->vars = vtable_alloc(p->lvtbl->vars);
26372 if (p->lvtbl->used) {
26373 p->lvtbl->used = vtable_alloc(p->lvtbl->used);
26375 return p->lvtbl->args;
26381 struct vtable *tmp = *vtblp;
26382 *vtblp = tmp->prev;
26383# if WARN_PAST_SCOPE
26384 if (p->past_scope_enabled) {
26385 tmp->prev = p->lvtbl->past;
26386 p->lvtbl->past = tmp;
26398 if ((tmp = p->lvtbl->used) != 0) {
26399 warn_unused_var(p, p->lvtbl);
26400 p->lvtbl->used = p->lvtbl->used->prev;
26403 dyna_pop_vtable(p, &p->lvtbl->args);
26404 dyna_pop_vtable(p, &p->lvtbl->vars);
26410 while (p->lvtbl->args != lvargs) {
26412 if (!p->lvtbl->args) {
26414 ruby_sized_xfree(p->lvtbl,
sizeof(*p->lvtbl));
26424 return !DVARS_TERMINAL_P(p->lvtbl->vars) && p->lvtbl->vars->prev != DVARS_TOPSCOPE;
26431 struct vtable *vars, *args, *used;
26434 args = p->lvtbl->args;
26435 vars = p->lvtbl->vars;
26436 used = p->lvtbl->used;
26438 while (!DVARS_TERMINAL_P(vars)) {
26439 if (vtable_included(args,
id)) {
26442 if ((i = vtable_included(vars,
id)) != 0) {
26443 if (used && vidrefp) *vidrefp = &used->tbl[i-1];
26448 if (!vidrefp) used = 0;
26449 if (used) used = used->prev;
26452 if (vars == DVARS_INHERIT && !NUMPARAM_ID_P(
id)) {
26453 return rb_dvar_defined(
id, p->parent_iseq);
26463 return dvar_defined_ref(p,
id, NULL);
26469 return (vtable_included(p->lvtbl->args,
id) ||
26470 vtable_included(p->lvtbl->vars,
id));
26477 "regexp encoding option '%c' differs from source encoding '%s'",
26478 c, rb_enc_name(rb_parser_str_get_encoding(str)));
26485 int idx = rb_enc_find_index(name);
26487 rb_bug(
"unknown encoding name: %s", name);
26490 return rb_enc_from_index(idx);
26499 case ENC_ASCII8BIT:
26500 enc = rb_ascii8bit_encoding();
26503 enc = find_enc(p,
"EUC-JP");
26505 case ENC_Windows_31J:
26506 enc = find_enc(p,
"Windows-31J");
26509 enc = rb_utf8_encoding();
26522 int c = RE_OPTION_ENCODING_IDX(options);
26528 char_to_option_kcode(c, &opt, &idx);
26529 enc = kcode_to_enc(p, idx);
26530 if (enc != rb_parser_str_get_encoding(str) &&
26531 !rb_parser_is_ascii_string(p, str)) {
26534 rb_parser_string_set_encoding(str, enc);
26536 else if (RE_OPTION_ENCODING_NONE(options)) {
26537 if (!PARSER_ENCODING_IS_ASCII8BIT(p, str) &&
26538 !rb_parser_is_ascii_string(p, str)) {
26542 rb_parser_enc_associate(p, str, rb_ascii8bit_encoding());
26544 else if (rb_is_usascii_enc(p->enc)) {
26545 rb_parser_enc_associate(p, str, rb_ascii8bit_encoding());
26557 int c = rb_reg_fragment_setenc(p, str, options);
26558 if (c) reg_fragment_enc_error(p, str, c);
26561#ifndef UNIVERSAL_PARSER
26567 rb_parser_assignable_func assignable;
26571reg_named_capture_assign_iter(
const OnigUChar *name,
const OnigUChar *name_end,
26572 int back_num,
int *back_refs,
OnigRegex regex,
void *arg0)
26577 long len = name_end - name;
26578 const char *s = (
const char *)name;
26580 return rb_reg_named_capture_assign_iter_impl(p, s,
len, enc, &arg->succ_block, arg->loc, arg->assignable);
26584reg_named_capture_assign(
struct parser_params* p,
VALUE regexp,
const YYLTYPE *loc, rb_parser_assignable_func assignable)
26589 arg.enc = rb_enc_get(regexp);
26590 arg.succ_block = 0;
26592 arg.assignable = assignable;
26593 onig_foreach_name(
RREGEXP_PTR(regexp), reg_named_capture_assign_iter, &arg);
26595 if (!arg.succ_block)
return 0;
26596 return RNODE_BLOCK(arg.succ_block)->nd_next;
26604 return assignable(p,
id, val, loc);
26608rb_reg_named_capture_assign_iter_impl(
struct parser_params *p,
const char *s,
long len,
26614 if (!
len)
return ST_CONTINUE;
26615 if (!VALID_SYMNAME_P(s,
len, enc, ID_LOCAL))
26616 return ST_CONTINUE;
26618 var = intern_cstr(s,
len, enc);
26619 if (
len < MAX_WORD_LENGTH && rb_reserved_word(s, (
int)
len)) {
26620 if (!lvar_defined(p, var))
return ST_CONTINUE;
26622 node = node_assign(p, assignable(p, var, 0, loc), NEW_SYM(rb_id2str(var), loc), NO_LEX_CTXT, loc);
26623 succ = *succ_block;
26624 if (!succ) succ = NEW_ERROR(loc);
26625 succ = block_append(p, succ, node);
26626 *succ_block = succ;
26627 return ST_CONTINUE;
26635 reg_fragment_setenc(p, str, options);
26636 str2 = rb_str_new_parser_string(str);
26637 return rb_parser_reg_compile(p, str2, options);
26644 return rb_reg_compile(str, options & RE_OPTION_MASK, p->ruby_sourcefile, p->ruby_sourceline);
26654 err = rb_errinfo();
26655 re = parser_reg_compile(p, str, options);
26657 VALUE m = rb_attr_get(rb_errinfo(), idMesg);
26658 rb_set_errinfo(err);
26659 compile_error(p,
"%"PRIsVALUE, m);
26667rb_ruby_parser_set_options(
struct parser_params *p,
int print,
int loop,
int chomp,
int split)
26669 p->do_print = print;
26671 p->do_chomp = chomp;
26672 p->do_split = split;
26678 static const YYLTYPE default_location = {{1, 0}, {1, 0}};
26679 const YYLTYPE *
const LOC = &default_location;
26682 NODE *print = (
NODE *)NEW_FCALL(rb_intern(
"print"),
26683 NEW_LIST(NEW_GVAR(idLASTLINE, LOC), LOC),
26685 node = block_append(p, node, print);
26689 NODE *irs = NEW_LIST(NEW_GVAR(rb_intern(
"$/"), LOC), LOC);
26692 ID ifs = rb_intern(
"$;");
26693 ID fields = rb_intern(
"$F");
26694 NODE *args = NEW_LIST(NEW_GVAR(ifs, LOC), LOC);
26695 NODE *split = NEW_GASGN(fields,
26696 NEW_CALL(NEW_GVAR(idLASTLINE, LOC),
26697 rb_intern(
"split"), args, LOC),
26699 node = block_append(p, split, node);
26703 chomp = list_append(p, NEW_LIST(chomp, LOC), NEW_TRUE(LOC));
26704 irs = list_append(p, irs, NEW_HASH(chomp, LOC));
26707 node = NEW_WHILE((
NODE *)NEW_FCALL(idGets, irs, LOC), node, 1, LOC, &NULL_LOC, &NULL_LOC);
26724 return rb_make_temporary_id(vtable_size(p->lvtbl->args) + vtable_size(p->lvtbl->vars));
26732 p->command_start = TRUE;
26733 p->ruby_sourcefile_string =
Qnil;
26734 p->lex.lpar_beg = -1;
26735 string_buffer_init(p);
26737 p->delayed.token = NULL;
26738 p->frozen_string_literal = -1;
26740 p->error_buffer =
Qfalse;
26741 p->end_expect_token_locations = NULL;
26746 p->parsing_thread =
Qnil;
26748 p->s_lvalue =
Qnil;
26749 p->s_value_stack = rb_ary_new();
26751 p->debug_buffer =
Qnil;
26752 p->debug_output = rb_ractor_stdout();
26753 p->enc = rb_utf8_encoding();
26758#define rb_ruby_parser_mark ripper_parser_mark
26759#define rb_ruby_parser_free ripper_parser_free
26760#define rb_ruby_parser_memsize ripper_parser_memsize
26764rb_ruby_parser_mark(
void *ptr)
26768 rb_gc_mark(p->ruby_sourcefile_string);
26770 rb_gc_mark(p->error_buffer);
26772 rb_gc_mark(p->value);
26773 rb_gc_mark(p->result);
26774 rb_gc_mark(p->parsing_thread);
26775 rb_gc_mark(p->s_value);
26776 rb_gc_mark(p->s_lvalue);
26777 rb_gc_mark(p->s_value_stack);
26779 rb_gc_mark(p->debug_buffer);
26780 rb_gc_mark(p->debug_output);
26784rb_ruby_parser_free(
void *ptr)
26790 rb_ast_free(p->ast);
26793 if (p->warn_duplicate_keys_table) {
26794 st_free_table(p->warn_duplicate_keys_table);
26799 rb_parser_ary_free(p, p->tokens);
26804 ruby_sized_xfree(p->tokenbuf, p->toksiz);
26807 for (local = p->lvtbl; local; local = prev) {
26808 prev = local->prev;
26809 local_free(p, local);
26814 while ((ptinfo = p->token_info) != 0) {
26815 p->token_info = ptinfo->next;
26819 string_buffer_free(p);
26822 st_free_table(p->pvtbl);
26825 if (CASE_LABELS_ENABLED_P(p->case_labels)) {
26826 st_free_table(p->case_labels);
26829 xfree(p->lex.strterm);
26830 p->lex.strterm = 0;
26836rb_ruby_parser_memsize(
const void *ptr)
26840 size_t size =
sizeof(*p);
26843 for (local = p->lvtbl; local; local = local->prev) {
26844 size +=
sizeof(*local);
26845 if (local->vars) size += local->vars->capa *
sizeof(
ID);
26851#undef rb_reserved_word
26854rb_reserved_word(
const char *str,
unsigned int len)
26856 return reserved_word(str,
len);
26859#ifdef UNIVERSAL_PARSER
26861rb_ruby_parser_allocate(
const rb_parser_config_t *config)
26865 p->config = config;
26870rb_ruby_parser_new(
const rb_parser_config_t *config)
26873 rb_parser_t *p = rb_ruby_parser_allocate(config);
26874 parser_initialize(p);
26879rb_ruby_parser_allocate(
void)
26887rb_ruby_parser_new(
void)
26891 parser_initialize(p);
26900 p->parent_iseq = base;
26907 p->debug_lines = rb_parser_ary_new_capa_for_script_line(p, 10);
26913 p->error_tolerant = 1;
26919 p->keep_tokens = 1;
26920 p->tokens = rb_parser_ary_new_capa_for_ast_token(p, 10);
26932 return p->ruby__end__seen;
26936rb_ruby_parser_set_yydebug(
rb_parser_t *p,
int flag)
26965 return p->debug_output;
26971 p->debug_output = output;
26977 return p->parsing_thread;
26983 p->parsing_thread = parsing_thread;
26987rb_ruby_parser_ripper_initialize(
rb_parser_t *p, rb_parser_lex_gets_func *gets, rb_parser_input_data input,
VALUE sourcefile_string,
const char *sourcefile,
int sourceline)
26989 p->lex.gets = gets;
26990 p->lex.input = input;
26992 p->ruby_sourcefile_string = sourcefile_string;
26993 p->ruby_sourcefile = sourcefile;
26994 p->ruby_sourceline = sourceline;
27010rb_ruby_parser_ruby_sourcefile_string(
rb_parser_t *p)
27012 return p->ruby_sourcefile_string;
27018 return p->ruby_sourceline;
27024 return p->lex.state;
27031 p->ast = rb_ast_new();
27032 ripper_yyparse((
void*)p);
27033 rb_ast_free(p->ast);
27036 p->eval_tree_begin = 0;
27042 return dedent_string(p,
string, width);
27048 return p->lex.input != 0;
27054 parser_initialize(p);
27060 return p->lex.ptok - p->lex.pbeg;
27066 return p->lex.pcur - p->lex.ptok;
27072 return p->lex.lastline;
27076rb_ruby_ripper_lex_state_name(
struct parser_params *p,
int state)
27078 return rb_parser_lex_state_name(p, (
enum lex_state_e)state);
27081#ifdef UNIVERSAL_PARSER
27083rb_ripper_parser_params_allocate(
const rb_parser_config_t *config)
27086 p->config = config;
27092rb_ruby_ripper_parser_allocate(
void)
27100rb_parser_printf(
struct parser_params *p,
const char *fmt, ...)
27103 VALUE mesg = p->debug_buffer;
27107 rb_str_vcatf(mesg, fmt, ap);
27109 if (char_at_end(p, mesg, 0) ==
'\n') {
27110 rb_io_write(p->debug_output, mesg);
27111 p->debug_buffer =
Qnil;
27119 int lineno, column;
27122 lineno = loc->end_pos.lineno;
27123 column = loc->end_pos.column;
27126 lineno = p->ruby_sourceline;
27130 rb_io_flush(p->debug_output);
27134 rb_syntax_error_append(p->error_buffer,
27135 p->ruby_sourcefile_string,
27142count_char(
const char *str,
int c)
27145 while (str[n] == c) ++n;
27156rb_yytnamerr(
struct parser_params *p,
char *yyres,
const char *yystr)
27158 if (*yystr ==
'"') {
27159 size_t yyn = 0, bquote = 0;
27160 const char *yyp = yystr;
27166 bquote = count_char(yyp+1,
'\'') + 1;
27167 if (yyres) memcpy(&yyres[yyn], yyp, bquote);
27173 if (bquote && count_char(yyp+1,
'\'') + 1 == bquote) {
27174 if (yyres) memcpy(yyres + yyn, yyp, bquote);
27180 if (yyp[1] && yyp[1] !=
'\'' && yyp[2] ==
'\'') {
27181 if (yyres) memcpy(yyres + yyn, yyp, 3);
27186 goto do_not_strip_quotes;
27190 goto do_not_strip_quotes;
27193 if (*++yyp !=
'\\')
27194 goto do_not_strip_quotes;
27209 do_not_strip_quotes: ;
27212 if (!yyres)
return strlen(yystr);
27214 return (YYSIZE_T)(yystpcpy(yyres, yystr) - yyres);
27219#define validate(x) (void)(x)
27248 return rb_funcall(p->value, mid, 3, a, b, c);
27258 return rb_funcall(p->value, mid, 4, a, b, c, d);
27269 return rb_funcall(p->value, mid, 5, a, b, c, d, e);
27282 return rb_funcall(p->value, mid, 7, a, b, c, d, e, f, g);
#define ENC_CODERANGE_7BIT
Old name of RUBY_ENC_CODERANGE_7BIT.
#define REALLOC_N
Old name of RB_REALLOC_N.
#define ISSPACE
Old name of rb_isspace.
#define ALLOC
Old name of RB_ALLOC.
#define xfree
Old name of ruby_xfree.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define ZALLOC
Old name of RB_ZALLOC.
#define ENC_CODERANGE_UNKNOWN
Old name of RUBY_ENC_CODERANGE_UNKNOWN.
#define xmalloc
Old name of ruby_xmalloc.
#define ISDIGIT
Old name of rb_isdigit.
#define ASSUME
Old name of RBIMPL_ASSUME.
#define ALLOC_N
Old name of RB_ALLOC_N.
#define MBCLEN_CHARFOUND_LEN(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_LEN.
#define STRCASECMP
Old name of st_locale_insensitive_strcasecmp.
#define ISALPHA
Old name of rb_isalpha.
#define STRNCASECMP
Old name of st_locale_insensitive_strncasecmp.
#define ISASCII
Old name of rb_isascii.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define NIL_P
Old name of RB_NIL_P.
#define MBCLEN_CHARFOUND_P(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_P.
#define ISPRINT
Old name of rb_isprint.
#define xcalloc
Old name of ruby_xcalloc.
#define ISXDIGIT
Old name of rb_isxdigit.
#define ISCNTRL
Old name of rb_iscntrl.
#define ISALNUM
Old name of rb_isalnum.
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
VALUE rb_eRuntimeError
RuntimeError exception.
VALUE rb_eSyntaxError
SyntaxError exception.
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
long rb_str_coderange_scan_restartable(const char *str, const char *end, rb_encoding *enc, int *cr)
Scans the passed string until it finds something odd.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
#define rb_usascii_str_new(str, len)
Identical to rb_str_new, except it generates a string of "US ASCII" encoding.
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
#define rb_strlen_lit(str)
Length of a string literal.
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
ID rb_sym2id(VALUE obj)
Converts an instance of rb_cSymbol into an ID.
int len
Length of the buffer.
#define strtod(s, e)
Just another name of ruby_strtod.
#define strdup(s)
Just another name of ruby_strdup.
#define rb_long2int
Just another name of rb_long2int_inline.
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
#define ALLOCA_N(type, n)
#define MEMZERO(p, type, n)
Handy macro to erase a region of memory.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
#define MEMMOVE(p1, p2, type, n)
Handy macro to call memmove.
VALUE type(ANYARGS)
ANYARGS-ed function type.
Functions related to nodes in the AST.
#define RREGEXP_PTR(obj)
Convenient accessor macro.
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
#define errno
Ractor-aware version of errno.
#define RTEST
This is an old name of RB_TEST.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
#define RBIMPL_WARNING_IGNORED(flag)
Suppresses a warning.
#define RBIMPL_WARNING_PUSH()
Pushes compiler warning state.
#define RBIMPL_WARNING_POP()
Pops compiler warning state.