Ruby 3.5.0dev (2025-04-04 revision 6b5e187d0eb07994fee7b5f0336da388a793dcbb)
parse.c
1/* A Bison parser, made by Lrama 0.7.0. */
2
3/* Bison implementation for Yacc-like parsers in C
4
5 Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
6 Inc.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <https://www.gnu.org/licenses/>. */
20
21/* As a special exception, you may create a larger work that contains
22 part or all of the Bison parser skeleton and distribute that work
23 under terms of your choice, so long as that work isn't itself a
24 parser generator using the skeleton or a modified version thereof
25 as a parser skeleton. Alternatively, if you modify or redistribute
26 the parser skeleton itself, you may (at your option) remove this
27 special exception, which will cause the skeleton and the resulting
28 Bison output files to be licensed under the GNU General Public
29 License without this special exception.
30
31 This special exception was added by the Free Software Foundation in
32 version 2.2 of Bison. */
33
34/* C LALR(1) parser skeleton written by Richard Stallman, by
35 simplifying the original so-called "semantic" parser. */
36
37/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
38 especially those whose name start with YY_ or yy_. They are
39 private implementation details that can be changed or removed. */
40
41/* All symbols defined below should begin with yy or YY, to avoid
42 infringing on user name space. This should be done even for local
43 variables, as they might otherwise be expanded by user macros.
44 There are some unavoidable exceptions within include files to
45 define necessary library symbols; they are noted "INFRINGES ON
46 USER NAME SPACE" below. */
47
48/* Identify Bison output, and Bison version. */
49#define YYBISON 30802
50
51/* Bison version string. */
52#define YYBISON_VERSION "3.8.2"
53
54/* Skeleton name. */
55#define YYSKELETON_NAME "yacc.c"
56
57/* Pure parsers. */
58#define YYPURE 1
59
60/* Push parsers. */
61#define YYPUSH 0
62
63/* Pull parsers. */
64#define YYPULL 1
65
66
67/* First part of user prologue. */
68#line 12 "parse.y"
69
70
71#if !YYPURE
72# error needs pure parser
73#endif
74#define YYDEBUG 1
75#define YYERROR_VERBOSE 1
76#define YYSTACK_USE_ALLOCA 0
77
78/* For Ripper */
79#ifdef RUBY_EXTCONF_H
80# include RUBY_EXTCONF_H
81#endif
82
83#include "ruby/internal/config.h"
84
85#include <errno.h>
86
87#ifdef UNIVERSAL_PARSER
88
89#include "internal/ruby_parser.h"
90#include "parser_node.h"
91#include "universal_parser.c"
92
93#ifdef RIPPER
94#define STATIC_ID2SYM p->config->static_id2sym
95#define rb_str_coderange_scan_restartable p->config->str_coderange_scan_restartable
96#endif
97
98#else
99
100#include "internal.h"
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"
116#include "node.h"
117#include "parser_node.h"
118#include "probes.h"
119#include "regenc.h"
120#include "ruby/encoding.h"
121#include "ruby/regex.h"
122#include "ruby/ruby.h"
123#include "ruby/st.h"
124#include "ruby/util.h"
125#include "ruby/ractor.h"
126#include "symbol.h"
127
128#ifndef RIPPER
129static VALUE
130syntax_error_new(void)
131{
133}
134#endif
135
136static NODE *reg_named_capture_assign(struct parser_params* p, VALUE regexp, const YYLTYPE *loc, rb_parser_assignable_func assignable);
137
138#define compile_callback rb_suppress_tracing
139#endif /* !UNIVERSAL_PARSER */
140
141#define NODE_SPECIAL_EMPTY_ARGS ((NODE *)-1)
142#define NODE_EMPTY_ARGS_P(node) ((node) == NODE_SPECIAL_EMPTY_ARGS)
143
144static int rb_parser_string_hash_cmp(rb_parser_string_t *str1, rb_parser_string_t *str2);
145
146#ifndef RIPPER
147static rb_parser_string_t *rb_parser_string_deep_copy(struct parser_params *p, const rb_parser_string_t *original);
148#endif
149
150static int
151node_integer_cmp(rb_node_integer_t *n1, rb_node_integer_t *n2)
152{
153 return (n1->minus != n2->minus ||
154 n1->base != n2->base ||
155 strcmp(n1->val, n2->val));
156}
157
158static int
159node_float_cmp(rb_node_float_t *n1, rb_node_float_t *n2)
160{
161 return (n1->minus != n2->minus ||
162 strcmp(n1->val, n2->val));
163}
164
165static int
166node_rational_cmp(rb_node_rational_t *n1, rb_node_rational_t *n2)
167{
168 return (n1->minus != n2->minus ||
169 n1->base != n2->base ||
170 n1->seen_point != n2->seen_point ||
171 strcmp(n1->val, n2->val));
172}
173
174static int
175node_imaginary_cmp(rb_node_imaginary_t *n1, rb_node_imaginary_t *n2)
176{
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));
182}
183
184static int
185rb_parser_regx_hash_cmp(rb_node_regx_t *n1, rb_node_regx_t *n2)
186{
187 return (n1->options != n2->options ||
188 rb_parser_string_hash_cmp(n1->string, n2->string));
189}
190
191static st_index_t rb_parser_str_hash(rb_parser_string_t *str);
192static st_index_t rb_char_p_hash(const char *c);
193
194static int
195literal_cmp(st_data_t val, st_data_t lit)
196{
197 if (val == lit) return 0;
198
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);
203
204 if (type_val != type_lit) {
205 return -1;
206 }
207
208 switch (type_lit) {
209 case NODE_INTEGER:
210 return node_integer_cmp(RNODE_INTEGER(node_val), RNODE_INTEGER(node_lit));
211 case NODE_FLOAT:
212 return node_float_cmp(RNODE_FLOAT(node_val), RNODE_FLOAT(node_lit));
213 case NODE_RATIONAL:
214 return node_rational_cmp(RNODE_RATIONAL(node_val), RNODE_RATIONAL(node_lit));
215 case NODE_IMAGINARY:
216 return node_imaginary_cmp(RNODE_IMAGINARY(node_val), RNODE_IMAGINARY(node_lit));
217 case NODE_STR:
218 return rb_parser_string_hash_cmp(RNODE_STR(node_val)->string, RNODE_STR(node_lit)->string);
219 case NODE_SYM:
220 return rb_parser_string_hash_cmp(RNODE_SYM(node_val)->string, RNODE_SYM(node_lit)->string);
221 case NODE_REGX:
222 return rb_parser_regx_hash_cmp(RNODE_REGX(node_val), RNODE_REGX(node_lit));
223 case NODE_LINE:
224 return node_val->nd_loc.beg_pos.lineno != node_lit->nd_loc.beg_pos.lineno;
225 case NODE_FILE:
226 return rb_parser_string_hash_cmp(RNODE_FILE(node_val)->path, RNODE_FILE(node_lit)->path);
227 case NODE_ENCODING:
228 return RNODE_ENCODING(node_val)->enc != RNODE_ENCODING(node_lit)->enc;
229 default:
230#ifdef UNIVERSAL_PARSER
231 abort();
232#else
233 rb_bug("unexpected node: %s, %s", ruby_node_name(type_val), ruby_node_name(type_lit));
234#endif
235 }
236}
237
238static st_index_t
239literal_hash(st_data_t a)
240{
241 NODE *node = (NODE *)a;
242 enum node_type type = nd_type(node);
243
244 switch (type) {
245 case NODE_INTEGER:
246 return rb_char_p_hash(RNODE_INTEGER(node)->val);
247 case NODE_FLOAT:
248 return rb_char_p_hash(RNODE_FLOAT(node)->val);
249 case NODE_RATIONAL:
250 return rb_char_p_hash(RNODE_RATIONAL(node)->val);
251 case NODE_IMAGINARY:
252 return rb_char_p_hash(RNODE_IMAGINARY(node)->val);
253 case NODE_STR:
254 return rb_parser_str_hash(RNODE_STR(node)->string);
255 case NODE_SYM:
256 return rb_parser_str_hash(RNODE_SYM(node)->string);
257 case NODE_REGX:
258 return rb_parser_str_hash(RNODE_REGX(node)->string);
259 case NODE_LINE:
260 return (st_index_t)node->nd_loc.beg_pos.lineno;
261 case NODE_FILE:
262 return rb_parser_str_hash(RNODE_FILE(node)->path);
263 case NODE_ENCODING:
264 return (st_index_t)RNODE_ENCODING(node)->enc;
265 default:
266#ifdef UNIVERSAL_PARSER
267 abort();
268#else
269 rb_bug("unexpected node: %s", ruby_node_name(type));
270#endif
271 }
272}
273
274static inline int
275parse_isascii(int c)
276{
277 return '\0' <= c && c <= '\x7f';
278}
279
280#undef ISASCII
281#define ISASCII parse_isascii
282
283static inline int
284parse_isspace(int c)
285{
286 return c == ' ' || ('\t' <= c && c <= '\r');
287}
288
289#undef ISSPACE
290#define ISSPACE parse_isspace
291
292static inline int
293parse_iscntrl(int c)
294{
295 return ('\0' <= c && c < ' ') || c == '\x7f';
296}
297
298#undef ISCNTRL
299#define ISCNTRL(c) parse_iscntrl(c)
300
301static inline int
302parse_isupper(int c)
303{
304 return 'A' <= c && c <= 'Z';
305}
306
307static inline int
308parse_islower(int c)
309{
310 return 'a' <= c && c <= 'z';
311}
312
313static inline int
314parse_isalpha(int c)
315{
316 return parse_isupper(c) || parse_islower(c);
317}
318
319#undef ISALPHA
320#define ISALPHA(c) parse_isalpha(c)
321
322static inline int
323parse_isdigit(int c)
324{
325 return '0' <= c && c <= '9';
326}
327
328#undef ISDIGIT
329#define ISDIGIT(c) parse_isdigit(c)
330
331static inline int
332parse_isalnum(int c)
333{
334 return ISALPHA(c) || ISDIGIT(c);
335}
336
337#undef ISALNUM
338#define ISALNUM(c) parse_isalnum(c)
339
340static inline int
341parse_isxdigit(int c)
342{
343 return ISDIGIT(c) || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f');
344}
345
346#undef ISXDIGIT
347#define ISXDIGIT(c) parse_isxdigit(c)
348
349#include "parser_st.h"
350
351#undef STRCASECMP
352#define STRCASECMP rb_parser_st_locale_insensitive_strcasecmp
353
354#undef STRNCASECMP
355#define STRNCASECMP rb_parser_st_locale_insensitive_strncasecmp
356
357#ifdef RIPPER
358#include "ripper_init.h"
359#endif
360
361enum rescue_context {
362 before_rescue,
363 after_rescue,
364 after_else,
365 after_ensure,
366};
367
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;
377};
378
380
381#if defined(__GNUC__) && !defined(__clang__)
382// Suppress "parameter passing for argument of type 'struct
383// lex_context' changed" notes. `struct lex_context` is file scope,
384// and has no ABI compatibility issue.
388// Not sure why effective even after popped.
389#endif
390
391#include "parse.h"
392
393#define NO_LEX_CTXT (struct lex_context){0}
394
395#ifndef WARN_PAST_SCOPE
396# define WARN_PAST_SCOPE 0
397#endif
398
399#define TAB_WIDTH 8
400
401#define yydebug (p->debug) /* disable the global variable definition */
402
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) \
409 do \
410 if (N) \
411 { \
412 (Current).beg_pos = YYRHSLOC(Rhs, 1).beg_pos; \
413 (Current).end_pos = YYRHSLOC(Rhs, N).end_pos; \
414 } \
415 else \
416 { \
417 (Current).beg_pos = YYRHSLOC(Rhs, 0).end_pos; \
418 (Current).end_pos = YYRHSLOC(Rhs, 0).end_pos; \
419 } \
420 while (0)
421#define YY_(Msgid) \
422 (((Msgid)[0] == 'm') && (strcmp((Msgid), "memory exhausted") == 0) ? \
423 "nesting too deep" : (Msgid))
424
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() \
438 { \
439 {p->ruby_sourceline, (int)(p->lex.ptok - p->lex.pbeg)}, \
440 {p->ruby_sourceline, (int)(p->lex.pcur - p->lex.pbeg)}, \
441 }
442
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))
447
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);
451
452typedef VALUE stack_type;
453
454static const rb_code_location_t NULL_LOC = { {0, -1}, {0, -1} };
455
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)"))
461
462/* A flag to identify keyword_do_cond, "do" keyword after condition expression.
463 Examples: `while ... do`, `until ... do`, and `for ... in ... do` */
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))
468
469/* A flag to identify keyword_do_block; "do" keyword after command_call.
470 Example: `foo 1, 2 do`. */
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))
475
476struct vtable {
477 ID *tbl;
478 int pos;
479 int capa;
480 struct vtable *prev;
481};
482
484 struct vtable *args;
485 struct vtable *vars;
486 struct vtable *used;
487# if WARN_PAST_SCOPE
488 struct vtable *past;
489# endif
490 struct local_vars *prev;
491 struct {
492 NODE *outer, *inner, *current;
493 } numparam;
494 NODE *it;
495};
496
498 NODE *node;
499 YYLTYPE opening_loc;
500 YYLTYPE closing_loc;
502
503enum {
504 ORDINAL_PARAM = -1,
505 NO_PARAM = 0,
506 NUMPARAM_MAX = 9,
507};
508
509#define DVARS_INHERIT ((void*)1)
510#define DVARS_TOPSCOPE NULL
511#define DVARS_TERMINAL_P(tbl) ((tbl) == DVARS_INHERIT || (tbl) == DVARS_TOPSCOPE)
512
513typedef struct token_info {
514 const char *token;
516 int indent;
517 int nonspc;
518 struct token_info *next;
519} token_info;
520
525
527 struct parser_string_buffer_elem *next;
528 long len; /* Total length of allocated buf */
529 long used; /* Current usage of buf */
530 rb_parser_string_t *buf[FLEX_ARY_LEN];
532
537
538#define AFTER_HEREDOC_WITHOUT_TERMINATOR ((rb_parser_string_t *)1)
539
540/*
541 Structure of Lexer Buffer:
542
543 lex.pbeg lex.ptok lex.pcur lex.pend
544 | | | |
545 |------------+------------+------------|
546 |<---------->|
547 token
548*/
550 YYSTYPE *lval;
551 YYLTYPE *yylloc;
552
553 struct {
554 rb_strterm_t *strterm;
555 rb_parser_lex_gets_func *gets;
556 rb_parser_input_data input;
557 parser_string_buffer_t string_buffer;
558 rb_parser_string_t *lastline;
559 rb_parser_string_t *nextline;
560 const char *pbeg;
561 const char *pcur;
562 const char *pend;
563 const char *ptok;
564 enum lex_state_e state;
565 /* track the nest level of any parens "()[]{}" */
566 int paren_nest;
567 /* keep p->lex.paren_nest at the beginning of lambda "->" to detect tLAMBEG and keyword_do_LAMBDA */
568 int lpar_beg;
569 /* track the nest level of only braces "{}" */
570 int brace_nest;
571 } lex;
572 stack_type cond_stack;
573 stack_type cmdarg_stack;
574 int tokidx;
575 int toksiz;
576 int heredoc_end;
577 int heredoc_indent;
578 int heredoc_line_indent;
579 char *tokenbuf;
580 struct local_vars *lvtbl;
581 st_table *pvtbl;
582 st_table *pktbl;
583 int line_count;
584 int ruby_sourceline; /* current line no. */
585 const char *ruby_sourcefile; /* current source file */
586 VALUE ruby_sourcefile_string;
587 rb_encoding *enc;
589 st_table *case_labels;
590 rb_node_exits_t *exits;
591
592 VALUE debug_buffer;
593 VALUE debug_output;
594
595 struct {
596 rb_parser_string_t *token;
597 int beg_line;
598 int beg_col;
599 int end_line;
600 int end_col;
601 } delayed;
602
603 rb_ast_t *ast;
604 int node_id;
605
606 st_table *warn_duplicate_keys_table;
607
608 int max_numparam;
609 ID it_id;
610
611 struct lex_context ctxt;
612
613 NODE *eval_tree_begin;
614 NODE *eval_tree;
615 const struct rb_iseq_struct *parent_iseq;
616
617#ifdef UNIVERSAL_PARSER
618 const rb_parser_config_t *config;
619#endif
620 /* compile_option */
621 signed int frozen_string_literal:2; /* -1: not specified, 0: false, 1: true */
622
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;
630# if WARN_PAST_SCOPE
631 unsigned int past_scope_enabled: 1;
632# endif
633 unsigned int error_p: 1;
634 unsigned int cr_seen: 1;
635
636#ifndef RIPPER
637 /* Ruby core only */
638
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;
645
646 VALUE error_buffer;
647 rb_parser_ary_t *debug_lines;
648 /*
649 * Store specific keyword locations to generate dummy end token.
650 * Refer to the tail of list element.
651 */
653 /* id for terms */
654 int token_id;
655 /* Array for term tokens */
656 rb_parser_ary_t *tokens;
657#else
658 /* Ripper only */
659
660 VALUE value;
661 VALUE result;
662 VALUE parsing_thread;
663 VALUE s_value; /* Token VALUE */
664 VALUE s_lvalue; /* VALUE generated by rule action (reduce) */
665 VALUE s_value_stack;
666#endif
667};
668
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)))
672static int
673numparam_id_p(struct parser_params *p, ID id)
674{
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;
678}
679static void numparam_name(struct parser_params *p, ID id);
680
681#ifdef RIPPER
682static void
683after_shift(struct parser_params *p)
684{
685 if (p->debug) {
686 rb_parser_printf(p, "after-shift: %+"PRIsVALUE"\n", p->s_value);
687 }
688 rb_ary_push(p->s_value_stack, p->s_value);
689 p->s_value = Qnil;
690}
691
692static void
693before_reduce(int len, struct parser_params *p)
694{
695 // Initialize $$ with $1.
696 if (len) p->s_lvalue = rb_ary_entry(p->s_value_stack, -len);
697}
698
699static void
700after_reduce(int len, struct parser_params *p)
701{
702 for (int i = 0; i < len; i++) {
703 VALUE tos = rb_ary_pop(p->s_value_stack);
704 if (p->debug) {
705 rb_parser_printf(p, "after-reduce pop: %+"PRIsVALUE"\n", tos);
706 }
707 }
708 if (p->debug) {
709 rb_parser_printf(p, "after-reduce push: %+"PRIsVALUE"\n", p->s_lvalue);
710 }
711 rb_ary_push(p->s_value_stack, p->s_lvalue);
712 p->s_lvalue = Qnil;
713}
714
715static void
716after_shift_error_token(struct parser_params *p)
717{
718 if (p->debug) {
719 rb_parser_printf(p, "after-shift-error-token:\n");
720 }
721 rb_ary_push(p->s_value_stack, Qnil);
722}
723
724static void
725after_pop_stack(int len, struct parser_params *p)
726{
727 for (int i = 0; i < len; i++) {
728 VALUE tos = rb_ary_pop(p->s_value_stack);
729 if (p->debug) {
730 rb_parser_printf(p, "after-pop-stack pop: %+"PRIsVALUE"\n", tos);
731 }
732 }
733}
734#else
735static void
736after_shift(struct parser_params *p)
737{
738}
739
740static void
741before_reduce(int len, struct parser_params *p)
742{
743}
744
745static void
746after_reduce(int len, struct parser_params *p)
747{
748}
749
750static void
751after_shift_error_token(struct parser_params *p)
752{
753}
754
755static void
756after_pop_stack(int len, struct parser_params *p)
757{
758}
759#endif
760
761#define intern_cstr(n,l,en) rb_intern3(n,l,en)
762
763#define STRING_NEW0() rb_parser_encoding_string_new(p,0,0,p->enc)
764
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))
771
772#ifndef RIPPER
773static inline int
774char_at_end(struct parser_params *p, VALUE str, int when_empty)
775{
776 long len = RSTRING_LEN(str);
777 return len > 0 ? (unsigned char)RSTRING_PTR(str)[len-1] : when_empty;
778}
779#endif
780
781static void
782pop_pvtbl(struct parser_params *p, st_table *tbl)
783{
784 st_free_table(p->pvtbl);
785 p->pvtbl = tbl;
786}
787
788static void
789pop_pktbl(struct parser_params *p, st_table *tbl)
790{
791 if (p->pktbl) st_free_table(p->pktbl);
792 p->pktbl = tbl;
793}
794
795#define STRING_BUF_DEFAULT_LEN 16
796
797static void
798string_buffer_init(struct parser_params *p)
799{
800 parser_string_buffer_t *buf = &p->lex.string_buffer;
801 const size_t size = offsetof(parser_string_buffer_elem_t, buf) + sizeof(rb_parser_string_t *) * STRING_BUF_DEFAULT_LEN;
802
803 buf->head = buf->last = xmalloc(size);
804 buf->head->len = STRING_BUF_DEFAULT_LEN;
805 buf->head->used = 0;
806 buf->head->next = NULL;
807}
808
809static void
810string_buffer_append(struct parser_params *p, rb_parser_string_t *str)
811{
812 parser_string_buffer_t *buf = &p->lex.string_buffer;
813
814 if (buf->head->used >= buf->head->len) {
816 long n = buf->head->len * 2;
817 const size_t size = offsetof(parser_string_buffer_elem_t, buf) + sizeof(rb_parser_string_t *) * n;
818
819 elem = xmalloc(size);
820 elem->len = n;
821 elem->used = 0;
822 elem->next = NULL;
823 buf->last->next = elem;
824 buf->last = elem;
825 }
826 buf->last->buf[buf->last->used++] = str;
827}
828
829static void
830string_buffer_free(struct parser_params *p)
831{
832 parser_string_buffer_elem_t *elem = p->lex.string_buffer.head;
833
834 while (elem) {
835 parser_string_buffer_elem_t *next_elem = elem->next;
836
837 for (long i = 0; i < elem->used; i++) {
838 rb_parser_string_free(p, elem->buf[i]);
839 }
840
841 xfree(elem);
842 elem = next_elem;
843 }
844}
845
846#ifndef RIPPER
847static void flush_debug_buffer(struct parser_params *p, VALUE out, VALUE str);
848
849static void
850debug_end_expect_token_locations(struct parser_params *p, const char *name)
851{
852 if(p->debug) {
853 VALUE mesg = rb_sprintf("%s: [", name);
854 int i = 0;
855 for (end_expect_token_locations_t *loc = p->end_expect_token_locations; loc; loc = loc->prev) {
856 if (i > 0)
857 rb_str_cat_cstr(mesg, ", ");
858 rb_str_catf(mesg, "[%d, %d]", loc->pos->lineno, loc->pos->column);
859 i++;
860 }
861 rb_str_cat_cstr(mesg, "]\n");
862 flush_debug_buffer(p, p->debug_output, mesg);
863 }
864}
865
866static void
867push_end_expect_token_locations(struct parser_params *p, const rb_code_position_t *pos)
868{
869 if(!p->error_tolerant) return;
870
873 locations->pos = pos;
874 locations->prev = p->end_expect_token_locations;
875 p->end_expect_token_locations = locations;
876
877 debug_end_expect_token_locations(p, "push_end_expect_token_locations");
878}
879
880static void
881pop_end_expect_token_locations(struct parser_params *p)
882{
883 if(!p->end_expect_token_locations) return;
884
885 end_expect_token_locations_t *locations = p->end_expect_token_locations->prev;
886 ruby_sized_xfree(p->end_expect_token_locations, sizeof(end_expect_token_locations_t));
887 p->end_expect_token_locations = locations;
888
889 debug_end_expect_token_locations(p, "pop_end_expect_token_locations");
890}
891
893peek_end_expect_token_locations(struct parser_params *p)
894{
895 return p->end_expect_token_locations;
896}
897
898static const char *
899parser_token2char(struct parser_params *p, enum yytokentype tok)
900{
901 switch ((int) 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);
982 TOKEN2CHAR(tFID);
983 TOKEN2CHAR(tGVAR);
984 TOKEN2CHAR(tIVAR);
985 TOKEN2CHAR(tCONSTANT);
986 TOKEN2CHAR(tCVAR);
987 TOKEN2CHAR(tLABEL);
988 TOKEN2CHAR(tINTEGER);
989 TOKEN2CHAR(tFLOAT);
990 TOKEN2CHAR(tRATIONAL);
991 TOKEN2CHAR(tIMAGINARY);
992 TOKEN2CHAR(tCHAR);
993 TOKEN2CHAR(tNTH_REF);
994 TOKEN2CHAR(tBACK_REF);
995 TOKEN2CHAR(tSTRING_CONTENT);
996 TOKEN2CHAR(tREGEXP_END);
997 TOKEN2CHAR(tDUMNY_END);
998 TOKEN2CHAR(tSP);
999 TOKEN2CHAR(tUPLUS);
1000 TOKEN2CHAR(tUMINUS);
1001 TOKEN2CHAR(tPOW);
1002 TOKEN2CHAR(tCMP);
1003 TOKEN2CHAR(tEQ);
1004 TOKEN2CHAR(tEQQ);
1005 TOKEN2CHAR(tNEQ);
1006 TOKEN2CHAR(tGEQ);
1007 TOKEN2CHAR(tLEQ);
1008 TOKEN2CHAR(tANDOP);
1009 TOKEN2CHAR(tOROP);
1010 TOKEN2CHAR(tMATCH);
1011 TOKEN2CHAR(tNMATCH);
1012 TOKEN2CHAR(tDOT2);
1013 TOKEN2CHAR(tDOT3);
1014 TOKEN2CHAR(tBDOT2);
1015 TOKEN2CHAR(tBDOT3);
1016 TOKEN2CHAR(tAREF);
1017 TOKEN2CHAR(tASET);
1018 TOKEN2CHAR(tLSHFT);
1019 TOKEN2CHAR(tRSHFT);
1020 TOKEN2CHAR(tANDDOT);
1021 TOKEN2CHAR(tCOLON2);
1022 TOKEN2CHAR(tCOLON3);
1023 TOKEN2CHAR(tOP_ASGN);
1024 TOKEN2CHAR(tASSOC);
1025 TOKEN2CHAR(tLPAREN);
1026 TOKEN2CHAR(tLPAREN_ARG);
1027 TOKEN2CHAR(tLBRACK);
1028 TOKEN2CHAR(tLBRACE);
1029 TOKEN2CHAR(tLBRACE_ARG);
1030 TOKEN2CHAR(tSTAR);
1031 TOKEN2CHAR(tDSTAR);
1032 TOKEN2CHAR(tAMPER);
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);
1059#undef TOKEN2CHAR
1060#undef TOKEN2CHAR2
1061 }
1062
1063 rb_bug("parser_token2id: unknown token %d", tok);
1064
1065 UNREACHABLE_RETURN(0);
1066}
1067#else
1068static void
1069push_end_expect_token_locations(struct parser_params *p, const rb_code_position_t *pos)
1070{
1071}
1072
1073static void
1074pop_end_expect_token_locations(struct parser_params *p)
1075{
1076}
1077#endif
1078
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)
1092
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);
1098
1099#ifdef RIPPER
1100#define compile_for_eval (0)
1101#else
1102#define compile_for_eval (p->parent_iseq != 0)
1103#endif
1104
1105#define token_column ((int)(p->lex.ptok - p->lex.pbeg))
1106
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))
1109
1110#define lambda_beginning_p() (p->lex.lpar_beg == p->lex.paren_nest)
1111
1112static enum yytokentype yylex(YYSTYPE*, YYLTYPE*, struct parser_params*);
1113
1114static inline void
1115rb_discard_node(struct parser_params *p, NODE *n)
1116{
1117 rb_ast_delete_node(p->ast, n);
1118}
1119
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);
1227
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)
1336
1337enum internal_node_type {
1338 NODE_INTERNAL_ONLY = NODE_LAST,
1339 NODE_DEF_TEMP,
1340 NODE_EXITS,
1341 NODE_INTERNAL_LAST
1342};
1343
1344static const char *
1345parser_node_name(int node)
1346{
1347 switch (node) {
1348 case NODE_DEF_TEMP:
1349 return "NODE_DEF_TEMP";
1350 case NODE_EXITS:
1351 return "NODE_EXITS";
1352 default:
1353 return ruby_node_name(node);
1354 }
1355}
1356
1357/* This node is parse.y internal */
1358struct RNode_DEF_TEMP {
1359 NODE node;
1360
1361 /* for NODE_DEFN/NODE_DEFS */
1362
1363 struct RNode *nd_def;
1364 ID nd_mid;
1365
1366 struct {
1367 int max_numparam;
1368 NODE *numparam_save;
1369 struct lex_context ctxt;
1370 } save;
1371};
1372
1373#define RNODE_DEF_TEMP(node) ((struct RNode_DEF_TEMP *)(node))
1374
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);
1380
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)
1385
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))
1390
1391static NODE *nd_set_loc(NODE *nd, const YYLTYPE *loc);
1392
1393static int
1394parser_get_node_id(struct parser_params *p)
1395{
1396 int node_id = p->node_id;
1397 p->node_id++;
1398 return node_id;
1399}
1400
1401static void
1402anddot_multiple_assignment_check(struct parser_params* p, const YYLTYPE *loc, ID id)
1403{
1404 if (id == tANDDOT) {
1405 yyerror1(loc, "&. inside multiple assignment destination");
1406 }
1407}
1408
1409static inline void
1410set_line_body(NODE *body, int line)
1411{
1412 if (!body) return;
1413 switch (nd_type(body)) {
1414 case NODE_RESCUE:
1415 case NODE_ENSURE:
1416 nd_set_line(body, line);
1417 }
1418}
1419
1420static void
1421set_embraced_location(NODE *node, const rb_code_location_t *beg, const rb_code_location_t *end)
1422{
1423 RNODE_ITER(node)->nd_body->nd_loc = code_loc_gen(beg, end);
1424 nd_set_line(node, beg->end_pos.lineno);
1425}
1426
1427static NODE *
1428last_expr_node(NODE *expr)
1429{
1430 while (expr) {
1431 if (nd_type_p(expr, NODE_BLOCK)) {
1432 expr = RNODE_BLOCK(RNODE_BLOCK(expr)->nd_end)->nd_head;
1433 }
1434 else if (nd_type_p(expr, NODE_BEGIN) && RNODE_BEGIN(expr)->nd_body) {
1435 expr = RNODE_BEGIN(expr)->nd_body;
1436 }
1437 else {
1438 break;
1439 }
1440 }
1441 return expr;
1442}
1443
1444#ifndef RIPPER
1445#define yyparse ruby_yyparse
1446#endif
1447
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*);
1455
1456static NODE *newline_node(NODE*);
1457static void fixpos(NODE*,NODE*);
1458
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*);
1466
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);
1480
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;}
1486
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);
1496
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);
1499
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*);
1505
1506static NODE *gettable(struct parser_params*,ID,const YYLTYPE*);
1507static NODE *assignable(struct parser_params*,ID,NODE*,const YYLTYPE*);
1508
1509static NODE *aryset(struct parser_params*,NODE*,NODE*,const YYLTYPE*);
1510static NODE *attrset(struct parser_params*,NODE*,ID,ID,const YYLTYPE*);
1511
1512static VALUE rb_backref_error(struct parser_params*,NODE*);
1513static NODE *node_assign(struct parser_params*,NODE*,NODE*,struct lex_context,const YYLTYPE*);
1514
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);
1520
1521static NODE *const_decl(struct parser_params *p, NODE* path, const YYLTYPE *loc);
1522
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*);
1525
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);
1528
1529static NODE *new_defined(struct parser_params *p, NODE *expr, const YYLTYPE *loc);
1530
1531static NODE *new_regexp(struct parser_params *, NODE *, int, const YYLTYPE *, const YYLTYPE *, const YYLTYPE *, const YYLTYPE *);
1532
1533#define make_list(list, loc) ((list) ? (nd_set_loc(list, loc), list) : NEW_ZLIST(loc))
1534
1535static NODE *new_xstring(struct parser_params *, NODE *, const YYLTYPE *loc);
1536
1537static NODE *symbol_append(struct parser_params *p, NODE *symbols, NODE *symbol);
1538
1539static NODE *match_op(struct parser_params*,NODE*,NODE*,const YYLTYPE*,const YYLTYPE*);
1540
1541static rb_ast_id_table_t *local_tbl(struct parser_params*);
1542
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);
1545
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*);
1548
1549static void check_literal_when(struct parser_params *p, NODE *args, const YYLTYPE *loc);
1550
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);
1552
1553#ifdef RIPPER
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);
1558#endif
1559
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
1575
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);
1582
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);
1595
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);
1604
1605static int lvar_defined(struct parser_params*, ID);
1606
1607static NODE *numparam_push(struct parser_params *p);
1608static void numparam_pop(struct parser_params *p, NODE *prev_inner);
1609
1610#define METHOD_NOT '!'
1611
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
1617
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
1628
1629#define CHECK_LITERAL_WHEN (st_table *)1
1630#define CASE_LABELS_ENABLED_P(case_labels) (case_labels && case_labels != CHECK_LITERAL_WHEN)
1631
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);
1634
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)))))
1643
1644/****** Ripper *******/
1645
1646#ifdef RIPPER
1647
1648#include "eventids1.h"
1649#include "eventids2.h"
1650
1651extern const struct ripper_parser_ids ripper_parser_ids;
1652
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);
1661
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))
1669
1670#define yyparse ripper_yyparse
1671
1672static VALUE
1673aryptn_pre_args(struct parser_params *p, VALUE pre_arg, VALUE pre_args)
1674{
1675 if (!NIL_P(pre_arg)) {
1676 if (!NIL_P(pre_args)) {
1677 rb_ary_unshift(pre_args, pre_arg);
1678 }
1679 else {
1680 pre_args = rb_ary_new_from_args(1, pre_arg);
1681 }
1682 }
1683 return pre_args;
1684}
1685
1686#define ID2VAL(id) STATIC_ID2SYM(id)
1687#define TOKEN2VAL(t) ID2VAL(TOKEN2ID(t))
1688#endif /* RIPPER */
1689
1690#define KWD2EID(t, v) keyword_##t
1691
1692static NODE *
1693new_scope_body(struct parser_params *p, rb_node_args_t *args, NODE *body, const YYLTYPE *loc)
1694{
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);
1700 return n;
1701}
1702
1703static NODE *
1704rescued_expr(struct parser_params *p, NODE *arg, NODE *rescue,
1705 const YYLTYPE *arg_loc, const YYLTYPE *mod_loc, const YYLTYPE *res_loc)
1706{
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);
1711}
1712
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);
1718
1719static void
1720next_rescue_context(struct lex_context *next, const struct lex_context *outer, enum rescue_context def)
1721{
1722 next->in_rescue = outer->in_rescue == after_rescue ? after_rescue : def;
1723}
1724
1725static void
1726restore_defun(struct parser_params *p, rb_node_def_temp_t *temp)
1727{
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);
1736}
1737
1738static void
1739endless_method_name(struct parser_params *p, ID mid, const YYLTYPE *loc)
1740{
1741 if (is_attrset_id(mid)) {
1742 yyerror1(loc, "setter method cannot be defined in an endless method definition");
1743 }
1744 token_info_drop(p, "def", loc->beg_pos);
1745}
1746
1747#define debug_token_line(p, name, line) do { \
1748 if (p->debug) { \
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); \
1754 } \
1755 } while (0)
1756
1757#define begin_definition(k, loc_beg, loc_end) \
1758 do { \
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; \
1763 } \
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"); \
1767 } \
1768 else { \
1769 p->ctxt.cant_return = 1; \
1770 } \
1771 local_push(p, 0); \
1772 } while (0)
1773
1774#ifndef RIPPER
1775# define ifndef_ripper(x) (x)
1776# define ifdef_ripper(r,x) (x)
1777#else
1778# define ifndef_ripper(x)
1779# define ifdef_ripper(r,x) (r)
1780#endif
1781
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))
1802#ifdef RIPPER
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__)
1814# else
1815# define WARN_CALL rb_funcall
1816# endif
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__)
1821# else
1822# define WARNING_CALL rb_funcall
1823# endif
1824# define compile_error ripper_compile_error
1825#else
1826# define WARN_S_L(s,l) s
1827# define WARN_S(s) s
1828# define WARN_I(i) i
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__)
1839#endif
1840
1841#define RNODE_EXITS(node) ((rb_node_exits_t*)(node))
1842
1843static NODE *
1844add_block_exit(struct parser_params *p, NODE *node)
1845{
1846 if (!node) {
1847 compile_error(p, "unexpected null node");
1848 return 0;
1849 }
1850 switch (nd_type(node)) {
1851 case NODE_BREAK: case NODE_NEXT: case NODE_REDO: break;
1852 default:
1853 compile_error(p, "add_block_exit: unexpected node: %s", parser_node_name(nd_type(node)));
1854 return node;
1855 }
1856 if (!p->ctxt.in_defined) {
1857 rb_node_exits_t *exits = p->exits;
1858 if (exits) {
1859 RNODE_EXITS(exits->nd_stts)->nd_chain = node;
1860 exits->nd_stts = node;
1861 }
1862 }
1863 return node;
1864}
1865
1866static rb_node_exits_t *
1867init_block_exit(struct parser_params *p)
1868{
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);
1873 p->exits = exits;
1874 return old;
1875}
1876
1877static rb_node_exits_t *
1878allow_block_exit(struct parser_params *p)
1879{
1880 rb_node_exits_t *exits = p->exits;
1881 p->exits = 0;
1882 return exits;
1883}
1884
1885static void
1886restore_block_exit(struct parser_params *p, rb_node_exits_t *exits)
1887{
1888 p->exits = exits;
1889}
1890
1891static void
1892clear_block_exit(struct parser_params *p, bool error)
1893{
1894 rb_node_exits_t *exits = p->exits;
1895 if (!exits) return;
1896 if (error) {
1897 for (NODE *e = RNODE(exits); (e = RNODE_EXITS(e)->nd_chain) != 0; ) {
1898 switch (nd_type(e)) {
1899 case NODE_BREAK:
1900 yyerror1(&e->nd_loc, "Invalid break");
1901 break;
1902 case NODE_NEXT:
1903 yyerror1(&e->nd_loc, "Invalid next");
1904 break;
1905 case NODE_REDO:
1906 yyerror1(&e->nd_loc, "Invalid redo");
1907 break;
1908 default:
1909 yyerror1(&e->nd_loc, "unexpected node");
1910 goto end_checks; /* no nd_chain */
1911 }
1912 }
1913 end_checks:;
1914 }
1915 exits->nd_stts = RNODE(exits);
1916 exits->nd_chain = 0;
1917}
1918
1919#define WARN_EOL(tok) \
1920 (looking_at_eol_p(p) ? \
1921 (void)rb_warning0("'" tok "' at the end of line without an expression") : \
1922 (void)0)
1923static int looking_at_eol_p(struct parser_params *p);
1924
1925static NODE *
1926get_nd_value(struct parser_params *p, NODE *node)
1927{
1928 switch (nd_type(node)) {
1929 case NODE_GASGN:
1930 return RNODE_GASGN(node)->nd_value;
1931 case NODE_IASGN:
1932 return RNODE_IASGN(node)->nd_value;
1933 case NODE_LASGN:
1934 return RNODE_LASGN(node)->nd_value;
1935 case NODE_DASGN:
1936 return RNODE_DASGN(node)->nd_value;
1937 case NODE_MASGN:
1938 return RNODE_MASGN(node)->nd_value;
1939 case NODE_CVASGN:
1940 return RNODE_CVASGN(node)->nd_value;
1941 case NODE_CDECL:
1942 return RNODE_CDECL(node)->nd_value;
1943 default:
1944 compile_error(p, "get_nd_value: unexpected node: %s", parser_node_name(nd_type(node)));
1945 return 0;
1946 }
1947}
1948
1949static void
1950set_nd_value(struct parser_params *p, NODE *node, NODE *rhs)
1951{
1952 switch (nd_type(node)) {
1953 case NODE_CDECL:
1954 RNODE_CDECL(node)->nd_value = rhs;
1955 break;
1956 case NODE_GASGN:
1957 RNODE_GASGN(node)->nd_value = rhs;
1958 break;
1959 case NODE_IASGN:
1960 RNODE_IASGN(node)->nd_value = rhs;
1961 break;
1962 case NODE_LASGN:
1963 RNODE_LASGN(node)->nd_value = rhs;
1964 break;
1965 case NODE_DASGN:
1966 RNODE_DASGN(node)->nd_value = rhs;
1967 break;
1968 case NODE_MASGN:
1969 RNODE_MASGN(node)->nd_value = rhs;
1970 break;
1971 case NODE_CVASGN:
1972 RNODE_CVASGN(node)->nd_value = rhs;
1973 break;
1974 default:
1975 compile_error(p, "set_nd_value: unexpected node: %s", parser_node_name(nd_type(node)));
1976 break;
1977 }
1978}
1979
1980static ID
1981get_nd_vid(struct parser_params *p, NODE *node)
1982{
1983 switch (nd_type(node)) {
1984 case NODE_CDECL:
1985 return RNODE_CDECL(node)->nd_vid;
1986 case NODE_GASGN:
1987 return RNODE_GASGN(node)->nd_vid;
1988 case NODE_IASGN:
1989 return RNODE_IASGN(node)->nd_vid;
1990 case NODE_LASGN:
1991 return RNODE_LASGN(node)->nd_vid;
1992 case NODE_DASGN:
1993 return RNODE_DASGN(node)->nd_vid;
1994 case NODE_CVASGN:
1995 return RNODE_CVASGN(node)->nd_vid;
1996 default:
1997 compile_error(p, "get_nd_vid: unexpected node: %s", parser_node_name(nd_type(node)));
1998 return 0;
1999 }
2000}
2001
2002static NODE *
2003get_nd_args(struct parser_params *p, NODE *node)
2004{
2005 switch (nd_type(node)) {
2006 case NODE_CALL:
2007 return RNODE_CALL(node)->nd_args;
2008 case NODE_OPCALL:
2009 return RNODE_OPCALL(node)->nd_args;
2010 case NODE_FCALL:
2011 return RNODE_FCALL(node)->nd_args;
2012 case NODE_QCALL:
2013 return RNODE_QCALL(node)->nd_args;
2014 case NODE_SUPER:
2015 return RNODE_SUPER(node)->nd_args;
2016 case NODE_VCALL:
2017 case NODE_ZSUPER:
2018 case NODE_YIELD:
2019 case NODE_RETURN:
2020 case NODE_BREAK:
2021 case NODE_NEXT:
2022 return 0;
2023 default:
2024 compile_error(p, "get_nd_args: unexpected node: %s", parser_node_name(nd_type(node)));
2025 return 0;
2026 }
2027}
2028
2029static st_index_t
2030djb2(const uint8_t *str, size_t len)
2031{
2032 st_index_t hash = 5381;
2033
2034 for (size_t i = 0; i < len; i++) {
2035 hash = ((hash << 5) + hash) + str[i];
2036 }
2037
2038 return hash;
2039}
2040
2041static st_index_t
2042parser_memhash(const void *ptr, long len)
2043{
2044 return djb2(ptr, len);
2045}
2046
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)); \
2055 str->len = total; \
2056} while (0)
2057#define STRING_SET_LEN(str, n) do { \
2058 (str)->len = (n); \
2059} while (0)
2060#define PARSER_STRING_GETMEM(str, ptrvar, lenvar) \
2061 ((ptrvar) = str->ptr, \
2062 (lenvar) = str->len)
2063
2064static inline int
2065parser_string_char_at_end(struct parser_params *p, rb_parser_string_t *str, int when_empty)
2066{
2067 return PARSER_STRING_LEN(str) > 0 ? (unsigned char)PARSER_STRING_END(str)[-1] : when_empty;
2068}
2069
2070static rb_parser_string_t *
2071rb_parser_string_new(rb_parser_t *p, const char *ptr, long len)
2072{
2073 rb_parser_string_t *str;
2074
2075 if (len < 0) {
2076 rb_bug("negative string size (or size too big): %ld", len);
2077 }
2078
2079 str = xcalloc(1, sizeof(rb_parser_string_t));
2080 str->ptr = xcalloc(len + 1, sizeof(char));
2081
2082 if (ptr) {
2083 memcpy(PARSER_STRING_PTR(str), ptr, len);
2084 }
2085 STRING_SET_LEN(str, len);
2086 STRING_TERM_FILL(str);
2087 return str;
2088}
2089
2090static rb_parser_string_t *
2091rb_parser_encoding_string_new(rb_parser_t *p, const char *ptr, long len, rb_encoding *enc)
2092{
2093 rb_parser_string_t *str = rb_parser_string_new(p, ptr, len);
2094 str->coderange = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2095 str->enc = enc;
2096 return str;
2097}
2098
2099#ifndef RIPPER
2100rb_parser_string_t *
2101rb_str_to_parser_string(rb_parser_t *p, VALUE str)
2102{
2103 /* Type check */
2104 rb_parser_string_t *ret = rb_parser_encoding_string_new(p, RSTRING_PTR(str), RSTRING_LEN(str), rb_enc_get(str));
2105 RB_GC_GUARD(str);
2106 return ret;
2107}
2108
2109void
2110rb_parser_string_free(rb_parser_t *p, rb_parser_string_t *str)
2111{
2112 if (!str) return;
2113 xfree(PARSER_STRING_PTR(str));
2114 xfree(str);
2115}
2116#endif
2117
2118static st_index_t
2119rb_parser_str_hash(rb_parser_string_t *str)
2120{
2121 return parser_memhash((const void *)PARSER_STRING_PTR(str), PARSER_STRING_LEN(str));
2122}
2123
2124static st_index_t
2125rb_char_p_hash(const char *c)
2126{
2127 return parser_memhash((const void *)c, strlen(c));
2128}
2129
2130static size_t
2131rb_parser_str_capacity(rb_parser_string_t *str, const int termlen)
2132{
2133 return PARSER_STRING_LEN(str);
2134}
2135
2136#ifndef RIPPER
2137static char *
2138rb_parser_string_end(rb_parser_string_t *str)
2139{
2140 return &str->ptr[str->len];
2141}
2142#endif
2143
2144static void
2145rb_parser_string_set_encoding(rb_parser_string_t *str, rb_encoding *enc)
2146{
2147 str->enc = enc;
2148}
2149
2150static rb_encoding *
2151rb_parser_str_get_encoding(rb_parser_string_t *str)
2152{
2153 return str->enc;
2154}
2155
2156#ifndef RIPPER
2157static bool
2158PARSER_ENCODING_IS_ASCII8BIT(struct parser_params *p, rb_parser_string_t *str)
2159{
2160 return rb_parser_str_get_encoding(str) == rb_ascii8bit_encoding();
2161}
2162#endif
2163
2164static int
2165PARSER_ENC_CODERANGE(rb_parser_string_t *str)
2166{
2167 return str->coderange;
2168}
2169
2170static void
2171PARSER_ENC_CODERANGE_SET(rb_parser_string_t *str, int coderange)
2172{
2173 str->coderange = coderange;
2174}
2175
2176static void
2177PARSER_ENCODING_CODERANGE_SET(rb_parser_string_t *str, rb_encoding *enc, enum rb_parser_string_coderange_type cr)
2178{
2179 rb_parser_string_set_encoding(str, enc);
2180 PARSER_ENC_CODERANGE_SET(str, cr);
2181}
2182
2183static void
2184PARSER_ENC_CODERANGE_CLEAR(rb_parser_string_t *str)
2185{
2186 str->coderange = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2187}
2188
2189static bool
2190PARSER_ENC_CODERANGE_ASCIIONLY(rb_parser_string_t *str)
2191{
2192 return PARSER_ENC_CODERANGE(str) == RB_PARSER_ENC_CODERANGE_7BIT;
2193}
2194
2195static bool
2196PARSER_ENC_CODERANGE_CLEAN_P(int cr)
2197{
2198 return cr == RB_PARSER_ENC_CODERANGE_7BIT || cr == RB_PARSER_ENC_CODERANGE_VALID;
2199}
2200
2201static const char *
2202rb_parser_search_nonascii(const char *p, const char *e)
2203{
2204 const char *s = p;
2205
2206 for (; s < e; s++) {
2207 if (*s & 0x80) return s;
2208 }
2209
2210 return NULL;
2211}
2212
2213static int
2214rb_parser_coderange_scan(struct parser_params *p, const char *ptr, long len, rb_encoding *enc)
2215{
2216 const char *e = ptr + len;
2217
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;
2222 }
2223
2224 /* parser string encoding is always asciicompat */
2225 ptr = rb_parser_search_nonascii(ptr, e);
2226 if (!ptr) return RB_PARSER_ENC_CODERANGE_7BIT;
2227 for (;;) {
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);
2233 if (!ptr) break;
2234 }
2235
2236 return RB_PARSER_ENC_CODERANGE_VALID;
2237}
2238
2239static int
2240rb_parser_enc_coderange_scan(struct parser_params *p, rb_parser_string_t *str, rb_encoding *enc)
2241{
2242 return rb_parser_coderange_scan(p, PARSER_STRING_PTR(str), PARSER_STRING_LEN(str), enc);
2243}
2244
2245static int
2246rb_parser_enc_str_coderange(struct parser_params *p, rb_parser_string_t *str)
2247{
2248 int cr = PARSER_ENC_CODERANGE(str);
2249
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);
2253 }
2254
2255 return cr;
2256}
2257
2258static rb_parser_string_t *
2259rb_parser_enc_associate(struct parser_params *p, rb_parser_string_t *str, rb_encoding *enc)
2260{
2261 if (rb_parser_str_get_encoding(str) == enc)
2262 return str;
2263 if (!PARSER_ENC_CODERANGE_ASCIIONLY(str)) {
2264 PARSER_ENC_CODERANGE_CLEAR(str);
2265 }
2266 rb_parser_string_set_encoding(str, enc);
2267 return str;
2268}
2269
2270static bool
2271rb_parser_is_ascii_string(struct parser_params *p, rb_parser_string_t *str)
2272{
2273 return rb_parser_enc_str_coderange(p, str) == RB_PARSER_ENC_CODERANGE_7BIT;
2274}
2275
2276static rb_encoding *
2277rb_parser_enc_compatible(struct parser_params *p, rb_parser_string_t *str1, rb_parser_string_t *str2)
2278{
2279 rb_encoding *enc1 = rb_parser_str_get_encoding(str1);
2280 rb_encoding *enc2 = rb_parser_str_get_encoding(str2);
2281
2282 if (enc1 == NULL || enc2 == NULL)
2283 return 0;
2284
2285 if (enc1 == enc2) {
2286 return enc1;
2287 }
2288
2289 if (PARSER_STRING_LEN(str2) == 0)
2290 return enc1;
2291 if (PARSER_STRING_LEN(str1) == 0)
2292 return rb_parser_is_ascii_string(p, str2) ? enc1 : enc2;
2293
2294 int cr1, cr2;
2295
2296 cr1 = rb_parser_enc_str_coderange(p, str1);
2297 cr2 = rb_parser_enc_str_coderange(p, str2);
2298
2299 if (cr1 != cr2) {
2300 if (cr1 == RB_PARSER_ENC_CODERANGE_7BIT) return enc2;
2301 if (cr2 == RB_PARSER_ENC_CODERANGE_7BIT) return enc1;
2302 }
2303
2304 if (cr2 == RB_PARSER_ENC_CODERANGE_7BIT) {
2305 return enc1;
2306 }
2307
2308 if (cr1 == RB_PARSER_ENC_CODERANGE_7BIT) {
2309 return enc2;
2310 }
2311
2312 return 0;
2313}
2314
2315static void
2316rb_parser_str_modify(rb_parser_string_t *str)
2317{
2318 PARSER_ENC_CODERANGE_CLEAR(str);
2319}
2320
2321static void
2322rb_parser_str_set_len(struct parser_params *p, rb_parser_string_t *str, long len)
2323{
2324 long capa;
2325 const int termlen = STRING_TERM_LEN(str);
2326
2327 if (len > (capa = (long)(rb_parser_str_capacity(str, termlen))) || len < 0) {
2328 rb_bug("probable buffer overflow: %ld for %ld", len, capa);
2329 }
2330
2331 int cr = PARSER_ENC_CODERANGE(str);
2332 if (cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2333 /* Leave unknown. */
2334 }
2335 else if (len > PARSER_STRING_LEN(str)) {
2336 PARSER_ENC_CODERANGE_SET(str, RB_PARSER_ENC_CODERANGE_UNKNOWN);
2337 }
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);
2343 }
2344 }
2345
2346 STRING_SET_LEN(str, len);
2347 STRING_TERM_FILL(str);
2348}
2349
2350static rb_parser_string_t *
2351rb_parser_str_buf_cat(struct parser_params *p, rb_parser_string_t *str, const char *ptr, long len)
2352{
2353 rb_parser_str_modify(str);
2354 if (len == 0) return 0;
2355
2356 long total, olen, off = -1;
2357 char *sptr;
2358 const int termlen = STRING_TERM_LEN(str);
2359
2360 PARSER_STRING_GETMEM(str, sptr, olen);
2361 if (ptr >= sptr && ptr <= sptr + olen) {
2362 off = ptr - sptr;
2363 }
2364
2365 if (olen > LONG_MAX - len) {
2366 compile_error(p, "string sizes too big");
2367 return 0;
2368 }
2369 total = olen + len;
2370 PARSER_STRING_RESIZE_CAPA_TERM(p, str, total, termlen);
2371 sptr = PARSER_STRING_PTR(str);
2372 if (off != -1) {
2373 ptr = sptr + off;
2374 }
2375 memcpy(sptr + olen, ptr, len);
2376 STRING_SET_LEN(str, total);
2377 STRING_TERM_FILL(str);
2378
2379 return str;
2380}
2381
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))
2384
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)
2388{
2389 int str_cr, res_cr;
2390 rb_encoding *str_enc, *res_enc;
2391
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;
2394
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);
2398 }
2399 }
2400 else {
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);
2404 }
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);
2408 }
2409 }
2410 }
2411 if (ptr_cr_ret)
2412 *ptr_cr_ret = ptr_cr;
2413
2414 if (str_enc != ptr_enc &&
2415 str_cr != RB_PARSER_ENC_CODERANGE_7BIT &&
2416 ptr_cr != RB_PARSER_ENC_CODERANGE_7BIT) {
2417 goto incompatible;
2418 }
2419
2420 if (str_cr == RB_PARSER_ENC_CODERANGE_UNKNOWN) {
2421 res_enc = str_enc;
2422 res_cr = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2423 }
2424 else if (str_cr == RB_PARSER_ENC_CODERANGE_7BIT) {
2425 if (ptr_cr == RB_PARSER_ENC_CODERANGE_7BIT) {
2426 res_enc = str_enc;
2427 res_cr = RB_PARSER_ENC_CODERANGE_7BIT;
2428 }
2429 else {
2430 res_enc = ptr_enc;
2431 res_cr = ptr_cr;
2432 }
2433 }
2434 else if (str_cr == RB_PARSER_ENC_CODERANGE_VALID) {
2435 res_enc = str_enc;
2436 if (PARSER_ENC_CODERANGE_CLEAN_P(ptr_cr))
2437 res_cr = str_cr;
2438 else
2439 res_cr = ptr_cr;
2440 }
2441 else { /* str_cr == RB_PARSER_ENC_CODERANGE_BROKEN */
2442 res_enc = str_enc;
2443 res_cr = str_cr;
2444 if (0 < len) res_cr = RB_PARSER_ENC_CODERANGE_UNKNOWN;
2445 }
2446
2447 if (len < 0) {
2448 compile_error(p, "negative string size (or size too big)");
2449 }
2450 parser_str_cat(str, ptr, len);
2451 PARSER_ENCODING_CODERANGE_SET(str, res_enc, res_cr);
2452 return str;
2453
2454 incompatible:
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);
2458
2459}
2460
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)
2464{
2465 return rb_parser_enc_cr_str_buf_cat(p, str, ptr, len, ptr_enc, RB_PARSER_ENC_CODERANGE_UNKNOWN, NULL);
2466}
2467
2468static rb_parser_string_t *
2469rb_parser_str_buf_append(struct parser_params *p, rb_parser_string_t *str, rb_parser_string_t *str2)
2470{
2471 int str2_cr = rb_parser_enc_str_coderange(p, str2);
2472
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);
2475
2476 PARSER_ENC_CODERANGE_SET(str2, str2_cr);
2477
2478 return str;
2479}
2480
2481static rb_parser_string_t *
2482rb_parser_str_resize(struct parser_params *p, rb_parser_string_t *str, long len)
2483{
2484 if (len < 0) {
2485 rb_bug("negative string size (or size too big)");
2486 }
2487
2488 long slen = PARSER_STRING_LEN(str);
2489
2490 if (slen > len && PARSER_ENC_CODERANGE(str) != RB_PARSER_ENC_CODERANGE_7BIT) {
2491 PARSER_ENC_CODERANGE_CLEAR(str);
2492 }
2493
2494 {
2495 long capa;
2496 const int termlen = STRING_TERM_LEN(str);
2497
2498 if ((capa = slen) < len) {
2499 SIZED_REALLOC_N(str->ptr, char, (size_t)len + termlen, STRING_SIZE(str));
2500 }
2501 else if (len == slen) return str;
2502 STRING_SET_LEN(str, len);
2503 STRING_TERM_FILL(str);
2504 }
2505 return str;
2506}
2507
2508# define PARSER_ENC_STRING_GETMEM(str, ptrvar, lenvar, encvar) \
2509 ((ptrvar) = str->ptr, \
2510 (lenvar) = str->len, \
2511 (encvar) = str->enc)
2512
2513static int
2514rb_parser_string_hash_cmp(rb_parser_string_t *str1, rb_parser_string_t *str2)
2515{
2516 long len1, len2;
2517 const char *ptr1, *ptr2;
2518 rb_encoding *enc1, *enc2;
2519
2520 PARSER_ENC_STRING_GETMEM(str1, ptr1, len1, enc1);
2521 PARSER_ENC_STRING_GETMEM(str2, ptr2, len2, enc2);
2522
2523 return (len1 != len2 ||
2524 enc1 != enc2 ||
2525 memcmp(ptr1, ptr2, len1) != 0);
2526}
2527
2528static void
2529rb_parser_ary_extend(rb_parser_t *p, rb_parser_ary_t *ary, long len)
2530{
2531 long i;
2532 if (ary->capa < len) {
2533 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++) {
2536 ary->data[i] = 0;
2537 }
2538 }
2539}
2540
2541/*
2542 * Do not call this directly.
2543 * Use rb_parser_ary_new_capa_for_XXX() instead.
2544 */
2545static rb_parser_ary_t *
2546parser_ary_new_capa(rb_parser_t *p, long len)
2547{
2548 if (len < 0) {
2549 rb_bug("negative array size (or size too big): %ld", len);
2550 }
2551 rb_parser_ary_t *ary = xcalloc(1, sizeof(rb_parser_ary_t));
2552 ary->data_type = 0;
2553 ary->len = 0;
2554 ary->capa = len;
2555 if (0 < len) {
2556 ary->data = (rb_parser_ary_data *)xcalloc(len, sizeof(rb_parser_ary_data));
2557 }
2558 else {
2559 ary->data = NULL;
2560 }
2561 return ary;
2562}
2563
2564#ifndef RIPPER
2565static rb_parser_ary_t *
2566rb_parser_ary_new_capa_for_script_line(rb_parser_t *p, long len)
2567{
2568 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2569 ary->data_type = PARSER_ARY_DATA_SCRIPT_LINE;
2570 return ary;
2571}
2572
2573static rb_parser_ary_t *
2574rb_parser_ary_new_capa_for_ast_token(rb_parser_t *p, long len)
2575{
2576 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2577 ary->data_type = PARSER_ARY_DATA_AST_TOKEN;
2578 return ary;
2579}
2580#endif
2581
2582static rb_parser_ary_t *
2583rb_parser_ary_new_capa_for_node(rb_parser_t *p, long len)
2584{
2585 rb_parser_ary_t *ary = parser_ary_new_capa(p, len);
2586 ary->data_type = PARSER_ARY_DATA_NODE;
2587 return ary;
2588}
2589
2590/*
2591 * Do not call this directly.
2592 * Use rb_parser_ary_push_XXX() instead.
2593 */
2594static rb_parser_ary_t *
2595parser_ary_push(rb_parser_t *p, rb_parser_ary_t *ary, rb_parser_ary_data val)
2596{
2597 if (ary->len == ary->capa) {
2598 rb_parser_ary_extend(p, ary, ary->len == 0 ? 1 : ary->len * 2);
2599 }
2600 ary->data[ary->len++] = val;
2601 return ary;
2602}
2603
2604#ifndef RIPPER
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)
2607{
2608 if (ary->data_type != PARSER_ARY_DATA_AST_TOKEN) {
2609 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2610 }
2611 return parser_ary_push(p, ary, val);
2612}
2613
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)
2616{
2617 if (ary->data_type != PARSER_ARY_DATA_SCRIPT_LINE) {
2618 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2619 }
2620 return parser_ary_push(p, ary, val);
2621}
2622#endif
2623
2624static rb_parser_ary_t *
2625rb_parser_ary_push_node(rb_parser_t *p, rb_parser_ary_t *ary, NODE *val)
2626{
2627 if (ary->data_type != PARSER_ARY_DATA_NODE) {
2628 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2629 }
2630 return parser_ary_push(p, ary, val);
2631}
2632
2633#ifndef RIPPER
2634static void
2635rb_parser_ast_token_free(rb_parser_t *p, rb_parser_ast_token_t *token)
2636{
2637 if (!token) return;
2638 rb_parser_string_free(p, token->str);
2639 xfree(token);
2640}
2641
2642static void
2643rb_parser_ary_free(rb_parser_t *p, rb_parser_ary_t *ary)
2644{
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);}
2651 break;
2652 case PARSER_ARY_DATA_SCRIPT_LINE:
2653 foreach_ary(data) {rb_parser_string_free(p, *data);}
2654 break;
2655 case PARSER_ARY_DATA_NODE:
2656 /* Do nothing because nodes are freed when rb_ast_t is freed */
2657 break;
2658 default:
2659 rb_bug("unexpected rb_parser_ary_data_type: %d", ary->data_type);
2660 break;
2661 }
2662# undef foreach_ary
2663 xfree(ary->data);
2664 xfree(ary);
2665}
2666
2667#endif /* !RIPPER */
2668
2669#line 2670 "parse.c"
2670
2671# ifndef YY_CAST
2672# ifdef __cplusplus
2673# define YY_CAST(Type, Val) static_cast<Type> (Val)
2674# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
2675# else
2676# define YY_CAST(Type, Val) ((Type) (Val))
2677# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
2678# endif
2679# endif
2680# ifndef YY_NULLPTR
2681# if defined __cplusplus
2682# if 201103L <= __cplusplus
2683# define YY_NULLPTR nullptr
2684# else
2685# define YY_NULLPTR 0
2686# endif
2687# else
2688# define YY_NULLPTR ((void*)0)
2689# endif
2690# endif
2691
2692#include "parse.h"
2693/* Symbol kind. */
2694enum yysymbol_kind_t
2695{
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 */
3162};
3163typedef enum yysymbol_kind_t yysymbol_kind_t;
3164
3165
3166
3167
3168#ifdef short
3169# undef short
3170#endif
3171
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. */
3175
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 */
3180# define YY_STDINT_H
3181# endif
3182#endif
3183
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. */
3188
3189#ifdef __INT_LEAST8_MAX__
3190typedef __INT_LEAST8_TYPE__ yytype_int8;
3191#elif defined YY_STDINT_H
3192typedef int_least8_t yytype_int8;
3193#else
3194typedef signed char yytype_int8;
3195#endif
3196
3197#ifdef __INT_LEAST16_MAX__
3198typedef __INT_LEAST16_TYPE__ yytype_int16;
3199#elif defined YY_STDINT_H
3200typedef int_least16_t yytype_int16;
3201#else
3202typedef short yytype_int16;
3203#endif
3204
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>. */
3210#ifdef __hpux
3211# undef UINT_LEAST8_MAX
3212# undef UINT_LEAST16_MAX
3213# define UINT_LEAST8_MAX 255
3214# define UINT_LEAST16_MAX 65535
3215#endif
3216
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;
3224#else
3225typedef short yytype_uint8;
3226#endif
3227
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;
3235#else
3236typedef int yytype_uint16;
3237#endif
3238
3239#ifndef YYPTRDIFF_T
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
3244# ifndef ptrdiff_t
3245# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
3246# endif
3247# define YYPTRDIFF_T ptrdiff_t
3248# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
3249# else
3250# define YYPTRDIFF_T long
3251# define YYPTRDIFF_MAXIMUM LONG_MAX
3252# endif
3253#endif
3254
3255#ifndef YYSIZE_T
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
3263# else
3264# define YYSIZE_T unsigned
3265# endif
3266#endif
3267
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)))
3273
3274#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
3275
3276
3277/* Stored state numbers (used for stacks). */
3278typedef yytype_int16 yy_state_t;
3279
3280/* State numbers in computations. */
3281typedef int yy_state_fast_t;
3282
3283#ifndef YY_
3284# if defined YYENABLE_NLS && YYENABLE_NLS
3285# if ENABLE_NLS
3286# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
3287# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
3288# endif
3289# endif
3290# ifndef YY_
3291# define YY_(Msgid) Msgid
3292# endif
3293#endif
3294
3295
3296#ifndef YY_ATTRIBUTE_PURE
3297# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
3298# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
3299# else
3300# define YY_ATTRIBUTE_PURE
3301# endif
3302#endif
3303
3304#ifndef YY_ATTRIBUTE_UNUSED
3305# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
3306# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
3307# else
3308# define YY_ATTRIBUTE_UNUSED
3309# endif
3310#endif
3311
3312/* Suppress unused-variable warnings by "using" E. */
3313#if ! defined lint || defined __GNUC__
3314# define YY_USE(E) ((void) (E))
3315#else
3316# define YY_USE(E) /* empty */
3317#endif
3318
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\"")
3325# else
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\"")
3330# endif
3331# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
3332 _Pragma ("GCC diagnostic pop")
3333#else
3334# define YY_INITIAL_VALUE(Value) Value
3335#endif
3336#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
3337# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
3338# define YY_IGNORE_MAYBE_UNINITIALIZED_END
3339#endif
3340#ifndef YY_INITIAL_VALUE
3341# define YY_INITIAL_VALUE(Value) /* Nothing. */
3342#endif
3343
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")
3350#endif
3351#ifndef YY_IGNORE_USELESS_CAST_BEGIN
3352# define YY_IGNORE_USELESS_CAST_BEGIN
3353# define YY_IGNORE_USELESS_CAST_END
3354#endif
3355
3356
3357#define YY_ASSERT(E) ((void) (0 && (E)))
3358
3359#if 1
3360
3361/* The parser invokes alloca or malloc; define the necessary symbols. */
3362
3363# ifdef YYSTACK_USE_ALLOCA
3364# if YYSTACK_USE_ALLOCA
3365# ifdef __GNUC__
3366# define YYSTACK_ALLOC __builtin_alloca
3367# elif defined __BUILTIN_VA_ARG_INCR
3368# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
3369# elif defined _AIX
3370# define YYSTACK_ALLOC __alloca
3371# elif defined _MSC_VER
3372# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
3373# define alloca _alloca
3374# else
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
3381# endif
3382# endif
3383# endif
3384# endif
3385# endif
3386
3387# ifdef YYSTACK_ALLOC
3388 /* Pacify GCC's 'empty if-body' warning. */
3389# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
3390# ifndef YYSTACK_ALLOC_MAXIMUM
3391 /* The OS might guarantee only one guard page at the bottom of the stack,
3392 and a page size can be as small as 4096 bytes. So we cannot safely
3393 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
3394 to allow for a few compiler-allocated temporary stack slots. */
3395# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
3396# endif
3397# else
3398# define YYSTACK_ALLOC YYMALLOC
3399# define YYSTACK_FREE YYFREE
3400# ifndef YYSTACK_ALLOC_MAXIMUM
3401# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
3402# endif
3403# if (defined __cplusplus && ! defined EXIT_SUCCESS \
3404 && ! ((defined YYMALLOC || defined malloc) \
3405 && (defined YYFREE || defined free)))
3406# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
3407# ifndef EXIT_SUCCESS
3408# define EXIT_SUCCESS 0
3409# endif
3410# endif
3411# ifndef YYMALLOC
3412# define YYMALLOC malloc
3413# if ! defined malloc && ! defined EXIT_SUCCESS
3414void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
3415# endif
3416# endif
3417# ifndef YYFREE
3418# define YYFREE free
3419# if ! defined free && ! defined EXIT_SUCCESS
3420void free (void *); /* INFRINGES ON USER NAME SPACE */
3421# endif
3422# endif
3423# endif
3424#endif /* 1 */
3425
3426#if (! defined yyoverflow \
3427 && (! defined __cplusplus \
3428 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
3429 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
3430
3431/* A type that is properly aligned for any stack member. */
3432union yyalloc
3433{
3434 yy_state_t yyss_alloc;
3435 YYSTYPE yyvs_alloc;
3436 YYLTYPE yyls_alloc;
3437};
3438
3439/* The size of the maximum gap between one aligned stack and the next. */
3440# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
3441
3442/* The size of an array large to enough to hold all stacks, each with
3443 N elements. */
3444# define YYSTACK_BYTES(N) \
3445 ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE) \
3446 + YYSIZEOF (YYLTYPE)) \
3447 + 2 * YYSTACK_GAP_MAXIMUM)
3448
3449# define YYCOPY_NEEDED 1
3450
3451/* Relocate STACK from its old location to the new one. The
3452 local variables YYSIZE and YYSTACKSIZE give the old and new number of
3453 elements in the stack, and YYPTR gives the new location of the
3454 stack. Advance YYPTR to a properly aligned location for the next
3455 stack. */
3456# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
3457 do \
3458 { \
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); \
3464 } \
3465 while (0)
3466
3467#endif
3468
3469#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
3470/* Copy COUNT objects from SRC to DST. The source and destination do
3471 not overlap. */
3472# ifndef YYCOPY
3473# if defined __GNUC__ && 1 < __GNUC__
3474# define YYCOPY(Dst, Src, Count) \
3475 __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
3476# else
3477# define YYCOPY(Dst, Src, Count) \
3478 do \
3479 { \
3480 YYPTRDIFF_T yyi; \
3481 for (yyi = 0; yyi < (Count); yyi++) \
3482 (Dst)[yyi] = (Src)[yyi]; \
3483 } \
3484 while (0)
3485# endif
3486# endif
3487#endif /* !YYCOPY_NEEDED */
3488
3489/* YYFINAL -- State number of the termination state. */
3490#define YYFINAL 141
3491/* YYLAST -- Last index in YYTABLE. */
3492#define YYLAST 16310
3493
3494/* YYNTOKENS -- Number of terminals. */
3495#define YYNTOKENS 162
3496/* YYNNTS -- Number of nonterminals. */
3497#define YYNNTS 303
3498/* YYNRULES -- Number of rules. */
3499#define YYNRULES 812
3500/* YYNSTATES -- Number of states. */
3501#define YYNSTATES 1375
3502
3503/* YYMAXUTOK -- Last valid token kind. */
3504#define YYMAXUTOK 361
3505
3506
3507/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
3508 as returned by yylex, with out-of-bounds checking. */
3509#define YYTRANSLATE(YYX) \
3510 (0 <= (YYX) && (YYX) <= YYMAXUTOK \
3511 ? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
3512 : YYSYMBOL_YYUNDEF)
3513
3514/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
3515 as returned by yylex. */
3516static const yytype_uint8 yytranslate[] =
3517{
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,
3554 147, 150
3555};
3556
3557#if YYDEBUG
3558/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
3559static const yytype_int16 yyrline[] =
3560{
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,
3642 6748, 6749, 6753
3643};
3644#endif
3645
3647#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
3648
3649#if 1
3650/* The user-facing name of the symbol whose (internal) number is
3651 YYSYMBOL. No bounds checking. */
3652static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
3653
3654/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
3655 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
3656static const char *const yytname[] =
3657{
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
3755};
3756
3757static const char *
3758yysymbol_name (yysymbol_kind_t yysymbol)
3759{
3760 return yytname[yysymbol];
3761}
3762#endif
3763
3764#define YYPACT_NINF (-1159)
3765
3766#define yypact_value_is_default(Yyn) \
3767 ((Yyn) == YYPACT_NINF)
3768
3769#define YYTABLE_NINF (-813)
3770
3771#define yytable_value_is_error(Yyn) \
3772 ((Yyn) == YYTABLE_NINF)
3773
3774/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
3775 STATE-NUM. */
3776static const yytype_int16 yypact[] =
3777{
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
3916};
3917
3918/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
3919 Performed when YYTABLE does not specify something else to do. Zero
3920 means the default is an error. */
3921static const yytype_int16 yydefact[] =
3922{
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
4061};
4062
4063/* YYPGOTO[NTERM-NUM]. */
4064static const yytype_int16 yypgoto[] =
4065{
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,
4096 -56, -60, 14
4097};
4098
4099/* YYDEFGOTO[NTERM-NUM]. */
4100static const yytype_int16 yydefgoto[] =
4101{
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,
4132 653, 410, 268
4133};
4134
4135/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
4136 positive, shift that token. If negative, reduce the rule whose
4137 number is the opposite. If YYTABLE_NINF, syntax error. */
4138static const yytype_int16 yytable[] =
4139{
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,
5771 215
5772};
5773
5774static const yytype_int16 yycheck[] =
5775{
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,
7407 156
7408};
7409
7410/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
7411 state STATE-NUM. */
7412static const yytype_int16 yystos[] =
7413{
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
7552};
7553
7554/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */
7555static const yytype_int16 yyr1[] =
7556{
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,
7638 463, 463, 464
7639};
7640
7641/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */
7642static const yytype_int8 yyr2[] =
7643{
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,
7725 1, 2, 0
7726};
7727
7728
7729enum { YYENOMEM = -2 };
7730
7731#define yyerrok (yyerrstatus = 0)
7732#define yyclearin (yychar = YYEMPTY)
7733
7734#define YYACCEPT goto yyacceptlab
7735#define YYABORT goto yyabortlab
7736#define YYERROR goto yyerrorlab
7737#define YYNOMEM goto yyexhaustedlab
7738
7739
7740#define YYRECOVERING() (!!yyerrstatus)
7741
7742#define YYBACKUP(Token, Value) \
7743 do \
7744 if (yychar == YYEMPTY) \
7745 { \
7746 yychar = (Token); \
7747 yylval = (Value); \
7748 YYPOPSTACK (yylen); \
7749 yystate = *yyssp; \
7750 goto yybackup; \
7751 } \
7752 else \
7753 { \
7754 yyerror (&yylloc, p, YY_("syntax error: cannot back up")); \
7755 YYERROR; \
7756 } \
7757 while (0)
7758
7759/* Backward compatibility with an undocumented macro.
7760 Use YYerror or YYUNDEF. */
7761#define YYERRCODE YYUNDEF
7762
7763/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
7764 If N is 0, then set CURRENT to the empty location which ends
7765 the previous symbol: RHS[0] (always defined). */
7766
7767#ifndef YYLLOC_DEFAULT
7768# define YYLLOC_DEFAULT(Current, Rhs, N) \
7769 do \
7770 if (N) \
7771 { \
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; \
7776 } \
7777 else \
7778 { \
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; \
7783 } \
7784 while (0)
7785#endif
7786
7787#define YYRHSLOC(Rhs, K) ((Rhs)[K])
7788
7789
7790/* Enable debugging if requested. */
7791#if YYDEBUG
7792
7793# ifndef YYFPRINTF
7794# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
7795# define YYFPRINTF fprintf
7796# endif
7797
7798# define YYDPRINTF(Args) \
7799do { \
7800 if (yydebug) \
7801 YYFPRINTF Args; \
7802} while (0)
7803
7804
7805/* YYLOCATION_PRINT -- Print the location on the stream.
7806 This macro was not mandated originally: define only if we know
7807 we won't break user code: when these are the locations we know. */
7808
7809# ifndef YYLOCATION_PRINT
7810
7811# if defined YY_LOCATION_PRINT
7812
7813 /* Temporary convenience wrapper in case some people defined the
7814 undocumented and private YY_LOCATION_PRINT macros. */
7815# define YYLOCATION_PRINT(File, Loc, p) YY_LOCATION_PRINT(File, *(Loc), p)
7816
7817# elif defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
7818
7819/* Print *YYLOCP on YYO. Private, do not rely on its existence. */
7820
7821YY_ATTRIBUTE_UNUSED
7822static int
7823yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp)
7824{
7825 int res = 0;
7826 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
7827 if (0 <= yylocp->first_line)
7828 {
7829 res += YYFPRINTF (yyo, "%d", yylocp->first_line);
7830 if (0 <= yylocp->first_column)
7831 res += YYFPRINTF (yyo, ".%d", yylocp->first_column);
7832 }
7833 if (0 <= yylocp->last_line)
7834 {
7835 if (yylocp->first_line < yylocp->last_line)
7836 {
7837 res += YYFPRINTF (yyo, "-%d", yylocp->last_line);
7838 if (0 <= end_col)
7839 res += YYFPRINTF (yyo, ".%d", end_col);
7840 }
7841 else if (0 <= end_col && yylocp->first_column < end_col)
7842 res += YYFPRINTF (yyo, "-%d", end_col);
7843 }
7844 return res;
7845}
7846
7847# define YYLOCATION_PRINT yy_location_print_
7848
7849 /* Temporary convenience wrapper in case some people defined the
7850 undocumented and private YY_LOCATION_PRINT macros. */
7851# define YY_LOCATION_PRINT(File, Loc, p) YYLOCATION_PRINT(File, &(Loc), p)
7852
7853# else
7854
7855# define YYLOCATION_PRINT(File, Loc, p) ((void) 0)
7856 /* Temporary convenience wrapper in case some people defined the
7857 undocumented and private YY_LOCATION_PRINT macros. */
7858# define YY_LOCATION_PRINT YYLOCATION_PRINT
7859
7860# endif
7861# endif /* !defined YYLOCATION_PRINT */
7862
7863
7864# define YY_SYMBOL_PRINT(Title, Kind, Value, Location, p) \
7865do { \
7866 if (yydebug) \
7867 { \
7868 YYFPRINTF (stderr, "%s ", Title); \
7869 yy_symbol_print (stderr, \
7870 Kind, Value, Location, p); \
7871 YYFPRINTF (stderr, "\n"); \
7872 } \
7873} while (0)
7874
7875
7876/*-----------------------------------.
7877| Print this symbol's value on YYO. |
7878`-----------------------------------*/
7879
7880static void
7881yy_symbol_value_print (FILE *yyo,
7882 yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct parser_params *p)
7883{
7884 FILE *yyoutput = yyo;
7885 YY_USE (yyoutput);
7886 YY_USE (yylocationp);
7887 YY_USE (p);
7888 if (!yyvaluep)
7889 return;
7890 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
7891switch (yykind)
7892 {
7893 case YYSYMBOL_keyword_class: /* "'class'" */
7894#line 2625 "parse.y"
7895 {
7896 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7897}
7898#line 7899 "parse.c"
7899 break;
7900
7901 case YYSYMBOL_keyword_module: /* "'module'" */
7902#line 2625 "parse.y"
7903 {
7904 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7905}
7906#line 7907 "parse.c"
7907 break;
7908
7909 case YYSYMBOL_keyword_def: /* "'def'" */
7910#line 2625 "parse.y"
7911 {
7912 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7913}
7914#line 7915 "parse.c"
7915 break;
7916
7917 case YYSYMBOL_keyword_undef: /* "'undef'" */
7918#line 2625 "parse.y"
7919 {
7920 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7921}
7922#line 7923 "parse.c"
7923 break;
7924
7925 case YYSYMBOL_keyword_begin: /* "'begin'" */
7926#line 2625 "parse.y"
7927 {
7928 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7929}
7930#line 7931 "parse.c"
7931 break;
7932
7933 case YYSYMBOL_keyword_rescue: /* "'rescue'" */
7934#line 2625 "parse.y"
7935 {
7936 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7937}
7938#line 7939 "parse.c"
7939 break;
7940
7941 case YYSYMBOL_keyword_ensure: /* "'ensure'" */
7942#line 2625 "parse.y"
7943 {
7944 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7945}
7946#line 7947 "parse.c"
7947 break;
7948
7949 case YYSYMBOL_keyword_end: /* "'end'" */
7950#line 2625 "parse.y"
7951 {
7952 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7953}
7954#line 7955 "parse.c"
7955 break;
7956
7957 case YYSYMBOL_keyword_if: /* "'if'" */
7958#line 2625 "parse.y"
7959 {
7960 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7961}
7962#line 7963 "parse.c"
7963 break;
7964
7965 case YYSYMBOL_keyword_unless: /* "'unless'" */
7966#line 2625 "parse.y"
7967 {
7968 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7969}
7970#line 7971 "parse.c"
7971 break;
7972
7973 case YYSYMBOL_keyword_then: /* "'then'" */
7974#line 2625 "parse.y"
7975 {
7976 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7977}
7978#line 7979 "parse.c"
7979 break;
7980
7981 case YYSYMBOL_keyword_elsif: /* "'elsif'" */
7982#line 2625 "parse.y"
7983 {
7984 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7985}
7986#line 7987 "parse.c"
7987 break;
7988
7989 case YYSYMBOL_keyword_else: /* "'else'" */
7990#line 2625 "parse.y"
7991 {
7992 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
7993}
7994#line 7995 "parse.c"
7995 break;
7996
7997 case YYSYMBOL_keyword_case: /* "'case'" */
7998#line 2625 "parse.y"
7999 {
8000 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8001}
8002#line 8003 "parse.c"
8003 break;
8004
8005 case YYSYMBOL_keyword_when: /* "'when'" */
8006#line 2625 "parse.y"
8007 {
8008 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8009}
8010#line 8011 "parse.c"
8011 break;
8012
8013 case YYSYMBOL_keyword_while: /* "'while'" */
8014#line 2625 "parse.y"
8015 {
8016 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8017}
8018#line 8019 "parse.c"
8019 break;
8020
8021 case YYSYMBOL_keyword_until: /* "'until'" */
8022#line 2625 "parse.y"
8023 {
8024 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8025}
8026#line 8027 "parse.c"
8027 break;
8028
8029 case YYSYMBOL_keyword_for: /* "'for'" */
8030#line 2625 "parse.y"
8031 {
8032 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8033}
8034#line 8035 "parse.c"
8035 break;
8036
8037 case YYSYMBOL_keyword_break: /* "'break'" */
8038#line 2625 "parse.y"
8039 {
8040 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8041}
8042#line 8043 "parse.c"
8043 break;
8044
8045 case YYSYMBOL_keyword_next: /* "'next'" */
8046#line 2625 "parse.y"
8047 {
8048 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8049}
8050#line 8051 "parse.c"
8051 break;
8052
8053 case YYSYMBOL_keyword_redo: /* "'redo'" */
8054#line 2625 "parse.y"
8055 {
8056 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8057}
8058#line 8059 "parse.c"
8059 break;
8060
8061 case YYSYMBOL_keyword_retry: /* "'retry'" */
8062#line 2625 "parse.y"
8063 {
8064 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8065}
8066#line 8067 "parse.c"
8067 break;
8068
8069 case YYSYMBOL_keyword_in: /* "'in'" */
8070#line 2625 "parse.y"
8071 {
8072 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8073}
8074#line 8075 "parse.c"
8075 break;
8076
8077 case YYSYMBOL_keyword_do: /* "'do'" */
8078#line 2625 "parse.y"
8079 {
8080 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8081}
8082#line 8083 "parse.c"
8083 break;
8084
8085 case YYSYMBOL_keyword_do_cond: /* "'do' for condition" */
8086#line 2625 "parse.y"
8087 {
8088 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8089}
8090#line 8091 "parse.c"
8091 break;
8092
8093 case YYSYMBOL_keyword_do_block: /* "'do' for block" */
8094#line 2625 "parse.y"
8095 {
8096 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8097}
8098#line 8099 "parse.c"
8099 break;
8100
8101 case YYSYMBOL_keyword_do_LAMBDA: /* "'do' for lambda" */
8102#line 2625 "parse.y"
8103 {
8104 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8105}
8106#line 8107 "parse.c"
8107 break;
8108
8109 case YYSYMBOL_keyword_return: /* "'return'" */
8110#line 2625 "parse.y"
8111 {
8112 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8113}
8114#line 8115 "parse.c"
8115 break;
8116
8117 case YYSYMBOL_keyword_yield: /* "'yield'" */
8118#line 2625 "parse.y"
8119 {
8120 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8121}
8122#line 8123 "parse.c"
8123 break;
8124
8125 case YYSYMBOL_keyword_super: /* "'super'" */
8126#line 2625 "parse.y"
8127 {
8128 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8129}
8130#line 8131 "parse.c"
8131 break;
8132
8133 case YYSYMBOL_keyword_self: /* "'self'" */
8134#line 2625 "parse.y"
8135 {
8136 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8137}
8138#line 8139 "parse.c"
8139 break;
8140
8141 case YYSYMBOL_keyword_nil: /* "'nil'" */
8142#line 2625 "parse.y"
8143 {
8144 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8145}
8146#line 8147 "parse.c"
8147 break;
8148
8149 case YYSYMBOL_keyword_true: /* "'true'" */
8150#line 2625 "parse.y"
8151 {
8152 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8153}
8154#line 8155 "parse.c"
8155 break;
8156
8157 case YYSYMBOL_keyword_false: /* "'false'" */
8158#line 2625 "parse.y"
8159 {
8160 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8161}
8162#line 8163 "parse.c"
8163 break;
8164
8165 case YYSYMBOL_keyword_and: /* "'and'" */
8166#line 2625 "parse.y"
8167 {
8168 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8169}
8170#line 8171 "parse.c"
8171 break;
8172
8173 case YYSYMBOL_keyword_or: /* "'or'" */
8174#line 2625 "parse.y"
8175 {
8176 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8177}
8178#line 8179 "parse.c"
8179 break;
8180
8181 case YYSYMBOL_keyword_not: /* "'not'" */
8182#line 2625 "parse.y"
8183 {
8184 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8185}
8186#line 8187 "parse.c"
8187 break;
8188
8189 case YYSYMBOL_modifier_if: /* "'if' modifier" */
8190#line 2625 "parse.y"
8191 {
8192 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8193}
8194#line 8195 "parse.c"
8195 break;
8196
8197 case YYSYMBOL_modifier_unless: /* "'unless' modifier" */
8198#line 2625 "parse.y"
8199 {
8200 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8201}
8202#line 8203 "parse.c"
8203 break;
8204
8205 case YYSYMBOL_modifier_while: /* "'while' modifier" */
8206#line 2625 "parse.y"
8207 {
8208 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8209}
8210#line 8211 "parse.c"
8211 break;
8212
8213 case YYSYMBOL_modifier_until: /* "'until' modifier" */
8214#line 2625 "parse.y"
8215 {
8216 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8217}
8218#line 8219 "parse.c"
8219 break;
8220
8221 case YYSYMBOL_modifier_rescue: /* "'rescue' modifier" */
8222#line 2625 "parse.y"
8223 {
8224 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8225}
8226#line 8227 "parse.c"
8227 break;
8228
8229 case YYSYMBOL_keyword_alias: /* "'alias'" */
8230#line 2625 "parse.y"
8231 {
8232 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8233}
8234#line 8235 "parse.c"
8235 break;
8236
8237 case YYSYMBOL_keyword_defined: /* "'defined?'" */
8238#line 2625 "parse.y"
8239 {
8240 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8241}
8242#line 8243 "parse.c"
8243 break;
8244
8245 case YYSYMBOL_keyword_BEGIN: /* "'BEGIN'" */
8246#line 2625 "parse.y"
8247 {
8248 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8249}
8250#line 8251 "parse.c"
8251 break;
8252
8253 case YYSYMBOL_keyword_END: /* "'END'" */
8254#line 2625 "parse.y"
8255 {
8256 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8257}
8258#line 8259 "parse.c"
8259 break;
8260
8261 case YYSYMBOL_keyword__LINE__: /* "'__LINE__'" */
8262#line 2625 "parse.y"
8263 {
8264 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8265}
8266#line 8267 "parse.c"
8267 break;
8268
8269 case YYSYMBOL_keyword__FILE__: /* "'__FILE__'" */
8270#line 2625 "parse.y"
8271 {
8272 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8273}
8274#line 8275 "parse.c"
8275 break;
8276
8277 case YYSYMBOL_keyword__ENCODING__: /* "'__ENCODING__'" */
8278#line 2625 "parse.y"
8279 {
8280 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8281}
8282#line 8283 "parse.c"
8283 break;
8284
8285 case YYSYMBOL_tIDENTIFIER: /* "local variable or method" */
8286#line 2625 "parse.y"
8287 {
8288 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8289}
8290#line 8291 "parse.c"
8291 break;
8292
8293 case YYSYMBOL_tFID: /* "method" */
8294#line 2625 "parse.y"
8295 {
8296 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8297}
8298#line 8299 "parse.c"
8299 break;
8300
8301 case YYSYMBOL_tGVAR: /* "global variable" */
8302#line 2625 "parse.y"
8303 {
8304 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8305}
8306#line 8307 "parse.c"
8307 break;
8308
8309 case YYSYMBOL_tIVAR: /* "instance variable" */
8310#line 2625 "parse.y"
8311 {
8312 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8313}
8314#line 8315 "parse.c"
8315 break;
8316
8317 case YYSYMBOL_tCONSTANT: /* "constant" */
8318#line 2625 "parse.y"
8319 {
8320 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8321}
8322#line 8323 "parse.c"
8323 break;
8324
8325 case YYSYMBOL_tCVAR: /* "class variable" */
8326#line 2625 "parse.y"
8327 {
8328 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8329}
8330#line 8331 "parse.c"
8331 break;
8332
8333 case YYSYMBOL_tLABEL: /* "label" */
8334#line 2625 "parse.y"
8335 {
8336 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8337}
8338#line 8339 "parse.c"
8339 break;
8340
8341 case YYSYMBOL_tINTEGER: /* "integer literal" */
8342#line 2628 "parse.y"
8343 {
8344 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8345 case NODE_INTEGER:
8346 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8347 break;
8348 case NODE_FLOAT:
8349 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8350 break;
8351 case NODE_RATIONAL:
8352 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8353 break;
8354 case NODE_IMAGINARY:
8355 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8356 break;
8357 default:
8358 break;
8359 }
8360}
8361#line 8362 "parse.c"
8362 break;
8363
8364 case YYSYMBOL_tFLOAT: /* "float literal" */
8365#line 2628 "parse.y"
8366 {
8367 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8368 case NODE_INTEGER:
8369 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8370 break;
8371 case NODE_FLOAT:
8372 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8373 break;
8374 case NODE_RATIONAL:
8375 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8376 break;
8377 case NODE_IMAGINARY:
8378 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8379 break;
8380 default:
8381 break;
8382 }
8383}
8384#line 8385 "parse.c"
8385 break;
8386
8387 case YYSYMBOL_tRATIONAL: /* "rational literal" */
8388#line 2628 "parse.y"
8389 {
8390 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8391 case NODE_INTEGER:
8392 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8393 break;
8394 case NODE_FLOAT:
8395 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8396 break;
8397 case NODE_RATIONAL:
8398 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8399 break;
8400 case NODE_IMAGINARY:
8401 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8402 break;
8403 default:
8404 break;
8405 }
8406}
8407#line 8408 "parse.c"
8408 break;
8409
8410 case YYSYMBOL_tIMAGINARY: /* "imaginary literal" */
8411#line 2628 "parse.y"
8412 {
8413 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8414 case NODE_INTEGER:
8415 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8416 break;
8417 case NODE_FLOAT:
8418 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8419 break;
8420 case NODE_RATIONAL:
8421 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8422 break;
8423 case NODE_IMAGINARY:
8424 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8425 break;
8426 default:
8427 break;
8428 }
8429}
8430#line 8431 "parse.c"
8431 break;
8432
8433 case YYSYMBOL_tCHAR: /* "char literal" */
8434#line 2628 "parse.y"
8435 {
8436 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8437 case NODE_INTEGER:
8438 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8439 break;
8440 case NODE_FLOAT:
8441 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8442 break;
8443 case NODE_RATIONAL:
8444 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8445 break;
8446 case NODE_IMAGINARY:
8447 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8448 break;
8449 default:
8450 break;
8451 }
8452}
8453#line 8454 "parse.c"
8454 break;
8455
8456 case YYSYMBOL_tNTH_REF: /* "numbered reference" */
8457#line 2646 "parse.y"
8458 {
8459 rb_parser_printf(p, "$%ld", RNODE_NTH_REF(((*yyvaluep).node))->nd_nth);
8460}
8461#line 8462 "parse.c"
8462 break;
8463
8464 case YYSYMBOL_tBACK_REF: /* "back reference" */
8465#line 2649 "parse.y"
8466 {
8467 rb_parser_printf(p, "$%c", (int)RNODE_BACK_REF(((*yyvaluep).node))->nd_nth);
8468}
8469#line 8470 "parse.c"
8470 break;
8471
8472 case YYSYMBOL_tSTRING_CONTENT: /* "literal content" */
8473#line 2628 "parse.y"
8474 {
8475 switch (nd_type(RNODE(((*yyvaluep).node)))) {
8476 case NODE_INTEGER:
8477 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_integer_literal_val(((*yyvaluep).node)));
8478 break;
8479 case NODE_FLOAT:
8480 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_float_literal_val(((*yyvaluep).node)));
8481 break;
8482 case NODE_RATIONAL:
8483 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_rational_literal_val(((*yyvaluep).node)));
8484 break;
8485 case NODE_IMAGINARY:
8486 rb_parser_printf(p, "%+"PRIsVALUE, rb_node_imaginary_literal_val(((*yyvaluep).node)));
8487 break;
8488 default:
8489 break;
8490 }
8491}
8492#line 8493 "parse.c"
8493 break;
8494
8495 case YYSYMBOL_69_: /* '.' */
8496#line 2625 "parse.y"
8497 {
8498 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8499}
8500#line 8501 "parse.c"
8501 break;
8502
8503 case YYSYMBOL_70_backslash_: /* "backslash" */
8504#line 2625 "parse.y"
8505 {
8506 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8507}
8508#line 8509 "parse.c"
8509 break;
8510
8511 case YYSYMBOL_72_escaped_horizontal_tab_: /* "escaped horizontal tab" */
8512#line 2625 "parse.y"
8513 {
8514 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8515}
8516#line 8517 "parse.c"
8517 break;
8518
8519 case YYSYMBOL_73_escaped_form_feed_: /* "escaped form feed" */
8520#line 2625 "parse.y"
8521 {
8522 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8523}
8524#line 8525 "parse.c"
8525 break;
8526
8527 case YYSYMBOL_74_escaped_carriage_return_: /* "escaped carriage return" */
8528#line 2625 "parse.y"
8529 {
8530 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8531}
8532#line 8533 "parse.c"
8533 break;
8534
8535 case YYSYMBOL_75_escaped_vertical_tab_: /* "escaped vertical tab" */
8536#line 2625 "parse.y"
8537 {
8538 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8539}
8540#line 8541 "parse.c"
8541 break;
8542
8543 case YYSYMBOL_tANDDOT: /* "&." */
8544#line 2625 "parse.y"
8545 {
8546 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8547}
8548#line 8549 "parse.c"
8549 break;
8550
8551 case YYSYMBOL_tCOLON2: /* "::" */
8552#line 2625 "parse.y"
8553 {
8554 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8555}
8556#line 8557 "parse.c"
8557 break;
8558
8559 case YYSYMBOL_tOP_ASGN: /* "operator-assignment" */
8560#line 2625 "parse.y"
8561 {
8562 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8563}
8564#line 8565 "parse.c"
8565 break;
8566
8567 case YYSYMBOL_compstmt_top_stmts: /* compstmt_top_stmts */
8568#line 2616 "parse.y"
8569 {
8570 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8571 rb_parser_printf(p, "NODE_SPECIAL");
8572 }
8573 else if (((*yyvaluep).node)) {
8574 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8575 }
8576}
8577#line 8578 "parse.c"
8578 break;
8579
8580 case YYSYMBOL_top_stmts: /* top_stmts */
8581#line 2616 "parse.y"
8582 {
8583 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8584 rb_parser_printf(p, "NODE_SPECIAL");
8585 }
8586 else if (((*yyvaluep).node)) {
8587 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8588 }
8589}
8590#line 8591 "parse.c"
8591 break;
8592
8593 case YYSYMBOL_top_stmt: /* top_stmt */
8594#line 2616 "parse.y"
8595 {
8596 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8597 rb_parser_printf(p, "NODE_SPECIAL");
8598 }
8599 else if (((*yyvaluep).node)) {
8600 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8601 }
8602}
8603#line 8604 "parse.c"
8604 break;
8605
8606 case YYSYMBOL_block_open: /* block_open */
8607#line 2616 "parse.y"
8608 {
8609 if ((NODE *)((*yyvaluep).node_exits) == (NODE *)-1) {
8610 rb_parser_printf(p, "NODE_SPECIAL");
8611 }
8612 else if (((*yyvaluep).node_exits)) {
8613 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
8614 }
8615}
8616#line 8617 "parse.c"
8617 break;
8618
8619 case YYSYMBOL_begin_block: /* begin_block */
8620#line 2616 "parse.y"
8621 {
8622 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8623 rb_parser_printf(p, "NODE_SPECIAL");
8624 }
8625 else if (((*yyvaluep).node)) {
8626 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8627 }
8628}
8629#line 8630 "parse.c"
8630 break;
8631
8632 case YYSYMBOL_compstmt_stmts: /* compstmt_stmts */
8633#line 2616 "parse.y"
8634 {
8635 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8636 rb_parser_printf(p, "NODE_SPECIAL");
8637 }
8638 else if (((*yyvaluep).node)) {
8639 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8640 }
8641}
8642#line 8643 "parse.c"
8643 break;
8644
8645 case YYSYMBOL_bodystmt: /* bodystmt */
8646#line 2616 "parse.y"
8647 {
8648 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8649 rb_parser_printf(p, "NODE_SPECIAL");
8650 }
8651 else if (((*yyvaluep).node)) {
8652 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8653 }
8654}
8655#line 8656 "parse.c"
8656 break;
8657
8658 case YYSYMBOL_stmts: /* stmts */
8659#line 2616 "parse.y"
8660 {
8661 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8662 rb_parser_printf(p, "NODE_SPECIAL");
8663 }
8664 else if (((*yyvaluep).node)) {
8665 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8666 }
8667}
8668#line 8669 "parse.c"
8669 break;
8670
8671 case YYSYMBOL_stmt_or_begin: /* stmt_or_begin */
8672#line 2616 "parse.y"
8673 {
8674 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8675 rb_parser_printf(p, "NODE_SPECIAL");
8676 }
8677 else if (((*yyvaluep).node)) {
8678 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8679 }
8680}
8681#line 8682 "parse.c"
8682 break;
8683
8684 case YYSYMBOL_allow_exits: /* allow_exits */
8685#line 2616 "parse.y"
8686 {
8687 if ((NODE *)((*yyvaluep).node_exits) == (NODE *)-1) {
8688 rb_parser_printf(p, "NODE_SPECIAL");
8689 }
8690 else if (((*yyvaluep).node_exits)) {
8691 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
8692 }
8693}
8694#line 8695 "parse.c"
8695 break;
8696
8697 case YYSYMBOL_stmt: /* stmt */
8698#line 2616 "parse.y"
8699 {
8700 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8701 rb_parser_printf(p, "NODE_SPECIAL");
8702 }
8703 else if (((*yyvaluep).node)) {
8704 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8705 }
8706}
8707#line 8708 "parse.c"
8708 break;
8709
8710 case YYSYMBOL_asgn_lhs_mrhs: /* asgn_lhs_mrhs */
8711#line 2616 "parse.y"
8712 {
8713 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8714 rb_parser_printf(p, "NODE_SPECIAL");
8715 }
8716 else if (((*yyvaluep).node)) {
8717 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8718 }
8719}
8720#line 8721 "parse.c"
8721 break;
8722
8723 case YYSYMBOL_asgn_lhs_command_rhs: /* asgn_lhs_command_rhs */
8724#line 2616 "parse.y"
8725 {
8726 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8727 rb_parser_printf(p, "NODE_SPECIAL");
8728 }
8729 else if (((*yyvaluep).node)) {
8730 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8731 }
8732}
8733#line 8734 "parse.c"
8734 break;
8735
8736 case YYSYMBOL_command_asgn: /* command_asgn */
8737#line 2616 "parse.y"
8738 {
8739 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8740 rb_parser_printf(p, "NODE_SPECIAL");
8741 }
8742 else if (((*yyvaluep).node)) {
8743 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8744 }
8745}
8746#line 8747 "parse.c"
8747 break;
8748
8749 case YYSYMBOL_op_asgn_command_rhs: /* op_asgn_command_rhs */
8750#line 2616 "parse.y"
8751 {
8752 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8753 rb_parser_printf(p, "NODE_SPECIAL");
8754 }
8755 else if (((*yyvaluep).node)) {
8756 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8757 }
8758}
8759#line 8760 "parse.c"
8760 break;
8761
8762 case YYSYMBOL_def_endless_method_endless_command: /* def_endless_method_endless_command */
8763#line 2616 "parse.y"
8764 {
8765 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8766 rb_parser_printf(p, "NODE_SPECIAL");
8767 }
8768 else if (((*yyvaluep).node)) {
8769 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8770 }
8771}
8772#line 8773 "parse.c"
8773 break;
8774
8775 case YYSYMBOL_endless_command: /* endless_command */
8776#line 2616 "parse.y"
8777 {
8778 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8779 rb_parser_printf(p, "NODE_SPECIAL");
8780 }
8781 else if (((*yyvaluep).node)) {
8782 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8783 }
8784}
8785#line 8786 "parse.c"
8786 break;
8787
8788 case YYSYMBOL_command_rhs: /* command_rhs */
8789#line 2616 "parse.y"
8790 {
8791 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8792 rb_parser_printf(p, "NODE_SPECIAL");
8793 }
8794 else if (((*yyvaluep).node)) {
8795 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8796 }
8797}
8798#line 8799 "parse.c"
8799 break;
8800
8801 case YYSYMBOL_expr: /* expr */
8802#line 2616 "parse.y"
8803 {
8804 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8805 rb_parser_printf(p, "NODE_SPECIAL");
8806 }
8807 else if (((*yyvaluep).node)) {
8808 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8809 }
8810}
8811#line 8812 "parse.c"
8812 break;
8813
8814 case YYSYMBOL_def_name: /* def_name */
8815#line 2625 "parse.y"
8816 {
8817 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
8818}
8819#line 8820 "parse.c"
8820 break;
8821
8822 case YYSYMBOL_defn_head: /* defn_head */
8823#line 2616 "parse.y"
8824 {
8825 if ((NODE *)((*yyvaluep).node_def_temp) == (NODE *)-1) {
8826 rb_parser_printf(p, "NODE_SPECIAL");
8827 }
8828 else if (((*yyvaluep).node_def_temp)) {
8829 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
8830 }
8831}
8832#line 8833 "parse.c"
8833 break;
8834
8835 case YYSYMBOL_defs_head: /* defs_head */
8836#line 2616 "parse.y"
8837 {
8838 if ((NODE *)((*yyvaluep).node_def_temp) == (NODE *)-1) {
8839 rb_parser_printf(p, "NODE_SPECIAL");
8840 }
8841 else if (((*yyvaluep).node_def_temp)) {
8842 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
8843 }
8844}
8845#line 8846 "parse.c"
8846 break;
8847
8848 case YYSYMBOL_value_expr_expr: /* value_expr_expr */
8849#line 2616 "parse.y"
8850 {
8851 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8852 rb_parser_printf(p, "NODE_SPECIAL");
8853 }
8854 else if (((*yyvaluep).node)) {
8855 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8856 }
8857}
8858#line 8859 "parse.c"
8859 break;
8860
8861 case YYSYMBOL_expr_value: /* expr_value */
8862#line 2616 "parse.y"
8863 {
8864 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8865 rb_parser_printf(p, "NODE_SPECIAL");
8866 }
8867 else if (((*yyvaluep).node)) {
8868 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8869 }
8870}
8871#line 8872 "parse.c"
8872 break;
8873
8874 case YYSYMBOL_expr_value_do: /* expr_value_do */
8875#line 2616 "parse.y"
8876 {
8877 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8878 rb_parser_printf(p, "NODE_SPECIAL");
8879 }
8880 else if (((*yyvaluep).node)) {
8881 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8882 }
8883}
8884#line 8885 "parse.c"
8885 break;
8886
8887 case YYSYMBOL_command_call: /* command_call */
8888#line 2616 "parse.y"
8889 {
8890 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8891 rb_parser_printf(p, "NODE_SPECIAL");
8892 }
8893 else if (((*yyvaluep).node)) {
8894 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8895 }
8896}
8897#line 8898 "parse.c"
8898 break;
8899
8900 case YYSYMBOL_value_expr_command_call: /* value_expr_command_call */
8901#line 2616 "parse.y"
8902 {
8903 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8904 rb_parser_printf(p, "NODE_SPECIAL");
8905 }
8906 else if (((*yyvaluep).node)) {
8907 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8908 }
8909}
8910#line 8911 "parse.c"
8911 break;
8912
8913 case YYSYMBOL_command_call_value: /* command_call_value */
8914#line 2616 "parse.y"
8915 {
8916 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8917 rb_parser_printf(p, "NODE_SPECIAL");
8918 }
8919 else if (((*yyvaluep).node)) {
8920 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8921 }
8922}
8923#line 8924 "parse.c"
8924 break;
8925
8926 case YYSYMBOL_block_command: /* block_command */
8927#line 2616 "parse.y"
8928 {
8929 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8930 rb_parser_printf(p, "NODE_SPECIAL");
8931 }
8932 else if (((*yyvaluep).node)) {
8933 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8934 }
8935}
8936#line 8937 "parse.c"
8937 break;
8938
8939 case YYSYMBOL_cmd_brace_block: /* cmd_brace_block */
8940#line 2616 "parse.y"
8941 {
8942 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8943 rb_parser_printf(p, "NODE_SPECIAL");
8944 }
8945 else if (((*yyvaluep).node)) {
8946 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8947 }
8948}
8949#line 8950 "parse.c"
8950 break;
8951
8952 case YYSYMBOL_fcall: /* fcall */
8953#line 2616 "parse.y"
8954 {
8955 if ((NODE *)((*yyvaluep).node_fcall) == (NODE *)-1) {
8956 rb_parser_printf(p, "NODE_SPECIAL");
8957 }
8958 else if (((*yyvaluep).node_fcall)) {
8959 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_fcall)))));
8960 }
8961}
8962#line 8963 "parse.c"
8963 break;
8964
8965 case YYSYMBOL_command: /* command */
8966#line 2616 "parse.y"
8967 {
8968 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
8969 rb_parser_printf(p, "NODE_SPECIAL");
8970 }
8971 else if (((*yyvaluep).node)) {
8972 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
8973 }
8974}
8975#line 8976 "parse.c"
8976 break;
8977
8978 case YYSYMBOL_mlhs: /* mlhs */
8979#line 2616 "parse.y"
8980 {
8981 if ((NODE *)((*yyvaluep).node_masgn) == (NODE *)-1) {
8982 rb_parser_printf(p, "NODE_SPECIAL");
8983 }
8984 else if (((*yyvaluep).node_masgn)) {
8985 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
8986 }
8987}
8988#line 8989 "parse.c"
8989 break;
8990
8991 case YYSYMBOL_mlhs_inner: /* mlhs_inner */
8992#line 2616 "parse.y"
8993 {
8994 if ((NODE *)((*yyvaluep).node_masgn) == (NODE *)-1) {
8995 rb_parser_printf(p, "NODE_SPECIAL");
8996 }
8997 else if (((*yyvaluep).node_masgn)) {
8998 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
8999 }
9000}
9001#line 9002 "parse.c"
9002 break;
9003
9004 case YYSYMBOL_mlhs_basic: /* mlhs_basic */
9005#line 2616 "parse.y"
9006 {
9007 if ((NODE *)((*yyvaluep).node_masgn) == (NODE *)-1) {
9008 rb_parser_printf(p, "NODE_SPECIAL");
9009 }
9010 else if (((*yyvaluep).node_masgn)) {
9011 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
9012 }
9013}
9014#line 9015 "parse.c"
9015 break;
9016
9017 case YYSYMBOL_mlhs_mlhs_item: /* mlhs_mlhs_item */
9018#line 2616 "parse.y"
9019 {
9020 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9021 rb_parser_printf(p, "NODE_SPECIAL");
9022 }
9023 else if (((*yyvaluep).node)) {
9024 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9025 }
9026}
9027#line 9028 "parse.c"
9028 break;
9029
9030 case YYSYMBOL_mlhs_item: /* mlhs_item */
9031#line 2616 "parse.y"
9032 {
9033 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9034 rb_parser_printf(p, "NODE_SPECIAL");
9035 }
9036 else if (((*yyvaluep).node)) {
9037 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9038 }
9039}
9040#line 9041 "parse.c"
9041 break;
9042
9043 case YYSYMBOL_mlhs_head: /* mlhs_head */
9044#line 2616 "parse.y"
9045 {
9046 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9047 rb_parser_printf(p, "NODE_SPECIAL");
9048 }
9049 else if (((*yyvaluep).node)) {
9050 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9051 }
9052}
9053#line 9054 "parse.c"
9054 break;
9055
9056 case YYSYMBOL_mlhs_node: /* mlhs_node */
9057#line 2616 "parse.y"
9058 {
9059 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9060 rb_parser_printf(p, "NODE_SPECIAL");
9061 }
9062 else if (((*yyvaluep).node)) {
9063 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9064 }
9065}
9066#line 9067 "parse.c"
9067 break;
9068
9069 case YYSYMBOL_lhs: /* lhs */
9070#line 2616 "parse.y"
9071 {
9072 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9073 rb_parser_printf(p, "NODE_SPECIAL");
9074 }
9075 else if (((*yyvaluep).node)) {
9076 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9077 }
9078}
9079#line 9080 "parse.c"
9080 break;
9081
9082 case YYSYMBOL_cname: /* cname */
9083#line 2625 "parse.y"
9084 {
9085 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9086}
9087#line 9088 "parse.c"
9088 break;
9089
9090 case YYSYMBOL_cpath: /* cpath */
9091#line 2616 "parse.y"
9092 {
9093 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9094 rb_parser_printf(p, "NODE_SPECIAL");
9095 }
9096 else if (((*yyvaluep).node)) {
9097 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9098 }
9099}
9100#line 9101 "parse.c"
9101 break;
9102
9103 case YYSYMBOL_fname: /* fname */
9104#line 2625 "parse.y"
9105 {
9106 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9107}
9108#line 9109 "parse.c"
9109 break;
9110
9111 case YYSYMBOL_fitem: /* fitem */
9112#line 2616 "parse.y"
9113 {
9114 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9115 rb_parser_printf(p, "NODE_SPECIAL");
9116 }
9117 else if (((*yyvaluep).node)) {
9118 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9119 }
9120}
9121#line 9122 "parse.c"
9122 break;
9123
9124 case YYSYMBOL_undef_list: /* undef_list */
9125#line 2616 "parse.y"
9126 {
9127 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9128 rb_parser_printf(p, "NODE_SPECIAL");
9129 }
9130 else if (((*yyvaluep).node)) {
9131 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9132 }
9133}
9134#line 9135 "parse.c"
9135 break;
9136
9137 case YYSYMBOL_op: /* op */
9138#line 2625 "parse.y"
9139 {
9140 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9141}
9142#line 9143 "parse.c"
9143 break;
9144
9145 case YYSYMBOL_reswords: /* reswords */
9146#line 2625 "parse.y"
9147 {
9148 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9149}
9150#line 9151 "parse.c"
9151 break;
9152
9153 case YYSYMBOL_asgn_lhs_arg_rhs: /* asgn_lhs_arg_rhs */
9154#line 2616 "parse.y"
9155 {
9156 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9157 rb_parser_printf(p, "NODE_SPECIAL");
9158 }
9159 else if (((*yyvaluep).node)) {
9160 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9161 }
9162}
9163#line 9164 "parse.c"
9164 break;
9165
9166 case YYSYMBOL_arg: /* arg */
9167#line 2616 "parse.y"
9168 {
9169 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9170 rb_parser_printf(p, "NODE_SPECIAL");
9171 }
9172 else if (((*yyvaluep).node)) {
9173 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9174 }
9175}
9176#line 9177 "parse.c"
9177 break;
9178
9179 case YYSYMBOL_op_asgn_arg_rhs: /* op_asgn_arg_rhs */
9180#line 2616 "parse.y"
9181 {
9182 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9183 rb_parser_printf(p, "NODE_SPECIAL");
9184 }
9185 else if (((*yyvaluep).node)) {
9186 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9187 }
9188}
9189#line 9190 "parse.c"
9190 break;
9191
9192 case YYSYMBOL_def_endless_method_endless_arg: /* def_endless_method_endless_arg */
9193#line 2616 "parse.y"
9194 {
9195 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9196 rb_parser_printf(p, "NODE_SPECIAL");
9197 }
9198 else if (((*yyvaluep).node)) {
9199 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9200 }
9201}
9202#line 9203 "parse.c"
9203 break;
9204
9205 case YYSYMBOL_endless_arg: /* endless_arg */
9206#line 2616 "parse.y"
9207 {
9208 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9209 rb_parser_printf(p, "NODE_SPECIAL");
9210 }
9211 else if (((*yyvaluep).node)) {
9212 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9213 }
9214}
9215#line 9216 "parse.c"
9216 break;
9217
9218 case YYSYMBOL_relop: /* relop */
9219#line 2625 "parse.y"
9220 {
9221 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9222}
9223#line 9224 "parse.c"
9224 break;
9225
9226 case YYSYMBOL_rel_expr: /* rel_expr */
9227#line 2616 "parse.y"
9228 {
9229 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9230 rb_parser_printf(p, "NODE_SPECIAL");
9231 }
9232 else if (((*yyvaluep).node)) {
9233 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9234 }
9235}
9236#line 9237 "parse.c"
9237 break;
9238
9239 case YYSYMBOL_value_expr_arg: /* value_expr_arg */
9240#line 2616 "parse.y"
9241 {
9242 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9243 rb_parser_printf(p, "NODE_SPECIAL");
9244 }
9245 else if (((*yyvaluep).node)) {
9246 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9247 }
9248}
9249#line 9250 "parse.c"
9250 break;
9251
9252 case YYSYMBOL_arg_value: /* arg_value */
9253#line 2616 "parse.y"
9254 {
9255 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9256 rb_parser_printf(p, "NODE_SPECIAL");
9257 }
9258 else if (((*yyvaluep).node)) {
9259 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9260 }
9261}
9262#line 9263 "parse.c"
9263 break;
9264
9265 case YYSYMBOL_aref_args: /* aref_args */
9266#line 2616 "parse.y"
9267 {
9268 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9269 rb_parser_printf(p, "NODE_SPECIAL");
9270 }
9271 else if (((*yyvaluep).node)) {
9272 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9273 }
9274}
9275#line 9276 "parse.c"
9276 break;
9277
9278 case YYSYMBOL_arg_rhs: /* arg_rhs */
9279#line 2616 "parse.y"
9280 {
9281 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9282 rb_parser_printf(p, "NODE_SPECIAL");
9283 }
9284 else if (((*yyvaluep).node)) {
9285 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9286 }
9287}
9288#line 9289 "parse.c"
9289 break;
9290
9291 case YYSYMBOL_paren_args: /* paren_args */
9292#line 2616 "parse.y"
9293 {
9294 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9295 rb_parser_printf(p, "NODE_SPECIAL");
9296 }
9297 else if (((*yyvaluep).node)) {
9298 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9299 }
9300}
9301#line 9302 "parse.c"
9302 break;
9303
9304 case YYSYMBOL_opt_paren_args: /* opt_paren_args */
9305#line 2616 "parse.y"
9306 {
9307 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9308 rb_parser_printf(p, "NODE_SPECIAL");
9309 }
9310 else if (((*yyvaluep).node)) {
9311 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9312 }
9313}
9314#line 9315 "parse.c"
9315 break;
9316
9317 case YYSYMBOL_opt_call_args: /* opt_call_args */
9318#line 2616 "parse.y"
9319 {
9320 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9321 rb_parser_printf(p, "NODE_SPECIAL");
9322 }
9323 else if (((*yyvaluep).node)) {
9324 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9325 }
9326}
9327#line 9328 "parse.c"
9328 break;
9329
9330 case YYSYMBOL_value_expr_command: /* value_expr_command */
9331#line 2616 "parse.y"
9332 {
9333 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9334 rb_parser_printf(p, "NODE_SPECIAL");
9335 }
9336 else if (((*yyvaluep).node)) {
9337 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9338 }
9339}
9340#line 9341 "parse.c"
9341 break;
9342
9343 case YYSYMBOL_call_args: /* call_args */
9344#line 2616 "parse.y"
9345 {
9346 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9347 rb_parser_printf(p, "NODE_SPECIAL");
9348 }
9349 else if (((*yyvaluep).node)) {
9350 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9351 }
9352}
9353#line 9354 "parse.c"
9354 break;
9355
9356 case YYSYMBOL_command_args: /* command_args */
9357#line 2616 "parse.y"
9358 {
9359 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9360 rb_parser_printf(p, "NODE_SPECIAL");
9361 }
9362 else if (((*yyvaluep).node)) {
9363 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9364 }
9365}
9366#line 9367 "parse.c"
9367 break;
9368
9369 case YYSYMBOL_block_arg: /* block_arg */
9370#line 2616 "parse.y"
9371 {
9372 if ((NODE *)((*yyvaluep).node_block_pass) == (NODE *)-1) {
9373 rb_parser_printf(p, "NODE_SPECIAL");
9374 }
9375 else if (((*yyvaluep).node_block_pass)) {
9376 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_block_pass)))));
9377 }
9378}
9379#line 9380 "parse.c"
9380 break;
9381
9382 case YYSYMBOL_opt_block_arg: /* opt_block_arg */
9383#line 2616 "parse.y"
9384 {
9385 if ((NODE *)((*yyvaluep).node_block_pass) == (NODE *)-1) {
9386 rb_parser_printf(p, "NODE_SPECIAL");
9387 }
9388 else if (((*yyvaluep).node_block_pass)) {
9389 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_block_pass)))));
9390 }
9391}
9392#line 9393 "parse.c"
9393 break;
9394
9395 case YYSYMBOL_args: /* args */
9396#line 2616 "parse.y"
9397 {
9398 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9399 rb_parser_printf(p, "NODE_SPECIAL");
9400 }
9401 else if (((*yyvaluep).node)) {
9402 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9403 }
9404}
9405#line 9406 "parse.c"
9406 break;
9407
9408 case YYSYMBOL_arg_splat: /* arg_splat */
9409#line 2616 "parse.y"
9410 {
9411 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9412 rb_parser_printf(p, "NODE_SPECIAL");
9413 }
9414 else if (((*yyvaluep).node)) {
9415 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9416 }
9417}
9418#line 9419 "parse.c"
9419 break;
9420
9421 case YYSYMBOL_mrhs_arg: /* mrhs_arg */
9422#line 2616 "parse.y"
9423 {
9424 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9425 rb_parser_printf(p, "NODE_SPECIAL");
9426 }
9427 else if (((*yyvaluep).node)) {
9428 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9429 }
9430}
9431#line 9432 "parse.c"
9432 break;
9433
9434 case YYSYMBOL_mrhs: /* mrhs */
9435#line 2616 "parse.y"
9436 {
9437 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9438 rb_parser_printf(p, "NODE_SPECIAL");
9439 }
9440 else if (((*yyvaluep).node)) {
9441 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9442 }
9443}
9444#line 9445 "parse.c"
9445 break;
9446
9447 case YYSYMBOL_primary: /* primary */
9448#line 2616 "parse.y"
9449 {
9450 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9451 rb_parser_printf(p, "NODE_SPECIAL");
9452 }
9453 else if (((*yyvaluep).node)) {
9454 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9455 }
9456}
9457#line 9458 "parse.c"
9458 break;
9459
9460 case YYSYMBOL_value_expr_primary: /* value_expr_primary */
9461#line 2616 "parse.y"
9462 {
9463 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9464 rb_parser_printf(p, "NODE_SPECIAL");
9465 }
9466 else if (((*yyvaluep).node)) {
9467 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9468 }
9469}
9470#line 9471 "parse.c"
9471 break;
9472
9473 case YYSYMBOL_primary_value: /* primary_value */
9474#line 2616 "parse.y"
9475 {
9476 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9477 rb_parser_printf(p, "NODE_SPECIAL");
9478 }
9479 else if (((*yyvaluep).node)) {
9480 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9481 }
9482}
9483#line 9484 "parse.c"
9484 break;
9485
9486 case YYSYMBOL_k_while: /* k_while */
9487#line 2616 "parse.y"
9488 {
9489 if ((NODE *)((*yyvaluep).node_exits) == (NODE *)-1) {
9490 rb_parser_printf(p, "NODE_SPECIAL");
9491 }
9492 else if (((*yyvaluep).node_exits)) {
9493 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9494 }
9495}
9496#line 9497 "parse.c"
9497 break;
9498
9499 case YYSYMBOL_k_until: /* k_until */
9500#line 2616 "parse.y"
9501 {
9502 if ((NODE *)((*yyvaluep).node_exits) == (NODE *)-1) {
9503 rb_parser_printf(p, "NODE_SPECIAL");
9504 }
9505 else if (((*yyvaluep).node_exits)) {
9506 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9507 }
9508}
9509#line 9510 "parse.c"
9510 break;
9511
9512 case YYSYMBOL_k_for: /* k_for */
9513#line 2616 "parse.y"
9514 {
9515 if ((NODE *)((*yyvaluep).node_exits) == (NODE *)-1) {
9516 rb_parser_printf(p, "NODE_SPECIAL");
9517 }
9518 else if (((*yyvaluep).node_exits)) {
9519 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_exits)))));
9520 }
9521}
9522#line 9523 "parse.c"
9523 break;
9524
9525 case YYSYMBOL_k_def: /* k_def */
9526#line 2616 "parse.y"
9527 {
9528 if ((NODE *)((*yyvaluep).node_def_temp) == (NODE *)-1) {
9529 rb_parser_printf(p, "NODE_SPECIAL");
9530 }
9531 else if (((*yyvaluep).node_def_temp)) {
9532 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_def_temp)))));
9533 }
9534}
9535#line 9536 "parse.c"
9536 break;
9537
9538 case YYSYMBOL_do: /* do */
9539#line 2625 "parse.y"
9540 {
9541 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9542}
9543#line 9544 "parse.c"
9544 break;
9545
9546 case YYSYMBOL_if_tail: /* if_tail */
9547#line 2616 "parse.y"
9548 {
9549 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9550 rb_parser_printf(p, "NODE_SPECIAL");
9551 }
9552 else if (((*yyvaluep).node)) {
9553 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9554 }
9555}
9556#line 9557 "parse.c"
9557 break;
9558
9559 case YYSYMBOL_opt_else: /* opt_else */
9560#line 2616 "parse.y"
9561 {
9562 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9563 rb_parser_printf(p, "NODE_SPECIAL");
9564 }
9565 else if (((*yyvaluep).node)) {
9566 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9567 }
9568}
9569#line 9570 "parse.c"
9570 break;
9571
9572 case YYSYMBOL_for_var: /* for_var */
9573#line 2616 "parse.y"
9574 {
9575 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9576 rb_parser_printf(p, "NODE_SPECIAL");
9577 }
9578 else if (((*yyvaluep).node)) {
9579 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9580 }
9581}
9582#line 9583 "parse.c"
9583 break;
9584
9585 case YYSYMBOL_f_marg: /* f_marg */
9586#line 2616 "parse.y"
9587 {
9588 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9589 rb_parser_printf(p, "NODE_SPECIAL");
9590 }
9591 else if (((*yyvaluep).node)) {
9592 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9593 }
9594}
9595#line 9596 "parse.c"
9596 break;
9597
9598 case YYSYMBOL_mlhs_f_marg: /* mlhs_f_marg */
9599#line 2616 "parse.y"
9600 {
9601 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9602 rb_parser_printf(p, "NODE_SPECIAL");
9603 }
9604 else if (((*yyvaluep).node)) {
9605 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9606 }
9607}
9608#line 9609 "parse.c"
9609 break;
9610
9611 case YYSYMBOL_f_margs: /* f_margs */
9612#line 2616 "parse.y"
9613 {
9614 if ((NODE *)((*yyvaluep).node_masgn) == (NODE *)-1) {
9615 rb_parser_printf(p, "NODE_SPECIAL");
9616 }
9617 else if (((*yyvaluep).node_masgn)) {
9618 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_masgn)))));
9619 }
9620}
9621#line 9622 "parse.c"
9622 break;
9623
9624 case YYSYMBOL_f_rest_marg: /* f_rest_marg */
9625#line 2616 "parse.y"
9626 {
9627 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9628 rb_parser_printf(p, "NODE_SPECIAL");
9629 }
9630 else if (((*yyvaluep).node)) {
9631 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9632 }
9633}
9634#line 9635 "parse.c"
9635 break;
9636
9637 case YYSYMBOL_f_any_kwrest: /* f_any_kwrest */
9638#line 2625 "parse.y"
9639 {
9640 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9641}
9642#line 9643 "parse.c"
9643 break;
9644
9645 case YYSYMBOL_f_kw_primary_value: /* f_kw_primary_value */
9646#line 2616 "parse.y"
9647 {
9648 if ((NODE *)((*yyvaluep).node_kw_arg) == (NODE *)-1) {
9649 rb_parser_printf(p, "NODE_SPECIAL");
9650 }
9651 else if (((*yyvaluep).node_kw_arg)) {
9652 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
9653 }
9654}
9655#line 9656 "parse.c"
9656 break;
9657
9658 case YYSYMBOL_f_kwarg_primary_value: /* f_kwarg_primary_value */
9659#line 2616 "parse.y"
9660 {
9661 if ((NODE *)((*yyvaluep).node_kw_arg) == (NODE *)-1) {
9662 rb_parser_printf(p, "NODE_SPECIAL");
9663 }
9664 else if (((*yyvaluep).node_kw_arg)) {
9665 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
9666 }
9667}
9668#line 9669 "parse.c"
9669 break;
9670
9671 case YYSYMBOL_args_tail_basic_primary_value: /* args_tail_basic_primary_value */
9672#line 2616 "parse.y"
9673 {
9674 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9675 rb_parser_printf(p, "NODE_SPECIAL");
9676 }
9677 else if (((*yyvaluep).node_args)) {
9678 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9679 }
9680}
9681#line 9682 "parse.c"
9682 break;
9683
9684 case YYSYMBOL_block_args_tail: /* block_args_tail */
9685#line 2616 "parse.y"
9686 {
9687 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9688 rb_parser_printf(p, "NODE_SPECIAL");
9689 }
9690 else if (((*yyvaluep).node_args)) {
9691 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9692 }
9693}
9694#line 9695 "parse.c"
9695 break;
9696
9697 case YYSYMBOL_excessed_comma: /* excessed_comma */
9698#line 2625 "parse.y"
9699 {
9700 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9701}
9702#line 9703 "parse.c"
9703 break;
9704
9705 case YYSYMBOL_f_opt_primary_value: /* f_opt_primary_value */
9706#line 2616 "parse.y"
9707 {
9708 if ((NODE *)((*yyvaluep).node_opt_arg) == (NODE *)-1) {
9709 rb_parser_printf(p, "NODE_SPECIAL");
9710 }
9711 else if (((*yyvaluep).node_opt_arg)) {
9712 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
9713 }
9714}
9715#line 9716 "parse.c"
9716 break;
9717
9718 case YYSYMBOL_f_optarg_primary_value: /* f_optarg_primary_value */
9719#line 2616 "parse.y"
9720 {
9721 if ((NODE *)((*yyvaluep).node_opt_arg) == (NODE *)-1) {
9722 rb_parser_printf(p, "NODE_SPECIAL");
9723 }
9724 else if (((*yyvaluep).node_opt_arg)) {
9725 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
9726 }
9727}
9728#line 9729 "parse.c"
9729 break;
9730
9731 case YYSYMBOL_opt_args_tail_block_args_tail: /* opt_args_tail_block_args_tail */
9732#line 2616 "parse.y"
9733 {
9734 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9735 rb_parser_printf(p, "NODE_SPECIAL");
9736 }
9737 else if (((*yyvaluep).node_args)) {
9738 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9739 }
9740}
9741#line 9742 "parse.c"
9742 break;
9743
9744 case YYSYMBOL_block_param: /* block_param */
9745#line 2616 "parse.y"
9746 {
9747 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9748 rb_parser_printf(p, "NODE_SPECIAL");
9749 }
9750 else if (((*yyvaluep).node_args)) {
9751 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9752 }
9753}
9754#line 9755 "parse.c"
9755 break;
9756
9757 case YYSYMBOL_opt_block_param_def: /* opt_block_param_def */
9758#line 2616 "parse.y"
9759 {
9760 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9761 rb_parser_printf(p, "NODE_SPECIAL");
9762 }
9763 else if (((*yyvaluep).node_args)) {
9764 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9765 }
9766}
9767#line 9768 "parse.c"
9768 break;
9769
9770 case YYSYMBOL_block_param_def: /* block_param_def */
9771#line 2616 "parse.y"
9772 {
9773 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9774 rb_parser_printf(p, "NODE_SPECIAL");
9775 }
9776 else if (((*yyvaluep).node_args)) {
9777 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9778 }
9779}
9780#line 9781 "parse.c"
9781 break;
9782
9783 case YYSYMBOL_opt_block_param: /* opt_block_param */
9784#line 2616 "parse.y"
9785 {
9786 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9787 rb_parser_printf(p, "NODE_SPECIAL");
9788 }
9789 else if (((*yyvaluep).node_args)) {
9790 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9791 }
9792}
9793#line 9794 "parse.c"
9794 break;
9795
9796 case YYSYMBOL_opt_bv_decl: /* opt_bv_decl */
9797#line 2625 "parse.y"
9798 {
9799 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9800}
9801#line 9802 "parse.c"
9802 break;
9803
9804 case YYSYMBOL_bv_decls: /* bv_decls */
9805#line 2625 "parse.y"
9806 {
9807 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9808}
9809#line 9810 "parse.c"
9810 break;
9811
9812 case YYSYMBOL_bvar: /* bvar */
9813#line 2625 "parse.y"
9814 {
9815 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9816}
9817#line 9818 "parse.c"
9818 break;
9819
9820 case YYSYMBOL_numparam: /* numparam */
9821#line 2616 "parse.y"
9822 {
9823 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9824 rb_parser_printf(p, "NODE_SPECIAL");
9825 }
9826 else if (((*yyvaluep).node)) {
9827 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9828 }
9829}
9830#line 9831 "parse.c"
9831 break;
9832
9833 case YYSYMBOL_it_id: /* it_id */
9834#line 2625 "parse.y"
9835 {
9836 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
9837}
9838#line 9839 "parse.c"
9839 break;
9840
9841 case YYSYMBOL_lambda: /* lambda */
9842#line 2616 "parse.y"
9843 {
9844 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9845 rb_parser_printf(p, "NODE_SPECIAL");
9846 }
9847 else if (((*yyvaluep).node)) {
9848 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9849 }
9850}
9851#line 9852 "parse.c"
9852 break;
9853
9854 case YYSYMBOL_f_larglist: /* f_larglist */
9855#line 2616 "parse.y"
9856 {
9857 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
9858 rb_parser_printf(p, "NODE_SPECIAL");
9859 }
9860 else if (((*yyvaluep).node_args)) {
9861 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
9862 }
9863}
9864#line 9865 "parse.c"
9865 break;
9866
9867 case YYSYMBOL_do_block: /* do_block */
9868#line 2616 "parse.y"
9869 {
9870 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9871 rb_parser_printf(p, "NODE_SPECIAL");
9872 }
9873 else if (((*yyvaluep).node)) {
9874 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9875 }
9876}
9877#line 9878 "parse.c"
9878 break;
9879
9880 case YYSYMBOL_block_call: /* block_call */
9881#line 2616 "parse.y"
9882 {
9883 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9884 rb_parser_printf(p, "NODE_SPECIAL");
9885 }
9886 else if (((*yyvaluep).node)) {
9887 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9888 }
9889}
9890#line 9891 "parse.c"
9891 break;
9892
9893 case YYSYMBOL_method_call: /* method_call */
9894#line 2616 "parse.y"
9895 {
9896 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9897 rb_parser_printf(p, "NODE_SPECIAL");
9898 }
9899 else if (((*yyvaluep).node)) {
9900 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9901 }
9902}
9903#line 9904 "parse.c"
9904 break;
9905
9906 case YYSYMBOL_brace_block: /* brace_block */
9907#line 2616 "parse.y"
9908 {
9909 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9910 rb_parser_printf(p, "NODE_SPECIAL");
9911 }
9912 else if (((*yyvaluep).node)) {
9913 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9914 }
9915}
9916#line 9917 "parse.c"
9917 break;
9918
9919 case YYSYMBOL_brace_body: /* brace_body */
9920#line 2616 "parse.y"
9921 {
9922 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9923 rb_parser_printf(p, "NODE_SPECIAL");
9924 }
9925 else if (((*yyvaluep).node)) {
9926 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9927 }
9928}
9929#line 9930 "parse.c"
9930 break;
9931
9932 case YYSYMBOL_do_body: /* do_body */
9933#line 2616 "parse.y"
9934 {
9935 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9936 rb_parser_printf(p, "NODE_SPECIAL");
9937 }
9938 else if (((*yyvaluep).node)) {
9939 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9940 }
9941}
9942#line 9943 "parse.c"
9943 break;
9944
9945 case YYSYMBOL_case_args: /* case_args */
9946#line 2616 "parse.y"
9947 {
9948 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9949 rb_parser_printf(p, "NODE_SPECIAL");
9950 }
9951 else if (((*yyvaluep).node)) {
9952 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9953 }
9954}
9955#line 9956 "parse.c"
9956 break;
9957
9958 case YYSYMBOL_case_body: /* case_body */
9959#line 2616 "parse.y"
9960 {
9961 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9962 rb_parser_printf(p, "NODE_SPECIAL");
9963 }
9964 else if (((*yyvaluep).node)) {
9965 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9966 }
9967}
9968#line 9969 "parse.c"
9969 break;
9970
9971 case YYSYMBOL_cases: /* cases */
9972#line 2616 "parse.y"
9973 {
9974 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9975 rb_parser_printf(p, "NODE_SPECIAL");
9976 }
9977 else if (((*yyvaluep).node)) {
9978 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9979 }
9980}
9981#line 9982 "parse.c"
9982 break;
9983
9984 case YYSYMBOL_p_case_body: /* p_case_body */
9985#line 2616 "parse.y"
9986 {
9987 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
9988 rb_parser_printf(p, "NODE_SPECIAL");
9989 }
9990 else if (((*yyvaluep).node)) {
9991 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
9992 }
9993}
9994#line 9995 "parse.c"
9995 break;
9996
9997 case YYSYMBOL_p_cases: /* p_cases */
9998#line 2616 "parse.y"
9999 {
10000 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10001 rb_parser_printf(p, "NODE_SPECIAL");
10002 }
10003 else if (((*yyvaluep).node)) {
10004 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10005 }
10006}
10007#line 10008 "parse.c"
10008 break;
10009
10010 case YYSYMBOL_p_top_expr: /* p_top_expr */
10011#line 2616 "parse.y"
10012 {
10013 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10014 rb_parser_printf(p, "NODE_SPECIAL");
10015 }
10016 else if (((*yyvaluep).node)) {
10017 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10018 }
10019}
10020#line 10021 "parse.c"
10021 break;
10022
10023 case YYSYMBOL_p_top_expr_body: /* p_top_expr_body */
10024#line 2616 "parse.y"
10025 {
10026 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10027 rb_parser_printf(p, "NODE_SPECIAL");
10028 }
10029 else if (((*yyvaluep).node)) {
10030 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10031 }
10032}
10033#line 10034 "parse.c"
10034 break;
10035
10036 case YYSYMBOL_p_expr: /* p_expr */
10037#line 2616 "parse.y"
10038 {
10039 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10040 rb_parser_printf(p, "NODE_SPECIAL");
10041 }
10042 else if (((*yyvaluep).node)) {
10043 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10044 }
10045}
10046#line 10047 "parse.c"
10047 break;
10048
10049 case YYSYMBOL_p_as: /* p_as */
10050#line 2616 "parse.y"
10051 {
10052 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10053 rb_parser_printf(p, "NODE_SPECIAL");
10054 }
10055 else if (((*yyvaluep).node)) {
10056 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10057 }
10058}
10059#line 10060 "parse.c"
10060 break;
10061
10062 case YYSYMBOL_p_alt: /* p_alt */
10063#line 2616 "parse.y"
10064 {
10065 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10066 rb_parser_printf(p, "NODE_SPECIAL");
10067 }
10068 else if (((*yyvaluep).node)) {
10069 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10070 }
10071}
10072#line 10073 "parse.c"
10073 break;
10074
10075 case YYSYMBOL_p_expr_basic: /* p_expr_basic */
10076#line 2616 "parse.y"
10077 {
10078 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10079 rb_parser_printf(p, "NODE_SPECIAL");
10080 }
10081 else if (((*yyvaluep).node)) {
10082 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10083 }
10084}
10085#line 10086 "parse.c"
10086 break;
10087
10088 case YYSYMBOL_p_args: /* p_args */
10089#line 2616 "parse.y"
10090 {
10091 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10092 rb_parser_printf(p, "NODE_SPECIAL");
10093 }
10094 else if (((*yyvaluep).node)) {
10095 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10096 }
10097}
10098#line 10099 "parse.c"
10099 break;
10100
10101 case YYSYMBOL_p_args_head: /* p_args_head */
10102#line 2616 "parse.y"
10103 {
10104 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10105 rb_parser_printf(p, "NODE_SPECIAL");
10106 }
10107 else if (((*yyvaluep).node)) {
10108 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10109 }
10110}
10111#line 10112 "parse.c"
10112 break;
10113
10114 case YYSYMBOL_p_args_tail: /* p_args_tail */
10115#line 2616 "parse.y"
10116 {
10117 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10118 rb_parser_printf(p, "NODE_SPECIAL");
10119 }
10120 else if (((*yyvaluep).node)) {
10121 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10122 }
10123}
10124#line 10125 "parse.c"
10125 break;
10126
10127 case YYSYMBOL_p_find: /* p_find */
10128#line 2616 "parse.y"
10129 {
10130 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10131 rb_parser_printf(p, "NODE_SPECIAL");
10132 }
10133 else if (((*yyvaluep).node)) {
10134 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10135 }
10136}
10137#line 10138 "parse.c"
10138 break;
10139
10140 case YYSYMBOL_p_rest: /* p_rest */
10141#line 2616 "parse.y"
10142 {
10143 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10144 rb_parser_printf(p, "NODE_SPECIAL");
10145 }
10146 else if (((*yyvaluep).node)) {
10147 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10148 }
10149}
10150#line 10151 "parse.c"
10151 break;
10152
10153 case YYSYMBOL_p_args_post: /* p_args_post */
10154#line 2616 "parse.y"
10155 {
10156 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10157 rb_parser_printf(p, "NODE_SPECIAL");
10158 }
10159 else if (((*yyvaluep).node)) {
10160 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10161 }
10162}
10163#line 10164 "parse.c"
10164 break;
10165
10166 case YYSYMBOL_p_arg: /* p_arg */
10167#line 2616 "parse.y"
10168 {
10169 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10170 rb_parser_printf(p, "NODE_SPECIAL");
10171 }
10172 else if (((*yyvaluep).node)) {
10173 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10174 }
10175}
10176#line 10177 "parse.c"
10177 break;
10178
10179 case YYSYMBOL_p_kwargs: /* p_kwargs */
10180#line 2616 "parse.y"
10181 {
10182 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10183 rb_parser_printf(p, "NODE_SPECIAL");
10184 }
10185 else if (((*yyvaluep).node)) {
10186 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10187 }
10188}
10189#line 10190 "parse.c"
10190 break;
10191
10192 case YYSYMBOL_p_kwarg: /* p_kwarg */
10193#line 2616 "parse.y"
10194 {
10195 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10196 rb_parser_printf(p, "NODE_SPECIAL");
10197 }
10198 else if (((*yyvaluep).node)) {
10199 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10200 }
10201}
10202#line 10203 "parse.c"
10203 break;
10204
10205 case YYSYMBOL_p_kw: /* p_kw */
10206#line 2616 "parse.y"
10207 {
10208 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10209 rb_parser_printf(p, "NODE_SPECIAL");
10210 }
10211 else if (((*yyvaluep).node)) {
10212 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10213 }
10214}
10215#line 10216 "parse.c"
10216 break;
10217
10218 case YYSYMBOL_p_kw_label: /* p_kw_label */
10219#line 2625 "parse.y"
10220 {
10221 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10222}
10223#line 10224 "parse.c"
10224 break;
10225
10226 case YYSYMBOL_p_kwrest: /* p_kwrest */
10227#line 2625 "parse.y"
10228 {
10229 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10230}
10231#line 10232 "parse.c"
10232 break;
10233
10234 case YYSYMBOL_p_kwnorest: /* p_kwnorest */
10235#line 2625 "parse.y"
10236 {
10237 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10238}
10239#line 10240 "parse.c"
10240 break;
10241
10242 case YYSYMBOL_p_any_kwrest: /* p_any_kwrest */
10243#line 2625 "parse.y"
10244 {
10245 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10246}
10247#line 10248 "parse.c"
10248 break;
10249
10250 case YYSYMBOL_p_value: /* p_value */
10251#line 2616 "parse.y"
10252 {
10253 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10254 rb_parser_printf(p, "NODE_SPECIAL");
10255 }
10256 else if (((*yyvaluep).node)) {
10257 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10258 }
10259}
10260#line 10261 "parse.c"
10261 break;
10262
10263 case YYSYMBOL_p_primitive: /* p_primitive */
10264#line 2616 "parse.y"
10265 {
10266 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10267 rb_parser_printf(p, "NODE_SPECIAL");
10268 }
10269 else if (((*yyvaluep).node)) {
10270 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10271 }
10272}
10273#line 10274 "parse.c"
10274 break;
10275
10276 case YYSYMBOL_value_expr_p_primitive: /* value_expr_p_primitive */
10277#line 2616 "parse.y"
10278 {
10279 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10280 rb_parser_printf(p, "NODE_SPECIAL");
10281 }
10282 else if (((*yyvaluep).node)) {
10283 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10284 }
10285}
10286#line 10287 "parse.c"
10287 break;
10288
10289 case YYSYMBOL_p_primitive_value: /* p_primitive_value */
10290#line 2616 "parse.y"
10291 {
10292 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10293 rb_parser_printf(p, "NODE_SPECIAL");
10294 }
10295 else if (((*yyvaluep).node)) {
10296 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10297 }
10298}
10299#line 10300 "parse.c"
10300 break;
10301
10302 case YYSYMBOL_p_variable: /* p_variable */
10303#line 2616 "parse.y"
10304 {
10305 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10306 rb_parser_printf(p, "NODE_SPECIAL");
10307 }
10308 else if (((*yyvaluep).node)) {
10309 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10310 }
10311}
10312#line 10313 "parse.c"
10313 break;
10314
10315 case YYSYMBOL_p_var_ref: /* p_var_ref */
10316#line 2616 "parse.y"
10317 {
10318 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10319 rb_parser_printf(p, "NODE_SPECIAL");
10320 }
10321 else if (((*yyvaluep).node)) {
10322 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10323 }
10324}
10325#line 10326 "parse.c"
10326 break;
10327
10328 case YYSYMBOL_p_expr_ref: /* p_expr_ref */
10329#line 2616 "parse.y"
10330 {
10331 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10332 rb_parser_printf(p, "NODE_SPECIAL");
10333 }
10334 else if (((*yyvaluep).node)) {
10335 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10336 }
10337}
10338#line 10339 "parse.c"
10339 break;
10340
10341 case YYSYMBOL_p_const: /* p_const */
10342#line 2616 "parse.y"
10343 {
10344 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10345 rb_parser_printf(p, "NODE_SPECIAL");
10346 }
10347 else if (((*yyvaluep).node)) {
10348 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10349 }
10350}
10351#line 10352 "parse.c"
10352 break;
10353
10354 case YYSYMBOL_opt_rescue: /* opt_rescue */
10355#line 2616 "parse.y"
10356 {
10357 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10358 rb_parser_printf(p, "NODE_SPECIAL");
10359 }
10360 else if (((*yyvaluep).node)) {
10361 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10362 }
10363}
10364#line 10365 "parse.c"
10365 break;
10366
10367 case YYSYMBOL_exc_list: /* exc_list */
10368#line 2616 "parse.y"
10369 {
10370 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10371 rb_parser_printf(p, "NODE_SPECIAL");
10372 }
10373 else if (((*yyvaluep).node)) {
10374 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10375 }
10376}
10377#line 10378 "parse.c"
10378 break;
10379
10380 case YYSYMBOL_exc_var: /* exc_var */
10381#line 2616 "parse.y"
10382 {
10383 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10384 rb_parser_printf(p, "NODE_SPECIAL");
10385 }
10386 else if (((*yyvaluep).node)) {
10387 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10388 }
10389}
10390#line 10391 "parse.c"
10391 break;
10392
10393 case YYSYMBOL_opt_ensure: /* opt_ensure */
10394#line 2616 "parse.y"
10395 {
10396 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10397 rb_parser_printf(p, "NODE_SPECIAL");
10398 }
10399 else if (((*yyvaluep).node)) {
10400 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10401 }
10402}
10403#line 10404 "parse.c"
10404 break;
10405
10406 case YYSYMBOL_literal: /* literal */
10407#line 2616 "parse.y"
10408 {
10409 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10410 rb_parser_printf(p, "NODE_SPECIAL");
10411 }
10412 else if (((*yyvaluep).node)) {
10413 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10414 }
10415}
10416#line 10417 "parse.c"
10417 break;
10418
10419 case YYSYMBOL_strings: /* strings */
10420#line 2616 "parse.y"
10421 {
10422 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10423 rb_parser_printf(p, "NODE_SPECIAL");
10424 }
10425 else if (((*yyvaluep).node)) {
10426 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10427 }
10428}
10429#line 10430 "parse.c"
10430 break;
10431
10432 case YYSYMBOL_string: /* string */
10433#line 2616 "parse.y"
10434 {
10435 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10436 rb_parser_printf(p, "NODE_SPECIAL");
10437 }
10438 else if (((*yyvaluep).node)) {
10439 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10440 }
10441}
10442#line 10443 "parse.c"
10443 break;
10444
10445 case YYSYMBOL_string1: /* string1 */
10446#line 2616 "parse.y"
10447 {
10448 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10449 rb_parser_printf(p, "NODE_SPECIAL");
10450 }
10451 else if (((*yyvaluep).node)) {
10452 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10453 }
10454}
10455#line 10456 "parse.c"
10456 break;
10457
10458 case YYSYMBOL_xstring: /* xstring */
10459#line 2616 "parse.y"
10460 {
10461 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10462 rb_parser_printf(p, "NODE_SPECIAL");
10463 }
10464 else if (((*yyvaluep).node)) {
10465 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10466 }
10467}
10468#line 10469 "parse.c"
10469 break;
10470
10471 case YYSYMBOL_regexp: /* regexp */
10472#line 2616 "parse.y"
10473 {
10474 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10475 rb_parser_printf(p, "NODE_SPECIAL");
10476 }
10477 else if (((*yyvaluep).node)) {
10478 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10479 }
10480}
10481#line 10482 "parse.c"
10482 break;
10483
10484 case YYSYMBOL_words_tWORDS_BEG_word_list: /* words_tWORDS_BEG_word_list */
10485#line 2616 "parse.y"
10486 {
10487 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10488 rb_parser_printf(p, "NODE_SPECIAL");
10489 }
10490 else if (((*yyvaluep).node)) {
10491 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10492 }
10493}
10494#line 10495 "parse.c"
10495 break;
10496
10497 case YYSYMBOL_words: /* words */
10498#line 2616 "parse.y"
10499 {
10500 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10501 rb_parser_printf(p, "NODE_SPECIAL");
10502 }
10503 else if (((*yyvaluep).node)) {
10504 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10505 }
10506}
10507#line 10508 "parse.c"
10508 break;
10509
10510 case YYSYMBOL_word_list: /* word_list */
10511#line 2616 "parse.y"
10512 {
10513 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10514 rb_parser_printf(p, "NODE_SPECIAL");
10515 }
10516 else if (((*yyvaluep).node)) {
10517 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10518 }
10519}
10520#line 10521 "parse.c"
10521 break;
10522
10523 case YYSYMBOL_word: /* word */
10524#line 2616 "parse.y"
10525 {
10526 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10527 rb_parser_printf(p, "NODE_SPECIAL");
10528 }
10529 else if (((*yyvaluep).node)) {
10530 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10531 }
10532}
10533#line 10534 "parse.c"
10534 break;
10535
10536 case YYSYMBOL_words_tSYMBOLS_BEG_symbol_list: /* words_tSYMBOLS_BEG_symbol_list */
10537#line 2616 "parse.y"
10538 {
10539 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10540 rb_parser_printf(p, "NODE_SPECIAL");
10541 }
10542 else if (((*yyvaluep).node)) {
10543 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10544 }
10545}
10546#line 10547 "parse.c"
10547 break;
10548
10549 case YYSYMBOL_symbols: /* symbols */
10550#line 2616 "parse.y"
10551 {
10552 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10553 rb_parser_printf(p, "NODE_SPECIAL");
10554 }
10555 else if (((*yyvaluep).node)) {
10556 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10557 }
10558}
10559#line 10560 "parse.c"
10560 break;
10561
10562 case YYSYMBOL_symbol_list: /* symbol_list */
10563#line 2616 "parse.y"
10564 {
10565 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10566 rb_parser_printf(p, "NODE_SPECIAL");
10567 }
10568 else if (((*yyvaluep).node)) {
10569 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10570 }
10571}
10572#line 10573 "parse.c"
10573 break;
10574
10575 case YYSYMBOL_words_tQWORDS_BEG_qword_list: /* words_tQWORDS_BEG_qword_list */
10576#line 2616 "parse.y"
10577 {
10578 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10579 rb_parser_printf(p, "NODE_SPECIAL");
10580 }
10581 else if (((*yyvaluep).node)) {
10582 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10583 }
10584}
10585#line 10586 "parse.c"
10586 break;
10587
10588 case YYSYMBOL_qwords: /* qwords */
10589#line 2616 "parse.y"
10590 {
10591 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10592 rb_parser_printf(p, "NODE_SPECIAL");
10593 }
10594 else if (((*yyvaluep).node)) {
10595 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10596 }
10597}
10598#line 10599 "parse.c"
10599 break;
10600
10601 case YYSYMBOL_words_tQSYMBOLS_BEG_qsym_list: /* words_tQSYMBOLS_BEG_qsym_list */
10602#line 2616 "parse.y"
10603 {
10604 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10605 rb_parser_printf(p, "NODE_SPECIAL");
10606 }
10607 else if (((*yyvaluep).node)) {
10608 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10609 }
10610}
10611#line 10612 "parse.c"
10612 break;
10613
10614 case YYSYMBOL_qsymbols: /* qsymbols */
10615#line 2616 "parse.y"
10616 {
10617 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10618 rb_parser_printf(p, "NODE_SPECIAL");
10619 }
10620 else if (((*yyvaluep).node)) {
10621 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10622 }
10623}
10624#line 10625 "parse.c"
10625 break;
10626
10627 case YYSYMBOL_qword_list: /* qword_list */
10628#line 2616 "parse.y"
10629 {
10630 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10631 rb_parser_printf(p, "NODE_SPECIAL");
10632 }
10633 else if (((*yyvaluep).node)) {
10634 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10635 }
10636}
10637#line 10638 "parse.c"
10638 break;
10639
10640 case YYSYMBOL_qsym_list: /* qsym_list */
10641#line 2616 "parse.y"
10642 {
10643 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10644 rb_parser_printf(p, "NODE_SPECIAL");
10645 }
10646 else if (((*yyvaluep).node)) {
10647 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10648 }
10649}
10650#line 10651 "parse.c"
10651 break;
10652
10653 case YYSYMBOL_string_contents: /* string_contents */
10654#line 2616 "parse.y"
10655 {
10656 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10657 rb_parser_printf(p, "NODE_SPECIAL");
10658 }
10659 else if (((*yyvaluep).node)) {
10660 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10661 }
10662}
10663#line 10664 "parse.c"
10664 break;
10665
10666 case YYSYMBOL_xstring_contents: /* xstring_contents */
10667#line 2616 "parse.y"
10668 {
10669 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10670 rb_parser_printf(p, "NODE_SPECIAL");
10671 }
10672 else if (((*yyvaluep).node)) {
10673 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10674 }
10675}
10676#line 10677 "parse.c"
10677 break;
10678
10679 case YYSYMBOL_regexp_contents: /* regexp_contents */
10680#line 2616 "parse.y"
10681 {
10682 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10683 rb_parser_printf(p, "NODE_SPECIAL");
10684 }
10685 else if (((*yyvaluep).node)) {
10686 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10687 }
10688}
10689#line 10690 "parse.c"
10690 break;
10691
10692 case YYSYMBOL_string_content: /* string_content */
10693#line 2616 "parse.y"
10694 {
10695 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10696 rb_parser_printf(p, "NODE_SPECIAL");
10697 }
10698 else if (((*yyvaluep).node)) {
10699 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10700 }
10701}
10702#line 10703 "parse.c"
10703 break;
10704
10705 case YYSYMBOL_string_dvar: /* string_dvar */
10706#line 2616 "parse.y"
10707 {
10708 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10709 rb_parser_printf(p, "NODE_SPECIAL");
10710 }
10711 else if (((*yyvaluep).node)) {
10712 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10713 }
10714}
10715#line 10716 "parse.c"
10716 break;
10717
10718 case YYSYMBOL_symbol: /* symbol */
10719#line 2616 "parse.y"
10720 {
10721 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10722 rb_parser_printf(p, "NODE_SPECIAL");
10723 }
10724 else if (((*yyvaluep).node)) {
10725 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10726 }
10727}
10728#line 10729 "parse.c"
10729 break;
10730
10731 case YYSYMBOL_ssym: /* ssym */
10732#line 2616 "parse.y"
10733 {
10734 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10735 rb_parser_printf(p, "NODE_SPECIAL");
10736 }
10737 else if (((*yyvaluep).node)) {
10738 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10739 }
10740}
10741#line 10742 "parse.c"
10742 break;
10743
10744 case YYSYMBOL_sym: /* sym */
10745#line 2625 "parse.y"
10746 {
10747 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10748}
10749#line 10750 "parse.c"
10750 break;
10751
10752 case YYSYMBOL_dsym: /* dsym */
10753#line 2616 "parse.y"
10754 {
10755 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10756 rb_parser_printf(p, "NODE_SPECIAL");
10757 }
10758 else if (((*yyvaluep).node)) {
10759 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10760 }
10761}
10762#line 10763 "parse.c"
10763 break;
10764
10765 case YYSYMBOL_numeric: /* numeric */
10766#line 2616 "parse.y"
10767 {
10768 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10769 rb_parser_printf(p, "NODE_SPECIAL");
10770 }
10771 else if (((*yyvaluep).node)) {
10772 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10773 }
10774}
10775#line 10776 "parse.c"
10776 break;
10777
10778 case YYSYMBOL_simple_numeric: /* simple_numeric */
10779#line 2616 "parse.y"
10780 {
10781 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10782 rb_parser_printf(p, "NODE_SPECIAL");
10783 }
10784 else if (((*yyvaluep).node)) {
10785 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10786 }
10787}
10788#line 10789 "parse.c"
10789 break;
10790
10791 case YYSYMBOL_nonlocal_var: /* nonlocal_var */
10792#line 2625 "parse.y"
10793 {
10794 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10795}
10796#line 10797 "parse.c"
10797 break;
10798
10799 case YYSYMBOL_user_variable: /* user_variable */
10800#line 2625 "parse.y"
10801 {
10802 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10803}
10804#line 10805 "parse.c"
10805 break;
10806
10807 case YYSYMBOL_keyword_variable: /* keyword_variable */
10808#line 2625 "parse.y"
10809 {
10810 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
10811}
10812#line 10813 "parse.c"
10813 break;
10814
10815 case YYSYMBOL_var_ref: /* var_ref */
10816#line 2616 "parse.y"
10817 {
10818 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10819 rb_parser_printf(p, "NODE_SPECIAL");
10820 }
10821 else if (((*yyvaluep).node)) {
10822 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10823 }
10824}
10825#line 10826 "parse.c"
10826 break;
10827
10828 case YYSYMBOL_var_lhs: /* var_lhs */
10829#line 2616 "parse.y"
10830 {
10831 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10832 rb_parser_printf(p, "NODE_SPECIAL");
10833 }
10834 else if (((*yyvaluep).node)) {
10835 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10836 }
10837}
10838#line 10839 "parse.c"
10839 break;
10840
10841 case YYSYMBOL_backref: /* backref */
10842#line 2616 "parse.y"
10843 {
10844 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10845 rb_parser_printf(p, "NODE_SPECIAL");
10846 }
10847 else if (((*yyvaluep).node)) {
10848 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10849 }
10850}
10851#line 10852 "parse.c"
10852 break;
10853
10854 case YYSYMBOL_superclass: /* superclass */
10855#line 2616 "parse.y"
10856 {
10857 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
10858 rb_parser_printf(p, "NODE_SPECIAL");
10859 }
10860 else if (((*yyvaluep).node)) {
10861 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
10862 }
10863}
10864#line 10865 "parse.c"
10865 break;
10866
10867 case YYSYMBOL_f_opt_paren_args: /* f_opt_paren_args */
10868#line 2616 "parse.y"
10869 {
10870 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10871 rb_parser_printf(p, "NODE_SPECIAL");
10872 }
10873 else if (((*yyvaluep).node_args)) {
10874 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10875 }
10876}
10877#line 10878 "parse.c"
10878 break;
10879
10880 case YYSYMBOL_f_paren_args: /* f_paren_args */
10881#line 2616 "parse.y"
10882 {
10883 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10884 rb_parser_printf(p, "NODE_SPECIAL");
10885 }
10886 else if (((*yyvaluep).node_args)) {
10887 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10888 }
10889}
10890#line 10891 "parse.c"
10891 break;
10892
10893 case YYSYMBOL_f_arglist: /* f_arglist */
10894#line 2616 "parse.y"
10895 {
10896 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10897 rb_parser_printf(p, "NODE_SPECIAL");
10898 }
10899 else if (((*yyvaluep).node_args)) {
10900 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10901 }
10902}
10903#line 10904 "parse.c"
10904 break;
10905
10906 case YYSYMBOL_f_kw_arg_value: /* f_kw_arg_value */
10907#line 2616 "parse.y"
10908 {
10909 if ((NODE *)((*yyvaluep).node_kw_arg) == (NODE *)-1) {
10910 rb_parser_printf(p, "NODE_SPECIAL");
10911 }
10912 else if (((*yyvaluep).node_kw_arg)) {
10913 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
10914 }
10915}
10916#line 10917 "parse.c"
10917 break;
10918
10919 case YYSYMBOL_f_kwarg_arg_value: /* f_kwarg_arg_value */
10920#line 2616 "parse.y"
10921 {
10922 if ((NODE *)((*yyvaluep).node_kw_arg) == (NODE *)-1) {
10923 rb_parser_printf(p, "NODE_SPECIAL");
10924 }
10925 else if (((*yyvaluep).node_kw_arg)) {
10926 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_kw_arg)))));
10927 }
10928}
10929#line 10930 "parse.c"
10930 break;
10931
10932 case YYSYMBOL_args_tail_basic_arg_value: /* args_tail_basic_arg_value */
10933#line 2616 "parse.y"
10934 {
10935 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10936 rb_parser_printf(p, "NODE_SPECIAL");
10937 }
10938 else if (((*yyvaluep).node_args)) {
10939 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10940 }
10941}
10942#line 10943 "parse.c"
10943 break;
10944
10945 case YYSYMBOL_args_tail: /* args_tail */
10946#line 2616 "parse.y"
10947 {
10948 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10949 rb_parser_printf(p, "NODE_SPECIAL");
10950 }
10951 else if (((*yyvaluep).node_args)) {
10952 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10953 }
10954}
10955#line 10956 "parse.c"
10956 break;
10957
10958 case YYSYMBOL_f_opt_arg_value: /* f_opt_arg_value */
10959#line 2616 "parse.y"
10960 {
10961 if ((NODE *)((*yyvaluep).node_opt_arg) == (NODE *)-1) {
10962 rb_parser_printf(p, "NODE_SPECIAL");
10963 }
10964 else if (((*yyvaluep).node_opt_arg)) {
10965 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
10966 }
10967}
10968#line 10969 "parse.c"
10969 break;
10970
10971 case YYSYMBOL_f_optarg_arg_value: /* f_optarg_arg_value */
10972#line 2616 "parse.y"
10973 {
10974 if ((NODE *)((*yyvaluep).node_opt_arg) == (NODE *)-1) {
10975 rb_parser_printf(p, "NODE_SPECIAL");
10976 }
10977 else if (((*yyvaluep).node_opt_arg)) {
10978 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_opt_arg)))));
10979 }
10980}
10981#line 10982 "parse.c"
10982 break;
10983
10984 case YYSYMBOL_opt_args_tail_args_tail: /* opt_args_tail_args_tail */
10985#line 2616 "parse.y"
10986 {
10987 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
10988 rb_parser_printf(p, "NODE_SPECIAL");
10989 }
10990 else if (((*yyvaluep).node_args)) {
10991 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
10992 }
10993}
10994#line 10995 "parse.c"
10995 break;
10996
10997 case YYSYMBOL_f_args: /* f_args */
10998#line 2616 "parse.y"
10999 {
11000 if ((NODE *)((*yyvaluep).node_args) == (NODE *)-1) {
11001 rb_parser_printf(p, "NODE_SPECIAL");
11002 }
11003 else if (((*yyvaluep).node_args)) {
11004 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args)))));
11005 }
11006}
11007#line 11008 "parse.c"
11008 break;
11009
11010 case YYSYMBOL_args_forward: /* args_forward */
11011#line 2625 "parse.y"
11012 {
11013 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11014}
11015#line 11016 "parse.c"
11016 break;
11017
11018 case YYSYMBOL_f_bad_arg: /* f_bad_arg */
11019#line 2625 "parse.y"
11020 {
11021 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11022}
11023#line 11024 "parse.c"
11024 break;
11025
11026 case YYSYMBOL_f_norm_arg: /* f_norm_arg */
11027#line 2625 "parse.y"
11028 {
11029 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11030}
11031#line 11032 "parse.c"
11032 break;
11033
11034 case YYSYMBOL_f_arg_asgn: /* f_arg_asgn */
11035#line 2625 "parse.y"
11036 {
11037 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11038}
11039#line 11040 "parse.c"
11040 break;
11041
11042 case YYSYMBOL_f_arg_item: /* f_arg_item */
11043#line 2616 "parse.y"
11044 {
11045 if ((NODE *)((*yyvaluep).node_args_aux) == (NODE *)-1) {
11046 rb_parser_printf(p, "NODE_SPECIAL");
11047 }
11048 else if (((*yyvaluep).node_args_aux)) {
11049 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args_aux)))));
11050 }
11051}
11052#line 11053 "parse.c"
11053 break;
11054
11055 case YYSYMBOL_f_arg: /* f_arg */
11056#line 2616 "parse.y"
11057 {
11058 if ((NODE *)((*yyvaluep).node_args_aux) == (NODE *)-1) {
11059 rb_parser_printf(p, "NODE_SPECIAL");
11060 }
11061 else if (((*yyvaluep).node_args_aux)) {
11062 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node_args_aux)))));
11063 }
11064}
11065#line 11066 "parse.c"
11066 break;
11067
11068 case YYSYMBOL_f_label: /* f_label */
11069#line 2625 "parse.y"
11070 {
11071 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11072}
11073#line 11074 "parse.c"
11074 break;
11075
11076 case YYSYMBOL_f_no_kwarg: /* f_no_kwarg */
11077#line 2625 "parse.y"
11078 {
11079 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11080}
11081#line 11082 "parse.c"
11082 break;
11083
11084 case YYSYMBOL_f_kwrest: /* f_kwrest */
11085#line 2625 "parse.y"
11086 {
11087 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11088}
11089#line 11090 "parse.c"
11090 break;
11091
11092 case YYSYMBOL_f_rest_arg: /* f_rest_arg */
11093#line 2625 "parse.y"
11094 {
11095 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11096}
11097#line 11098 "parse.c"
11098 break;
11099
11100 case YYSYMBOL_f_block_arg: /* f_block_arg */
11101#line 2625 "parse.y"
11102 {
11103 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11104}
11105#line 11106 "parse.c"
11106 break;
11107
11108 case YYSYMBOL_opt_f_block_arg: /* opt_f_block_arg */
11109#line 2625 "parse.y"
11110 {
11111 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11112}
11113#line 11114 "parse.c"
11114 break;
11115
11116 case YYSYMBOL_value_expr_singleton_expr: /* value_expr_singleton_expr */
11117#line 2616 "parse.y"
11118 {
11119 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11120 rb_parser_printf(p, "NODE_SPECIAL");
11121 }
11122 else if (((*yyvaluep).node)) {
11123 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11124 }
11125}
11126#line 11127 "parse.c"
11127 break;
11128
11129 case YYSYMBOL_singleton: /* singleton */
11130#line 2616 "parse.y"
11131 {
11132 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11133 rb_parser_printf(p, "NODE_SPECIAL");
11134 }
11135 else if (((*yyvaluep).node)) {
11136 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11137 }
11138}
11139#line 11140 "parse.c"
11140 break;
11141
11142 case YYSYMBOL_singleton_expr: /* singleton_expr */
11143#line 2616 "parse.y"
11144 {
11145 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11146 rb_parser_printf(p, "NODE_SPECIAL");
11147 }
11148 else if (((*yyvaluep).node)) {
11149 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11150 }
11151}
11152#line 11153 "parse.c"
11153 break;
11154
11155 case YYSYMBOL_assoc_list: /* assoc_list */
11156#line 2616 "parse.y"
11157 {
11158 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11159 rb_parser_printf(p, "NODE_SPECIAL");
11160 }
11161 else if (((*yyvaluep).node)) {
11162 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11163 }
11164}
11165#line 11166 "parse.c"
11166 break;
11167
11168 case YYSYMBOL_assocs: /* assocs */
11169#line 2616 "parse.y"
11170 {
11171 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11172 rb_parser_printf(p, "NODE_SPECIAL");
11173 }
11174 else if (((*yyvaluep).node)) {
11175 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11176 }
11177}
11178#line 11179 "parse.c"
11179 break;
11180
11181 case YYSYMBOL_assoc: /* assoc */
11182#line 2616 "parse.y"
11183 {
11184 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11185 rb_parser_printf(p, "NODE_SPECIAL");
11186 }
11187 else if (((*yyvaluep).node)) {
11188 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11189 }
11190}
11191#line 11192 "parse.c"
11192 break;
11193
11194 case YYSYMBOL_operation2: /* operation2 */
11195#line 2625 "parse.y"
11196 {
11197 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11198}
11199#line 11200 "parse.c"
11200 break;
11201
11202 case YYSYMBOL_operation3: /* operation3 */
11203#line 2625 "parse.y"
11204 {
11205 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11206}
11207#line 11208 "parse.c"
11208 break;
11209
11210 case YYSYMBOL_dot_or_colon: /* dot_or_colon */
11211#line 2625 "parse.y"
11212 {
11213 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11214}
11215#line 11216 "parse.c"
11216 break;
11217
11218 case YYSYMBOL_call_op: /* call_op */
11219#line 2625 "parse.y"
11220 {
11221 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11222}
11223#line 11224 "parse.c"
11224 break;
11225
11226 case YYSYMBOL_call_op2: /* call_op2 */
11227#line 2625 "parse.y"
11228 {
11229 rb_parser_printf(p, "%"PRIsVALUE, rb_id2str(((*yyvaluep).id)));
11230}
11231#line 11232 "parse.c"
11232 break;
11233
11234 case YYSYMBOL_none: /* none */
11235#line 2616 "parse.y"
11236 {
11237 if ((NODE *)((*yyvaluep).node) == (NODE *)-1) {
11238 rb_parser_printf(p, "NODE_SPECIAL");
11239 }
11240 else if (((*yyvaluep).node)) {
11241 rb_parser_printf(p, "%s", parser_node_name(nd_type(RNODE(((*yyvaluep).node)))));
11242 }
11243}
11244#line 11245 "parse.c"
11245 break;
11246
11247 default:
11248 break;
11249 }
11250 YY_IGNORE_MAYBE_UNINITIALIZED_END
11251}
11252
11253
11254/*---------------------------.
11255| Print this symbol on YYO. |
11256`---------------------------*/
11257
11258static void
11259yy_symbol_print (FILE *yyo,
11260 yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, struct parser_params *p)
11261{
11262 YYFPRINTF (yyo, "%s %s (",
11263 yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
11264
11265 YYLOCATION_PRINT (yyo, yylocationp, p);
11266 YYFPRINTF (yyo, ": ");
11267 yy_symbol_value_print (yyo, yykind, yyvaluep, yylocationp, p);
11268 YYFPRINTF (yyo, ")");
11269}
11270
11271/*------------------------------------------------------------------.
11272| yy_stack_print -- Print the state stack from its BOTTOM up to its |
11273| TOP (included). |
11274`------------------------------------------------------------------*/
11275
11276static void
11277yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop, struct parser_params *p)
11278{
11279 YYFPRINTF (stderr, "Stack now");
11280 for (; yybottom <= yytop; yybottom++)
11281 {
11282 int yybot = *yybottom;
11283 YYFPRINTF (stderr, " %d", yybot);
11284 }
11285 YYFPRINTF (stderr, "\n");
11286}
11287
11288# define YY_STACK_PRINT(Bottom, Top, p) \
11289do { \
11290 if (yydebug) \
11291 yy_stack_print ((Bottom), (Top), p); \
11292} while (0)
11293
11294
11295/*------------------------------------------------.
11296| Report that the YYRULE is going to be reduced. |
11297`------------------------------------------------*/
11298
11299static void
11300yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp,
11301 int yyrule, struct parser_params *p)
11302{
11303 int yylno = yyrline[yyrule];
11304 int yynrhs = yyr2[yyrule];
11305 int yyi;
11306 YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
11307 yyrule - 1, yylno);
11308 /* The symbols being reduced. */
11309 for (yyi = 0; yyi < yynrhs; yyi++)
11310 {
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");
11317 }
11318}
11319
11320# define YY_REDUCE_PRINT(Rule, p) \
11321do { \
11322 if (yydebug) \
11323 yy_reduce_print (yyssp, yyvsp, yylsp, Rule, p); \
11324} while (0)
11325
11326/* Nonzero means print parse trace. It is left uninitialized so that
11327 multiple parsers can coexist. */
11328#ifndef yydebug
11329int yydebug;
11330#endif
11331#else /* !YYDEBUG */
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)
11336#endif /* !YYDEBUG */
11337
11338
11339/* YYINITDEPTH -- initial size of the parser's stacks. */
11340#ifndef YYINITDEPTH
11341# define YYINITDEPTH 200
11342#endif
11343
11344/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
11345 if the built-in stack extension method is used).
11346
11347 Do not make this value too large; the results are undefined if
11348 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
11349 evaluated with infinite-precision integer arithmetic. */
11350
11351#ifndef YYMAXDEPTH
11352# define YYMAXDEPTH 10000
11353#endif
11354
11355
11356/* Context of a parse error. */
11357typedef struct
11358{
11359 yy_state_t *yyssp;
11360 yysymbol_kind_t yytoken;
11361 YYLTYPE *yylloc;
11362} yypcontext_t;
11363
11364/* Put in YYARG at most YYARGN of the expected tokens given the
11365 current YYCTX, and return the number of tokens stored in YYARG. If
11366 YYARG is null, return the number of expected tokens (guaranteed to
11367 be less than YYNTOKENS). Return YYENOMEM on memory exhaustion.
11368 Return 0 if there are more than YYARGN expected tokens, yet fill
11369 YYARG up to YYARGN. */
11370static int
11371yypcontext_expected_tokens (const yypcontext_t *yyctx,
11372 yysymbol_kind_t yyarg[], int yyargn)
11373{
11374 /* Actual size of YYARG. */
11375 int yycount = 0;
11376 int yyn = yypact[+*yyctx->yyssp];
11377 if (!yypact_value_is_default (yyn))
11378 {
11379 /* Start YYX at -YYN if negative to avoid negative indexes in
11380 YYCHECK. In other words, skip the first -YYN actions for
11381 this state because they are default actions. */
11382 int yyxbegin = yyn < 0 ? -yyn : 0;
11383 /* Stay within bounds of both yycheck and yytname. */
11384 int yychecklim = YYLAST - yyn + 1;
11385 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
11386 int yyx;
11387 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
11388 if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror
11389 && !yytable_value_is_error (yytable[yyx + yyn]))
11390 {
11391 if (!yyarg)
11392 ++yycount;
11393 else if (yycount == yyargn)
11394 return 0;
11395 else
11396 yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx);
11397 }
11398 }
11399 if (yyarg && yycount == 0 && 0 < yyargn)
11400 yyarg[0] = YYSYMBOL_YYEMPTY;
11401 return yycount;
11402}
11403
11404
11405
11406
11407#ifndef yystrlen
11408# if defined __GLIBC__ && defined _STRING_H
11409# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
11410# else
11411/* Return the length of YYSTR. */
11412static YYPTRDIFF_T
11413yystrlen (const char *yystr)
11414{
11415 YYPTRDIFF_T yylen;
11416 for (yylen = 0; yystr[yylen]; yylen++)
11417 continue;
11418 return yylen;
11419}
11420# endif
11421#endif
11422
11423#ifndef yystpcpy
11424# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
11425# define yystpcpy stpcpy
11426# else
11427/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
11428 YYDEST. */
11429static char *
11430yystpcpy (char *yydest, const char *yysrc)
11431{
11432 char *yyd = yydest;
11433 const char *yys = yysrc;
11434
11435 while ((*yyd++ = *yys++) != '\0')
11436 continue;
11437
11438 return yyd - 1;
11439}
11440# endif
11441#endif
11442
11443#ifndef yytnamerr
11444/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
11445 quotes and backslashes, so that it's suitable for yyerror. The
11446 heuristic is that double-quoting is unnecessary unless the string
11447 contains an apostrophe, a comma, or backslash (other than
11448 backslash-backslash). YYSTR is taken from yytname. If YYRES is
11449 null, do not copy; instead, return the length of what the result
11450 would have been. */
11451static YYPTRDIFF_T
11452yytnamerr (char *yyres, const char *yystr)
11453{
11454 if (*yystr == '"')
11455 {
11456 YYPTRDIFF_T yyn = 0;
11457 char const *yyp = yystr;
11458 for (;;)
11459 switch (*++yyp)
11460 {
11461 case '\'':
11462 case ',':
11463 goto do_not_strip_quotes;
11464
11465 case '\\':
11466 if (*++yyp != '\\')
11467 goto do_not_strip_quotes;
11468 else
11469 goto append;
11470
11471 append:
11472 default:
11473 if (yyres)
11474 yyres[yyn] = *yyp;
11475 yyn++;
11476 break;
11477
11478 case '"':
11479 if (yyres)
11480 yyres[yyn] = '\0';
11481 return yyn;
11482 }
11483 do_not_strip_quotes: ;
11484 }
11485
11486 if (yyres)
11487 return yystpcpy (yyres, yystr) - yyres;
11488 else
11489 return yystrlen (yystr);
11490}
11491#endif
11492
11493
11494static int
11495yy_syntax_error_arguments (const yypcontext_t *yyctx,
11496 yysymbol_kind_t yyarg[], int yyargn)
11497{
11498 /* Actual size of YYARG. */
11499 int yycount = 0;
11500 /* There are many possibilities here to consider:
11501 - If this state is a consistent state with a default action, then
11502 the only way this function was invoked is if the default action
11503 is an error action. In that case, don't check for expected
11504 tokens because there are none.
11505 - The only way there can be no lookahead present (in yychar) is if
11506 this state is a consistent state with a default action. Thus,
11507 detecting the absence of a lookahead is sufficient to determine
11508 that there is no unexpected or expected token to report. In that
11509 case, just report a simple "syntax error".
11510 - Don't assume there isn't a lookahead just because this state is a
11511 consistent state with a default action. There might have been a
11512 previous inconsistent state, consistent state with a non-default
11513 action, or user semantic action that manipulated yychar.
11514 - Of course, the expected token list depends on states to have
11515 correct lookahead information, and it depends on the parser not
11516 to perform extra reductions after fetching a lookahead from the
11517 scanner and before detecting a syntax error. Thus, state merging
11518 (from LALR or IELR) and default reductions corrupt the expected
11519 token list. However, the list is correct for canonical LR with
11520 one exception: it will still contain any token that will not be
11521 accepted due to an error action in a later state.
11522 */
11523 if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
11524 {
11525 int yyn;
11526 if (yyarg)
11527 yyarg[yycount] = yyctx->yytoken;
11528 ++yycount;
11529 yyn = yypcontext_expected_tokens (yyctx,
11530 yyarg ? yyarg + 1 : yyarg, yyargn - 1);
11531 if (yyn == YYENOMEM)
11532 return YYENOMEM;
11533 else
11534 yycount += yyn;
11535 }
11536 return yycount;
11537}
11538
11539/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
11540 about the unexpected token YYTOKEN for the state stack whose top is
11541 YYSSP.
11542
11543 Return 0 if *YYMSG was successfully written. Return -1 if *YYMSG is
11544 not large enough to hold the message. In that case, also set
11545 *YYMSG_ALLOC to the required number of bytes. Return YYENOMEM if the
11546 required number of bytes is too large to store. */
11547static int
11548yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
11549 const yypcontext_t *yyctx, struct parser_params *p)
11550{
11551 enum { YYARGS_MAX = 5 };
11552 /* Internationalized format string. */
11553 const char *yyformat = YY_NULLPTR;
11554 /* Arguments of yyformat: reported tokens (one for the "unexpected",
11555 one per "expected"). */
11556 yysymbol_kind_t yyarg[YYARGS_MAX];
11557 /* Cumulated lengths of YYARG. */
11558 YYPTRDIFF_T yysize = 0;
11559
11560 /* Actual size of YYARG. */
11561 int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
11562 if (yycount == YYENOMEM)
11563 return YYENOMEM;
11564
11565 switch (yycount)
11566 {
11567#define YYCASE_(N, S) \
11568 case N: \
11569 yyformat = S; \
11570 break
11571 default: /* Avoid compiler warnings. */
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"));
11578#undef YYCASE_
11579 }
11580
11581 /* Compute error message size. Don't count the "%s"s, but reserve
11582 room for the terminator. */
11583 yysize = yystrlen (yyformat) - 2 * yycount + 1;
11584 {
11585 int yyi;
11586 for (yyi = 0; yyi < yycount; ++yyi)
11587 {
11588 YYPTRDIFF_T yysize1
11589 = yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]);
11590 if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
11591 yysize = yysize1;
11592 else
11593 return YYENOMEM;
11594 }
11595 }
11596
11597 if (*yymsg_alloc < yysize)
11598 {
11599 *yymsg_alloc = 2 * yysize;
11600 if (! (yysize <= *yymsg_alloc
11601 && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
11602 *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
11603 return -1;
11604 }
11605
11606 /* Avoid sprintf, as that infringes on the user's name space.
11607 Don't have undefined behavior even if the translation
11608 produced a string with the wrong number of "%s"s. */
11609 {
11610 char *yyp = *yymsg;
11611 int yyi = 0;
11612 while ((*yyp = *yyformat) != '\0')
11613 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
11614 {
11615 yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]);
11616 yyformat += 2;
11617 }
11618 else
11619 {
11620 ++yyp;
11621 ++yyformat;
11622 }
11623 }
11624 return 0;
11625}
11626
11627
11628/*-----------------------------------------------.
11629| Release the memory associated to this symbol. |
11630`-----------------------------------------------*/
11631
11632static void
11633yydestruct (const char *yymsg,
11634 yysymbol_kind_t yykind, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, struct parser_params *p)
11635{
11636 YY_USE (yyvaluep);
11637 YY_USE (yylocationp);
11638 YY_USE (p);
11639 if (!yymsg)
11640 yymsg = "Deleting";
11641 YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp, p);
11642
11643 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
11644 switch (yykind)
11645 {
11646 case YYSYMBOL_256_16: /* @16 */
11647#line 2653 "parse.y"
11648 {
11649 if (CASE_LABELS_ENABLED_P(((*yyvaluep).labels))) st_free_table(((*yyvaluep).labels));
11650}
11651#line 11652 "parse.c"
11652 break;
11653
11654 case YYSYMBOL_257_17: /* @17 */
11655#line 2653 "parse.y"
11656 {
11657 if (CASE_LABELS_ENABLED_P(((*yyvaluep).labels))) st_free_table(((*yyvaluep).labels));
11658}
11659#line 11660 "parse.c"
11660 break;
11661
11662 default:
11663 break;
11664 }
11665 YY_IGNORE_MAYBE_UNINITIALIZED_END
11666}
11667
11668
11669
11670
11671
11672
11673/*----------.
11674| yyparse. |
11675`----------*/
11676
11677int
11678yyparse (struct parser_params *p)
11679{
11680/* Lookahead token kind. */
11681int yychar;
11682
11683
11684/* The semantic value of the lookahead symbol. */
11685/* Default value used for initialization, for pacifying older GCCs
11686 or non-GCC compilers. */
11687#ifdef __cplusplus
11688static const YYSTYPE yyval_default = {};
11689(void) yyval_default;
11690#else
11691YY_INITIAL_VALUE (static const YYSTYPE yyval_default;)
11692#endif
11693YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
11694
11695/* Location data for the lookahead symbol. */
11696static const YYLTYPE yyloc_default
11697# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
11698 = { 1, 1, 1, 1 }
11699# endif
11700;
11701YYLTYPE yylloc = yyloc_default;
11702
11703 /* Number of syntax errors so far. */
11704 int yynerrs = 0;
11705 YY_USE (yynerrs); /* Silence compiler warning. */
11706
11707 yy_state_fast_t yystate = 0;
11708 /* Number of tokens to shift before error messages enabled. */
11709 int yyerrstatus = 0;
11710
11711 /* Refer to the stacks through separate pointers, to allow yyoverflow
11712 to reallocate them elsewhere. */
11713
11714 /* Their size. */
11715 YYPTRDIFF_T yystacksize = YYINITDEPTH;
11716
11717 /* The state stack: array, bottom, top. */
11718 yy_state_t yyssa[YYINITDEPTH];
11719 yy_state_t *yyss = yyssa;
11720 yy_state_t *yyssp = yyss;
11721
11722 /* The semantic value stack: array, bottom, top. */
11723 YYSTYPE yyvsa[YYINITDEPTH];
11724 YYSTYPE *yyvs = yyvsa;
11725 YYSTYPE *yyvsp = yyvs;
11726
11727 /* The location stack: array, bottom, top. */
11728 YYLTYPE yylsa[YYINITDEPTH];
11729 YYLTYPE *yyls = yylsa;
11730 YYLTYPE *yylsp = yyls;
11731
11732 int yyn;
11733 /* The return value of yyparse. */
11734 int yyresult;
11735 /* Lookahead symbol kind. */
11736 yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
11737 /* The variables used to return semantic value and location from the
11738 action routines. */
11739 YYSTYPE yyval;
11740 YYLTYPE yyloc;
11741
11742 /* The locations where the error started and ended. */
11743 YYLTYPE yyerror_range[3];
11744
11745 /* Buffer for error messages, and its allocated size. */
11746 char yymsgbuf[128];
11747 char *yymsg = yymsgbuf;
11748 YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;
11749
11750#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
11751
11752 /* The number of symbols on the RHS of the reduced rule.
11753 Keep to zero when no symbol should be popped. */
11754 int yylen = 0;
11755
11756 YYDPRINTF ((stderr, "Starting parse\n"));
11757
11758 yychar = YYEMPTY; /* Cause a token to be read. */
11759
11760
11761 /* User initialization code. */
11762#line 2660 "parse.y"
11763 {
11764 RUBY_SET_YYLLOC_OF_NONE(yylloc);
11765}
11766
11767#line 11768 "parse.c"
11768
11769 yylsp[0] = yylloc;
11770 goto yysetstate;
11771
11772
11773/*------------------------------------------------------------.
11774| yynewstate -- push a new state, which is found in yystate. |
11775`------------------------------------------------------------*/
11776yynewstate:
11777 /* In all cases, when you get here, the value and location stacks
11778 have just been pushed. So pushing a state here evens the stacks. */
11779 yyssp++;
11780
11781
11782/*--------------------------------------------------------------------.
11783| yysetstate -- set current state (the top of the stack) to yystate. |
11784`--------------------------------------------------------------------*/
11785yysetstate:
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);
11792
11793 if (yyss + yystacksize - 1 <= yyssp)
11794#if !defined yyoverflow && !defined YYSTACK_RELOCATE
11795 YYNOMEM;
11796#else
11797 {
11798 /* Get the current used size of the three stacks, in elements. */
11799 YYPTRDIFF_T yysize = yyssp - yyss + 1;
11800
11801# if defined yyoverflow
11802 {
11803 /* Give user a chance to reallocate the stack. Use copies of
11804 these so that the &'s don't force the real ones into
11805 memory. */
11806 yy_state_t *yyss1 = yyss;
11807 YYSTYPE *yyvs1 = yyvs;
11808 YYLTYPE *yyls1 = yyls;
11809
11810 /* Each stack pointer address is followed by the size of the
11811 data in use in that stack, in bytes. This used to be a
11812 conditional around just the two extra args, but that might
11813 be undefined if yyoverflow is a macro. */
11814 yyoverflow (YY_("memory exhausted"),
11815 &yyss1, yysize * YYSIZEOF (*yyssp),
11816 &yyvs1, yysize * YYSIZEOF (*yyvsp),
11817 &yyls1, yysize * YYSIZEOF (*yylsp),
11818 &yystacksize);
11819 yyss = yyss1;
11820 yyvs = yyvs1;
11821 yyls = yyls1;
11822 }
11823# else /* defined YYSTACK_RELOCATE */
11824 /* Extend the stack our own way. */
11825 if (YYMAXDEPTH <= yystacksize)
11826 YYNOMEM;
11827 yystacksize *= 2;
11828 if (YYMAXDEPTH < yystacksize)
11829 yystacksize = YYMAXDEPTH;
11830
11831 {
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))));
11836 if (! yyptr)
11837 YYNOMEM;
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);
11844 }
11845# endif
11846
11847 yyssp = yyss + yysize - 1;
11848 yyvsp = yyvs + yysize - 1;
11849 yylsp = yyls + yysize - 1;
11850
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
11855
11856 if (yyss + yystacksize - 1 <= yyssp)
11857 YYABORT;
11858 }
11859#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
11860
11861
11862 if (yystate == YYFINAL)
11863 YYACCEPT;
11864
11865 goto yybackup;
11866
11867
11868/*-----------.
11869| yybackup. |
11870`-----------*/
11871yybackup:
11872 /* Do appropriate processing given the current state. Read a
11873 lookahead token if we need one and don't already have one. */
11874
11875 /* First try to decide what to do without reference to lookahead token. */
11876 yyn = yypact[yystate];
11877 if (yypact_value_is_default (yyn))
11878 goto yydefault;
11879
11880 /* Not known => get a lookahead token if don't already have one. */
11881
11882 /* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
11883 if (yychar == YYEMPTY)
11884 {
11885 YYDPRINTF ((stderr, "Reading a token\n"));
11886 yychar = yylex (&yylval, &yylloc, p);
11887 }
11888
11889 if (yychar <= END_OF_INPUT)
11890 {
11891 yychar = END_OF_INPUT;
11892 yytoken = YYSYMBOL_YYEOF;
11893 YYDPRINTF ((stderr, "Now at end of input.\n"));
11894 }
11895 else if (yychar == YYerror)
11896 {
11897 /* The scanner already issued an error message, process directly
11898 to error recovery. But do not keep the error token as
11899 lookahead, it is too special and may lead us to an endless
11900 loop in error recovery. */
11901 yychar = YYUNDEF;
11902 yytoken = YYSYMBOL_YYerror;
11903 yyerror_range[1] = yylloc;
11904 goto yyerrlab1;
11905 }
11906 else
11907 {
11908 yytoken = YYTRANSLATE (yychar);
11909 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc, p);
11910 }
11911
11912 /* If the proper action on seeing token YYTOKEN is to reduce or to
11913 detect an error, take that action. */
11914 yyn += yytoken;
11915 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
11916 goto yydefault;
11917 yyn = yytable[yyn];
11918 if (yyn <= 0)
11919 {
11920 if (yytable_value_is_error (yyn))
11921 goto yyerrlab;
11922 yyn = -yyn;
11923 goto yyreduce;
11924 }
11925
11926 /* Count tokens shifted since error; after three, turn off error
11927 status. */
11928 if (yyerrstatus)
11929 yyerrstatus--;
11930
11931 /* Shift the lookahead token. */
11932 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc, p);
11933 yystate = yyn;
11934 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
11935 *++yyvsp = yylval;
11936 YY_IGNORE_MAYBE_UNINITIALIZED_END
11937 *++yylsp = yylloc;
11938 /* %after-shift code. */
11939#line 2663 "parse.y"
11940 {after_shift(p);}
11941#line 11942 "parse.c"
11942
11943
11944 /* Discard the shifted token. */
11945 yychar = YYEMPTY;
11946 goto yynewstate;
11947
11948
11949/*-----------------------------------------------------------.
11950| yydefault -- do the default action for the current state. |
11951`-----------------------------------------------------------*/
11952yydefault:
11953 yyn = yydefact[yystate];
11954 if (yyn == 0)
11955 goto yyerrlab;
11956 goto yyreduce;
11957
11958
11959/*-----------------------------.
11960| yyreduce -- do a reduction. |
11961`-----------------------------*/
11962yyreduce:
11963 /* yyn is the number of a rule to reduce with. */
11964 yylen = yyr2[yyn];
11965
11966 /* If YYLEN is nonzero, implement the default value of the action:
11967 '$$ = $1'.
11968
11969 Otherwise, the following line sets YYVAL to garbage.
11970 This behavior is undocumented and Bison
11971 users should not rely upon it. Assigning to YYVAL
11972 unconditionally makes the parser a bit smaller, and it avoids a
11973 GCC warning that YYVAL may be used uninitialized. */
11974 yyval = yyvsp[1-yylen];
11975 /* %before-reduce function. */
11976#line 2664 "parse.y"
11977 {before_reduce(yylen, p);}
11978#line 11979 "parse.c"
11979
11980
11981 /* Default location. */
11982 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
11983 yyerror_range[1] = yyloc;
11984 YY_REDUCE_PRINT (yyn, p);
11985 switch (yyn)
11986 {
11987 case 2: /* $@1: %empty */
11988#line 3117 "parse.y"
11989 {
11990 SET_LEX_STATE(EXPR_BEG);
11991 local_push(p, ifndef_ripper(1)+0);
11992 /* jumps are possible in the top-level loop. */
11993 if (!ifndef_ripper(p->do_loop) + 0) init_block_exit(p);
11994 }
11995#line 11996 "parse.c"
11996 break;
11997
11998 case 5: /* compstmt_top_stmts: top_stmts option_terms */
11999#line 2973 "parse.y"
12000 {
12001 void_stmts(p, (yyval.node) = (yyvsp[-1].node));
12002 }
12003#line 12004 "parse.c"
12004 break;
12005
12006 case 6: /* program: $@1 compstmt_top_stmts */
12007#line 3124 "parse.y"
12008 {
12009 if ((yyvsp[0].node) && !compile_for_eval) {
12010 NODE *node = (yyvsp[0].node);
12011 /* last expression should not be void */
12012 if (nd_type_p(node, NODE_BLOCK)) {
12013 while (RNODE_BLOCK(node)->nd_next) {
12014 node = RNODE_BLOCK(node)->nd_next;
12015 }
12016 node = RNODE_BLOCK(node)->nd_head;
12017 }
12018 node = remove_begin(node);
12019 void_expr(p, node);
12020 }
12021 p->eval_tree = NEW_SCOPE(0, block_append(p, p->eval_tree, (yyvsp[0].node)), &(yyloc));
12022 /*% ripper[final]: program!($:2) %*/
12023 local_pop(p);
12024 }
12025#line 12026 "parse.c"
12026 break;
12027
12028 case 7: /* top_stmts: none */
12029#line 3144 "parse.y"
12030 {
12031 (yyval.node) = NEW_BEGIN(0, &(yyloc));
12032 /*% ripper: stmts_add!(stmts_new!, void_stmt!) %*/
12033 }
12034#line 12035 "parse.c"
12035 break;
12036
12037 case 8: /* top_stmts: top_stmt */
12038#line 3149 "parse.y"
12039 {
12040 (yyval.node) = newline_node((yyvsp[0].node));
12041 /*% ripper: stmts_add!(stmts_new!, $:1) %*/
12042 }
12043#line 12044 "parse.c"
12044 break;
12045
12046 case 9: /* top_stmts: top_stmts terms top_stmt */
12047#line 3154 "parse.y"
12048 {
12049 (yyval.node) = block_append(p, (yyvsp[-2].node), newline_node((yyvsp[0].node)));
12050 /*% ripper: stmts_add!($:1, $:3) %*/
12051 }
12052#line 12053 "parse.c"
12053 break;
12054
12055 case 10: /* top_stmt: stmt */
12056#line 3161 "parse.y"
12057 {
12058 clear_block_exit(p, true);
12059 (yyval.node) = (yyvsp[0].node);
12060 }
12061#line 12062 "parse.c"
12062 break;
12063
12064 case 11: /* top_stmt: "'BEGIN'" begin_block */
12065#line 3166 "parse.y"
12066 {
12067 (yyval.node) = (yyvsp[0].node);
12068 /*% ripper: $:2 %*/
12069 }
12070#line 12071 "parse.c"
12071 break;
12072
12073 case 12: /* block_open: '{' */
12074#line 3172 "parse.y"
12075 {(yyval.node_exits) = init_block_exit(p);}
12076#line 12077 "parse.c"
12077 break;
12078
12079 case 13: /* begin_block: block_open compstmt_top_stmts '}' */
12080#line 3175 "parse.y"
12081 {
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));
12086 /*% ripper: BEGIN!($:2) %*/
12087 }
12088#line 12089 "parse.c"
12089 break;
12090
12091 case 14: /* compstmt_stmts: stmts option_terms */
12092#line 2973 "parse.y"
12093 {
12094 void_stmts(p, (yyval.node) = (yyvsp[-1].node));
12095 }
12096#line 12097 "parse.c"
12097 break;
12098
12099 case 15: /* $@2: %empty */
12100#line 3188 "parse.y"
12101 {
12102 if (!(yyvsp[-1].node)) yyerror1(&(yylsp[0]), "else without rescue is useless");
12103 next_rescue_context(&p->ctxt, &(yyvsp[-2].ctxt), after_else);
12104 }
12105#line 12106 "parse.c"
12106 break;
12107
12108 case 16: /* $@3: %empty */
12109#line 3193 "parse.y"
12110 {
12111 next_rescue_context(&p->ctxt, &(yyvsp[-4].ctxt), after_ensure);
12112 }
12113#line 12114 "parse.c"
12114 break;
12115
12116 case 17: /* bodystmt: compstmt_stmts lex_ctxt opt_rescue k_else $@2 compstmt_stmts $@3 opt_ensure */
12117#line 3197 "parse.y"
12118 {
12119 (yyval.node) = new_bodystmt(p, (yyvsp[-7].node), (yyvsp[-5].node), (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
12120 /*% ripper: bodystmt!($:body, $:opt_rescue, $:elsebody, $:opt_ensure) %*/
12121 }
12122#line 12123 "parse.c"
12123 break;
12124
12125 case 18: /* $@4: %empty */
12126#line 3204 "parse.y"
12127 {
12128 next_rescue_context(&p->ctxt, &(yyvsp[-1].ctxt), after_ensure);
12129 }
12130#line 12131 "parse.c"
12131 break;
12132
12133 case 19: /* bodystmt: compstmt_stmts lex_ctxt opt_rescue $@4 opt_ensure */
12134#line 3208 "parse.y"
12135 {
12136 (yyval.node) = new_bodystmt(p, (yyvsp[-4].node), (yyvsp[-2].node), 0, (yyvsp[0].node), &(yyloc));
12137 /*% ripper: bodystmt!($:body, $:opt_rescue, Qnil, $:opt_ensure) %*/
12138 }
12139#line 12140 "parse.c"
12140 break;
12141
12142 case 20: /* stmts: none */
12143#line 3215 "parse.y"
12144 {
12145 (yyval.node) = NEW_BEGIN(0, &(yyloc));
12146 /*% ripper: stmts_add!(stmts_new!, void_stmt!) %*/
12147 }
12148#line 12149 "parse.c"
12149 break;
12150
12151 case 21: /* stmts: stmt_or_begin */
12152#line 3220 "parse.y"
12153 {
12154 (yyval.node) = newline_node((yyvsp[0].node));
12155 /*% ripper: stmts_add!(stmts_new!, $:1) %*/
12156 }
12157#line 12158 "parse.c"
12158 break;
12159
12160 case 22: /* stmts: stmts terms stmt_or_begin */
12161#line 3225 "parse.y"
12162 {
12163 (yyval.node) = block_append(p, (yyvsp[-2].node), newline_node((yyvsp[0].node)));
12164 /*% ripper: stmts_add!($:1, $:3) %*/
12165 }
12166#line 12167 "parse.c"
12167 break;
12168
12169 case 24: /* $@5: %empty */
12170#line 3233 "parse.y"
12171 {
12172 yyerror1(&(yylsp[0]), "BEGIN is permitted only at toplevel");
12173 }
12174#line 12175 "parse.c"
12175 break;
12176
12177 case 25: /* stmt_or_begin: "'BEGIN'" $@5 begin_block */
12178#line 3237 "parse.y"
12179 {
12180 (yyval.node) = (yyvsp[0].node);
12181 }
12182#line 12183 "parse.c"
12183 break;
12184
12185 case 26: /* allow_exits: %empty */
12186#line 3242 "parse.y"
12187 {(yyval.node_exits) = allow_block_exit(p);}
12188#line 12189 "parse.c"
12189 break;
12190
12191 case 27: /* k_END: "'END'" lex_ctxt */
12192#line 3245 "parse.y"
12193 {
12194 (yyval.ctxt) = (yyvsp[0].ctxt);
12195 p->ctxt.in_rescue = before_rescue;
12196 /*% ripper: $:2 %*/
12197 }
12198#line 12199 "parse.c"
12199 break;
12200
12201 case 28: /* $@6: %empty */
12202#line 3251 "parse.y"
12203 {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);}
12204#line 12205 "parse.c"
12205 break;
12206
12207 case 29: /* stmt: "'alias'" fitem $@6 fitem */
12208#line 3252 "parse.y"
12209 {
12210 (yyval.node) = NEW_ALIAS((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-3]));
12211 /*% ripper: alias!($:2, $:4) %*/
12212 }
12213#line 12214 "parse.c"
12214 break;
12215
12216 case 30: /* stmt: "'alias'" "global variable" "global variable" */
12217#line 3257 "parse.y"
12218 {
12219 (yyval.node) = NEW_VALIAS((yyvsp[-1].id), (yyvsp[0].id), &(yyloc), &(yylsp[-2]));
12220 /*% ripper: var_alias!($:2, $:3) %*/
12221 }
12222#line 12223 "parse.c"
12223 break;
12224
12225 case 31: /* stmt: "'alias'" "global variable" "back reference" */
12226#line 3262 "parse.y"
12227 {
12228 char buf[2];
12229 buf[0] = '$';
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]));
12232 /*% ripper: var_alias!($:2, $:3) %*/
12233 }
12234#line 12235 "parse.c"
12235 break;
12236
12237 case 32: /* stmt: "'alias'" "global variable" "numbered reference" */
12238#line 3270 "parse.y"
12239 {
12240 static const char mesg[] = "can't make alias for the number variables";
12241 /*%%%*/
12242 yyerror1(&(yylsp[0]), mesg);
12243 /*% %*/
12244 (yyval.node) = NEW_ERROR(&(yyloc));
12245 /*% ripper[error]: alias_error!(ERR_MESG(), $:3) %*/
12246 }
12247#line 12248 "parse.c"
12248 break;
12249
12250 case 33: /* stmt: "'undef'" undef_list */
12251#line 3279 "parse.y"
12252 {
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);
12256 /*% ripper: undef!($:2) %*/
12257 }
12258#line 12259 "parse.c"
12259 break;
12260
12261 case 34: /* stmt: stmt "'if' modifier" expr_value */
12262#line 3286 "parse.y"
12263 {
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));
12266 /*% ripper: if_mod!($:3, $:1) %*/
12267 }
12268#line 12269 "parse.c"
12269 break;
12270
12271 case 35: /* stmt: stmt "'unless' modifier" expr_value */
12272#line 3292 "parse.y"
12273 {
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));
12276 /*% ripper: unless_mod!($:3, $:1) %*/
12277 }
12278#line 12279 "parse.c"
12279 break;
12280
12281 case 36: /* stmt: stmt "'while' modifier" expr_value */
12282#line 3298 "parse.y"
12283 {
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);
12287 }
12288 else {
12289 (yyval.node) = NEW_WHILE(cond(p, (yyvsp[0].node), &(yylsp[0])), (yyvsp[-2].node), 1, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12290 }
12291 /*% ripper: while_mod!($:3, $:1) %*/
12292 }
12293#line 12294 "parse.c"
12294 break;
12295
12296 case 37: /* stmt: stmt "'until' modifier" expr_value */
12297#line 3309 "parse.y"
12298 {
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);
12302 }
12303 else {
12304 (yyval.node) = NEW_UNTIL(cond(p, (yyvsp[0].node), &(yylsp[0])), (yyvsp[-2].node), 1, &(yyloc), &(yylsp[-1]), &NULL_LOC);
12305 }
12306 /*% ripper: until_mod!($:3, $:1) %*/
12307 }
12308#line 12309 "parse.c"
12309 break;
12310
12311 case 38: /* stmt: stmt "'rescue' modifier" after_rescue stmt */
12312#line 3320 "parse.y"
12313 {
12314 p->ctxt.in_rescue = (yyvsp[-1].ctxt).in_rescue;
12315 NODE *resq;
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));
12319 /*% ripper: rescue_mod!($:1, $:4) %*/
12320 }
12321#line 12322 "parse.c"
12322 break;
12323
12324 case 39: /* stmt: k_END allow_exits '{' compstmt_stmts '}' */
12325#line 3329 "parse.y"
12326 {
12327 if (p->ctxt.in_def) {
12328 rb_warn0("END in method; use at_exit");
12329 }
12330 restore_block_exit(p, (yyvsp[-3].node_exits));
12331 p->ctxt = (yyvsp[-4].ctxt);
12332 {
12333 NODE *scope = NEW_SCOPE2(0 /* tbl */, 0 /* args */, (yyvsp[-1].node) /* body */, &(yyloc));
12334 (yyval.node) = NEW_POSTEXE(scope, &(yyloc), &(yylsp[-4]), &(yylsp[-2]), &(yylsp[0]));
12335 }
12336 /*% ripper: END!($:compstmt) %*/
12337 }
12338#line 12339 "parse.c"
12339 break;
12340
12341 case 41: /* stmt: mlhs '=' lex_ctxt command_call_value */
12342#line 3343 "parse.y"
12343 {
12344 (yyval.node) = node_assign(p, (NODE *)(yyvsp[-3].node_masgn), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12345 /*% ripper: massign!($:1, $:4) %*/
12346 }
12347#line 12348 "parse.c"
12348 break;
12349
12350 case 42: /* asgn_lhs_mrhs: lhs '=' lex_ctxt mrhs */
12351#line 2918 "parse.y"
12352 {
12353 (yyval.node) = node_assign(p, (NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12354 /*% ripper: assign!($:1, $:4) %*/
12355 }
12356#line 12357 "parse.c"
12357 break;
12358
12359 case 44: /* stmt: mlhs '=' lex_ctxt mrhs_arg "'rescue' modifier" after_rescue stmt */
12360#line 3350 "parse.y"
12361 {
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));
12368 /*% ripper: massign!($:1, rescue_mod!($:4, $:7)) %*/
12369 }
12370#line 12371 "parse.c"
12371 break;
12372
12373 case 45: /* stmt: mlhs '=' lex_ctxt mrhs_arg */
12374#line 3360 "parse.y"
12375 {
12376 (yyval.node) = node_assign(p, (NODE *)(yyvsp[-3].node_masgn), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12377 /*% ripper: massign!($:1, $:4) %*/
12378 }
12379#line 12380 "parse.c"
12380 break;
12381
12382 case 47: /* stmt: error */
12383#line 3366 "parse.y"
12384 {
12385 (void)yynerrs;
12386 (yyval.node) = NEW_ERROR(&(yyloc));
12387 }
12388#line 12389 "parse.c"
12389 break;
12390
12391 case 48: /* asgn_lhs_command_rhs: lhs '=' lex_ctxt command_rhs */
12392#line 2918 "parse.y"
12393 {
12394 (yyval.node) = node_assign(p, (NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12395 /*% ripper: assign!($:1, $:4) %*/
12396 }
12397#line 12398 "parse.c"
12398 break;
12399
12400 case 50: /* op_asgn_command_rhs: var_lhs "operator-assignment" lex_ctxt command_rhs */
12401#line 3043 "parse.y"
12402 {
12403 (yyval.node) = new_op_assign(p, (yyvsp[-3].node), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
12404 /*% ripper: opassign!($:1, $:2, $:4) %*/
12405 }
12406#line 12407 "parse.c"
12407 break;
12408
12409 case 51: /* op_asgn_command_rhs: primary_value '[' opt_call_args rbracket "operator-assignment" lex_ctxt command_rhs */
12410#line 3048 "parse.y"
12411 {
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]));
12413 /*% ripper: opassign!(aref_field!($:1, $:3), $:5, $:7) %*/
12414 }
12415#line 12416 "parse.c"
12416 break;
12417
12418 case 52: /* op_asgn_command_rhs: primary_value call_op "local variable or method" "operator-assignment" lex_ctxt command_rhs */
12419#line 3053 "parse.y"
12420 {
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]));
12422 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
12423 }
12424#line 12425 "parse.c"
12425 break;
12426
12427 case 53: /* op_asgn_command_rhs: primary_value call_op "constant" "operator-assignment" lex_ctxt command_rhs */
12428#line 3058 "parse.y"
12429 {
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]));
12431 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
12432 }
12433#line 12434 "parse.c"
12434 break;
12435
12436 case 54: /* op_asgn_command_rhs: primary_value "::" "local variable or method" "operator-assignment" lex_ctxt command_rhs */
12437#line 3063 "parse.y"
12438 {
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]));
12440 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
12441 }
12442#line 12443 "parse.c"
12443 break;
12444
12445 case 55: /* op_asgn_command_rhs: primary_value "::" "constant" "operator-assignment" lex_ctxt command_rhs */
12446#line 3068 "parse.y"
12447 {
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));
12450 /*% ripper: opassign!(const_path_field!($:1, $:3), $:4, $:6) %*/
12451 }
12452#line 12453 "parse.c"
12453 break;
12454
12455 case 56: /* op_asgn_command_rhs: ":: at EXPR_BEG" "constant" "operator-assignment" lex_ctxt command_rhs */
12456#line 3074 "parse.y"
12457 {
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));
12460 /*% ripper: opassign!(top_const_field!($:2), $:3, $:5) %*/
12461 }
12462#line 12463 "parse.c"
12463 break;
12464
12465 case 57: /* op_asgn_command_rhs: backref "operator-assignment" lex_ctxt command_rhs */
12466#line 3080 "parse.y"
12467 {
12468 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[-3].node));
12469 (yyval.node) = NEW_ERROR(&(yyloc));
12470 /*% ripper[error]: assign_error!(?e, opassign!(var_field!($:1), $:2, $:4)) %*/
12471 }
12472#line 12473 "parse.c"
12473 break;
12474
12475 case 59: /* def_endless_method_endless_command: defn_head f_opt_paren_args '=' endless_command */
12476#line 2948 "parse.y"
12477 {
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);
12483 /*% ripper: bodystmt!($:bodystmt, Qnil, Qnil, Qnil) %*/
12484 /*% ripper: def!($:head, $:args, $:$) %*/
12485 local_pop(p);
12486 }
12487#line 12488 "parse.c"
12488 break;
12489
12490 case 60: /* def_endless_method_endless_command: defs_head f_opt_paren_args '=' endless_command */
12491#line 2959 "parse.y"
12492 {
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);
12498 /*% ripper: bodystmt!($:bodystmt, Qnil, Qnil, Qnil) %*/
12499 /*% ripper: defs!(*$:head[0..2], $:args, $:$) %*/
12500 local_pop(p);
12501 }
12502#line 12503 "parse.c"
12503 break;
12504
12505 case 63: /* endless_command: endless_command "'rescue' modifier" after_rescue arg */
12506#line 3379 "parse.y"
12507 {
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]));
12510 /*% ripper: rescue_mod!($:1, $:4) %*/
12511 }
12512#line 12513 "parse.c"
12513 break;
12514
12515 case 66: /* endless_command: "'not'" option_'\n' endless_command */
12516#line 3385 "parse.y"
12517 {
12518 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
12519 /*% ripper: unary!(ID2VAL(idNOT), $:3) %*/
12520 }
12521#line 12522 "parse.c"
12522 break;
12523
12524 case 68: /* command_rhs: command_call_value "'rescue' modifier" after_rescue stmt */
12525#line 3393 "parse.y"
12526 {
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));
12530 /*% ripper: rescue_mod!($:1, $:4) %*/
12531 }
12532#line 12533 "parse.c"
12533 break;
12534
12535 case 71: /* expr: expr "'and'" expr */
12536#line 3404 "parse.y"
12537 {
12538 (yyval.node) = logop(p, idAND, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12539 /*% ripper: binary!($:1, ID2VAL(idAND), $:3) %*/
12540 }
12541#line 12542 "parse.c"
12542 break;
12543
12544 case 72: /* expr: expr "'or'" expr */
12545#line 3409 "parse.y"
12546 {
12547 (yyval.node) = logop(p, idOR, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12548 /*% ripper: binary!($:1, ID2VAL(idOR), $:3) %*/
12549 }
12550#line 12551 "parse.c"
12551 break;
12552
12553 case 73: /* expr: "'not'" option_'\n' expr */
12554#line 3414 "parse.y"
12555 {
12556 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
12557 /*% ripper: unary!(ID2VAL(idNOT), $:3) %*/
12558 }
12559#line 12560 "parse.c"
12560 break;
12561
12562 case 74: /* expr: '!' command_call */
12563#line 3419 "parse.y"
12564 {
12565 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), '!', &(yylsp[-1]), &(yyloc));
12566 /*% ripper: unary!(ID2VAL('\'!\''), $:2) %*/
12567 }
12568#line 12569 "parse.c"
12569 break;
12570
12571 case 75: /* $@7: %empty */
12572#line 3424 "parse.y"
12573 {
12574 value_expr((yyvsp[-1].node));
12575 }
12576#line 12577 "parse.c"
12577 break;
12578
12579 case 76: /* expr: arg "=>" $@7 p_in_kwarg p_pvtbl p_pktbl p_top_expr_body */
12580#line 3429 "parse.y"
12581 {
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);
12586 /*% ripper: case!($:arg, in!($:body, Qnil, Qnil)) %*/
12587 }
12588#line 12589 "parse.c"
12589 break;
12590
12591 case 77: /* $@8: %empty */
12592#line 3437 "parse.y"
12593 {
12594 value_expr((yyvsp[-1].node));
12595 }
12596#line 12597 "parse.c"
12597 break;
12598
12599 case 78: /* expr: arg "'in'" $@8 p_in_kwarg p_pvtbl p_pktbl p_top_expr_body */
12600#line 3442 "parse.y"
12601 {
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);
12606 /*% ripper: case!($:arg, in!($:body, Qnil, Qnil)) %*/
12607 }
12608#line 12609 "parse.c"
12609 break;
12610
12611 case 80: /* def_name: fname */
12612#line 3453 "parse.y"
12613 {
12614 numparam_name(p, (yyvsp[0].id));
12615 local_push(p, 0);
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);
12620 }
12621#line 12622 "parse.c"
12622 break;
12623
12624 case 81: /* defn_head: k_def def_name */
12625#line 3464 "parse.y"
12626 {
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));
12630 /*% ripper: $:def_name %*/
12631 }
12632#line 12633 "parse.c"
12633 break;
12634
12635 case 82: /* $@9: %empty */
12636#line 3473 "parse.y"
12637 {
12638 SET_LEX_STATE(EXPR_FNAME);
12639 }
12640#line 12641 "parse.c"
12641 break;
12642
12643 case 83: /* defs_head: k_def singleton dot_or_colon $@9 def_name */
12644#line 3477 "parse.y"
12645 {
12646 SET_LEX_STATE(EXPR_ENDFN|EXPR_LABEL); /* force for args */
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));
12650 /*% ripper: [$:singleton, $:dot_or_colon, $:def_name] %*/
12651 }
12652#line 12653 "parse.c"
12653 break;
12654
12655 case 84: /* value_expr_expr: expr */
12656#line 3102 "parse.y"
12657 {
12658 value_expr((yyvsp[0].node));
12659 (yyval.node) = (yyvsp[0].node);
12660 }
12661#line 12662 "parse.c"
12662 break;
12663
12664 case 86: /* expr_value: error */
12665#line 3488 "parse.y"
12666 {
12667 (yyval.node) = NEW_ERROR(&(yyloc));
12668 }
12669#line 12670 "parse.c"
12670 break;
12671
12672 case 87: /* $@10: %empty */
12673#line 3493 "parse.y"
12674 {COND_PUSH(1);}
12675#line 12676 "parse.c"
12676 break;
12677
12678 case 88: /* $@11: %empty */
12679#line 3493 "parse.y"
12680 {COND_POP();}
12681#line 12682 "parse.c"
12682 break;
12683
12684 case 89: /* expr_value_do: $@10 expr_value do $@11 */
12685#line 3494 "parse.y"
12686 {
12687 (yyval.node) = (yyvsp[-2].node);
12688 /*% ripper: $:2 %*/
12689 }
12690#line 12691 "parse.c"
12691 break;
12692
12693 case 92: /* value_expr_command_call: command_call */
12694#line 3102 "parse.y"
12695 {
12696 value_expr((yyvsp[0].node));
12697 (yyval.node) = (yyvsp[0].node);
12698 }
12699#line 12700 "parse.c"
12700 break;
12701
12702 case 95: /* block_command: block_call call_op2 operation2 command_args */
12703#line 3509 "parse.y"
12704 {
12705 (yyval.node) = new_qcall(p, (yyvsp[-2].id), (yyvsp[-3].node), (yyvsp[-1].id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
12706 /*% ripper: method_add_arg!(call!($:1, $:2, $:3), $:4) %*/
12707 }
12708#line 12709 "parse.c"
12709 break;
12710
12711 case 96: /* cmd_brace_block: "{ arg" brace_body '}' */
12712#line 3516 "parse.y"
12713 {
12714 (yyval.node) = (yyvsp[-1].node);
12715 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
12716 /*% ripper: $:2 %*/
12717 }
12718#line 12719 "parse.c"
12719 break;
12720
12721 case 97: /* fcall: "local variable or method" */
12722#line 3524 "parse.y"
12723 {
12724 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].id), 0, &(yyloc));
12725 /*% ripper: $:1 %*/
12726 }
12727#line 12728 "parse.c"
12728 break;
12729
12730 case 98: /* fcall: "constant" */
12731#line 3524 "parse.y"
12732 {
12733 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].id), 0, &(yyloc));
12734 /*% ripper: $:1 %*/
12735 }
12736#line 12737 "parse.c"
12737 break;
12738
12739 case 99: /* fcall: "method" */
12740#line 3524 "parse.y"
12741 {
12742 (yyval.node_fcall) = NEW_FCALL((yyvsp[0].id), 0, &(yyloc));
12743 /*% ripper: $:1 %*/
12744 }
12745#line 12746 "parse.c"
12746 break;
12747
12748 case 100: /* command: fcall command_args */
12749#line 3531 "parse.y"
12750 {
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);
12754 /*% ripper: command!($:1, $:2) %*/
12755 }
12756#line 12757 "parse.c"
12757 break;
12758
12759 case 101: /* command: fcall command_args cmd_brace_block */
12760#line 3538 "parse.y"
12761 {
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);
12767 /*% ripper: method_add_block!(command!($:1, $:2), $:3) %*/
12768 }
12769#line 12770 "parse.c"
12770 break;
12771
12772 case 102: /* command: primary_value call_op operation2 command_args */
12773#line 3547 "parse.y"
12774 {
12775 (yyval.node) = new_command_qcall(p, (yyvsp[-2].id), (yyvsp[-3].node), (yyvsp[-1].id), (yyvsp[0].node), 0, &(yylsp[-1]), &(yyloc));
12776 /*% ripper: command_call!($:1, $:2, $:3, $:4) %*/
12777 }
12778#line 12779 "parse.c"
12779 break;
12780
12781 case 103: /* command: primary_value call_op operation2 command_args cmd_brace_block */
12782#line 3552 "parse.y"
12783 {
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));
12785 /*% ripper: method_add_block!(command_call!($:1, $:2, $:3, $:4), $:5) %*/
12786 }
12787#line 12788 "parse.c"
12788 break;
12789
12790 case 104: /* command: primary_value "::" operation2 command_args */
12791#line 3557 "parse.y"
12792 {
12793 (yyval.node) = new_command_qcall(p, idCOLON2, (yyvsp[-3].node), (yyvsp[-1].id), (yyvsp[0].node), 0, &(yylsp[-1]), &(yyloc));
12794 /*% ripper: command_call!($:1, $:2, $:3, $:4) %*/
12795 }
12796#line 12797 "parse.c"
12797 break;
12798
12799 case 105: /* command: primary_value "::" operation2 command_args cmd_brace_block */
12800#line 3562 "parse.y"
12801 {
12802 (yyval.node) = new_command_qcall(p, idCOLON2, (yyvsp[-4].node), (yyvsp[-2].id), (yyvsp[-1].node), (yyvsp[0].node), &(yylsp[-2]), &(yyloc));
12803 /*% ripper: method_add_block!(command_call!($:1, $:2, $:3, $:4), $:5) %*/
12804 }
12805#line 12806 "parse.c"
12806 break;
12807
12808 case 106: /* command: primary_value "::" "constant" '{' brace_body '}' */
12809#line 3567 "parse.y"
12810 {
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));
12813 /*% ripper: method_add_block!(command_call!($:1, $:2, $:3, Qnil), $:5) %*/
12814 }
12815#line 12816 "parse.c"
12816 break;
12817
12818 case 107: /* command: "'super'" command_args */
12819#line 3573 "parse.y"
12820 {
12821 (yyval.node) = NEW_SUPER((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12822 fixpos((yyval.node), (yyvsp[0].node));
12823 /*% ripper: super!($:2) %*/
12824 }
12825#line 12826 "parse.c"
12826 break;
12827
12828 case 108: /* command: k_yield command_args */
12829#line 3579 "parse.y"
12830 {
12831 (yyval.node) = NEW_YIELD((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &NULL_LOC, &NULL_LOC);
12832 fixpos((yyval.node), (yyvsp[0].node));
12833 /*% ripper: yield!($:2) %*/
12834 }
12835#line 12836 "parse.c"
12836 break;
12837
12838 case 109: /* command: k_return call_args */
12839#line 3585 "parse.y"
12840 {
12841 (yyval.node) = NEW_RETURN(ret_args(p, (yyvsp[0].node)), &(yyloc), &(yylsp[-1]));
12842 /*% ripper: return!($:2) %*/
12843 }
12844#line 12845 "parse.c"
12845 break;
12846
12847 case 110: /* command: "'break'" call_args */
12848#line 3590 "parse.y"
12849 {
12850 NODE *args = 0;
12851 args = ret_args(p, (yyvsp[0].node));
12852 (yyval.node) = add_block_exit(p, NEW_BREAK(args, &(yyloc), &(yylsp[-1])));
12853 /*% ripper: break!($:2) %*/
12854 }
12855#line 12856 "parse.c"
12856 break;
12857
12858 case 111: /* command: "'next'" call_args */
12859#line 3597 "parse.y"
12860 {
12861 NODE *args = 0;
12862 args = ret_args(p, (yyvsp[0].node));
12863 (yyval.node) = add_block_exit(p, NEW_NEXT(args, &(yyloc), &(yylsp[-1])));
12864 /*% ripper: next!($:2) %*/
12865 }
12866#line 12867 "parse.c"
12867 break;
12868
12869 case 113: /* mlhs: "(" mlhs_inner rparen */
12870#line 3607 "parse.y"
12871 {
12872 (yyval.node_masgn) = (yyvsp[-1].node_masgn);
12873 /*% ripper: mlhs_paren!($:2) %*/
12874 }
12875#line 12876 "parse.c"
12876 break;
12877
12878 case 115: /* mlhs_inner: "(" mlhs_inner rparen */
12879#line 3615 "parse.y"
12880 {
12881 (yyval.node_masgn) = NEW_MASGN(NEW_LIST((NODE *)(yyvsp[-1].node_masgn), &(yyloc)), 0, &(yyloc));
12882 /*% ripper: mlhs_paren!($:2) %*/
12883 }
12884#line 12885 "parse.c"
12885 break;
12886
12887 case 116: /* mlhs_basic: mlhs_head */
12888#line 3622 "parse.y"
12889 {
12890 (yyval.node_masgn) = NEW_MASGN((yyvsp[0].node), 0, &(yyloc));
12891 /*% ripper: $:1 %*/
12892 }
12893#line 12894 "parse.c"
12894 break;
12895
12896 case 117: /* mlhs_basic: mlhs_head mlhs_item */
12897#line 3627 "parse.y"
12898 {
12899 (yyval.node_masgn) = NEW_MASGN(list_append(p, (yyvsp[-1].node), (yyvsp[0].node)), 0, &(yyloc));
12900 /*% ripper: mlhs_add!($:1, $:2) %*/
12901 }
12902#line 12903 "parse.c"
12903 break;
12904
12905 case 118: /* mlhs_basic: mlhs_head "*" mlhs_node */
12906#line 3632 "parse.y"
12907 {
12908 (yyval.node_masgn) = NEW_MASGN((yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
12909 /*% ripper: mlhs_add_star!($:1, $:3) %*/
12910 }
12911#line 12912 "parse.c"
12912 break;
12913
12914 case 119: /* mlhs_mlhs_item: mlhs_item */
12915#line 3030 "parse.y"
12916 {
12917 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
12918 /*% ripper: mlhs_add!(mlhs_new!, $:1) %*/
12919 }
12920#line 12921 "parse.c"
12921 break;
12922
12923 case 120: /* mlhs_mlhs_item: mlhs_mlhs_item ',' mlhs_item */
12924#line 3035 "parse.y"
12925 {
12926 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[0].node));
12927 /*% ripper: mlhs_add!($:1, $:3) %*/
12928 }
12929#line 12930 "parse.c"
12930 break;
12931
12932 case 121: /* mlhs_basic: mlhs_head "*" mlhs_node ',' mlhs_mlhs_item */
12933#line 3637 "parse.y"
12934 {
12935 (yyval.node_masgn) = NEW_MASGN((yyvsp[-4].node), NEW_POSTARG((yyvsp[-2].node),(yyvsp[0].node),&(yyloc)), &(yyloc));
12936 /*% ripper: mlhs_add_post!(mlhs_add_star!($:1, $:3), $:5) %*/
12937 }
12938#line 12939 "parse.c"
12939 break;
12940
12941 case 122: /* mlhs_basic: mlhs_head "*" */
12942#line 3642 "parse.y"
12943 {
12944 (yyval.node_masgn) = NEW_MASGN((yyvsp[-1].node), NODE_SPECIAL_NO_NAME_REST, &(yyloc));
12945 /*% ripper: mlhs_add_star!($:1, Qnil) %*/
12946 }
12947#line 12948 "parse.c"
12948 break;
12949
12950 case 123: /* mlhs_basic: mlhs_head "*" ',' mlhs_mlhs_item */
12951#line 3647 "parse.y"
12952 {
12953 (yyval.node_masgn) = NEW_MASGN((yyvsp[-3].node), NEW_POSTARG(NODE_SPECIAL_NO_NAME_REST, (yyvsp[0].node), &(yyloc)), &(yyloc));
12954 /*% ripper: mlhs_add_post!(mlhs_add_star!($:1, Qnil), $:4) %*/
12955 }
12956#line 12957 "parse.c"
12957 break;
12958
12959 case 124: /* mlhs_basic: "*" mlhs_node */
12960#line 3652 "parse.y"
12961 {
12962 (yyval.node_masgn) = NEW_MASGN(0, (yyvsp[0].node), &(yyloc));
12963 /*% ripper: mlhs_add_star!(mlhs_new!, $:2) %*/
12964 }
12965#line 12966 "parse.c"
12966 break;
12967
12968 case 125: /* mlhs_basic: "*" mlhs_node ',' mlhs_mlhs_item */
12969#line 3657 "parse.y"
12970 {
12971 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG((yyvsp[-2].node),(yyvsp[0].node),&(yyloc)), &(yyloc));
12972 /*% ripper: mlhs_add_post!(mlhs_add_star!(mlhs_new!, $:2), $:4) %*/
12973 }
12974#line 12975 "parse.c"
12975 break;
12976
12977 case 126: /* mlhs_basic: "*" */
12978#line 3662 "parse.y"
12979 {
12980 (yyval.node_masgn) = NEW_MASGN(0, NODE_SPECIAL_NO_NAME_REST, &(yyloc));
12981 /*% ripper: mlhs_add_star!(mlhs_new!, Qnil) %*/
12982 }
12983#line 12984 "parse.c"
12984 break;
12985
12986 case 127: /* mlhs_basic: "*" ',' mlhs_mlhs_item */
12987#line 3667 "parse.y"
12988 {
12989 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG(NODE_SPECIAL_NO_NAME_REST, (yyvsp[0].node), &(yyloc)), &(yyloc));
12990 /*% ripper: mlhs_add_post!(mlhs_add_star!(mlhs_new!, Qnil), $:3) %*/
12991 }
12992#line 12993 "parse.c"
12993 break;
12994
12995 case 129: /* mlhs_item: "(" mlhs_inner rparen */
12996#line 3675 "parse.y"
12997 {
12998 (yyval.node) = (NODE *)(yyvsp[-1].node_masgn);
12999 /*% ripper: mlhs_paren!($:2) %*/
13000 }
13001#line 13002 "parse.c"
13002 break;
13003
13004 case 130: /* mlhs_head: mlhs_item ',' */
13005#line 3682 "parse.y"
13006 {
13007 (yyval.node) = NEW_LIST((yyvsp[-1].node), &(yylsp[-1]));
13008 /*% ripper: mlhs_add!(mlhs_new!, $:1) %*/
13009 }
13010#line 13011 "parse.c"
13011 break;
13012
13013 case 131: /* mlhs_head: mlhs_head mlhs_item ',' */
13014#line 3687 "parse.y"
13015 {
13016 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
13017 /*% ripper: mlhs_add!($:1, $:2) %*/
13018 }
13019#line 13020 "parse.c"
13020 break;
13021
13022 case 132: /* mlhs_node: user_variable */
13023#line 3695 "parse.y"
13024 {
13025 /*% ripper: var_field!($:1) %*/
13026 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
13027 }
13028#line 13029 "parse.c"
13029 break;
13030
13031 case 133: /* mlhs_node: keyword_variable */
13032#line 3695 "parse.y"
13033 {
13034 /*% ripper: var_field!($:1) %*/
13035 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
13036 }
13037#line 13038 "parse.c"
13038 break;
13039
13040 case 134: /* mlhs_node: primary_value '[' opt_call_args rbracket */
13041#line 3700 "parse.y"
13042 {
13043 (yyval.node) = aryset(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
13044 /*% ripper: aref_field!($:1, $:3) %*/
13045 }
13046#line 13047 "parse.c"
13047 break;
13048
13049 case 135: /* mlhs_node: primary_value call_op "local variable or method" */
13050#line 3705 "parse.y"
13051 {
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));
13054 /*% ripper: field!($:1, $:2, $:3) %*/
13055 }
13056#line 13057 "parse.c"
13057 break;
13058
13059 case 136: /* mlhs_node: primary_value call_op "constant" */
13060#line 3705 "parse.y"
13061 {
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));
13064 /*% ripper: field!($:1, $:2, $:3) %*/
13065 }
13066#line 13067 "parse.c"
13067 break;
13068
13069 case 137: /* mlhs_node: primary_value "::" "local variable or method" */
13070#line 3711 "parse.y"
13071 {
13072 (yyval.node) = attrset(p, (yyvsp[-2].node), idCOLON2, (yyvsp[0].id), &(yyloc));
13073 /*% ripper: const_path_field!($:1, $:3) %*/
13074 }
13075#line 13076 "parse.c"
13076 break;
13077
13078 case 138: /* mlhs_node: primary_value "::" "constant" */
13079#line 3716 "parse.y"
13080 {
13081 /*% ripper: const_path_field!($:1, $:3) %*/
13082 (yyval.node) = const_decl(p, NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc)), &(yyloc));
13083 }
13084#line 13085 "parse.c"
13085 break;
13086
13087 case 139: /* mlhs_node: ":: at EXPR_BEG" "constant" */
13088#line 3721 "parse.y"
13089 {
13090 /*% ripper: top_const_field!($:2) %*/
13091 (yyval.node) = const_decl(p, NEW_COLON3((yyvsp[0].id), &(yyloc)), &(yyloc));
13092 }
13093#line 13094 "parse.c"
13094 break;
13095
13096 case 140: /* mlhs_node: backref */
13097#line 3726 "parse.y"
13098 {
13099 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[0].node));
13100 (yyval.node) = NEW_ERROR(&(yyloc));
13101 /*% ripper[error]: assign_error!(?e, var_field!($:1)) %*/
13102 }
13103#line 13104 "parse.c"
13104 break;
13105
13106 case 141: /* lhs: user_variable */
13107#line 3734 "parse.y"
13108 {
13109 /*% ripper: var_field!($:1) %*/
13110 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
13111 }
13112#line 13113 "parse.c"
13113 break;
13114
13115 case 142: /* lhs: keyword_variable */
13116#line 3734 "parse.y"
13117 {
13118 /*% ripper: var_field!($:1) %*/
13119 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
13120 }
13121#line 13122 "parse.c"
13122 break;
13123
13124 case 143: /* lhs: primary_value '[' opt_call_args rbracket */
13125#line 3739 "parse.y"
13126 {
13127 (yyval.node) = aryset(p, (yyvsp[-3].node), (yyvsp[-1].node), &(yyloc));
13128 /*% ripper: aref_field!($:1, $:3) %*/
13129 }
13130#line 13131 "parse.c"
13131 break;
13132
13133 case 144: /* lhs: primary_value call_op "local variable or method" */
13134#line 3744 "parse.y"
13135 {
13136 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].id), &(yyloc));
13137 /*% ripper: field!($:1, $:2, $:3) %*/
13138 }
13139#line 13140 "parse.c"
13140 break;
13141
13142 case 145: /* lhs: primary_value call_op "constant" */
13143#line 3744 "parse.y"
13144 {
13145 (yyval.node) = attrset(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].id), &(yyloc));
13146 /*% ripper: field!($:1, $:2, $:3) %*/
13147 }
13148#line 13149 "parse.c"
13149 break;
13150
13151 case 146: /* lhs: primary_value "::" "local variable or method" */
13152#line 3749 "parse.y"
13153 {
13154 (yyval.node) = attrset(p, (yyvsp[-2].node), idCOLON2, (yyvsp[0].id), &(yyloc));
13155 /*% ripper: field!($:1, $:2, $:3) %*/
13156 }
13157#line 13158 "parse.c"
13158 break;
13159
13160 case 147: /* lhs: primary_value "::" "constant" */
13161#line 3754 "parse.y"
13162 {
13163 /*% ripper: const_path_field!($:1, $:3) %*/
13164 (yyval.node) = const_decl(p, NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc)), &(yyloc));
13165 }
13166#line 13167 "parse.c"
13167 break;
13168
13169 case 148: /* lhs: ":: at EXPR_BEG" "constant" */
13170#line 3759 "parse.y"
13171 {
13172 /*% ripper: top_const_field!($:2) %*/
13173 (yyval.node) = const_decl(p, NEW_COLON3((yyvsp[0].id), &(yyloc)), &(yyloc));
13174 }
13175#line 13176 "parse.c"
13176 break;
13177
13178 case 149: /* lhs: backref */
13179#line 3764 "parse.y"
13180 {
13181 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[0].node));
13182 (yyval.node) = NEW_ERROR(&(yyloc));
13183 /*% ripper[error]: assign_error!(?e, var_field!($:1)) %*/
13184 }
13185#line 13186 "parse.c"
13186 break;
13187
13188 case 150: /* cname: "local variable or method" */
13189#line 3772 "parse.y"
13190 {
13191 static const char mesg[] = "class/module name must be CONSTANT";
13192 /*%%%*/
13193 yyerror1(&(yylsp[0]), mesg);
13194 /*% %*/
13195 /*% ripper[error]: class_name_error!(ERR_MESG(), $:1) %*/
13196 }
13197#line 13198 "parse.c"
13198 break;
13199
13200 case 152: /* cpath: ":: at EXPR_BEG" cname */
13201#line 3783 "parse.y"
13202 {
13203 (yyval.node) = NEW_COLON3((yyvsp[0].id), &(yyloc));
13204 /*% ripper: top_const_ref!($:2) %*/
13205 }
13206#line 13207 "parse.c"
13207 break;
13208
13209 case 153: /* cpath: cname */
13210#line 3788 "parse.y"
13211 {
13212 (yyval.node) = NEW_COLON2(0, (yyvsp[0].id), &(yyloc));
13213 /*% ripper: const_ref!($:1) %*/
13214 }
13215#line 13216 "parse.c"
13216 break;
13217
13218 case 154: /* cpath: primary_value "::" cname */
13219#line 3793 "parse.y"
13220 {
13221 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
13222 /*% ripper: const_path_ref!($:1, $:3) %*/
13223 }
13224#line 13225 "parse.c"
13225 break;
13226
13227 case 158: /* fname: op */
13228#line 3801 "parse.y"
13229 {
13230 SET_LEX_STATE(EXPR_ENDFN);
13231 (yyval.id) = (yyvsp[0].id);
13232 }
13233#line 13234 "parse.c"
13234 break;
13235
13236 case 160: /* fitem: fname */
13237#line 3809 "parse.y"
13238 {
13239 (yyval.node) = NEW_SYM(rb_id2str((yyvsp[0].id)), &(yyloc));
13240 /*% ripper: symbol_literal!($:1) %*/
13241 }
13242#line 13243 "parse.c"
13243 break;
13244
13245 case 162: /* undef_list: fitem */
13246#line 3817 "parse.y"
13247 {
13248 (yyval.node) = NEW_UNDEF((yyvsp[0].node), &(yyloc));
13249 /*% ripper: rb_ary_new3(1, $:1) %*/
13250 }
13251#line 13252 "parse.c"
13252 break;
13253
13254 case 163: /* $@12: %empty */
13255#line 3821 "parse.y"
13256 {SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);}
13257#line 13258 "parse.c"
13258 break;
13259
13260 case 164: /* undef_list: undef_list ',' $@12 fitem */
13261#line 3822 "parse.y"
13262 {
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));
13265 /*% ripper: rb_ary_push($:1, $:4) %*/
13266 }
13267#line 13268 "parse.c"
13268 break;
13269
13270 case 165: /* op: '|' */
13271#line 3829 "parse.y"
13272 { (yyval.id) = '|'; }
13273#line 13274 "parse.c"
13274 break;
13275
13276 case 166: /* op: '^' */
13277#line 3830 "parse.y"
13278 { (yyval.id) = '^'; }
13279#line 13280 "parse.c"
13280 break;
13281
13282 case 167: /* op: '&' */
13283#line 3831 "parse.y"
13284 { (yyval.id) = '&'; }
13285#line 13286 "parse.c"
13286 break;
13287
13288 case 168: /* op: "<=>" */
13289#line 3832 "parse.y"
13290 { (yyval.id) = tCMP; }
13291#line 13292 "parse.c"
13292 break;
13293
13294 case 169: /* op: "==" */
13295#line 3833 "parse.y"
13296 { (yyval.id) = tEQ; }
13297#line 13298 "parse.c"
13298 break;
13299
13300 case 170: /* op: "===" */
13301#line 3834 "parse.y"
13302 { (yyval.id) = tEQQ; }
13303#line 13304 "parse.c"
13304 break;
13305
13306 case 171: /* op: "=~" */
13307#line 3835 "parse.y"
13308 { (yyval.id) = tMATCH; }
13309#line 13310 "parse.c"
13310 break;
13311
13312 case 172: /* op: "!~" */
13313#line 3836 "parse.y"
13314 { (yyval.id) = tNMATCH; }
13315#line 13316 "parse.c"
13316 break;
13317
13318 case 173: /* op: '>' */
13319#line 3837 "parse.y"
13320 { (yyval.id) = '>'; }
13321#line 13322 "parse.c"
13322 break;
13323
13324 case 174: /* op: ">=" */
13325#line 3838 "parse.y"
13326 { (yyval.id) = tGEQ; }
13327#line 13328 "parse.c"
13328 break;
13329
13330 case 175: /* op: '<' */
13331#line 3839 "parse.y"
13332 { (yyval.id) = '<'; }
13333#line 13334 "parse.c"
13334 break;
13335
13336 case 176: /* op: "<=" */
13337#line 3840 "parse.y"
13338 { (yyval.id) = tLEQ; }
13339#line 13340 "parse.c"
13340 break;
13341
13342 case 177: /* op: "!=" */
13343#line 3841 "parse.y"
13344 { (yyval.id) = tNEQ; }
13345#line 13346 "parse.c"
13346 break;
13347
13348 case 178: /* op: "<<" */
13349#line 3842 "parse.y"
13350 { (yyval.id) = tLSHFT; }
13351#line 13352 "parse.c"
13352 break;
13353
13354 case 179: /* op: ">>" */
13355#line 3843 "parse.y"
13356 { (yyval.id) = tRSHFT; }
13357#line 13358 "parse.c"
13358 break;
13359
13360 case 180: /* op: '+' */
13361#line 3844 "parse.y"
13362 { (yyval.id) = '+'; }
13363#line 13364 "parse.c"
13364 break;
13365
13366 case 181: /* op: '-' */
13367#line 3845 "parse.y"
13368 { (yyval.id) = '-'; }
13369#line 13370 "parse.c"
13370 break;
13371
13372 case 182: /* op: '*' */
13373#line 3846 "parse.y"
13374 { (yyval.id) = '*'; }
13375#line 13376 "parse.c"
13376 break;
13377
13378 case 183: /* op: "*" */
13379#line 3847 "parse.y"
13380 { (yyval.id) = '*'; }
13381#line 13382 "parse.c"
13382 break;
13383
13384 case 184: /* op: '/' */
13385#line 3848 "parse.y"
13386 { (yyval.id) = '/'; }
13387#line 13388 "parse.c"
13388 break;
13389
13390 case 185: /* op: '%' */
13391#line 3849 "parse.y"
13392 { (yyval.id) = '%'; }
13393#line 13394 "parse.c"
13394 break;
13395
13396 case 186: /* op: "**" */
13397#line 3850 "parse.y"
13398 { (yyval.id) = tPOW; }
13399#line 13400 "parse.c"
13400 break;
13401
13402 case 187: /* op: "**arg" */
13403#line 3851 "parse.y"
13404 { (yyval.id) = tDSTAR; }
13405#line 13406 "parse.c"
13406 break;
13407
13408 case 188: /* op: '!' */
13409#line 3852 "parse.y"
13410 { (yyval.id) = '!'; }
13411#line 13412 "parse.c"
13412 break;
13413
13414 case 189: /* op: '~' */
13415#line 3853 "parse.y"
13416 { (yyval.id) = '~'; }
13417#line 13418 "parse.c"
13418 break;
13419
13420 case 190: /* op: "unary+" */
13421#line 3854 "parse.y"
13422 { (yyval.id) = tUPLUS; }
13423#line 13424 "parse.c"
13424 break;
13425
13426 case 191: /* op: "unary-" */
13427#line 3855 "parse.y"
13428 { (yyval.id) = tUMINUS; }
13429#line 13430 "parse.c"
13430 break;
13431
13432 case 192: /* op: "[]" */
13433#line 3856 "parse.y"
13434 { (yyval.id) = tAREF; }
13435#line 13436 "parse.c"
13436 break;
13437
13438 case 193: /* op: "[]=" */
13439#line 3857 "parse.y"
13440 { (yyval.id) = tASET; }
13441#line 13442 "parse.c"
13442 break;
13443
13444 case 194: /* op: '`' */
13445#line 3858 "parse.y"
13446 { (yyval.id) = '`'; }
13447#line 13448 "parse.c"
13448 break;
13449
13450 case 236: /* asgn_lhs_arg_rhs: lhs '=' lex_ctxt arg_rhs */
13451#line 2918 "parse.y"
13452 {
13453 (yyval.node) = node_assign(p, (NODE *)(yyvsp[-3].node), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13454 /*% ripper: assign!($:1, $:4) %*/
13455 }
13456#line 13457 "parse.c"
13457 break;
13458
13459 case 238: /* op_asgn_arg_rhs: var_lhs "operator-assignment" lex_ctxt arg_rhs */
13460#line 3043 "parse.y"
13461 {
13462 (yyval.node) = new_op_assign(p, (yyvsp[-3].node), (yyvsp[-2].id), (yyvsp[0].node), (yyvsp[-1].ctxt), &(yyloc));
13463 /*% ripper: opassign!($:1, $:2, $:4) %*/
13464 }
13465#line 13466 "parse.c"
13466 break;
13467
13468 case 239: /* op_asgn_arg_rhs: primary_value '[' opt_call_args rbracket "operator-assignment" lex_ctxt arg_rhs */
13469#line 3048 "parse.y"
13470 {
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]));
13472 /*% ripper: opassign!(aref_field!($:1, $:3), $:5, $:7) %*/
13473 }
13474#line 13475 "parse.c"
13475 break;
13476
13477 case 240: /* op_asgn_arg_rhs: primary_value call_op "local variable or method" "operator-assignment" lex_ctxt arg_rhs */
13478#line 3053 "parse.y"
13479 {
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]));
13481 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
13482 }
13483#line 13484 "parse.c"
13484 break;
13485
13486 case 241: /* op_asgn_arg_rhs: primary_value call_op "constant" "operator-assignment" lex_ctxt arg_rhs */
13487#line 3058 "parse.y"
13488 {
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]));
13490 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
13491 }
13492#line 13493 "parse.c"
13493 break;
13494
13495 case 242: /* op_asgn_arg_rhs: primary_value "::" "local variable or method" "operator-assignment" lex_ctxt arg_rhs */
13496#line 3063 "parse.y"
13497 {
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]));
13499 /*% ripper: opassign!(field!($:1, $:2, $:3), $:4, $:6) %*/
13500 }
13501#line 13502 "parse.c"
13502 break;
13503
13504 case 243: /* op_asgn_arg_rhs: primary_value "::" "constant" "operator-assignment" lex_ctxt arg_rhs */
13505#line 3068 "parse.y"
13506 {
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));
13509 /*% ripper: opassign!(const_path_field!($:1, $:3), $:4, $:6) %*/
13510 }
13511#line 13512 "parse.c"
13512 break;
13513
13514 case 244: /* op_asgn_arg_rhs: ":: at EXPR_BEG" "constant" "operator-assignment" lex_ctxt arg_rhs */
13515#line 3074 "parse.y"
13516 {
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));
13519 /*% ripper: opassign!(top_const_field!($:2), $:3, $:5) %*/
13520 }
13521#line 13522 "parse.c"
13522 break;
13523
13524 case 245: /* op_asgn_arg_rhs: backref "operator-assignment" lex_ctxt arg_rhs */
13525#line 3080 "parse.y"
13526 {
13527 VALUE MAYBE_UNUSED(e) = rb_backref_error(p, (yyvsp[-3].node));
13528 (yyval.node) = NEW_ERROR(&(yyloc));
13529 /*% ripper[error]: assign_error!(?e, opassign!(var_field!($:1), $:2, $:4)) %*/
13530 }
13531#line 13532 "parse.c"
13532 break;
13533
13534 case 247: /* arg: arg ".." arg */
13535#line 3878 "parse.y"
13536 {
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]));
13540 /*% ripper: dot2!($:1, $:3) %*/
13541 }
13542#line 13543 "parse.c"
13543 break;
13544
13545 case 248: /* arg: arg "..." arg */
13546#line 3885 "parse.y"
13547 {
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]));
13551 /*% ripper: dot3!($:1, $:3) %*/
13552 }
13553#line 13554 "parse.c"
13554 break;
13555
13556 case 249: /* arg: arg ".." */
13557#line 3892 "parse.y"
13558 {
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]));
13561 /*% ripper: dot2!($:1, Qnil) %*/
13562 }
13563#line 13564 "parse.c"
13564 break;
13565
13566 case 250: /* arg: arg "..." */
13567#line 3898 "parse.y"
13568 {
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]));
13571 /*% ripper: dot3!($:1, Qnil) %*/
13572 }
13573#line 13574 "parse.c"
13574 break;
13575
13576 case 251: /* arg: "(.." arg */
13577#line 3904 "parse.y"
13578 {
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]));
13581 /*% ripper: dot2!(Qnil, $:2) %*/
13582 }
13583#line 13584 "parse.c"
13584 break;
13585
13586 case 252: /* arg: "(..." arg */
13587#line 3910 "parse.y"
13588 {
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]));
13591 /*% ripper: dot3!(Qnil, $:2) %*/
13592 }
13593#line 13594 "parse.c"
13594 break;
13595
13596 case 253: /* arg: arg '+' arg */
13597#line 3916 "parse.y"
13598 {
13599 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '+', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13600 /*% ripper: binary!($:1, ID2VAL('\'+\''), $:3) %*/
13601 }
13602#line 13603 "parse.c"
13603 break;
13604
13605 case 254: /* arg: arg '-' arg */
13606#line 3921 "parse.y"
13607 {
13608 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '-', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13609 /*% ripper: binary!($:1, ID2VAL('\'-\''), $:3) %*/
13610 }
13611#line 13612 "parse.c"
13612 break;
13613
13614 case 255: /* arg: arg '*' arg */
13615#line 3926 "parse.y"
13616 {
13617 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '*', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13618 /*% ripper: binary!($:1, ID2VAL('\'*\''), $:3) %*/
13619 }
13620#line 13621 "parse.c"
13621 break;
13622
13623 case 256: /* arg: arg '/' arg */
13624#line 3931 "parse.y"
13625 {
13626 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '/', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13627 /*% ripper: binary!($:1, ID2VAL('\'/\''), $:3) %*/
13628 }
13629#line 13630 "parse.c"
13630 break;
13631
13632 case 257: /* arg: arg '%' arg */
13633#line 3936 "parse.y"
13634 {
13635 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '%', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13636 /*% ripper: binary!($:1, ID2VAL('\'%\''), $:3) %*/
13637 }
13638#line 13639 "parse.c"
13639 break;
13640
13641 case 258: /* arg: arg "**" arg */
13642#line 3941 "parse.y"
13643 {
13644 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idPow, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13645 /*% ripper: binary!($:1, ID2VAL(idPow), $:3) %*/
13646 }
13647#line 13648 "parse.c"
13648 break;
13649
13650 case 259: /* arg: tUMINUS_NUM simple_numeric "**" arg */
13651#line 3946 "parse.y"
13652 {
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));
13654 /*% ripper: unary!(ID2VAL(idUMinus), binary!($:2, ID2VAL(idPow), $:4)) %*/
13655 }
13656#line 13657 "parse.c"
13657 break;
13658
13659 case 260: /* arg: "unary+" arg */
13660#line 3951 "parse.y"
13661 {
13662 (yyval.node) = call_uni_op(p, (yyvsp[0].node), idUPlus, &(yylsp[-1]), &(yyloc));
13663 /*% ripper: unary!(ID2VAL(idUPlus), $:2) %*/
13664 }
13665#line 13666 "parse.c"
13666 break;
13667
13668 case 261: /* arg: "unary-" arg */
13669#line 3956 "parse.y"
13670 {
13671 (yyval.node) = call_uni_op(p, (yyvsp[0].node), idUMinus, &(yylsp[-1]), &(yyloc));
13672 /*% ripper: unary!(ID2VAL(idUMinus), $:2) %*/
13673 }
13674#line 13675 "parse.c"
13675 break;
13676
13677 case 262: /* arg: arg '|' arg */
13678#line 3961 "parse.y"
13679 {
13680 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '|', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13681 /*% ripper: binary!($:1, ID2VAL('\'|\''), $:3) %*/
13682 }
13683#line 13684 "parse.c"
13684 break;
13685
13686 case 263: /* arg: arg '^' arg */
13687#line 3966 "parse.y"
13688 {
13689 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '^', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13690 /*% ripper: binary!($:1, ID2VAL('\'^\''), $:3) %*/
13691 }
13692#line 13693 "parse.c"
13693 break;
13694
13695 case 264: /* arg: arg '&' arg */
13696#line 3971 "parse.y"
13697 {
13698 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), '&', (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13699 /*% ripper: binary!($:1, ID2VAL('\'&\''), $:3) %*/
13700 }
13701#line 13702 "parse.c"
13702 break;
13703
13704 case 265: /* arg: arg "<=>" arg */
13705#line 3976 "parse.y"
13706 {
13707 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idCmp, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13708 /*% ripper: binary!($:1, ID2VAL(idCmp), $:3) %*/
13709 }
13710#line 13711 "parse.c"
13711 break;
13712
13713 case 267: /* arg: arg "==" arg */
13714#line 3982 "parse.y"
13715 {
13716 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idEq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13717 /*% ripper: binary!($:1, ID2VAL(idEq), $:3) %*/
13718 }
13719#line 13720 "parse.c"
13720 break;
13721
13722 case 268: /* arg: arg "===" arg */
13723#line 3987 "parse.y"
13724 {
13725 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idEqq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13726 /*% ripper: binary!($:1, ID2VAL(idEqq), $:3) %*/
13727 }
13728#line 13729 "parse.c"
13729 break;
13730
13731 case 269: /* arg: arg "!=" arg */
13732#line 3992 "parse.y"
13733 {
13734 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idNeq, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13735 /*% ripper: binary!($:1, ID2VAL(idNeq), $:3) %*/
13736 }
13737#line 13738 "parse.c"
13738 break;
13739
13740 case 270: /* arg: arg "=~" arg */
13741#line 3997 "parse.y"
13742 {
13743 (yyval.node) = match_op(p, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13744 /*% ripper: binary!($:1, ID2VAL(idEqTilde), $:3) %*/
13745 }
13746#line 13747 "parse.c"
13747 break;
13748
13749 case 271: /* arg: arg "!~" arg */
13750#line 4002 "parse.y"
13751 {
13752 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idNeqTilde, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13753 /*% ripper: binary!($:1, ID2VAL(idNeqTilde), $:3) %*/
13754 }
13755#line 13756 "parse.c"
13756 break;
13757
13758 case 272: /* arg: '!' arg */
13759#line 4007 "parse.y"
13760 {
13761 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), '!', &(yylsp[-1]), &(yyloc));
13762 /*% ripper: unary!(ID2VAL('\'!\''), $:2) %*/
13763 }
13764#line 13765 "parse.c"
13765 break;
13766
13767 case 273: /* arg: '~' arg */
13768#line 4012 "parse.y"
13769 {
13770 (yyval.node) = call_uni_op(p, (yyvsp[0].node), '~', &(yylsp[-1]), &(yyloc));
13771 /*% ripper: unary!(ID2VAL('\'~\''), $:2) %*/
13772 }
13773#line 13774 "parse.c"
13774 break;
13775
13776 case 274: /* arg: arg "<<" arg */
13777#line 4017 "parse.y"
13778 {
13779 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idLTLT, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13780 /*% ripper: binary!($:1, ID2VAL(idLTLT), $:3) %*/
13781 }
13782#line 13783 "parse.c"
13783 break;
13784
13785 case 275: /* arg: arg ">>" arg */
13786#line 4022 "parse.y"
13787 {
13788 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), idGTGT, (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13789 /*% ripper: binary!($:1, ID2VAL(idGTGT), $:3) %*/
13790 }
13791#line 13792 "parse.c"
13792 break;
13793
13794 case 276: /* arg: arg "&&" arg */
13795#line 4027 "parse.y"
13796 {
13797 (yyval.node) = logop(p, idANDOP, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13798 /*% ripper: binary!($:1, ID2VAL(idANDOP), $:3) %*/
13799 }
13800#line 13801 "parse.c"
13801 break;
13802
13803 case 277: /* arg: arg "||" arg */
13804#line 4032 "parse.y"
13805 {
13806 (yyval.node) = logop(p, idOROP, (yyvsp[-2].node), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13807 /*% ripper: binary!($:1, ID2VAL(idOROP), $:3) %*/
13808 }
13809#line 13810 "parse.c"
13810 break;
13811
13812 case 278: /* arg: "'defined?'" option_'\n' begin_defined arg */
13813#line 4037 "parse.y"
13814 {
13815 p->ctxt.in_defined = (yyvsp[-1].ctxt).in_defined;
13816 (yyval.node) = new_defined(p, (yyvsp[0].node), &(yyloc));
13817 /*% ripper: defined!($:4) %*/
13818 }
13819#line 13820 "parse.c"
13820 break;
13821
13822 case 279: /* arg: arg '?' arg option_'\n' ':' arg */
13823#line 4043 "parse.y"
13824 {
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));
13828 /*% ripper: ifop!($:1, $:3, $:6) %*/
13829 }
13830#line 13831 "parse.c"
13831 break;
13832
13833 case 280: /* def_endless_method_endless_arg: defn_head f_opt_paren_args '=' endless_arg */
13834#line 2948 "parse.y"
13835 {
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);
13841 /*% ripper: bodystmt!($:bodystmt, Qnil, Qnil, Qnil) %*/
13842 /*% ripper: def!($:head, $:args, $:$) %*/
13843 local_pop(p);
13844 }
13845#line 13846 "parse.c"
13846 break;
13847
13848 case 281: /* def_endless_method_endless_arg: defs_head f_opt_paren_args '=' endless_arg */
13849#line 2959 "parse.y"
13850 {
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);
13856 /*% ripper: bodystmt!($:bodystmt, Qnil, Qnil, Qnil) %*/
13857 /*% ripper: defs!(*$:head[0..2], $:args, $:$) %*/
13858 local_pop(p);
13859 }
13860#line 13861 "parse.c"
13861 break;
13862
13863 case 285: /* endless_arg: endless_arg "'rescue' modifier" after_rescue arg */
13864#line 4055 "parse.y"
13865 {
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]));
13868 /*% ripper: rescue_mod!($:1, $:4) %*/
13869 }
13870#line 13871 "parse.c"
13871 break;
13872
13873 case 286: /* endless_arg: "'not'" option_'\n' endless_arg */
13874#line 4061 "parse.y"
13875 {
13876 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[0].node), &(yylsp[0])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
13877 /*% ripper: unary!(ID2VAL(idNOT), $:3) %*/
13878 }
13879#line 13880 "parse.c"
13880 break;
13881
13882 case 287: /* relop: '>' */
13883#line 4067 "parse.y"
13884 {(yyval.id) = '>';}
13885#line 13886 "parse.c"
13886 break;
13887
13888 case 288: /* relop: '<' */
13889#line 4068 "parse.y"
13890 {(yyval.id) = '<';}
13891#line 13892 "parse.c"
13892 break;
13893
13894 case 289: /* relop: ">=" */
13895#line 4069 "parse.y"
13896 {(yyval.id) = idGE;}
13897#line 13898 "parse.c"
13898 break;
13899
13900 case 290: /* relop: "<=" */
13901#line 4070 "parse.y"
13902 {(yyval.id) = idLE;}
13903#line 13904 "parse.c"
13904 break;
13905
13906 case 291: /* rel_expr: arg relop arg */
13907#line 4074 "parse.y"
13908 {
13909 (yyval.node) = call_bin_op(p, (yyvsp[-2].node), (yyvsp[-1].id), (yyvsp[0].node), &(yylsp[-1]), &(yyloc));
13910 /*% ripper: binary!($:1, ID2VAL($2), $:3) %*/
13911 }
13912#line 13913 "parse.c"
13913 break;
13914
13915 case 292: /* rel_expr: rel_expr relop arg */
13916#line 4079 "parse.y"
13917 {
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));
13920 /*% ripper: binary!($:1, ID2VAL($2), $:3) %*/
13921 }
13922#line 13923 "parse.c"
13923 break;
13924
13925 case 293: /* lex_ctxt: none */
13926#line 4087 "parse.y"
13927 {
13928 (yyval.ctxt) = p->ctxt;
13929 }
13930#line 13931 "parse.c"
13931 break;
13932
13933 case 294: /* begin_defined: lex_ctxt */
13934#line 4093 "parse.y"
13935 {
13936 p->ctxt.in_defined = 1;
13937 (yyval.ctxt) = (yyvsp[0].ctxt);
13938 }
13939#line 13940 "parse.c"
13940 break;
13941
13942 case 295: /* after_rescue: lex_ctxt */
13943#line 4100 "parse.y"
13944 {
13945 p->ctxt.in_rescue = after_rescue;
13946 (yyval.ctxt) = (yyvsp[0].ctxt);
13947 }
13948#line 13949 "parse.c"
13949 break;
13950
13951 case 296: /* value_expr_arg: arg */
13952#line 3102 "parse.y"
13953 {
13954 value_expr((yyvsp[0].node));
13955 (yyval.node) = (yyvsp[0].node);
13956 }
13957#line 13958 "parse.c"
13958 break;
13959
13960 case 300: /* aref_args: args ',' assocs trailer */
13961#line 4112 "parse.y"
13962 {
13963 (yyval.node) = (yyvsp[-1].node) ? arg_append(p, (yyvsp[-3].node), new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : (yyvsp[-3].node);
13964 /*% ripper: args_add!($:1, bare_assoc_hash!($:3)) %*/
13965 }
13966#line 13967 "parse.c"
13967 break;
13968
13969 case 301: /* aref_args: assocs trailer */
13970#line 4117 "parse.y"
13971 {
13972 (yyval.node) = (yyvsp[-1].node) ? NEW_LIST(new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : 0;
13973 /*% ripper: args_add!(args_new!, bare_assoc_hash!($:1)) %*/
13974 }
13975#line 13976 "parse.c"
13976 break;
13977
13978 case 302: /* arg_rhs: arg */
13979#line 4124 "parse.y"
13980 {
13981 value_expr((yyvsp[0].node));
13982 (yyval.node) = (yyvsp[0].node);
13983 }
13984#line 13985 "parse.c"
13985 break;
13986
13987 case 303: /* arg_rhs: arg "'rescue' modifier" after_rescue arg */
13988#line 4129 "parse.y"
13989 {
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]));
13993 /*% ripper: rescue_mod!($:1, $:4) %*/
13994 }
13995#line 13996 "parse.c"
13996 break;
13997
13998 case 304: /* paren_args: '(' opt_call_args rparen */
13999#line 4138 "parse.y"
14000 {
14001 (yyval.node) = (yyvsp[-1].node);
14002 /*% ripper: arg_paren!($:2) %*/
14003 }
14004#line 14005 "parse.c"
14005 break;
14006
14007 case 305: /* paren_args: '(' args ',' args_forward rparen */
14008#line 4143 "parse.y"
14009 {
14010 if (!check_forwarding_args(p)) {
14011 (yyval.node) = 0;
14012 }
14013 else {
14014 (yyval.node) = new_args_forward_call(p, (yyvsp[-3].node), &(yylsp[-1]), &(yyloc));
14015 /*% ripper: arg_paren!(args_add!($:2, $:4)) %*/
14016 }
14017 }
14018#line 14019 "parse.c"
14019 break;
14020
14021 case 306: /* paren_args: '(' args_forward rparen */
14022#line 4153 "parse.y"
14023 {
14024 if (!check_forwarding_args(p)) {
14025 (yyval.node) = 0;
14026 }
14027 else {
14028 (yyval.node) = new_args_forward_call(p, 0, &(yylsp[-1]), &(yyloc));
14029 /*% ripper: arg_paren!($:2) %*/
14030 }
14031 }
14032#line 14033 "parse.c"
14033 break;
14034
14035 case 308: /* opt_paren_args: paren_args */
14036#line 4166 "parse.y"
14037 {
14038 (yyval.node) = (yyvsp[0].node) ? (yyvsp[0].node) : NODE_SPECIAL_EMPTY_ARGS;
14039 }
14040#line 14041 "parse.c"
14041 break;
14042
14043 case 312: /* opt_call_args: args ',' assocs ',' */
14044#line 4175 "parse.y"
14045 {
14046 (yyval.node) = (yyvsp[-1].node) ? arg_append(p, (yyvsp[-3].node), new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yyloc)) : (yyvsp[-3].node);
14047 /*% ripper: args_add!($:1, bare_assoc_hash!($:3)) %*/
14048 }
14049#line 14050 "parse.c"
14050 break;
14051
14052 case 313: /* opt_call_args: assocs ',' */
14053#line 4180 "parse.y"
14054 {
14055 (yyval.node) = (yyvsp[-1].node) ? NEW_LIST(new_hash(p, (yyvsp[-1].node), &(yylsp[-1])), &(yylsp[-1])) : 0;
14056 /*% ripper: args_add!(args_new!, bare_assoc_hash!($:1)) %*/
14057 }
14058#line 14059 "parse.c"
14059 break;
14060
14061 case 314: /* value_expr_command: command */
14062#line 3102 "parse.y"
14063 {
14064 value_expr((yyvsp[0].node));
14065 (yyval.node) = (yyvsp[0].node);
14066 }
14067#line 14068 "parse.c"
14068 break;
14069
14070 case 315: /* call_args: value_expr_command */
14071#line 4187 "parse.y"
14072 {
14073 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
14074 /*% ripper: args_add!(args_new!, $:1) %*/
14075 }
14076#line 14077 "parse.c"
14077 break;
14078
14079 case 316: /* call_args: args opt_block_arg */
14080#line 4192 "parse.y"
14081 {
14082 (yyval.node) = arg_blk_pass((yyvsp[-1].node), (yyvsp[0].node_block_pass));
14083 /*% ripper: args_add_block!($:1, $:2) %*/
14084 }
14085#line 14086 "parse.c"
14086 break;
14087
14088 case 317: /* call_args: assocs opt_block_arg */
14089#line 4197 "parse.y"
14090 {
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));
14093 /*% ripper: args_add_block!(args_add!(args_new!, bare_assoc_hash!($:1)), $:2) %*/
14094 }
14095#line 14096 "parse.c"
14096 break;
14097
14098 case 318: /* call_args: args ',' assocs opt_block_arg */
14099#line 4203 "parse.y"
14100 {
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));
14103 /*% ripper: args_add_block!(args_add!($:1, bare_assoc_hash!($:3)), $:4) %*/
14104 }
14105#line 14106 "parse.c"
14106 break;
14107
14108 case 320: /* $@13: %empty */
14109#line 4212 "parse.y"
14110 {
14111 /* If call_args starts with a open paren '(' or '[',
14112 * look-ahead reading of the letters calls CMDARG_PUSH(0),
14113 * but the push must be done after CMDARG_PUSH(1).
14114 * So this code makes them consistent by first cancelling
14115 * the premature CMDARG_PUSH(0), doing CMDARG_PUSH(1),
14116 * and finally redoing CMDARG_PUSH(0).
14117 */
14118 int lookahead = 0;
14119 switch (yychar) {
14120 case '(': case tLPAREN: case tLPAREN_ARG: case '[': case tLBRACK:
14121 lookahead = 1;
14122 }
14123 if (lookahead) CMDARG_POP();
14124 CMDARG_PUSH(1);
14125 if (lookahead) CMDARG_PUSH(0);
14126 }
14127#line 14128 "parse.c"
14128 break;
14129
14130 case 321: /* command_args: $@13 call_args */
14131#line 4230 "parse.y"
14132 {
14133 /* call_args can be followed by tLBRACE_ARG (that does CMDARG_PUSH(0) in the lexer)
14134 * but the push must be done after CMDARG_POP() in the parser.
14135 * So this code does CMDARG_POP() to pop 0 pushed by tLBRACE_ARG,
14136 * CMDARG_POP() to pop 1 pushed by command_args,
14137 * and CMDARG_PUSH(0) to restore back the flag set by tLBRACE_ARG.
14138 */
14139 int lookahead = 0;
14140 switch (yychar) {
14141 case tLBRACE_ARG:
14142 lookahead = 1;
14143 }
14144 if (lookahead) CMDARG_POP();
14145 CMDARG_POP();
14146 if (lookahead) CMDARG_PUSH(0);
14147 (yyval.node) = (yyvsp[0].node);
14148 /*% ripper: $:2 %*/
14149 }
14150#line 14151 "parse.c"
14151 break;
14152
14153 case 322: /* block_arg: "&" arg_value */
14154#line 4251 "parse.y"
14155 {
14156 (yyval.node_block_pass) = NEW_BLOCK_PASS((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14157 /*% ripper: $:2 %*/
14158 }
14159#line 14160 "parse.c"
14160 break;
14161
14162 case 323: /* block_arg: "&" */
14163#line 4256 "parse.y"
14164 {
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]));
14167 /*% ripper: Qnil %*/
14168 }
14169#line 14170 "parse.c"
14170 break;
14171
14172 case 324: /* opt_block_arg: ',' block_arg */
14173#line 4264 "parse.y"
14174 {
14175 (yyval.node_block_pass) = (yyvsp[0].node_block_pass);
14176 /*% ripper: $:2 %*/
14177 }
14178#line 14179 "parse.c"
14179 break;
14180
14181 case 325: /* opt_block_arg: none */
14182#line 4269 "parse.y"
14183 {
14184 (yyval.node_block_pass) = 0;
14185 /*% ripper: Qfalse %*/
14186 }
14187#line 14188 "parse.c"
14188 break;
14189
14190 case 326: /* args: arg_value */
14191#line 4277 "parse.y"
14192 {
14193 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
14194 /*% ripper: args_add!(args_new!, $:arg_value) %*/
14195 }
14196#line 14197 "parse.c"
14197 break;
14198
14199 case 327: /* args: arg_splat */
14200#line 4282 "parse.y"
14201 {
14202 (yyval.node) = (yyvsp[0].node);
14203 /*% ripper: args_add_star!(args_new!, $:arg_splat) %*/
14204 }
14205#line 14206 "parse.c"
14206 break;
14207
14208 case 328: /* args: args ',' arg_value */
14209#line 4287 "parse.y"
14210 {
14211 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
14212 /*% ripper: args_add!($:non_last_args, $:arg_value) %*/
14213 }
14214#line 14215 "parse.c"
14215 break;
14216
14217 case 329: /* args: args ',' arg_splat */
14218#line 4292 "parse.y"
14219 {
14220 (yyval.node) = rest_arg_append(p, (yyvsp[-2].node), RNODE_SPLAT((yyvsp[0].node))->nd_head, &(yyloc));
14221 /*% ripper: args_add_star!($:non_last_args, $:arg_splat) %*/
14222 }
14223#line 14224 "parse.c"
14224 break;
14225
14226 case 330: /* arg_splat: "*" arg_value */
14227#line 4300 "parse.y"
14228 {
14229 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14230 /*% ripper: $:arg_value %*/
14231 }
14232#line 14233 "parse.c"
14233 break;
14234
14235 case 331: /* arg_splat: "*" */
14236#line 4305 "parse.y"
14237 {
14238 forwarding_arg_check(p, idFWD_REST, idFWD_ALL, "rest");
14239 (yyval.node) = NEW_SPLAT(NEW_LVAR(idFWD_REST, &(yylsp[0])), &(yyloc), &(yylsp[0]));
14240 /*% ripper: Qnil %*/
14241 }
14242#line 14243 "parse.c"
14243 break;
14244
14245 case 334: /* mrhs: args ',' arg_value */
14246#line 4319 "parse.y"
14247 {
14248 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
14249 /*% ripper: mrhs_add!(mrhs_new_from_args!($:args), $:arg_value) %*/
14250 }
14251#line 14252 "parse.c"
14252 break;
14253
14254 case 335: /* mrhs: args ',' "*" arg_value */
14255#line 4324 "parse.y"
14256 {
14257 (yyval.node) = rest_arg_append(p, (yyvsp[-3].node), (yyvsp[0].node), &(yyloc));
14258 /*% ripper: mrhs_add_star!(mrhs_new_from_args!($:args), $:arg_value) %*/
14259 }
14260#line 14261 "parse.c"
14261 break;
14262
14263 case 336: /* mrhs: "*" arg_value */
14264#line 4329 "parse.y"
14265 {
14266 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
14267 /*% ripper: mrhs_add_star!(mrhs_new!, $:arg_value) %*/
14268 }
14269#line 14270 "parse.c"
14270 break;
14271
14272 case 347: /* primary: "method" */
14273#line 4350 "parse.y"
14274 {
14275 (yyval.node) = (NODE *)NEW_FCALL((yyvsp[0].id), 0, &(yyloc));
14276 /*% ripper: method_add_arg!(fcall!($:1), args_new!) %*/
14277 }
14278#line 14279 "parse.c"
14279 break;
14280
14281 case 348: /* $@14: %empty */
14282#line 4355 "parse.y"
14283 {
14284 CMDARG_PUSH(0);
14285 }
14286#line 14287 "parse.c"
14287 break;
14288
14289 case 349: /* primary: k_begin $@14 bodystmt k_end */
14290#line 4360 "parse.y"
14291 {
14292 CMDARG_POP();
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);
14296 /*% ripper: begin!($:3) %*/
14297 }
14298#line 14299 "parse.c"
14299 break;
14300
14301 case 350: /* $@15: %empty */
14302#line 4367 "parse.y"
14303 {SET_LEX_STATE(EXPR_ENDARG);}
14304#line 14305 "parse.c"
14305 break;
14306
14307 case 351: /* primary: "( arg" compstmt_stmts $@15 ')' */
14308#line 4368 "parse.y"
14309 {
14310 if (nd_type_p((yyvsp[-2].node), NODE_SELF)) RNODE_SELF((yyvsp[-2].node))->nd_state = 0;
14311 (yyval.node) = (yyvsp[-2].node);
14312 /*% ripper: paren!($:2) %*/
14313 }
14314#line 14315 "parse.c"
14315 break;
14316
14317 case 352: /* primary: "(" compstmt_stmts ')' */
14318#line 4374 "parse.y"
14319 {
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));
14322 /*% ripper: paren!($:2) %*/
14323 }
14324#line 14325 "parse.c"
14325 break;
14326
14327 case 353: /* primary: primary_value "::" "constant" */
14328#line 4380 "parse.y"
14329 {
14330 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
14331 /*% ripper: const_path_ref!($:1, $:3) %*/
14332 }
14333#line 14334 "parse.c"
14334 break;
14335
14336 case 354: /* primary: ":: at EXPR_BEG" "constant" */
14337#line 4385 "parse.y"
14338 {
14339 (yyval.node) = NEW_COLON3((yyvsp[0].id), &(yyloc));
14340 /*% ripper: top_const_ref!($:2) %*/
14341 }
14342#line 14343 "parse.c"
14343 break;
14344
14345 case 355: /* primary: "[" aref_args ']' */
14346#line 4390 "parse.y"
14347 {
14348 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
14349 /*% ripper: array!($:2) %*/
14350 }
14351#line 14352 "parse.c"
14352 break;
14353
14354 case 356: /* primary: "{" assoc_list '}' */
14355#line 4395 "parse.y"
14356 {
14357 (yyval.node) = new_hash(p, (yyvsp[-1].node), &(yyloc));
14358 RNODE_HASH((yyval.node))->nd_brace = TRUE;
14359 /*% ripper: hash!($:2) %*/
14360 }
14361#line 14362 "parse.c"
14362 break;
14363
14364 case 357: /* primary: k_return */
14365#line 4401 "parse.y"
14366 {
14367 (yyval.node) = NEW_RETURN(0, &(yyloc), &(yylsp[0]));
14368 /*% ripper: return0! %*/
14369 }
14370#line 14371 "parse.c"
14371 break;
14372
14373 case 358: /* primary: k_yield '(' call_args rparen */
14374#line 4406 "parse.y"
14375 {
14376 (yyval.node) = NEW_YIELD((yyvsp[-1].node), &(yyloc), &(yylsp[-3]), &(yylsp[-2]), &(yylsp[0]));
14377 /*% ripper: yield!(paren!($:3)) %*/
14378 }
14379#line 14380 "parse.c"
14380 break;
14381
14382 case 359: /* primary: k_yield '(' rparen */
14383#line 4411 "parse.y"
14384 {
14385 (yyval.node) = NEW_YIELD(0, &(yyloc), &(yylsp[-2]), &(yylsp[-1]), &(yylsp[0]));
14386 /*% ripper: yield!(paren!(args_new!)) %*/
14387 }
14388#line 14389 "parse.c"
14389 break;
14390
14391 case 360: /* primary: k_yield */
14392#line 4416 "parse.y"
14393 {
14394 (yyval.node) = NEW_YIELD(0, &(yyloc), &(yylsp[0]), &NULL_LOC, &NULL_LOC);
14395 /*% ripper: yield0! %*/
14396 }
14397#line 14398 "parse.c"
14398 break;
14399
14400 case 361: /* primary: "'defined?'" option_'\n' '(' begin_defined expr rparen */
14401#line 4421 "parse.y"
14402 {
14403 p->ctxt.in_defined = (yyvsp[-2].ctxt).in_defined;
14404 (yyval.node) = new_defined(p, (yyvsp[-1].node), &(yyloc));
14405 /*% ripper: defined!($:5) %*/
14406 }
14407#line 14408 "parse.c"
14408 break;
14409
14410 case 362: /* primary: "'not'" '(' expr rparen */
14411#line 4427 "parse.y"
14412 {
14413 (yyval.node) = call_uni_op(p, method_cond(p, (yyvsp[-1].node), &(yylsp[-1])), METHOD_NOT, &(yylsp[-3]), &(yyloc));
14414 /*% ripper: unary!(ID2VAL(idNOT), $:3) %*/
14415 }
14416#line 14417 "parse.c"
14417 break;
14418
14419 case 363: /* primary: "'not'" '(' rparen */
14420#line 4432 "parse.y"
14421 {
14422 (yyval.node) = call_uni_op(p, method_cond(p, new_nil(&(yylsp[-1])), &(yylsp[-1])), METHOD_NOT, &(yylsp[-2]), &(yyloc));
14423 /*% ripper: unary!(ID2VAL(idNOT), Qnil) %*/
14424 }
14425#line 14426 "parse.c"
14426 break;
14427
14428 case 364: /* primary: fcall brace_block */
14429#line 4437 "parse.y"
14430 {
14431 (yyval.node) = method_add_block(p, (NODE *)(yyvsp[-1].node_fcall), (yyvsp[0].node), &(yyloc));
14432 /*% ripper: method_add_block!(method_add_arg!(fcall!($:1), args_new!), $:2) %*/
14433 }
14434#line 14435 "parse.c"
14435 break;
14436
14437 case 366: /* primary: method_call brace_block */
14438#line 4443 "parse.y"
14439 {
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));
14442 /*% ripper: method_add_block!($:1, $:2) %*/
14443 }
14444#line 14445 "parse.c"
14445 break;
14446
14447 case 368: /* primary: k_if expr_value then compstmt_stmts if_tail k_end */
14448#line 4453 "parse.y"
14449 {
14450 if ((yyvsp[-1].node) && nd_type_p((yyvsp[-1].node), NODE_IF))
14451 RNODE_IF((yyvsp[-1].node))->end_keyword_loc = (yylsp[0]);
14452
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));
14455 /*% ripper: if!($:2, $:4, $:5) %*/
14456 }
14457#line 14458 "parse.c"
14458 break;
14459
14460 case 369: /* primary: k_unless expr_value then compstmt_stmts opt_else k_end */
14461#line 4465 "parse.y"
14462 {
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));
14465 /*% ripper: unless!($:2, $:4, $:5) %*/
14466 }
14467#line 14468 "parse.c"
14468 break;
14469
14470 case 370: /* primary: k_while expr_value_do compstmt_stmts k_end */
14471#line 4473 "parse.y"
14472 {
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));
14476 /*% ripper: while!($:2, $:3) %*/
14477 }
14478#line 14479 "parse.c"
14479 break;
14480
14481 case 371: /* primary: k_until expr_value_do compstmt_stmts k_end */
14482#line 4482 "parse.y"
14483 {
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));
14487 /*% ripper: until!($:2, $:3) %*/
14488 }
14489#line 14490 "parse.c"
14490 break;
14491
14492 case 372: /* @16: %empty */
14493#line 4489 "parse.y"
14494 {
14495 (yyval.labels) = p->case_labels;
14496 p->case_labels = CHECK_LITERAL_WHEN;
14497 }
14498#line 14499 "parse.c"
14499 break;
14500
14501 case 373: /* primary: k_case expr_value option_terms @16 case_body k_end */
14502#line 4495 "parse.y"
14503 {
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));
14508 /*% ripper: case!($:2, $:5) %*/
14509 }
14510#line 14511 "parse.c"
14511 break;
14512
14513 case 374: /* @17: %empty */
14514#line 4503 "parse.y"
14515 {
14516 (yyval.labels) = p->case_labels;
14517 p->case_labels = 0;
14518 }
14519#line 14520 "parse.c"
14520 break;
14521
14522 case 375: /* primary: k_case option_terms @17 case_body k_end */
14523#line 4509 "parse.y"
14524 {
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]));
14528 /*% ripper: case!(Qnil, $:4) %*/
14529 }
14530#line 14531 "parse.c"
14531 break;
14532
14533 case 376: /* primary: k_case expr_value option_terms p_case_body k_end */
14534#line 4518 "parse.y"
14535 {
14536 (yyval.node) = NEW_CASE3((yyvsp[-3].node), (yyvsp[-1].node), &(yyloc), &(yylsp[-4]), &(yylsp[0]));
14537 /*% ripper: case!($:2, $:4) %*/
14538 }
14539#line 14540 "parse.c"
14540 break;
14541
14542 case 377: /* $@18: %empty */
14543#line 4523 "parse.y"
14544 {COND_PUSH(1);}
14545#line 14546 "parse.c"
14546 break;
14547
14548 case 378: /* $@19: %empty */
14549#line 4523 "parse.y"
14550 {COND_POP();}
14551#line 14552 "parse.c"
14552 break;
14553
14554 case 379: /* primary: k_for for_var "'in'" $@18 expr_value do $@19 compstmt_stmts k_end */
14555#line 4526 "parse.y"
14556 {
14557 restore_block_exit(p, (yyvsp[-8].node_exits));
14558 /*
14559 * for a, b, c in e
14560 * #=>
14561 * e.each{|*x| a, b, c = x}
14562 *
14563 * for a in e
14564 * #=>
14565 * e.each{|x| a, = x}
14566 */
14567 ID id = internal_id(p);
14568 rb_node_args_aux_t *m = NEW_ARGS_AUX(0, 0, &NULL_LOC);
14569 rb_node_args_t *args;
14570 NODE *scope, *internal_var = NEW_DVAR(id, &(yylsp[-7]));
14571 rb_ast_id_table_t *tbl = rb_ast_new_local_table(p->ast, 1);
14572 tbl->ids[0] = id; /* internal id */
14573
14574 switch (nd_type((yyvsp[-7].node))) {
14575 case NODE_LASGN:
14576 case NODE_DASGN: /* e.each {|internal_var| a = internal_var; ... } */
14577 set_nd_value(p, (yyvsp[-7].node), internal_var);
14578 id = 0;
14579 m->nd_plen = 1;
14580 m->nd_next = (yyvsp[-7].node);
14581 break;
14582 case NODE_MASGN: /* e.each {|*internal_var| a, b, c = (internal_var.length == 1 && Array === (tmp = internal_var[0]) ? tmp : internal_var); ... } */
14583 m->nd_next = node_assign(p, (yyvsp[-7].node), NEW_FOR_MASGN(internal_var, &(yylsp[-7])), NO_LEX_CTXT, &(yylsp[-7]));
14584 break;
14585 default: /* e.each {|*internal_var| @a, B, c[1], d.attr = internal_val; ... } */
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]));
14587 }
14588 /* {|*internal_id| <m> = internal_id; ... } */
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));
14594 /*% ripper: for!($:for_var, $:expr_value, $:compstmt) %*/
14595 }
14596#line 14597 "parse.c"
14597 break;
14598
14599 case 380: /* $@20: %empty */
14600#line 4567 "parse.y"
14601 {
14602 begin_definition("class", &(yylsp[-2]), &(yylsp[-1]));
14603 }
14604#line 14605 "parse.c"
14605 break;
14606
14607 case 381: /* primary: k_class cpath superclass $@20 bodystmt k_end */
14608#line 4572 "parse.y"
14609 {
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;
14614 }
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);
14619 /*% ripper: class!($:cpath, $:superclass, $:bodystmt) %*/
14620 local_pop(p);
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;
14624 }
14625#line 14626 "parse.c"
14626 break;
14627
14628 case 382: /* $@21: %empty */
14629#line 4589 "parse.y"
14630 {
14631 begin_definition("", &(yylsp[-2]), &(yylsp[-1]));
14632 }
14633#line 14634 "parse.c"
14634 break;
14635
14636 case 383: /* primary: k_class "<<" expr_value $@21 term bodystmt k_end */
14637#line 4595 "parse.y"
14638 {
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));
14643 /*% ripper: sclass!($:expr_value, $:bodystmt) %*/
14644 local_pop(p);
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;
14649 }
14650#line 14651 "parse.c"
14651 break;
14652
14653 case 384: /* $@22: %empty */
14654#line 4608 "parse.y"
14655 {
14656 begin_definition("module", &(yylsp[-1]), &(yylsp[0]));
14657 }
14658#line 14659 "parse.c"
14659 break;
14660
14661 case 385: /* primary: k_module cpath $@22 bodystmt k_end */
14662#line 4613 "parse.y"
14663 {
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);
14668 /*% ripper: module!($:cpath, $:bodystmt) %*/
14669 local_pop(p);
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;
14673 }
14674#line 14675 "parse.c"
14675 break;
14676
14677 case 386: /* $@23: %empty */
14678#line 4626 "parse.y"
14679 {
14680 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14681 }
14682#line 14683 "parse.c"
14683 break;
14684
14685 case 387: /* primary: defn_head f_arglist $@23 bodystmt k_end */
14686#line 4631 "parse.y"
14687 {
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);
14692 /*% ripper: def!($:head, $:args, $:bodystmt) %*/
14693 local_pop(p);
14694 }
14695#line 14696 "parse.c"
14696 break;
14697
14698 case 388: /* $@24: %empty */
14699#line 4641 "parse.y"
14700 {
14701 push_end_expect_token_locations(p, &(yylsp[-1]).beg_pos);
14702 }
14703#line 14704 "parse.c"
14704 break;
14705
14706 case 389: /* primary: defs_head f_arglist $@24 bodystmt k_end */
14707#line 4646 "parse.y"
14708 {
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);
14713 /*% ripper: defs!(*$:head[0..2], $:args, $:bodystmt) %*/
14714 local_pop(p);
14715 }
14716#line 14717 "parse.c"
14717 break;
14718
14719 case 390: /* primary: "'break'" */
14720#line 4655 "parse.y"
14721 {
14722 (yyval.node) = add_block_exit(p, NEW_BREAK(0, &(yyloc), &(yylsp[0])));
14723 /*% ripper: break!(args_new!) %*/
14724 }
14725#line 14726 "parse.c"
14726 break;
14727
14728 case 391: /* primary: "'next'" */
14729#line 4660 "parse.y"
14730 {
14731 (yyval.node) = add_block_exit(p, NEW_NEXT(0, &(yyloc), &(yylsp[0])));
14732 /*% ripper: next!(args_new!) %*/
14733 }
14734#line 14735 "parse.c"
14735 break;
14736
14737 case 392: /* primary: "'redo'" */
14738#line 4665 "parse.y"
14739 {
14740 (yyval.node) = add_block_exit(p, NEW_REDO(&(yyloc), &(yylsp[0])));
14741 /*% ripper: redo! %*/
14742 }
14743#line 14744 "parse.c"
14744 break;
14745
14746 case 393: /* primary: "'retry'" */
14747#line 4670 "parse.y"
14748 {
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: /* ok */ 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;
14755 }
14756 }
14757 (yyval.node) = NEW_RETRY(&(yyloc));
14758 /*% ripper: retry! %*/
14759 }
14760#line 14761 "parse.c"
14761 break;
14762
14763 case 394: /* value_expr_primary: primary */
14764#line 3102 "parse.y"
14765 {
14766 value_expr((yyvsp[0].node));
14767 (yyval.node) = (yyvsp[0].node);
14768 }
14769#line 14770 "parse.c"
14770 break;
14771
14772 case 396: /* k_begin: "'begin'" */
14773#line 4688 "parse.y"
14774 {
14775 token_info_push(p, "begin", &(yyloc));
14776 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14777 }
14778#line 14779 "parse.c"
14779 break;
14780
14781 case 397: /* k_if: "'if'" */
14782#line 4695 "parse.y"
14783 {
14784 WARN_EOL("if");
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")) {
14788 const char *tok = p->lex.ptok - rb_strlen_lit("if");
14789 const char *beg = p->lex.pbeg + p->token_info->next->beg.column;
14790 beg += rb_strlen_lit("else");
14791 while (beg < tok && ISSPACE(*beg)) beg++;
14792 if (beg == tok) {
14793 p->token_info->nonspc = 0;
14794 }
14795 }
14796 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14797 }
14798#line 14799 "parse.c"
14799 break;
14800
14801 case 398: /* k_unless: "'unless'" */
14802#line 4713 "parse.y"
14803 {
14804 token_info_push(p, "unless", &(yyloc));
14805 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14806 }
14807#line 14808 "parse.c"
14808 break;
14809
14810 case 399: /* k_while: "'while'" allow_exits */
14811#line 4720 "parse.y"
14812 {
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);
14816 }
14817#line 14818 "parse.c"
14818 break;
14819
14820 case 400: /* k_until: "'until'" allow_exits */
14821#line 4728 "parse.y"
14822 {
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);
14826 }
14827#line 14828 "parse.c"
14828 break;
14829
14830 case 401: /* k_case: "'case'" */
14831#line 4736 "parse.y"
14832 {
14833 token_info_push(p, "case", &(yyloc));
14834 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14835 }
14836#line 14837 "parse.c"
14837 break;
14838
14839 case 402: /* k_for: "'for'" allow_exits */
14840#line 4743 "parse.y"
14841 {
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);
14845 }
14846#line 14847 "parse.c"
14847 break;
14848
14849 case 403: /* k_class: "'class'" */
14850#line 4751 "parse.y"
14851 {
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);
14856 }
14857#line 14858 "parse.c"
14858 break;
14859
14860 case 404: /* k_module: "'module'" */
14861#line 4760 "parse.y"
14862 {
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);
14867 }
14868#line 14869 "parse.c"
14869 break;
14870
14871 case 405: /* k_def: "'def'" */
14872#line 4769 "parse.y"
14873 {
14874 token_info_push(p, "def", &(yyloc));
14875 (yyval.node_def_temp) = NEW_DEF_TEMP(&(yyloc));
14876 p->ctxt.in_argdef = 1;
14877 }
14878#line 14879 "parse.c"
14879 break;
14880
14881 case 406: /* k_do: "'do'" */
14882#line 4777 "parse.y"
14883 {
14884 token_info_push(p, "do", &(yyloc));
14885 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14886 }
14887#line 14888 "parse.c"
14888 break;
14889
14890 case 407: /* k_do_block: "'do' for block" */
14891#line 4784 "parse.y"
14892 {
14893 token_info_push(p, "do", &(yyloc));
14894 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
14895 }
14896#line 14897 "parse.c"
14897 break;
14898
14899 case 408: /* k_rescue: "'rescue'" */
14900#line 4791 "parse.y"
14901 {
14902 token_info_warn(p, "rescue", p->token_info, 1, &(yyloc));
14903 (yyval.ctxt) = p->ctxt;
14904 p->ctxt.in_rescue = after_rescue;
14905 }
14906#line 14907 "parse.c"
14907 break;
14908
14909 case 409: /* k_ensure: "'ensure'" */
14910#line 4799 "parse.y"
14911 {
14912 token_info_warn(p, "ensure", p->token_info, 1, &(yyloc));
14913 (yyval.ctxt) = p->ctxt;
14914 }
14915#line 14916 "parse.c"
14916 break;
14917
14918 case 410: /* k_when: "'when'" */
14919#line 4806 "parse.y"
14920 {
14921 token_info_warn(p, "when", p->token_info, 0, &(yyloc));
14922 }
14923#line 14924 "parse.c"
14924 break;
14925
14926 case 411: /* k_else: "'else'" */
14927#line 4812 "parse.y"
14928 {
14929 token_info *ptinfo_beg = p->token_info;
14930 int same = ptinfo_beg && strcmp(ptinfo_beg->token, "case") != 0;
14931 token_info_warn(p, "else", p->token_info, same, &(yyloc));
14932 if (same) {
14933 token_info e;
14934 e.next = ptinfo_beg->next;
14935 e.token = "else";
14936 token_info_setup(&e, p->lex.pbeg, &(yyloc));
14937 if (!e.nonspc) *ptinfo_beg = e;
14938 }
14939 }
14940#line 14941 "parse.c"
14941 break;
14942
14943 case 412: /* k_elsif: "'elsif'" */
14944#line 4827 "parse.y"
14945 {
14946 WARN_EOL("elsif");
14947 token_info_warn(p, "elsif", p->token_info, 1, &(yyloc));
14948 }
14949#line 14950 "parse.c"
14950 break;
14951
14952 case 413: /* k_end: "'end'" */
14953#line 4834 "parse.y"
14954 {
14955 token_info_pop(p, "end", &(yyloc));
14956 pop_end_expect_token_locations(p);
14957 }
14958#line 14959 "parse.c"
14959 break;
14960
14961 case 414: /* k_end: "dummy end" */
14962#line 4839 "parse.y"
14963 {
14964 compile_error(p, "syntax error, unexpected end-of-input");
14965 }
14966#line 14967 "parse.c"
14967 break;
14968
14969 case 415: /* k_return: "'return'" */
14970#line 4845 "parse.y"
14971 {
14972 if (p->ctxt.cant_return && !dyna_in_block(p))
14973 yyerror1(&(yylsp[0]), "Invalid return in class/module body");
14974 }
14975#line 14976 "parse.c"
14976 break;
14977
14978 case 416: /* k_yield: "'yield'" */
14979#line 4852 "parse.y"
14980 {
14981 if (!p->ctxt.in_defined && !p->ctxt.in_def && !compile_for_eval)
14982 yyerror1(&(yylsp[0]), "Invalid yield");
14983 }
14984#line 14985 "parse.c"
14985 break;
14986
14987 case 421: /* do: "'do' for condition" */
14988#line 4864 "parse.y"
14989 { (yyval.id) = keyword_do_cond; }
14990#line 14991 "parse.c"
14991 break;
14992
14993 case 423: /* if_tail: k_elsif expr_value then compstmt_stmts if_tail */
14994#line 4871 "parse.y"
14995 {
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));
14998 /*% ripper: elsif!($:2, $:4, $:5) %*/
14999 }
15000#line 15001 "parse.c"
15001 break;
15002
15003 case 425: /* opt_else: k_else compstmt_stmts */
15004#line 4880 "parse.y"
15005 {
15006 (yyval.node) = (yyvsp[0].node);
15007 /*% ripper: else!($:2) %*/
15008 }
15009#line 15010 "parse.c"
15010 break;
15011
15012 case 428: /* f_marg: f_norm_arg */
15013#line 4891 "parse.y"
15014 {
15015 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
15016 mark_lvar_used(p, (yyval.node));
15017 }
15018#line 15019 "parse.c"
15019 break;
15020
15021 case 429: /* f_marg: "(" f_margs rparen */
15022#line 4896 "parse.y"
15023 {
15024 (yyval.node) = (NODE *)(yyvsp[-1].node_masgn);
15025 /*% ripper: mlhs_paren!($:2) %*/
15026 }
15027#line 15028 "parse.c"
15028 break;
15029
15030 case 430: /* mlhs_f_marg: f_marg */
15031#line 3030 "parse.y"
15032 {
15033 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
15034 /*% ripper: mlhs_add!(mlhs_new!, $:1) %*/
15035 }
15036#line 15037 "parse.c"
15037 break;
15038
15039 case 431: /* mlhs_f_marg: mlhs_f_marg ',' f_marg */
15040#line 3035 "parse.y"
15041 {
15042 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[0].node));
15043 /*% ripper: mlhs_add!($:1, $:3) %*/
15044 }
15045#line 15046 "parse.c"
15046 break;
15047
15048 case 432: /* f_margs: mlhs_f_marg */
15049#line 4904 "parse.y"
15050 {
15051 (yyval.node_masgn) = NEW_MASGN((yyvsp[0].node), 0, &(yyloc));
15052 /*% ripper: $:1 %*/
15053 }
15054#line 15055 "parse.c"
15055 break;
15056
15057 case 433: /* f_margs: mlhs_f_marg ',' f_rest_marg */
15058#line 4909 "parse.y"
15059 {
15060 (yyval.node_masgn) = NEW_MASGN((yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
15061 /*% ripper: mlhs_add_star!($:1, $:3) %*/
15062 }
15063#line 15064 "parse.c"
15064 break;
15065
15066 case 434: /* f_margs: mlhs_f_marg ',' f_rest_marg ',' mlhs_f_marg */
15067#line 4914 "parse.y"
15068 {
15069 (yyval.node_masgn) = NEW_MASGN((yyvsp[-4].node), NEW_POSTARG((yyvsp[-2].node), (yyvsp[0].node), &(yyloc)), &(yyloc));
15070 /*% ripper: mlhs_add_post!(mlhs_add_star!($:1, $:3), $:5) %*/
15071 }
15072#line 15073 "parse.c"
15073 break;
15074
15075 case 435: /* f_margs: f_rest_marg */
15076#line 4919 "parse.y"
15077 {
15078 (yyval.node_masgn) = NEW_MASGN(0, (yyvsp[0].node), &(yyloc));
15079 /*% ripper: mlhs_add_star!(mlhs_new!, $:1) %*/
15080 }
15081#line 15082 "parse.c"
15082 break;
15083
15084 case 436: /* f_margs: f_rest_marg ',' mlhs_f_marg */
15085#line 4924 "parse.y"
15086 {
15087 (yyval.node_masgn) = NEW_MASGN(0, NEW_POSTARG((yyvsp[-2].node), (yyvsp[0].node), &(yyloc)), &(yyloc));
15088 /*% ripper: mlhs_add_post!(mlhs_add_star!(mlhs_new!, $:1), $:3) %*/
15089 }
15090#line 15091 "parse.c"
15091 break;
15092
15093 case 437: /* f_rest_marg: "*" f_norm_arg */
15094#line 4931 "parse.y"
15095 {
15096 /*% ripper: $:2 %*/
15097 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
15098 mark_lvar_used(p, (yyval.node));
15099 }
15100#line 15101 "parse.c"
15101 break;
15102
15103 case 438: /* f_rest_marg: "*" */
15104#line 4937 "parse.y"
15105 {
15106 (yyval.node) = NODE_SPECIAL_NO_NAME_REST;
15107 /*% ripper: Qnil %*/
15108 }
15109#line 15110 "parse.c"
15110 break;
15111
15112 case 440: /* f_any_kwrest: f_no_kwarg */
15113#line 4945 "parse.y"
15114 {
15115 (yyval.id) = idNil;
15116 /*% ripper: ID2VAL(idNil) %*/
15117 }
15118#line 15119 "parse.c"
15119 break;
15120
15121 case 441: /* $@25: %empty */
15122#line 4951 "parse.y"
15123 {p->ctxt.in_argdef = 0;}
15124#line 15125 "parse.c"
15125 break;
15126
15127 case 443: /* f_kw_primary_value: f_label primary_value */
15128#line 3002 "parse.y"
15129 {
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));
15132 /*% ripper: [$:$, $:value] %*/
15133 }
15134#line 15135 "parse.c"
15135 break;
15136
15137 case 444: /* f_kw_primary_value: f_label */
15138#line 3008 "parse.y"
15139 {
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));
15142 /*% ripper: [$:$, 0] %*/
15143 }
15144#line 15145 "parse.c"
15145 break;
15146
15147 case 445: /* f_kwarg_primary_value: f_kw_primary_value */
15148#line 3017 "parse.y"
15149 {
15150 (yyval.node_kw_arg) = (yyvsp[0].node_kw_arg);
15151 /*% ripper: rb_ary_new3(1, $:1) %*/
15152 }
15153#line 15154 "parse.c"
15154 break;
15155
15156 case 446: /* f_kwarg_primary_value: f_kwarg_primary_value ',' f_kw_primary_value */
15157#line 3022 "parse.y"
15158 {
15159 (yyval.node_kw_arg) = kwd_append((yyvsp[-2].node_kw_arg), (yyvsp[0].node_kw_arg));
15160 /*% ripper: rb_ary_push($:1, $:3) %*/
15161 }
15162#line 15163 "parse.c"
15163 break;
15164
15165 case 447: /* args_tail_basic_primary_value: f_kwarg_primary_value ',' f_kwrest opt_f_block_arg */
15166#line 2926 "parse.y"
15167 {
15168 (yyval.node_args) = new_args_tail(p, (yyvsp[-3].node_kw_arg), (yyvsp[-1].id), (yyvsp[0].id), &(yylsp[-1]));
15169 /*% ripper: [$:1, $:3, $:4] %*/
15170 }
15171#line 15172 "parse.c"
15172 break;
15173
15174 case 448: /* args_tail_basic_primary_value: f_kwarg_primary_value opt_f_block_arg */
15175#line 2931 "parse.y"
15176 {
15177 (yyval.node_args) = new_args_tail(p, (yyvsp[-1].node_kw_arg), 0, (yyvsp[0].id), &(yylsp[-1]));
15178 /*% ripper: [$:1, Qnil, $:2] %*/
15179 }
15180#line 15181 "parse.c"
15181 break;
15182
15183 case 449: /* args_tail_basic_primary_value: f_any_kwrest opt_f_block_arg */
15184#line 2936 "parse.y"
15185 {
15186 (yyval.node_args) = new_args_tail(p, 0, (yyvsp[-1].id), (yyvsp[0].id), &(yylsp[-1]));
15187 /*% ripper: [Qnil, $:1, $:2] %*/
15188 }
15189#line 15190 "parse.c"
15190 break;
15191
15192 case 450: /* args_tail_basic_primary_value: f_block_arg */
15193#line 2941 "parse.y"
15194 {
15195 (yyval.node_args) = new_args_tail(p, 0, 0, (yyvsp[0].id), &(yylsp[0]));
15196 /*% ripper: [Qnil, Qnil, $:1] %*/
15197 }
15198#line 15199 "parse.c"
15199 break;
15200
15201 case 452: /* excessed_comma: ',' */
15202#line 4957 "parse.y"
15203 {
15204 /* magic number for rest_id in iseq_set_arguments() */
15205 (yyval.id) = NODE_SPECIAL_EXCESSIVE_COMMA;
15206 /*% ripper: excessed_comma! %*/
15207 }
15208#line 15209 "parse.c"
15209 break;
15210
15211 case 453: /* f_opt_primary_value: f_arg_asgn f_eq primary_value */
15212#line 2980 "parse.y"
15213 {
15214 p->ctxt.in_argdef = 1;
15215 (yyval.node_opt_arg) = NEW_OPT_ARG(assignable(p, (yyvsp[-2].id), (yyvsp[0].node), &(yyloc)), &(yyloc));
15216 /*% ripper: [$:$, $:3] %*/
15217 }
15218#line 15219 "parse.c"
15219 break;
15220
15221 case 454: /* f_optarg_primary_value: f_opt_primary_value */
15222#line 2989 "parse.y"
15223 {
15224 (yyval.node_opt_arg) = (yyvsp[0].node_opt_arg);
15225 /*% ripper: rb_ary_new3(1, $:1) %*/
15226 }
15227#line 15228 "parse.c"
15228 break;
15229
15230 case 455: /* f_optarg_primary_value: f_optarg_primary_value ',' f_opt_primary_value */
15231#line 2994 "parse.y"
15232 {
15233 (yyval.node_opt_arg) = opt_arg_append((yyvsp[-2].node_opt_arg), (yyvsp[0].node_opt_arg));
15234 /*% ripper: rb_ary_push($:1, $:3) %*/
15235 }
15236#line 15237 "parse.c"
15237 break;
15238
15239 case 456: /* opt_args_tail_block_args_tail: ',' block_args_tail */
15240#line 3089 "parse.y"
15241 {
15242 (yyval.node_args) = (yyvsp[0].node_args);
15243 /*% ripper: $:2 %*/
15244 }
15245#line 15246 "parse.c"
15246 break;
15247
15248 case 457: /* opt_args_tail_block_args_tail: %empty */
15249#line 3094 "parse.y"
15250 {
15251 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
15252 /*% ripper: [Qnil, Qnil, Qnil] %*/
15253 }
15254#line 15255 "parse.c"
15255 break;
15256
15257 case 458: /* block_param: f_arg ',' f_optarg_primary_value ',' f_rest_arg opt_args_tail_block_args_tail */
15258#line 4965 "parse.y"
15259 {
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));
15261 /*% ripper: params!($:1, $:3, $:5, Qnil, *$:6[0..2]) %*/
15262 }
15263#line 15264 "parse.c"
15264 break;
15265
15266 case 459: /* block_param: f_arg ',' f_optarg_primary_value ',' f_rest_arg ',' f_arg opt_args_tail_block_args_tail */
15267#line 4970 "parse.y"
15268 {
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));
15270 /*% ripper: params!($:1, $:3, $:5, $:7, *$:8[0..2]) %*/
15271 }
15272#line 15273 "parse.c"
15273 break;
15274
15275 case 460: /* block_param: f_arg ',' f_optarg_primary_value opt_args_tail_block_args_tail */
15276#line 4975 "parse.y"
15277 {
15278 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
15279 /*% ripper: params!($:1, $:3, Qnil, Qnil, *$:4[0..2]) %*/
15280 }
15281#line 15282 "parse.c"
15282 break;
15283
15284 case 461: /* block_param: f_arg ',' f_optarg_primary_value ',' f_arg opt_args_tail_block_args_tail */
15285#line 4980 "parse.y"
15286 {
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));
15288 /*% ripper: params!($:1, $:3, Qnil, $:5, *$:6[0..2]) %*/
15289 }
15290#line 15291 "parse.c"
15291 break;
15292
15293 case 462: /* block_param: f_arg ',' f_rest_arg opt_args_tail_block_args_tail */
15294#line 4985 "parse.y"
15295 {
15296 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
15297 /*% ripper: params!($:1, Qnil, $:3, Qnil, *$:4[0..2]) %*/
15298 }
15299#line 15300 "parse.c"
15300 break;
15301
15302 case 463: /* block_param: f_arg excessed_comma */
15303#line 4990 "parse.y"
15304 {
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));
15307 /*% ripper: params!($:1, Qnil, $:2, Qnil, Qnil, Qnil, Qnil) %*/
15308 }
15309#line 15310 "parse.c"
15310 break;
15311
15312 case 464: /* block_param: f_arg ',' f_rest_arg ',' f_arg opt_args_tail_block_args_tail */
15313#line 4996 "parse.y"
15314 {
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));
15316 /*% ripper: params!($:1, Qnil, $:3, $:5, *$:6[0..2]) %*/
15317 }
15318#line 15319 "parse.c"
15319 break;
15320
15321 case 465: /* block_param: f_arg opt_args_tail_block_args_tail */
15322#line 5001 "parse.y"
15323 {
15324 (yyval.node_args) = new_args(p, (yyvsp[-1].node_args_aux), 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
15325 /*% ripper: params!($:1, Qnil, Qnil, Qnil, *$:2[0..2]) %*/
15326 }
15327#line 15328 "parse.c"
15328 break;
15329
15330 case 466: /* block_param: f_optarg_primary_value ',' f_rest_arg opt_args_tail_block_args_tail */
15331#line 5006 "parse.y"
15332 {
15333 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
15334 /*% ripper: params!(Qnil, $:1, $:3, Qnil, *$:4[0..2]) %*/
15335 }
15336#line 15337 "parse.c"
15337 break;
15338
15339 case 467: /* block_param: f_optarg_primary_value ',' f_rest_arg ',' f_arg opt_args_tail_block_args_tail */
15340#line 5011 "parse.y"
15341 {
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));
15343 /*% ripper: params!(Qnil, $:1, $:3, $:5, *$:6[0..2]) %*/
15344 }
15345#line 15346 "parse.c"
15346 break;
15347
15348 case 468: /* block_param: f_optarg_primary_value opt_args_tail_block_args_tail */
15349#line 5016 "parse.y"
15350 {
15351 (yyval.node_args) = new_args(p, 0, (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
15352 /*% ripper: params!(Qnil, $:1, Qnil, Qnil, *$:2[0..2]) %*/
15353 }
15354#line 15355 "parse.c"
15355 break;
15356
15357 case 469: /* block_param: f_optarg_primary_value ',' f_arg opt_args_tail_block_args_tail */
15358#line 5021 "parse.y"
15359 {
15360 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15361 /*% ripper: params!(Qnil, $:1, Qnil, $:3, *$:4[0..2]) %*/
15362 }
15363#line 15364 "parse.c"
15364 break;
15365
15366 case 470: /* block_param: f_rest_arg opt_args_tail_block_args_tail */
15367#line 5026 "parse.y"
15368 {
15369 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
15370 /*% ripper: params!(Qnil, Qnil, $:1, Qnil, *$:2[0..2]) %*/
15371 }
15372#line 15373 "parse.c"
15373 break;
15374
15375 case 471: /* block_param: f_rest_arg ',' f_arg opt_args_tail_block_args_tail */
15376#line 5031 "parse.y"
15377 {
15378 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
15379 /*% ripper: params!(Qnil, Qnil, $:1, $:3, *$:4[0..2]) %*/
15380 }
15381#line 15382 "parse.c"
15382 break;
15383
15384 case 472: /* block_param: block_args_tail */
15385#line 5036 "parse.y"
15386 {
15387 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
15388 /*% ripper: params!(Qnil, Qnil, Qnil, Qnil, *$:1[0..2]) %*/
15389 }
15390#line 15391 "parse.c"
15391 break;
15392
15393 case 474: /* opt_block_param_def: block_param_def */
15394#line 5044 "parse.y"
15395 {
15396 p->command_start = TRUE;
15397 }
15398#line 15399 "parse.c"
15399 break;
15400
15401 case 475: /* block_param_def: '|' opt_block_param opt_bv_decl '|' */
15402#line 5050 "parse.y"
15403 {
15404 p->max_numparam = ORDINAL_PARAM;
15405 p->ctxt.in_argdef = 0;
15406 (yyval.node_args) = (yyvsp[-2].node_args);
15407 /*% ripper: block_var!($:2, $:3) %*/
15408 }
15409#line 15410 "parse.c"
15410 break;
15411
15412 case 476: /* opt_block_param: %empty */
15413#line 5059 "parse.y"
15414 {
15415 (yyval.node_args) = 0;
15416 /*% ripper: params!(Qnil,Qnil,Qnil,Qnil,Qnil,Qnil,Qnil) %*/
15417 }
15418#line 15419 "parse.c"
15419 break;
15420
15421 case 478: /* opt_bv_decl: option_'\n' */
15422#line 5067 "parse.y"
15423 {
15424 (yyval.id) = 0;
15425 /*% ripper: Qfalse %*/
15426 }
15427#line 15428 "parse.c"
15428 break;
15429
15430 case 479: /* opt_bv_decl: option_'\n' ';' bv_decls option_'\n' */
15431#line 5072 "parse.y"
15432 {
15433 (yyval.id) = 0;
15434 /*% ripper: $:3 %*/
15435 }
15436#line 15437 "parse.c"
15437 break;
15438
15439 case 482: /* bvar: "local variable or method" */
15440#line 5085 "parse.y"
15441 {
15442 new_bv(p, (yyvsp[0].id));
15443 /*% ripper: $:1 %*/
15444 }
15445#line 15446 "parse.c"
15446 break;
15447
15448 case 484: /* max_numparam: %empty */
15449#line 5092 "parse.y"
15450 {
15451 (yyval.num) = p->max_numparam;
15452 p->max_numparam = 0;
15453 }
15454#line 15455 "parse.c"
15455 break;
15456
15457 case 485: /* numparam: %empty */
15458#line 5098 "parse.y"
15459 {
15460 (yyval.node) = numparam_push(p);
15461 }
15462#line 15463 "parse.c"
15463 break;
15464
15465 case 486: /* it_id: %empty */
15466#line 5103 "parse.y"
15467 {
15468 (yyval.id) = p->it_id;
15469 p->it_id = 0;
15470 }
15471#line 15472 "parse.c"
15472 break;
15473
15474 case 487: /* @26: %empty */
15475#line 5110 "parse.y"
15476 {
15477 token_info_push(p, "->", &(yylsp[0]));
15478 (yyval.vars) = dyna_push(p);
15479 }
15480#line 15481 "parse.c"
15481 break;
15482
15483 case 488: /* $@27: %empty */
15484#line 5116 "parse.y"
15485 {
15486 CMDARG_PUSH(0);
15487 }
15488#line 15489 "parse.c"
15489 break;
15490
15491 case 489: /* lambda: "->" @26 max_numparam numparam it_id allow_exits f_larglist $@27 lambda_body */
15492#line 5120 "parse.y"
15493 {
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));
15500 CMDARG_POP();
15501 (yyvsp[-2].node_args) = args_with_numbered(p, (yyvsp[-2].node_args), max_numparam, it_id);
15502 {
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));
15509 }
15510 /*% ripper: lambda!($:args, $:body) %*/
15511 numparam_pop(p, (yyvsp[-5].node));
15512 dyna_pop(p, (yyvsp[-7].vars));
15513 }
15514#line 15515 "parse.c"
15515 break;
15516
15517 case 490: /* f_larglist: '(' f_args opt_bv_decl ')' */
15518#line 5144 "parse.y"
15519 {
15520 p->ctxt.in_argdef = 0;
15521 (yyval.node_args) = (yyvsp[-2].node_args);
15522 p->max_numparam = ORDINAL_PARAM;
15523 /*% ripper: paren!($:2) %*/
15524 }
15525#line 15526 "parse.c"
15526 break;
15527
15528 case 491: /* f_larglist: f_args */
15529#line 5151 "parse.y"
15530 {
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);
15535 }
15536#line 15537 "parse.c"
15537 break;
15538
15539 case 492: /* lambda_body: tLAMBEG compstmt_stmts '}' */
15540#line 5160 "parse.y"
15541 {
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]));
15544 /*% ripper: $:2 %*/
15545 }
15546#line 15547 "parse.c"
15547 break;
15548
15549 case 493: /* $@28: %empty */
15550#line 5166 "parse.y"
15551 {
15552 push_end_expect_token_locations(p, &(yylsp[0]).beg_pos);
15553 }
15554#line 15555 "parse.c"
15555 break;
15556
15557 case 494: /* lambda_body: "'do' for lambda" $@28 bodystmt k_end */
15558#line 5170 "parse.y"
15559 {
15560 (yyval.locations_lambda_body) = new_locations_lambda_body(p, (yyvsp[-1].node), &(yylsp[-1]), &(yylsp[-3]), &(yylsp[0]));
15561 /*% ripper: $:3 %*/
15562 }
15563#line 15564 "parse.c"
15564 break;
15565
15566 case 495: /* do_block: k_do_block do_body k_end */
15567#line 5177 "parse.y"
15568 {
15569 (yyval.node) = (yyvsp[-1].node);
15570 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15571 /*% ripper: $:2 %*/
15572 }
15573#line 15574 "parse.c"
15574 break;
15575
15576 case 496: /* block_call: command do_block */
15577#line 5185 "parse.y"
15578 {
15579 if (nd_type_p((yyvsp[-1].node), NODE_YIELD)) {
15580 compile_error(p, "block given to yield");
15581 }
15582 else {
15583 block_dup_check(p, get_nd_args(p, (yyvsp[-1].node)), (yyvsp[0].node));
15584 }
15585 (yyval.node) = method_add_block(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
15586 fixpos((yyval.node), (yyvsp[-1].node));
15587 /*% ripper: method_add_block!($:1, $:2) %*/
15588 }
15589#line 15590 "parse.c"
15590 break;
15591
15592 case 497: /* block_call: block_call call_op2 operation2 opt_paren_args */
15593#line 5197 "parse.y"
15594 {
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));
15598 /*% ripper: call!($:1, $:2, $:3) %*/
15599 if (has_args) {
15600 /*% ripper: method_add_arg!($:$, $:4) %*/
15601 }
15602 }
15603#line 15604 "parse.c"
15604 break;
15605
15606 case 498: /* block_call: block_call call_op2 operation2 opt_paren_args brace_block */
15607#line 5207 "parse.y"
15608 {
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));
15611 /*% ripper: command_call!($:1, $:2, $:3, $:4) %*/
15612 if ((yyvsp[0].node)) {
15613 /*% ripper: method_add_block!($:$, $:5) %*/
15614 }
15615 }
15616#line 15617 "parse.c"
15617 break;
15618
15619 case 499: /* block_call: block_call call_op2 operation2 command_args do_block */
15620#line 5216 "parse.y"
15621 {
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));
15623 /*% ripper: method_add_block!(command_call!($:1, $:2, $:3, $:4), $:5) %*/
15624 }
15625#line 15626 "parse.c"
15626 break;
15627
15628 case 500: /* method_call: fcall paren_args */
15629#line 5223 "parse.y"
15630 {
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);
15634 /*% ripper: method_add_arg!(fcall!($:1), $:2) %*/
15635 }
15636#line 15637 "parse.c"
15637 break;
15638
15639 case 501: /* method_call: primary_value call_op operation2 opt_paren_args */
15640#line 5230 "parse.y"
15641 {
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);
15646 /*% ripper: call!($:1, $:2, $:3) %*/
15647 if (has_args) {
15648 /*% ripper: method_add_arg!($:$, $:4) %*/
15649 }
15650 }
15651#line 15652 "parse.c"
15652 break;
15653
15654 case 502: /* method_call: primary_value "::" operation2 paren_args */
15655#line 5241 "parse.y"
15656 {
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);
15659 /*% ripper: method_add_arg!(call!($:1, $:2, $:3), $:4) %*/
15660 }
15661#line 15662 "parse.c"
15662 break;
15663
15664 case 503: /* method_call: primary_value "::" operation3 */
15665#line 5247 "parse.y"
15666 {
15667 (yyval.node) = new_qcall(p, idCOLON2, (yyvsp[-2].node), (yyvsp[0].id), 0, &(yylsp[0]), &(yyloc));
15668 /*% ripper: call!($:1, $:2, $:3) %*/
15669 }
15670#line 15671 "parse.c"
15671 break;
15672
15673 case 504: /* method_call: primary_value call_op paren_args */
15674#line 5252 "parse.y"
15675 {
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);
15678 /*% ripper: method_add_arg!(call!($:1, $:2, ID2VAL(idCall)), $:3) %*/
15679 }
15680#line 15681 "parse.c"
15681 break;
15682
15683 case 505: /* method_call: primary_value "::" paren_args */
15684#line 5258 "parse.y"
15685 {
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);
15688 /*% ripper: method_add_arg!(call!($:1, $:2, ID2VAL(idCall)), $:3) %*/
15689 }
15690#line 15691 "parse.c"
15691 break;
15692
15693 case 506: /* method_call: "'super'" paren_args */
15694#line 5264 "parse.y"
15695 {
15696 rb_code_location_t lparen_loc = (yylsp[0]);
15697 rb_code_location_t rparen_loc = (yylsp[0]);
15698 lparen_loc.end_pos.column = lparen_loc.beg_pos.column + 1;
15699 rparen_loc.beg_pos.column = rparen_loc.end_pos.column - 1;
15700
15701 (yyval.node) = NEW_SUPER((yyvsp[0].node), &(yyloc), &(yylsp[-1]), &lparen_loc, &rparen_loc);
15702 /*% ripper: super!($:2) %*/
15703 }
15704#line 15705 "parse.c"
15705 break;
15706
15707 case 507: /* method_call: "'super'" */
15708#line 5274 "parse.y"
15709 {
15710 (yyval.node) = NEW_ZSUPER(&(yyloc));
15711 /*% ripper: zsuper! %*/
15712 }
15713#line 15714 "parse.c"
15714 break;
15715
15716 case 508: /* method_call: primary_value '[' opt_call_args rbracket */
15717#line 5279 "parse.y"
15718 {
15719 (yyval.node) = NEW_CALL((yyvsp[-3].node), tAREF, (yyvsp[-1].node), &(yyloc));
15720 fixpos((yyval.node), (yyvsp[-3].node));
15721 /*% ripper: aref!($:1, $:3) %*/
15722 }
15723#line 15724 "parse.c"
15724 break;
15725
15726 case 509: /* brace_block: '{' brace_body '}' */
15727#line 5287 "parse.y"
15728 {
15729 (yyval.node) = (yyvsp[-1].node);
15730 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15731 /*% ripper: $:2 %*/
15732 }
15733#line 15734 "parse.c"
15734 break;
15735
15736 case 510: /* brace_block: k_do do_body k_end */
15737#line 5293 "parse.y"
15738 {
15739 (yyval.node) = (yyvsp[-1].node);
15740 set_embraced_location((yyval.node), &(yylsp[-2]), &(yylsp[0]));
15741 /*% ripper: $:2 %*/
15742 }
15743#line 15744 "parse.c"
15744 break;
15745
15746 case 511: /* @29: %empty */
15747#line 5300 "parse.y"
15748 {(yyval.vars) = dyna_push(p);}
15749#line 15750 "parse.c"
15750 break;
15751
15752 case 512: /* brace_body: @29 max_numparam numparam it_id allow_exits opt_block_param_def compstmt_stmts */
15753#line 5303 "parse.y"
15754 {
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));
15761 /*% ripper: brace_block!($:args, $:compstmt) %*/
15762 restore_block_exit(p, (yyvsp[-2].node_exits));
15763 numparam_pop(p, (yyvsp[-4].node));
15764 dyna_pop(p, (yyvsp[-6].vars));
15765 }
15766#line 15767 "parse.c"
15767 break;
15768
15769 case 513: /* @30: %empty */
15770#line 5317 "parse.y"
15771 {
15772 (yyval.vars) = dyna_push(p);
15773 CMDARG_PUSH(0);
15774 }
15775#line 15776 "parse.c"
15776 break;
15777
15778 case 514: /* do_body: @30 max_numparam numparam it_id allow_exits opt_block_param_def bodystmt */
15779#line 5323 "parse.y"
15780 {
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));
15787 /*% ripper: do_block!($:args, $:bodystmt) %*/
15788 CMDARG_POP();
15789 restore_block_exit(p, (yyvsp[-2].node_exits));
15790 numparam_pop(p, (yyvsp[-4].node));
15791 dyna_pop(p, (yyvsp[-6].vars));
15792 }
15793#line 15794 "parse.c"
15794 break;
15795
15796 case 515: /* case_args: arg_value */
15797#line 5339 "parse.y"
15798 {
15799 check_literal_when(p, (yyvsp[0].node), &(yylsp[0]));
15800 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
15801 /*% ripper: args_add!(args_new!, $:arg_value) %*/
15802 }
15803#line 15804 "parse.c"
15804 break;
15805
15806 case 516: /* case_args: "*" arg_value */
15807#line 5345 "parse.y"
15808 {
15809 (yyval.node) = NEW_SPLAT((yyvsp[0].node), &(yyloc), &(yylsp[-1]));
15810 /*% ripper: args_add_star!(args_new!, $:arg_value) %*/
15811 }
15812#line 15813 "parse.c"
15813 break;
15814
15815 case 517: /* case_args: case_args ',' arg_value */
15816#line 5350 "parse.y"
15817 {
15818 check_literal_when(p, (yyvsp[0].node), &(yylsp[0]));
15819 (yyval.node) = last_arg_append(p, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
15820 /*% ripper: args_add!($:non_last_args, $:arg_value) %*/
15821 }
15822#line 15823 "parse.c"
15823 break;
15824
15825 case 518: /* case_args: case_args ',' "*" arg_value */
15826#line 5356 "parse.y"
15827 {
15828 (yyval.node) = rest_arg_append(p, (yyvsp[-3].node), (yyvsp[0].node), &(yyloc));
15829 /*% ripper: args_add_star!($:non_last_args, $:arg_value) %*/
15830 }
15831#line 15832 "parse.c"
15832 break;
15833
15834 case 519: /* case_body: k_when case_args then compstmt_stmts cases */
15835#line 5365 "parse.y"
15836 {
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));
15839 /*% ripper: when!($:2, $:4, $:5) %*/
15840 }
15841#line 15842 "parse.c"
15842 break;
15843
15844 case 522: /* p_pvtbl: %empty */
15845#line 5376 "parse.y"
15846 {(yyval.tbl) = p->pvtbl; p->pvtbl = st_init_numtable();}
15847#line 15848 "parse.c"
15848 break;
15849
15850 case 523: /* p_pktbl: %empty */
15851#line 5377 "parse.y"
15852 {(yyval.tbl) = p->pktbl; p->pktbl = 0;}
15853#line 15854 "parse.c"
15854 break;
15855
15856 case 524: /* p_in_kwarg: %empty */
15857#line 5379 "parse.y"
15858 {
15859 (yyval.ctxt) = p->ctxt;
15860 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
15861 p->command_start = FALSE;
15862 p->ctxt.in_kwarg = 1;
15863 }
15864#line 15865 "parse.c"
15865 break;
15866
15867 case 525: /* $@31: %empty */
15868#line 5390 "parse.y"
15869 {
15870 pop_pktbl(p, (yyvsp[-2].tbl));
15871 pop_pvtbl(p, (yyvsp[-3].tbl));
15872 p->ctxt.in_kwarg = (yyvsp[-4].ctxt).in_kwarg;
15873 }
15874#line 15875 "parse.c"
15875 break;
15876
15877 case 526: /* p_case_body: "'in'" p_in_kwarg p_pvtbl p_pktbl p_top_expr then $@31 compstmt_stmts p_cases */
15878#line 5397 "parse.y"
15879 {
15880 (yyval.node) = NEW_IN((yyvsp[-4].node), (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
15881 /*% ripper: in!($:expr, $:compstmt, $:cases) %*/
15882 }
15883#line 15884 "parse.c"
15884 break;
15885
15886 case 530: /* p_top_expr: p_top_expr_body "'if' modifier" expr_value */
15887#line 5409 "parse.y"
15888 {
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));
15891 /*% ripper: if_mod!($:3, $:1) %*/
15892 }
15893#line 15894 "parse.c"
15894 break;
15895
15896 case 531: /* p_top_expr: p_top_expr_body "'unless' modifier" expr_value */
15897#line 5415 "parse.y"
15898 {
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));
15901 /*% ripper: unless_mod!($:3, $:1) %*/
15902 }
15903#line 15904 "parse.c"
15904 break;
15905
15906 case 533: /* p_top_expr_body: p_expr ',' */
15907#line 5424 "parse.y"
15908 {
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));
15911 /*% ripper: aryptn!(Qnil, [$:1], Qnil, Qnil) %*/
15912 }
15913#line 15914 "parse.c"
15914 break;
15915
15916 case 534: /* p_top_expr_body: p_expr ',' p_args */
15917#line 5430 "parse.y"
15918 {
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);
15921 /*% ripper: aryptn!(Qnil, aryptn_pre_args(p, $:1, $:3[0]), *$:3[1..2]) %*/
15922 }
15923#line 15924 "parse.c"
15924 break;
15925
15926 case 535: /* p_top_expr_body: p_find */
15927#line 5436 "parse.y"
15928 {
15929 (yyval.node) = new_find_pattern(p, 0, (yyvsp[0].node), &(yyloc));
15930 /*% ripper: fndptn!(Qnil, *$:1[0..2]) %*/
15931 }
15932#line 15933 "parse.c"
15933 break;
15934
15935 case 536: /* p_top_expr_body: p_args_tail */
15936#line 5441 "parse.y"
15937 {
15938 (yyval.node) = new_array_pattern(p, 0, 0, (yyvsp[0].node), &(yyloc));
15939 /*% ripper: aryptn!(Qnil, *$:1[0..2]) %*/
15940 }
15941#line 15942 "parse.c"
15942 break;
15943
15944 case 537: /* p_top_expr_body: p_kwargs */
15945#line 5446 "parse.y"
15946 {
15947 (yyval.node) = new_hash_pattern(p, 0, (yyvsp[0].node), &(yyloc));
15948 /*% ripper: hshptn!(Qnil, *$:1[0..1]) %*/
15949 }
15950#line 15951 "parse.c"
15951 break;
15952
15953 case 539: /* p_as: p_expr "=>" p_variable */
15954#line 5456 "parse.y"
15955 {
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));
15959 /*% ripper: binary!($:1, ID2VAL((id_assoc)), $:3) %*/
15960 }
15961#line 15962 "parse.c"
15962 break;
15963
15964 case 541: /* p_alt: p_alt '|' p_expr_basic */
15965#line 5466 "parse.y"
15966 {
15967 (yyval.node) = NEW_OR((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
15968 /*% ripper: binary!($:1, ID2VAL(idOr), $:3) %*/
15969 }
15970#line 15971 "parse.c"
15971 break;
15972
15973 case 543: /* p_lparen: '(' p_pktbl */
15974#line 5474 "parse.y"
15975 {
15976 (yyval.tbl) = (yyvsp[0].tbl);
15977 /*% ripper: $:2 %*/
15978 }
15979#line 15980 "parse.c"
15980 break;
15981
15982 case 544: /* p_lbracket: '[' p_pktbl */
15983#line 5481 "parse.y"
15984 {
15985 (yyval.tbl) = (yyvsp[0].tbl);
15986 /*% ripper: $:2 %*/
15987 }
15988#line 15989 "parse.c"
15989 break;
15990
15991 case 547: /* p_expr_basic: p_const p_lparen p_args rparen */
15992#line 5490 "parse.y"
15993 {
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);
15997 /*% ripper: aryptn!($:p_const, *$:p_args[0..2]) %*/
15998 }
15999#line 16000 "parse.c"
16000 break;
16001
16002 case 548: /* p_expr_basic: p_const p_lparen p_find rparen */
16003#line 5497 "parse.y"
16004 {
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);
16008 /*% ripper: fndptn!($:p_const, *$:p_find[0..2]) %*/
16009 }
16010#line 16011 "parse.c"
16011 break;
16012
16013 case 549: /* p_expr_basic: p_const p_lparen p_kwargs rparen */
16014#line 5504 "parse.y"
16015 {
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);
16019 /*% ripper: hshptn!($:p_const, *$:p_kwargs[0..1]) %*/
16020 }
16021#line 16022 "parse.c"
16022 break;
16023
16024 case 550: /* p_expr_basic: p_const '(' rparen */
16025#line 5511 "parse.y"
16026 {
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));
16029 /*% ripper: aryptn!($:p_const, Qnil, Qnil, Qnil) %*/
16030 }
16031#line 16032 "parse.c"
16032 break;
16033
16034 case 551: /* p_expr_basic: p_const p_lbracket p_args rbracket */
16035#line 5517 "parse.y"
16036 {
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);
16040 /*% ripper: aryptn!($:p_const, *$:p_args[0..2]) %*/
16041 }
16042#line 16043 "parse.c"
16043 break;
16044
16045 case 552: /* p_expr_basic: p_const p_lbracket p_find rbracket */
16046#line 5524 "parse.y"
16047 {
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);
16051 /*% ripper: fndptn!($:p_const, *$:p_find[0..2]) %*/
16052 }
16053#line 16054 "parse.c"
16054 break;
16055
16056 case 553: /* p_expr_basic: p_const p_lbracket p_kwargs rbracket */
16057#line 5531 "parse.y"
16058 {
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);
16062 /*% ripper: hshptn!($:p_const, *$:p_kwargs[0..1]) %*/
16063 }
16064#line 16065 "parse.c"
16065 break;
16066
16067 case 554: /* p_expr_basic: p_const '[' rbracket */
16068#line 5538 "parse.y"
16069 {
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));
16072 /*% ripper: aryptn!($:1, Qnil, Qnil, Qnil) %*/
16073 }
16074#line 16075 "parse.c"
16075 break;
16076
16077 case 555: /* p_expr_basic: "[" p_args rbracket */
16078#line 5544 "parse.y"
16079 {
16080 (yyval.node) = new_array_pattern(p, 0, 0, (yyvsp[-1].node), &(yyloc));
16081 /*% ripper: aryptn!(Qnil, *$:p_args[0..2]) %*/
16082 }
16083#line 16084 "parse.c"
16084 break;
16085
16086 case 556: /* p_expr_basic: "[" p_find rbracket */
16087#line 5549 "parse.y"
16088 {
16089 (yyval.node) = new_find_pattern(p, 0, (yyvsp[-1].node), &(yyloc));
16090 /*% ripper: fndptn!(Qnil, *$:p_find[0..2]) %*/
16091 }
16092#line 16093 "parse.c"
16093 break;
16094
16095 case 557: /* p_expr_basic: "[" rbracket */
16096#line 5554 "parse.y"
16097 {
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));
16100 /*% ripper: aryptn!(Qnil, Qnil, Qnil, Qnil) %*/
16101 }
16102#line 16103 "parse.c"
16103 break;
16104
16105 case 558: /* $@32: %empty */
16106#line 5560 "parse.y"
16107 {
16108 p->ctxt.in_kwarg = 0;
16109 }
16110#line 16111 "parse.c"
16111 break;
16112
16113 case 559: /* p_expr_basic: "{" p_pktbl lex_ctxt $@32 p_kwargs rbrace */
16114#line 5564 "parse.y"
16115 {
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));
16119 /*% ripper: hshptn!(Qnil, *$:p_kwargs[0..1]) %*/
16120 }
16121#line 16122 "parse.c"
16122 break;
16123
16124 case 560: /* p_expr_basic: "{" rbrace */
16125#line 5571 "parse.y"
16126 {
16127 (yyval.node) = new_hash_pattern_tail(p, 0, 0, &(yyloc));
16128 (yyval.node) = new_hash_pattern(p, 0, (yyval.node), &(yyloc));
16129 /*% ripper: hshptn!(Qnil, Qnil, Qnil) %*/
16130 }
16131#line 16132 "parse.c"
16132 break;
16133
16134 case 561: /* p_expr_basic: "(" p_pktbl p_expr rparen */
16135#line 5577 "parse.y"
16136 {
16137 pop_pktbl(p, (yyvsp[-2].tbl));
16138 (yyval.node) = (yyvsp[-1].node);
16139 /*% ripper: $:p_expr %*/
16140 }
16141#line 16142 "parse.c"
16142 break;
16143
16144 case 562: /* p_args: p_expr */
16145#line 5585 "parse.y"
16146 {
16147 NODE *pre_args = NEW_LIST((yyvsp[0].node), &(yyloc));
16148 (yyval.node) = new_array_pattern_tail(p, pre_args, 0, 0, 0, &(yyloc));
16149 /*% ripper: [[$:1], Qnil, Qnil] %*/
16150 }
16151#line 16152 "parse.c"
16152 break;
16153
16154 case 563: /* p_args: p_args_head */
16155#line 5591 "parse.y"
16156 {
16157 (yyval.node) = new_array_pattern_tail(p, (yyvsp[0].node), 1, 0, 0, &(yyloc));
16158 /*% ripper: [$:1, Qnil, Qnil] %*/
16159 }
16160#line 16161 "parse.c"
16161 break;
16162
16163 case 564: /* p_args: p_args_head p_arg */
16164#line 5596 "parse.y"
16165 {
16166 (yyval.node) = new_array_pattern_tail(p, list_concat((yyvsp[-1].node), (yyvsp[0].node)), 0, 0, 0, &(yyloc));
16167 /*% ripper: [rb_ary_concat($:1, $:2), Qnil, Qnil] %*/
16168 }
16169#line 16170 "parse.c"
16170 break;
16171
16172 case 565: /* p_args: p_args_head p_rest */
16173#line 5601 "parse.y"
16174 {
16175 (yyval.node) = new_array_pattern_tail(p, (yyvsp[-1].node), 1, (yyvsp[0].node), 0, &(yyloc));
16176 /*% ripper: [$:1, $:2, Qnil] %*/
16177 }
16178#line 16179 "parse.c"
16179 break;
16180
16181 case 566: /* p_args: p_args_head p_rest ',' p_args_post */
16182#line 5606 "parse.y"
16183 {
16184 (yyval.node) = new_array_pattern_tail(p, (yyvsp[-3].node), 1, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16185 /*% ripper: [$:1, $:2, $:4] %*/
16186 }
16187#line 16188 "parse.c"
16188 break;
16189
16190 case 569: /* p_args_head: p_args_head p_arg ',' */
16191#line 5615 "parse.y"
16192 {
16193 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[-1].node));
16194 /*% ripper: rb_ary_concat($:1, $:2) %*/
16195 }
16196#line 16197 "parse.c"
16197 break;
16198
16199 case 570: /* p_args_tail: p_rest */
16200#line 5622 "parse.y"
16201 {
16202 (yyval.node) = new_array_pattern_tail(p, 0, 1, (yyvsp[0].node), 0, &(yyloc));
16203 /*% ripper: [Qnil, $:1, Qnil] %*/
16204 }
16205#line 16206 "parse.c"
16206 break;
16207
16208 case 571: /* p_args_tail: p_rest ',' p_args_post */
16209#line 5627 "parse.y"
16210 {
16211 (yyval.node) = new_array_pattern_tail(p, 0, 1, (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16212 /*% ripper: [Qnil, $:1, $:3] %*/
16213 }
16214#line 16215 "parse.c"
16215 break;
16216
16217 case 572: /* p_find: p_rest ',' p_args_post ',' p_rest */
16218#line 5634 "parse.y"
16219 {
16220 (yyval.node) = new_find_pattern_tail(p, (yyvsp[-4].node), (yyvsp[-2].node), (yyvsp[0].node), &(yyloc));
16221 /*% ripper: [$:1, $:3, $:5] %*/
16222 }
16223#line 16224 "parse.c"
16224 break;
16225
16226 case 573: /* p_rest: "*" "local variable or method" */
16227#line 5642 "parse.y"
16228 {
16229 error_duplicate_pattern_variable(p, (yyvsp[0].id), &(yylsp[0]));
16230 /*% ripper: var_field!($:2) %*/
16231 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
16232 }
16233#line 16234 "parse.c"
16234 break;
16235
16236 case 574: /* p_rest: "*" */
16237#line 5648 "parse.y"
16238 {
16239 (yyval.node) = 0;
16240 /*% ripper: var_field!(Qnil) %*/
16241 }
16242#line 16243 "parse.c"
16243 break;
16244
16245 case 576: /* p_args_post: p_args_post ',' p_arg */
16246#line 5656 "parse.y"
16247 {
16248 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[0].node));
16249 /*% ripper: rb_ary_concat($:1, $:3) %*/
16250 }
16251#line 16252 "parse.c"
16252 break;
16253
16254 case 577: /* p_arg: p_expr */
16255#line 5663 "parse.y"
16256 {
16257 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
16258 /*% ripper: [$:1] %*/
16259 }
16260#line 16261 "parse.c"
16261 break;
16262
16263 case 578: /* p_kwargs: p_kwarg ',' p_any_kwrest */
16264#line 5670 "parse.y"
16265 {
16266 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[-2].node), &(yyloc)), (yyvsp[0].id), &(yyloc));
16267 /*% ripper: [$:1, $:3] %*/
16268 }
16269#line 16270 "parse.c"
16270 break;
16271
16272 case 579: /* p_kwargs: p_kwarg */
16273#line 5675 "parse.y"
16274 {
16275 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[0].node), &(yyloc)), 0, &(yyloc));
16276 /*% ripper: [$:1, Qnil] %*/
16277 }
16278#line 16279 "parse.c"
16279 break;
16280
16281 case 580: /* p_kwargs: p_kwarg ',' */
16282#line 5680 "parse.y"
16283 {
16284 (yyval.node) = new_hash_pattern_tail(p, new_unique_key_hash(p, (yyvsp[-1].node), &(yyloc)), 0, &(yyloc));
16285 /*% ripper: [$:1, Qnil] %*/
16286 }
16287#line 16288 "parse.c"
16288 break;
16289
16290 case 581: /* p_kwargs: p_any_kwrest */
16291#line 5685 "parse.y"
16292 {
16293 (yyval.node) = new_hash_pattern_tail(p, new_hash(p, 0, &(yyloc)), (yyvsp[0].id), &(yyloc));
16294 /*% ripper: [[], $:1] %*/
16295 }
16296#line 16297 "parse.c"
16297 break;
16298
16299 case 583: /* p_kwarg: p_kwarg ',' p_kw */
16300#line 5694 "parse.y"
16301 {
16302 (yyval.node) = list_concat((yyvsp[-2].node), (yyvsp[0].node));
16303 /*% ripper: rb_ary_push($:1, $:3) %*/
16304 }
16305#line 16306 "parse.c"
16306 break;
16307
16308 case 584: /* p_kw: p_kw_label p_expr */
16309#line 5701 "parse.y"
16310 {
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));
16313 /*% ripper: [$:1, $:2] %*/
16314 }
16315#line 16316 "parse.c"
16316 break;
16317
16318 case 585: /* p_kw: p_kw_label */
16319#line 5707 "parse.y"
16320 {
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");
16324 }
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)));
16327 /*% ripper: [$:1, Qnil] %*/
16328 }
16329#line 16330 "parse.c"
16330 break;
16331
16332 case 587: /* p_kw_label: "string literal" string_contents tLABEL_END */
16333#line 5720 "parse.y"
16334 {
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));
16339 }
16340 else {
16341 yyerror1(&loc, "symbol literal with interpolation is not allowed");
16342 (yyval.id) = rb_intern_str(STR_NEW0());
16343 }
16344 /*% ripper: $:2 %*/
16345 }
16346#line 16347 "parse.c"
16347 break;
16348
16349 case 588: /* p_kwrest: kwrest_mark "local variable or method" */
16350#line 5735 "parse.y"
16351 {
16352 (yyval.id) = (yyvsp[0].id);
16353 /*% ripper: var_field!($:2) %*/
16354 }
16355#line 16356 "parse.c"
16356 break;
16357
16358 case 589: /* p_kwrest: kwrest_mark */
16359#line 5740 "parse.y"
16360 {
16361 (yyval.id) = 0;
16362 /*% ripper: Qnil %*/
16363 }
16364#line 16365 "parse.c"
16365 break;
16366
16367 case 590: /* p_kwnorest: kwrest_mark "'nil'" */
16368#line 5747 "parse.y"
16369 {
16370 (yyval.id) = 0;
16371 }
16372#line 16373 "parse.c"
16373 break;
16374
16375 case 592: /* p_any_kwrest: p_kwnorest */
16376#line 5754 "parse.y"
16377 {
16378 (yyval.id) = idNil;
16379 /*% ripper: var_field!(ID2VAL(idNil)) %*/
16380 }
16381#line 16382 "parse.c"
16382 break;
16383
16384 case 594: /* p_value: p_primitive_value ".." p_primitive_value */
16385#line 5762 "parse.y"
16386 {
16387 (yyval.node) = NEW_DOT2((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16388 /*% ripper: dot2!($:1, $:3) %*/
16389 }
16390#line 16391 "parse.c"
16391 break;
16392
16393 case 595: /* p_value: p_primitive_value "..." p_primitive_value */
16394#line 5767 "parse.y"
16395 {
16396 (yyval.node) = NEW_DOT3((yyvsp[-2].node), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16397 /*% ripper: dot3!($:1, $:3) %*/
16398 }
16399#line 16400 "parse.c"
16400 break;
16401
16402 case 596: /* p_value: p_primitive_value ".." */
16403#line 5772 "parse.y"
16404 {
16405 (yyval.node) = NEW_DOT2((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
16406 /*% ripper: dot2!($:1, Qnil) %*/
16407 }
16408#line 16409 "parse.c"
16409 break;
16410
16411 case 597: /* p_value: p_primitive_value "..." */
16412#line 5777 "parse.y"
16413 {
16414 (yyval.node) = NEW_DOT3((yyvsp[-1].node), new_nil_at(p, &(yylsp[0]).end_pos), &(yyloc), &(yylsp[0]));
16415 /*% ripper: dot3!($:1, Qnil) %*/
16416 }
16417#line 16418 "parse.c"
16418 break;
16419
16420 case 601: /* p_value: "(.." p_primitive_value */
16421#line 5785 "parse.y"
16422 {
16423 (yyval.node) = NEW_DOT2(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16424 /*% ripper: dot2!(Qnil, $:2) %*/
16425 }
16426#line 16427 "parse.c"
16427 break;
16428
16429 case 602: /* p_value: "(..." p_primitive_value */
16430#line 5790 "parse.y"
16431 {
16432 (yyval.node) = NEW_DOT3(new_nil_at(p, &(yylsp[-1]).beg_pos), (yyvsp[0].node), &(yyloc), &(yylsp[-1]));
16433 /*% ripper: dot3!(Qnil, $:2) %*/
16434 }
16435#line 16436 "parse.c"
16436 break;
16437
16438 case 611: /* p_primitive: keyword_variable */
16439#line 5798 "parse.y"
16440 {
16441 if (!((yyval.node) = gettable(p, (yyvsp[0].id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16442 /*% ripper: var_ref!($:1) %*/
16443 }
16444#line 16445 "parse.c"
16445 break;
16446
16447 case 613: /* value_expr_p_primitive: p_primitive */
16448#line 3102 "parse.y"
16449 {
16450 value_expr((yyvsp[0].node));
16451 (yyval.node) = (yyvsp[0].node);
16452 }
16453#line 16454 "parse.c"
16454 break;
16455
16456 case 615: /* p_variable: "local variable or method" */
16457#line 5809 "parse.y"
16458 {
16459 error_duplicate_pattern_variable(p, (yyvsp[0].id), &(yylsp[0]));
16460 /*% ripper: var_field!($:1) %*/
16461 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
16462 }
16463#line 16464 "parse.c"
16464 break;
16465
16466 case 616: /* p_var_ref: '^' "local variable or method" */
16467#line 5817 "parse.y"
16468 {
16469 NODE *n = gettable(p, (yyvsp[0].id), &(yyloc));
16470 if (!n) {
16471 n = NEW_ERROR(&(yyloc));
16472 }
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)));
16475 }
16476 (yyval.node) = n;
16477 /*% ripper: var_ref!($:2) %*/
16478 }
16479#line 16480 "parse.c"
16480 break;
16481
16482 case 617: /* p_var_ref: '^' nonlocal_var */
16483#line 5829 "parse.y"
16484 {
16485 if (!((yyval.node) = gettable(p, (yyvsp[0].id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16486 /*% ripper: var_ref!($:2) %*/
16487 }
16488#line 16489 "parse.c"
16489 break;
16490
16491 case 618: /* p_expr_ref: '^' "(" expr_value rparen */
16492#line 5836 "parse.y"
16493 {
16494 (yyval.node) = NEW_BLOCK((yyvsp[-1].node), &(yyloc));
16495 /*% ripper: begin!($:3) %*/
16496 }
16497#line 16498 "parse.c"
16498 break;
16499
16500 case 619: /* p_const: ":: at EXPR_BEG" cname */
16501#line 5843 "parse.y"
16502 {
16503 (yyval.node) = NEW_COLON3((yyvsp[0].id), &(yyloc));
16504 /*% ripper: top_const_ref!($:2) %*/
16505 }
16506#line 16507 "parse.c"
16507 break;
16508
16509 case 620: /* p_const: p_const "::" cname */
16510#line 5848 "parse.y"
16511 {
16512 (yyval.node) = NEW_COLON2((yyvsp[-2].node), (yyvsp[0].id), &(yyloc));
16513 /*% ripper: const_path_ref!($:1, $:3) %*/
16514 }
16515#line 16516 "parse.c"
16516 break;
16517
16518 case 621: /* p_const: "constant" */
16519#line 5853 "parse.y"
16520 {
16521 (yyval.node) = gettable(p, (yyvsp[0].id), &(yyloc));
16522 /*% ripper: var_ref!($:1) %*/
16523 }
16524#line 16525 "parse.c"
16525 break;
16526
16527 case 622: /* opt_rescue: k_rescue exc_list exc_var then compstmt_stmts opt_rescue */
16528#line 5862 "parse.y"
16529 {
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]));
16534 }
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));
16538 }
16539 else if ((yyvsp[-3].node)) {
16540 fixpos((yyval.node), (yyvsp[-3].node));
16541 }
16542 else {
16543 fixpos((yyval.node), (yyvsp[-1].node));
16544 }
16545 /*% ripper: rescue!($:2, $:3, $:5, $:6) %*/
16546 }
16547#line 16548 "parse.c"
16548 break;
16549
16550 case 624: /* exc_list: arg_value */
16551#line 5884 "parse.y"
16552 {
16553 (yyval.node) = NEW_LIST((yyvsp[0].node), &(yyloc));
16554 /*% ripper: rb_ary_new3(1, $:1) %*/
16555 }
16556#line 16557 "parse.c"
16557 break;
16558
16559 case 625: /* exc_list: mrhs */
16560#line 5889 "parse.y"
16561 {
16562 if (!((yyval.node) = splat_array((yyvsp[0].node)))) (yyval.node) = (yyvsp[0].node);
16563 }
16564#line 16565 "parse.c"
16565 break;
16566
16567 case 627: /* exc_var: "=>" lhs */
16568#line 5896 "parse.y"
16569 {
16570 (yyval.node) = (yyvsp[0].node);
16571 /*% ripper: $:2 %*/
16572 }
16573#line 16574 "parse.c"
16574 break;
16575
16576 case 629: /* opt_ensure: k_ensure stmts option_terms */
16577#line 5904 "parse.y"
16578 {
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)));
16582 /*% ripper: ensure!($:2) %*/
16583 }
16584#line 16585 "parse.c"
16585 break;
16586
16587 case 633: /* strings: string */
16588#line 5918 "parse.y"
16589 {
16590 if (!(yyvsp[0].node)) {
16591 (yyval.node) = NEW_STR(STRING_NEW0(), &(yyloc));
16592 } else {
16593 (yyval.node) = evstr2dstr(p, (yyvsp[0].node));
16594 }
16595 /*% ripper: $:1 %*/
16596 }
16597#line 16598 "parse.c"
16598 break;
16599
16600 case 636: /* string: string string1 */
16601#line 5931 "parse.y"
16602 {
16603 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16604 /*% ripper: string_concat!($:1, $:2) %*/
16605 }
16606#line 16607 "parse.c"
16607 break;
16608
16609 case 637: /* string1: "string literal" string_contents "terminator" */
16610#line 5938 "parse.y"
16611 {
16612 (yyval.node) = heredoc_dedent(p, (yyvsp[-1].node));
16613 if ((yyval.node)) nd_set_loc((yyval.node), &(yyloc));
16614 /*% ripper: $:2 %*/
16615 if (p->heredoc_indent > 0) {
16616 /*% ripper: heredoc_dedent!($:$, INT2NUM(%{p->heredoc_indent})) %*/
16617 p->heredoc_indent = 0;
16618 }
16619 /*% ripper: string_literal!($:$) %*/
16620 }
16621#line 16622 "parse.c"
16622 break;
16623
16624 case 638: /* xstring: "backtick literal" xstring_contents "terminator" */
16625#line 5951 "parse.y"
16626 {
16627 (yyval.node) = new_xstring(p, heredoc_dedent(p, (yyvsp[-1].node)), &(yyloc));
16628 /*% ripper: $:2 %*/
16629 if (p->heredoc_indent > 0) {
16630 /*% ripper: heredoc_dedent!($:$, INT2NUM(%{p->heredoc_indent})) %*/
16631 p->heredoc_indent = 0;
16632 }
16633 /*% ripper: xstring_literal!($:$) %*/
16634 }
16635#line 16636 "parse.c"
16636 break;
16637
16638 case 639: /* regexp: "regexp literal" regexp_contents tREGEXP_END */
16639#line 5963 "parse.y"
16640 {
16641 (yyval.node) = new_regexp(p, (yyvsp[-1].node), (yyvsp[0].num), &(yyloc), &(yylsp[-2]), &(yylsp[-1]), &(yylsp[0]));
16642 /*% ripper: regexp_literal!($:2, $:3) %*/
16643 }
16644#line 16645 "parse.c"
16645 break;
16646
16647 case 642: /* words_tWORDS_BEG_word_list: "word list" nonempty_list_' ' word_list "terminator" */
16648#line 3110 "parse.y"
16649 {
16650 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16651 /*% ripper: array!($:3) %*/
16652 }
16653#line 16654 "parse.c"
16654 break;
16655
16656 case 644: /* word_list: %empty */
16657#line 5973 "parse.y"
16658 {
16659 (yyval.node) = 0;
16660 /*% ripper: words_new! %*/
16661 }
16662#line 16663 "parse.c"
16663 break;
16664
16665 case 645: /* word_list: word_list word nonempty_list_' ' */
16666#line 5978 "parse.y"
16667 {
16668 (yyval.node) = list_append(p, (yyvsp[-2].node), evstr2dstr(p, (yyvsp[-1].node)));
16669 /*% ripper: words_add!($:1, $:2) %*/
16670 }
16671#line 16672 "parse.c"
16672 break;
16673
16674 case 647: /* word: word string_content */
16675#line 5987 "parse.y"
16676 {
16677 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16678 /*% ripper: word_add!($:1, $:2) %*/
16679 }
16680#line 16681 "parse.c"
16681 break;
16682
16683 case 648: /* words_tSYMBOLS_BEG_symbol_list: "symbol list" nonempty_list_' ' symbol_list "terminator" */
16684#line 3110 "parse.y"
16685 {
16686 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16687 /*% ripper: array!($:3) %*/
16688 }
16689#line 16690 "parse.c"
16690 break;
16691
16692 case 650: /* symbol_list: %empty */
16693#line 5997 "parse.y"
16694 {
16695 (yyval.node) = 0;
16696 /*% ripper: symbols_new! %*/
16697 }
16698#line 16699 "parse.c"
16699 break;
16700
16701 case 651: /* symbol_list: symbol_list word nonempty_list_' ' */
16702#line 6002 "parse.y"
16703 {
16704 (yyval.node) = symbol_append(p, (yyvsp[-2].node), evstr2dstr(p, (yyvsp[-1].node)));
16705 /*% ripper: symbols_add!($:1, $:2) %*/
16706 }
16707#line 16708 "parse.c"
16708 break;
16709
16710 case 652: /* words_tQWORDS_BEG_qword_list: "verbatim word list" nonempty_list_' ' qword_list "terminator" */
16711#line 3110 "parse.y"
16712 {
16713 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16714 /*% ripper: array!($:3) %*/
16715 }
16716#line 16717 "parse.c"
16717 break;
16718
16719 case 654: /* words_tQSYMBOLS_BEG_qsym_list: "verbatim symbol list" nonempty_list_' ' qsym_list "terminator" */
16720#line 3110 "parse.y"
16721 {
16722 (yyval.node) = make_list((yyvsp[-1].node), &(yyloc));
16723 /*% ripper: array!($:3) %*/
16724 }
16725#line 16726 "parse.c"
16726 break;
16727
16728 case 656: /* qword_list: %empty */
16729#line 6015 "parse.y"
16730 {
16731 (yyval.node) = 0;
16732 /*% ripper: qwords_new! %*/
16733 }
16734#line 16735 "parse.c"
16735 break;
16736
16737 case 657: /* qword_list: qword_list "literal content" nonempty_list_' ' */
16738#line 6020 "parse.y"
16739 {
16740 (yyval.node) = list_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
16741 /*% ripper: qwords_add!($:1, $:2) %*/
16742 }
16743#line 16744 "parse.c"
16744 break;
16745
16746 case 658: /* qsym_list: %empty */
16747#line 6027 "parse.y"
16748 {
16749 (yyval.node) = 0;
16750 /*% ripper: qsymbols_new! %*/
16751 }
16752#line 16753 "parse.c"
16753 break;
16754
16755 case 659: /* qsym_list: qsym_list "literal content" nonempty_list_' ' */
16756#line 6032 "parse.y"
16757 {
16758 (yyval.node) = symbol_append(p, (yyvsp[-2].node), (yyvsp[-1].node));
16759 /*% ripper: qsymbols_add!($:1, $:2) %*/
16760 }
16761#line 16762 "parse.c"
16762 break;
16763
16764 case 660: /* string_contents: %empty */
16765#line 6039 "parse.y"
16766 {
16767 (yyval.node) = 0;
16768 /*% ripper: string_content! %*/
16769 }
16770#line 16771 "parse.c"
16771 break;
16772
16773 case 661: /* string_contents: string_contents string_content */
16774#line 6044 "parse.y"
16775 {
16776 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16777 /*% ripper: string_add!($:1, $:2) %*/
16778 }
16779#line 16780 "parse.c"
16780 break;
16781
16782 case 662: /* xstring_contents: %empty */
16783#line 6051 "parse.y"
16784 {
16785 (yyval.node) = 0;
16786 /*% ripper: xstring_new! %*/
16787 }
16788#line 16789 "parse.c"
16789 break;
16790
16791 case 663: /* xstring_contents: xstring_contents string_content */
16792#line 6056 "parse.y"
16793 {
16794 (yyval.node) = literal_concat(p, (yyvsp[-1].node), (yyvsp[0].node), &(yyloc));
16795 /*% ripper: xstring_add!($:1, $:2) %*/
16796 }
16797#line 16798 "parse.c"
16798 break;
16799
16800 case 664: /* regexp_contents: %empty */
16801#line 6063 "parse.y"
16802 {
16803 (yyval.node) = 0;
16804 /*% ripper: regexp_new! %*/
16805 }
16806#line 16807 "parse.c"
16807 break;
16808
16809 case 665: /* regexp_contents: regexp_contents string_content */
16810#line 6068 "parse.y"
16811 {
16812 NODE *head = (yyvsp[-1].node), *tail = (yyvsp[0].node);
16813 if (!head) {
16814 (yyval.node) = tail;
16815 }
16816 else if (!tail) {
16817 (yyval.node) = head;
16818 }
16819 else {
16820 switch (nd_type(head)) {
16821 case NODE_STR:
16822 head = str2dstr(p, head);
16823 break;
16824 case NODE_DSTR:
16825 break;
16826 default:
16827 head = list_append(p, NEW_DSTR(0, &(yyloc)), head);
16828 break;
16829 }
16830 (yyval.node) = list_append(p, head, tail);
16831 }
16832 /*% ripper: regexp_add!($:1, $:2) %*/
16833 }
16834#line 16835 "parse.c"
16835 break;
16836
16837 case 667: /* @33: %empty */
16838#line 6096 "parse.y"
16839 {
16840 /* need to backup p->lex.strterm so that a string literal `%&foo,#$&,bar&` can be parsed */
16841 (yyval.strterm) = p->lex.strterm;
16842 p->lex.strterm = 0;
16843 SET_LEX_STATE(EXPR_BEG);
16844 }
16845#line 16846 "parse.c"
16846 break;
16847
16848 case 668: /* string_content: tSTRING_DVAR @33 string_dvar */
16849#line 6103 "parse.y"
16850 {
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);
16854 /*% ripper: string_dvar!($:3) %*/
16855 }
16856#line 16857 "parse.c"
16857 break;
16858
16859 case 669: /* @34: %empty */
16860#line 6110 "parse.y"
16861 {
16862 CMDARG_PUSH(0);
16863 COND_PUSH(0);
16864 /* need to backup p->lex.strterm so that a string literal `%!foo,#{ !0 },bar!` can be parsed */
16865 (yyval.strterm) = p->lex.strterm;
16866 p->lex.strterm = 0;
16867 SET_LEX_STATE(EXPR_BEG);
16868 }
16869#line 16870 "parse.c"
16870 break;
16871
16872 case 670: /* @35: %empty */
16873#line 6118 "parse.y"
16874 {
16875 (yyval.num) = p->lex.brace_nest;
16876 p->lex.brace_nest = 0;
16877 }
16878#line 16879 "parse.c"
16879 break;
16880
16881 case 671: /* @36: %empty */
16882#line 6122 "parse.y"
16883 {
16884 (yyval.num) = p->heredoc_indent;
16885 p->heredoc_indent = 0;
16886 }
16887#line 16888 "parse.c"
16888 break;
16889
16890 case 672: /* string_content: "'#{'" @34 @35 @36 compstmt_stmts string_dend */
16891#line 6127 "parse.y"
16892 {
16893 COND_POP();
16894 CMDARG_POP();
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]));
16902 /*% ripper: string_embexpr!($:compstmt) %*/
16903 }
16904#line 16905 "parse.c"
16905 break;
16906
16907 case 675: /* string_dvar: nonlocal_var */
16908#line 6146 "parse.y"
16909 {
16910 if (!((yyval.node) = gettable(p, (yyvsp[0].id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
16911 /*% ripper: var_ref!($:1) %*/
16912 }
16913#line 16914 "parse.c"
16914 break;
16915
16916 case 679: /* ssym: "symbol literal" sym */
16917#line 6158 "parse.y"
16918 {
16919 SET_LEX_STATE(EXPR_END);
16920 VALUE str = rb_id2str((yyvsp[0].id));
16921 /*
16922 * TODO:
16923 * set_yylval_noname sets invalid id to yylval.
16924 * This branch can be removed once yylval is changed to
16925 * hold lexed string.
16926 */
16927 if (!str) str = STR_NEW0();
16928 (yyval.node) = NEW_SYM(str, &(yyloc));
16929 /*% ripper: symbol_literal!(symbol!($:2)) %*/
16930 }
16931#line 16932 "parse.c"
16932 break;
16933
16934 case 682: /* dsym: "symbol literal" string_contents "terminator" */
16935#line 6178 "parse.y"
16936 {
16937 SET_LEX_STATE(EXPR_END);
16938 (yyval.node) = dsym_node(p, (yyvsp[-1].node), &(yyloc));
16939 /*% ripper: dyna_symbol!($:2) %*/
16940 }
16941#line 16942 "parse.c"
16942 break;
16943
16944 case 684: /* numeric: tUMINUS_NUM simple_numeric */
16945#line 6187 "parse.y"
16946 {
16947 (yyval.node) = (yyvsp[0].node);
16948 negate_lit(p, (yyval.node));
16949 /*% ripper: unary!(ID2VAL(idUMinus), $:2) %*/
16950 }
16951#line 16952 "parse.c"
16952 break;
16953
16954 case 695: /* keyword_variable: "'nil'" */
16955#line 6209 "parse.y"
16956 {(yyval.id) = KWD2EID(nil, (yyvsp[0].id));}
16957#line 16958 "parse.c"
16958 break;
16959
16960 case 696: /* keyword_variable: "'self'" */
16961#line 6210 "parse.y"
16962 {(yyval.id) = KWD2EID(self, (yyvsp[0].id));}
16963#line 16964 "parse.c"
16964 break;
16965
16966 case 697: /* keyword_variable: "'true'" */
16967#line 6211 "parse.y"
16968 {(yyval.id) = KWD2EID(true, (yyvsp[0].id));}
16969#line 16970 "parse.c"
16970 break;
16971
16972 case 698: /* keyword_variable: "'false'" */
16973#line 6212 "parse.y"
16974 {(yyval.id) = KWD2EID(false, (yyvsp[0].id));}
16975#line 16976 "parse.c"
16976 break;
16977
16978 case 699: /* keyword_variable: "'__FILE__'" */
16979#line 6213 "parse.y"
16980 {(yyval.id) = KWD2EID(_FILE__, (yyvsp[0].id));}
16981#line 16982 "parse.c"
16982 break;
16983
16984 case 700: /* keyword_variable: "'__LINE__'" */
16985#line 6214 "parse.y"
16986 {(yyval.id) = KWD2EID(_LINE__, (yyvsp[0].id));}
16987#line 16988 "parse.c"
16988 break;
16989
16990 case 701: /* keyword_variable: "'__ENCODING__'" */
16991#line 6215 "parse.y"
16992 {(yyval.id) = KWD2EID(_ENCODING__, (yyvsp[0].id));}
16993#line 16994 "parse.c"
16994 break;
16995
16996 case 702: /* var_ref: user_variable */
16997#line 6219 "parse.y"
16998 {
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)) {
17001 /*% ripper: var_ref!($:1) %*/
17002 }
17003 else {
17004 /*% ripper: vcall!($:1) %*/
17005 }
17006 }
17007#line 17008 "parse.c"
17008 break;
17009
17010 case 703: /* var_ref: keyword_variable */
17011#line 6229 "parse.y"
17012 {
17013 if (!((yyval.node) = gettable(p, (yyvsp[0].id), &(yyloc)))) (yyval.node) = NEW_ERROR(&(yyloc));
17014 /*% ripper: var_ref!($:1) %*/
17015 }
17016#line 17017 "parse.c"
17017 break;
17018
17019 case 704: /* var_lhs: user_variable */
17020#line 6236 "parse.y"
17021 {
17022 /*% ripper: var_field!($:1) %*/
17023 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
17024 }
17025#line 17026 "parse.c"
17026 break;
17027
17028 case 705: /* var_lhs: keyword_variable */
17029#line 6236 "parse.y"
17030 {
17031 /*% ripper: var_field!($:1) %*/
17032 (yyval.node) = assignable(p, (yyvsp[0].id), 0, &(yyloc));
17033 }
17034#line 17035 "parse.c"
17035 break;
17036
17037 case 708: /* $@37: %empty */
17038#line 6247 "parse.y"
17039 {
17040 SET_LEX_STATE(EXPR_BEG);
17041 p->command_start = TRUE;
17042 }
17043#line 17044 "parse.c"
17044 break;
17045
17046 case 709: /* superclass: '<' $@37 expr_value term */
17047#line 6252 "parse.y"
17048 {
17049 (yyval.node) = (yyvsp[-1].node);
17050 /*% ripper: $:3 %*/
17051 }
17052#line 17053 "parse.c"
17053 break;
17054
17055 case 712: /* f_opt_paren_args: none */
17056#line 6261 "parse.y"
17057 {
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]));
17061 /*% ripper: params!(Qnil, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil) %*/
17062 }
17063#line 17064 "parse.c"
17064 break;
17065
17066 case 713: /* f_paren_args: '(' f_args rparen */
17067#line 6270 "parse.y"
17068 {
17069 (yyval.node_args) = (yyvsp[-1].node_args);
17070 /*% ripper: paren!($:2) %*/
17071 SET_LEX_STATE(EXPR_BEG);
17072 p->command_start = TRUE;
17073 p->ctxt.in_argdef = 0;
17074 }
17075#line 17076 "parse.c"
17076 break;
17077
17078 case 715: /* @38: %empty */
17079#line 6280 "parse.y"
17080 {
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); /* force for args */
17085 }
17086#line 17087 "parse.c"
17087 break;
17088
17089 case 716: /* f_arglist: @38 f_args term */
17090#line 6287 "parse.y"
17091 {
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;
17097 /*% ripper: $:2 %*/
17098 }
17099#line 17100 "parse.c"
17100 break;
17101
17102 case 717: /* f_kw_arg_value: f_label arg_value */
17103#line 3002 "parse.y"
17104 {
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));
17107 /*% ripper: [$:$, $:value] %*/
17108 }
17109#line 17110 "parse.c"
17110 break;
17111
17112 case 718: /* f_kw_arg_value: f_label */
17113#line 3008 "parse.y"
17114 {
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));
17117 /*% ripper: [$:$, 0] %*/
17118 }
17119#line 17120 "parse.c"
17120 break;
17121
17122 case 719: /* f_kwarg_arg_value: f_kw_arg_value */
17123#line 3017 "parse.y"
17124 {
17125 (yyval.node_kw_arg) = (yyvsp[0].node_kw_arg);
17126 /*% ripper: rb_ary_new3(1, $:1) %*/
17127 }
17128#line 17129 "parse.c"
17129 break;
17130
17131 case 720: /* f_kwarg_arg_value: f_kwarg_arg_value ',' f_kw_arg_value */
17132#line 3022 "parse.y"
17133 {
17134 (yyval.node_kw_arg) = kwd_append((yyvsp[-2].node_kw_arg), (yyvsp[0].node_kw_arg));
17135 /*% ripper: rb_ary_push($:1, $:3) %*/
17136 }
17137#line 17138 "parse.c"
17138 break;
17139
17140 case 721: /* args_tail_basic_arg_value: f_kwarg_arg_value ',' f_kwrest opt_f_block_arg */
17141#line 2926 "parse.y"
17142 {
17143 (yyval.node_args) = new_args_tail(p, (yyvsp[-3].node_kw_arg), (yyvsp[-1].id), (yyvsp[0].id), &(yylsp[-1]));
17144 /*% ripper: [$:1, $:3, $:4] %*/
17145 }
17146#line 17147 "parse.c"
17147 break;
17148
17149 case 722: /* args_tail_basic_arg_value: f_kwarg_arg_value opt_f_block_arg */
17150#line 2931 "parse.y"
17151 {
17152 (yyval.node_args) = new_args_tail(p, (yyvsp[-1].node_kw_arg), 0, (yyvsp[0].id), &(yylsp[-1]));
17153 /*% ripper: [$:1, Qnil, $:2] %*/
17154 }
17155#line 17156 "parse.c"
17156 break;
17157
17158 case 723: /* args_tail_basic_arg_value: f_any_kwrest opt_f_block_arg */
17159#line 2936 "parse.y"
17160 {
17161 (yyval.node_args) = new_args_tail(p, 0, (yyvsp[-1].id), (yyvsp[0].id), &(yylsp[-1]));
17162 /*% ripper: [Qnil, $:1, $:2] %*/
17163 }
17164#line 17165 "parse.c"
17165 break;
17166
17167 case 724: /* args_tail_basic_arg_value: f_block_arg */
17168#line 2941 "parse.y"
17169 {
17170 (yyval.node_args) = new_args_tail(p, 0, 0, (yyvsp[0].id), &(yylsp[0]));
17171 /*% ripper: [Qnil, Qnil, $:1] %*/
17172 }
17173#line 17174 "parse.c"
17174 break;
17175
17176 case 726: /* args_tail: args_forward */
17177#line 6299 "parse.y"
17178 {
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");
17183 fwd = 0;
17184 }
17185 else {
17186 add_forwarding_args(p);
17187 }
17188 (yyval.node_args) = new_args_tail(p, 0, fwd, arg_FWD_BLOCK, &(yylsp[0]));
17189 (yyval.node_args)->nd_ainfo.forwarding = 1;
17190 /*% ripper: [Qnil, $:1, Qnil] %*/
17191 }
17192#line 17193 "parse.c"
17193 break;
17194
17195 case 727: /* f_opt_arg_value: f_arg_asgn f_eq arg_value */
17196#line 2980 "parse.y"
17197 {
17198 p->ctxt.in_argdef = 1;
17199 (yyval.node_opt_arg) = NEW_OPT_ARG(assignable(p, (yyvsp[-2].id), (yyvsp[0].node), &(yyloc)), &(yyloc));
17200 /*% ripper: [$:$, $:3] %*/
17201 }
17202#line 17203 "parse.c"
17203 break;
17204
17205 case 728: /* f_optarg_arg_value: f_opt_arg_value */
17206#line 2989 "parse.y"
17207 {
17208 (yyval.node_opt_arg) = (yyvsp[0].node_opt_arg);
17209 /*% ripper: rb_ary_new3(1, $:1) %*/
17210 }
17211#line 17212 "parse.c"
17212 break;
17213
17214 case 729: /* f_optarg_arg_value: f_optarg_arg_value ',' f_opt_arg_value */
17215#line 2994 "parse.y"
17216 {
17217 (yyval.node_opt_arg) = opt_arg_append((yyvsp[-2].node_opt_arg), (yyvsp[0].node_opt_arg));
17218 /*% ripper: rb_ary_push($:1, $:3) %*/
17219 }
17220#line 17221 "parse.c"
17221 break;
17222
17223 case 730: /* opt_args_tail_args_tail: ',' args_tail */
17224#line 3089 "parse.y"
17225 {
17226 (yyval.node_args) = (yyvsp[0].node_args);
17227 /*% ripper: $:2 %*/
17228 }
17229#line 17230 "parse.c"
17230 break;
17231
17232 case 731: /* opt_args_tail_args_tail: %empty */
17233#line 3094 "parse.y"
17234 {
17235 (yyval.node_args) = new_args_tail(p, 0, 0, 0, &(yylsp[0]));
17236 /*% ripper: [Qnil, Qnil, Qnil] %*/
17237 }
17238#line 17239 "parse.c"
17239 break;
17240
17241 case 732: /* f_args: f_arg ',' f_optarg_arg_value ',' f_rest_arg opt_args_tail_args_tail */
17242#line 6316 "parse.y"
17243 {
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));
17245 /*% ripper: params!($:1, $:3, $:5, Qnil, *$:6[0..2]) %*/
17246 }
17247#line 17248 "parse.c"
17248 break;
17249
17250 case 733: /* f_args: f_arg ',' f_optarg_arg_value ',' f_rest_arg ',' f_arg opt_args_tail_args_tail */
17251#line 6321 "parse.y"
17252 {
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));
17254 /*% ripper: params!($:1, $:3, $:5, $:7, *$:8[0..2]) %*/
17255 }
17256#line 17257 "parse.c"
17257 break;
17258
17259 case 734: /* f_args: f_arg ',' f_optarg_arg_value opt_args_tail_args_tail */
17260#line 6326 "parse.y"
17261 {
17262 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
17263 /*% ripper: params!($:1, $:3, Qnil, Qnil, *$:4[0..2]) %*/
17264 }
17265#line 17266 "parse.c"
17266 break;
17267
17268 case 735: /* f_args: f_arg ',' f_optarg_arg_value ',' f_arg opt_args_tail_args_tail */
17269#line 6331 "parse.y"
17270 {
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));
17272 /*% ripper: params!($:1, $:3, Qnil, $:5, *$:6[0..2]) %*/
17273 }
17274#line 17275 "parse.c"
17275 break;
17276
17277 case 736: /* f_args: f_arg ',' f_rest_arg opt_args_tail_args_tail */
17278#line 6336 "parse.y"
17279 {
17280 (yyval.node_args) = new_args(p, (yyvsp[-3].node_args_aux), 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
17281 /*% ripper: params!($:1, Qnil, $:3, Qnil, *$:4[0..2]) %*/
17282 }
17283#line 17284 "parse.c"
17284 break;
17285
17286 case 737: /* f_args: f_arg ',' f_rest_arg ',' f_arg opt_args_tail_args_tail */
17287#line 6341 "parse.y"
17288 {
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));
17290 /*% ripper: params!($:1, Qnil, $:3, $:5, *$:6[0..2]) %*/
17291 }
17292#line 17293 "parse.c"
17293 break;
17294
17295 case 738: /* f_args: f_arg opt_args_tail_args_tail */
17296#line 6346 "parse.y"
17297 {
17298 (yyval.node_args) = new_args(p, (yyvsp[-1].node_args_aux), 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
17299 /*% ripper: params!($:1, Qnil, Qnil, Qnil, *$:2[0..2]) %*/
17300 }
17301#line 17302 "parse.c"
17302 break;
17303
17304 case 739: /* f_args: f_optarg_arg_value ',' f_rest_arg opt_args_tail_args_tail */
17305#line 6351 "parse.y"
17306 {
17307 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
17308 /*% ripper: params!(Qnil, $:1, $:3, Qnil, *$:4[0..2]) %*/
17309 }
17310#line 17311 "parse.c"
17311 break;
17312
17313 case 740: /* f_args: f_optarg_arg_value ',' f_rest_arg ',' f_arg opt_args_tail_args_tail */
17314#line 6356 "parse.y"
17315 {
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));
17317 /*% ripper: params!(Qnil, $:1, $:3, $:5, *$:6[0..2]) %*/
17318 }
17319#line 17320 "parse.c"
17320 break;
17321
17322 case 741: /* f_args: f_optarg_arg_value opt_args_tail_args_tail */
17323#line 6361 "parse.y"
17324 {
17325 (yyval.node_args) = new_args(p, 0, (yyvsp[-1].node_opt_arg), 0, 0, (yyvsp[0].node_args), &(yyloc));
17326 /*% ripper: params!(Qnil, $:1, Qnil, Qnil, *$:2[0..2]) %*/
17327 }
17328#line 17329 "parse.c"
17329 break;
17330
17331 case 742: /* f_args: f_optarg_arg_value ',' f_arg opt_args_tail_args_tail */
17332#line 6366 "parse.y"
17333 {
17334 (yyval.node_args) = new_args(p, 0, (yyvsp[-3].node_opt_arg), 0, (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17335 /*% ripper: params!(Qnil, $:1, Qnil, $:3, *$:4[0..2]) %*/
17336 }
17337#line 17338 "parse.c"
17338 break;
17339
17340 case 743: /* f_args: f_rest_arg opt_args_tail_args_tail */
17341#line 6371 "parse.y"
17342 {
17343 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-1].id), 0, (yyvsp[0].node_args), &(yyloc));
17344 /*% ripper: params!(Qnil, Qnil, $:1, Qnil, *$:2[0..2]) %*/
17345 }
17346#line 17347 "parse.c"
17347 break;
17348
17349 case 744: /* f_args: f_rest_arg ',' f_arg opt_args_tail_args_tail */
17350#line 6376 "parse.y"
17351 {
17352 (yyval.node_args) = new_args(p, 0, 0, (yyvsp[-3].id), (yyvsp[-1].node_args_aux), (yyvsp[0].node_args), &(yyloc));
17353 /*% ripper: params!(Qnil, Qnil, $:1, $:3, *$:4[0..2]) %*/
17354 }
17355#line 17356 "parse.c"
17356 break;
17357
17358 case 745: /* f_args: args_tail */
17359#line 6381 "parse.y"
17360 {
17361 (yyval.node_args) = new_args(p, 0, 0, 0, 0, (yyvsp[0].node_args), &(yyloc));
17362 /*% ripper: params!(Qnil, Qnil, Qnil, Qnil, *$:1[0..2]) %*/
17363 }
17364#line 17365 "parse.c"
17365 break;
17366
17367 case 746: /* f_args: %empty */
17368#line 6386 "parse.y"
17369 {
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]));
17372 /*% ripper: params!(Qnil, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil) %*/
17373 }
17374#line 17375 "parse.c"
17375 break;
17376
17377 case 747: /* args_forward: "(..." */
17378#line 6394 "parse.y"
17379 {
17380#ifdef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
17381 (yyval.id) = 0;
17382#else
17383 (yyval.id) = idFWD_KWREST;
17384#endif
17385 /*% ripper: args_forward! %*/
17386 }
17387#line 17388 "parse.c"
17388 break;
17389
17390 case 748: /* f_bad_arg: "constant" */
17391#line 6405 "parse.y"
17392 {
17393 static const char mesg[] = "formal argument cannot be a constant";
17394 /*%%%*/
17395 yyerror1(&(yylsp[0]), mesg);
17396 /*% %*/
17397 (yyval.id) = 0;
17398 /*% ripper[error]: param_error!(ERR_MESG(), $:1) %*/
17399 }
17400#line 17401 "parse.c"
17401 break;
17402
17403 case 749: /* f_bad_arg: "instance variable" */
17404#line 6414 "parse.y"
17405 {
17406 static const char mesg[] = "formal argument cannot be an instance variable";
17407 /*%%%*/
17408 yyerror1(&(yylsp[0]), mesg);
17409 /*% %*/
17410 (yyval.id) = 0;
17411 /*% ripper[error]: param_error!(ERR_MESG(), $:1) %*/
17412 }
17413#line 17414 "parse.c"
17414 break;
17415
17416 case 750: /* f_bad_arg: "global variable" */
17417#line 6423 "parse.y"
17418 {
17419 static const char mesg[] = "formal argument cannot be a global variable";
17420 /*%%%*/
17421 yyerror1(&(yylsp[0]), mesg);
17422 /*% %*/
17423 (yyval.id) = 0;
17424 /*% ripper[error]: param_error!(ERR_MESG(), $:1) %*/
17425 }
17426#line 17427 "parse.c"
17427 break;
17428
17429 case 751: /* f_bad_arg: "class variable" */
17430#line 6432 "parse.y"
17431 {
17432 static const char mesg[] = "formal argument cannot be a class variable";
17433 /*%%%*/
17434 yyerror1(&(yylsp[0]), mesg);
17435 /*% %*/
17436 (yyval.id) = 0;
17437 /*% ripper[error]: param_error!(ERR_MESG(), $:1) %*/
17438 }
17439#line 17440 "parse.c"
17440 break;
17441
17442 case 753: /* f_norm_arg: "local variable or method" */
17443#line 6444 "parse.y"
17444 {
17445 VALUE e = formal_argument_error(p, (yyval.id) = (yyvsp[0].id));
17446 if (e) {
17447 /*% ripper[error]: param_error!(?e, $:1) %*/
17448 }
17449 p->max_numparam = ORDINAL_PARAM;
17450 }
17451#line 17452 "parse.c"
17452 break;
17453
17454 case 754: /* f_arg_asgn: f_norm_arg */
17455#line 6454 "parse.y"
17456 {
17457 arg_var(p, (yyvsp[0].id));
17458 (yyval.id) = (yyvsp[0].id);
17459 }
17460#line 17461 "parse.c"
17461 break;
17462
17463 case 755: /* f_arg_item: f_arg_asgn */
17464#line 6461 "parse.y"
17465 {
17466 (yyval.node_args_aux) = NEW_ARGS_AUX((yyvsp[0].id), 1, &NULL_LOC);
17467 /*% ripper: $:1 %*/
17468 }
17469#line 17470 "parse.c"
17470 break;
17471
17472 case 756: /* f_arg_item: "(" f_margs rparen */
17473#line 6466 "parse.y"
17474 {
17475 ID tid = internal_id(p);
17476 YYLTYPE loc;
17477 loc.beg_pos = (yylsp[-1]).beg_pos;
17478 loc.end_pos = (yylsp[-1]).beg_pos;
17479 arg_var(p, tid);
17480 if (dyna_in_block(p)) {
17481 (yyvsp[-1].node_masgn)->nd_value = NEW_DVAR(tid, &loc);
17482 }
17483 else {
17484 (yyvsp[-1].node_masgn)->nd_value = NEW_LVAR(tid, &loc);
17485 }
17486 (yyval.node_args_aux) = NEW_ARGS_AUX(tid, 1, &NULL_LOC);
17487 (yyval.node_args_aux)->nd_next = (NODE *)(yyvsp[-1].node_masgn);
17488 /*% ripper: mlhs_paren!($:2) %*/
17489 }
17490#line 17491 "parse.c"
17491 break;
17492
17493 case 758: /* f_arg: f_arg ',' f_arg_item */
17494#line 6487 "parse.y"
17495 {
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));
17500 /*% ripper: rb_ary_push($:1, $:3) %*/
17501 }
17502#line 17503 "parse.c"
17503 break;
17504
17505 case 759: /* f_label: "label" */
17506#line 6498 "parse.y"
17507 {
17508 VALUE e = formal_argument_error(p, (yyval.id) = (yyvsp[0].id));
17509 if (e) {
17510 (yyval.id) = 0;
17511 /*% ripper[error]: param_error!(?e, $:1) %*/
17512 }
17513 /*
17514 * Workaround for Prism::ParseTest#test_filepath for
17515 * "unparser/corpus/literal/def.txt"
17516 *
17517 * See the discussion on https://github.com/ruby/ruby/pull/9923
17518 */
17519 arg_var(p, ifdef_ripper(0, (yyvsp[0].id)));
17520 /*% ripper: $:1 %*/
17521 p->max_numparam = ORDINAL_PARAM;
17522 p->ctxt.in_argdef = 0;
17523 }
17524#line 17525 "parse.c"
17525 break;
17526
17527 case 762: /* f_no_kwarg: p_kwnorest */
17528#line 6522 "parse.y"
17529 {
17530 /*% ripper: nokw_param!(Qnil) %*/
17531 }
17532#line 17533 "parse.c"
17533 break;
17534
17535 case 763: /* f_kwrest: kwrest_mark "local variable or method" */
17536#line 6528 "parse.y"
17537 {
17538 arg_var(p, shadowing_lvar(p, (yyvsp[0].id)));
17539 (yyval.id) = (yyvsp[0].id);
17540 /*% ripper: kwrest_param!($:2) %*/
17541 }
17542#line 17543 "parse.c"
17543 break;
17544
17545 case 764: /* f_kwrest: kwrest_mark */
17546#line 6534 "parse.y"
17547 {
17548 arg_var(p, idFWD_KWREST);
17549 (yyval.id) = idFWD_KWREST;
17550 /*% ripper: kwrest_param!(Qnil) %*/
17551 }
17552#line 17553 "parse.c"
17553 break;
17554
17555 case 767: /* f_rest_arg: restarg_mark "local variable or method" */
17556#line 6546 "parse.y"
17557 {
17558 arg_var(p, shadowing_lvar(p, (yyvsp[0].id)));
17559 (yyval.id) = (yyvsp[0].id);
17560 /*% ripper: rest_param!($:2) %*/
17561 }
17562#line 17563 "parse.c"
17563 break;
17564
17565 case 768: /* f_rest_arg: restarg_mark */
17566#line 6552 "parse.y"
17567 {
17568 arg_var(p, idFWD_REST);
17569 (yyval.id) = idFWD_REST;
17570 /*% ripper: rest_param!(Qnil) %*/
17571 }
17572#line 17573 "parse.c"
17573 break;
17574
17575 case 771: /* f_block_arg: blkarg_mark "local variable or method" */
17576#line 6564 "parse.y"
17577 {
17578 arg_var(p, shadowing_lvar(p, (yyvsp[0].id)));
17579 (yyval.id) = (yyvsp[0].id);
17580 /*% ripper: blockarg!($:2) %*/
17581 }
17582#line 17583 "parse.c"
17583 break;
17584
17585 case 772: /* f_block_arg: blkarg_mark */
17586#line 6570 "parse.y"
17587 {
17588 arg_var(p, idFWD_BLOCK);
17589 (yyval.id) = idFWD_BLOCK;
17590 /*% ripper: blockarg!(Qnil) %*/
17591 }
17592#line 17593 "parse.c"
17593 break;
17594
17595 case 773: /* opt_f_block_arg: ',' f_block_arg */
17596#line 6578 "parse.y"
17597 {
17598 (yyval.id) = (yyvsp[0].id);
17599 /*% ripper: $:2 %*/
17600 }
17601#line 17602 "parse.c"
17602 break;
17603
17604 case 775: /* value_expr_singleton_expr: singleton_expr */
17605#line 3102 "parse.y"
17606 {
17607 value_expr((yyvsp[0].node));
17608 (yyval.node) = (yyvsp[0].node);
17609 }
17610#line 17611 "parse.c"
17611 break;
17612
17613 case 776: /* singleton: value_expr_singleton_expr */
17614#line 6587 "parse.y"
17615 {
17616 NODE *expr = last_expr_node((yyvsp[0].node));
17617 switch (nd_type(expr)) {
17618 case NODE_STR:
17619 case NODE_DSTR:
17620 case NODE_XSTR:
17621 case NODE_DXSTR:
17622 case NODE_REGX:
17623 case NODE_DREGX:
17624 case NODE_SYM:
17625 case NODE_LINE:
17626 case NODE_FILE:
17627 case NODE_ENCODING:
17628 case NODE_INTEGER:
17629 case NODE_FLOAT:
17630 case NODE_RATIONAL:
17631 case NODE_IMAGINARY:
17632 case NODE_DSYM:
17633 case NODE_LIST:
17634 case NODE_ZLIST:
17635 yyerror1(&expr->nd_loc, "can't define singleton method for literals");
17636 break;
17637 default:
17638 break;
17639 }
17640 (yyval.node) = (yyvsp[0].node);
17641 }
17642#line 17643 "parse.c"
17643 break;
17644
17645 case 778: /* $@39: %empty */
17646#line 6618 "parse.y"
17647 {
17648 SET_LEX_STATE(EXPR_BEG);
17649 p->ctxt.in_argdef = 0;
17650 }
17651#line 17652 "parse.c"
17652 break;
17653
17654 case 779: /* singleton_expr: '(' $@39 expr rparen */
17655#line 6623 "parse.y"
17656 {
17657 p->ctxt.in_argdef = 1;
17658 (yyval.node) = (yyvsp[-1].node);
17659 /*% ripper: paren!($:3) %*/
17660 }
17661#line 17662 "parse.c"
17662 break;
17663
17664 case 781: /* assoc_list: assocs trailer */
17665#line 6632 "parse.y"
17666 {
17667 (yyval.node) = (yyvsp[-1].node);
17668 /*% ripper: assoclist_from_args!($:1) %*/
17669 }
17670#line 17671 "parse.c"
17671 break;
17672
17673 case 783: /* assocs: assocs ',' assoc */
17674#line 6641 "parse.y"
17675 {
17676 NODE *assocs = (yyvsp[-2].node);
17677 NODE *tail = (yyvsp[0].node);
17678 if (!assocs) {
17679 assocs = tail;
17680 }
17681 else if (tail) {
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)) {
17686 /* DSTAR */
17687 tail = RNODE_HASH(n)->nd_head;
17688 }
17689 }
17690 if (tail) {
17691 assocs = list_concat(assocs, tail);
17692 }
17693 }
17694 (yyval.node) = assocs;
17695 /*% ripper: rb_ary_push($:1, $:3) %*/
17696 }
17697#line 17698 "parse.c"
17698 break;
17699
17700 case 784: /* assoc: arg_value "=>" arg_value */
17701#line 6666 "parse.y"
17702 {
17703 (yyval.node) = list_append(p, NEW_LIST((yyvsp[-2].node), &(yyloc)), (yyvsp[0].node));
17704 /*% ripper: assoc_new!($:1, $:3) %*/
17705 }
17706#line 17707 "parse.c"
17707 break;
17708
17709 case 785: /* assoc: "label" arg_value */
17710#line 6671 "parse.y"
17711 {
17712 (yyval.node) = list_append(p, NEW_LIST(NEW_SYM(rb_id2str((yyvsp[-1].id)), &(yylsp[-1])), &(yyloc)), (yyvsp[0].node));
17713 /*% ripper: assoc_new!($:1, $:2) %*/
17714 }
17715#line 17716 "parse.c"
17716 break;
17717
17718 case 786: /* assoc: "label" */
17719#line 6676 "parse.y"
17720 {
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);
17724 /*% ripper: assoc_new!($:1, Qnil) %*/
17725 }
17726#line 17727 "parse.c"
17727 break;
17728
17729 case 787: /* assoc: "string literal" string_contents tLABEL_END arg_value */
17730#line 6683 "parse.y"
17731 {
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));
17734 /*% ripper: assoc_new!(dyna_symbol!($:2), $:4) %*/
17735 }
17736#line 17737 "parse.c"
17737 break;
17738
17739 case 788: /* assoc: "**arg" arg_value */
17740#line 6689 "parse.y"
17741 {
17742 (yyval.node) = list_append(p, NEW_LIST(0, &(yyloc)), (yyvsp[0].node));
17743 /*% ripper: assoc_splat!($:2) %*/
17744 }
17745#line 17746 "parse.c"
17746 break;
17747
17748 case 789: /* assoc: "**arg" */
17749#line 6694 "parse.y"
17750 {
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)));
17754 /*% ripper: assoc_splat!(Qnil) %*/
17755 }
17756#line 17757 "parse.c"
17757 break;
17758
17759 case 808: /* term: ';' */
17760#line 6740 "parse.y"
17761 {yyerrok;token_flush(p);}
17762#line 17763 "parse.c"
17763 break;
17764
17765 case 809: /* term: '\n' */
17766#line 6742 "parse.y"
17767 {
17768 (yyloc).end_pos = (yyloc).beg_pos;
17769 token_flush(p);
17770 }
17771#line 17772 "parse.c"
17772 break;
17773
17774 case 811: /* terms: terms ';' */
17775#line 6749 "parse.y"
17776 {yyerrok;}
17777#line 17778 "parse.c"
17778 break;
17779
17780 case 812: /* none: %empty */
17781#line 6753 "parse.y"
17782 {
17783 (yyval.node) = 0;
17784 /*% ripper: Qnil %*/
17785 }
17786#line 17787 "parse.c"
17787 break;
17788
17789
17790#line 17791 "parse.c"
17791
17792 default: break;
17793 }
17794 /* User semantic actions sometimes alter yychar, and that requires
17795 that yytoken be updated with the new translation. We take the
17796 approach of translating immediately before every use of yytoken.
17797 One alternative is translating here after every semantic action,
17798 but that translation would be missed if the semantic action invokes
17799 YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
17800 if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
17801 incorrect destructor might then be invoked immediately. In the
17802 case of YYERROR or YYBACKUP, subsequent parser actions might lead
17803 to an incorrect destructor call or verbose syntax error message
17804 before the lookahead is translated. */
17805 YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc, p);
17806
17807 YYPOPSTACK (yylen);
17808 /* %after-reduce function. */
17809#line 2665 "parse.y"
17810 {after_reduce(yylen, p);}
17811#line 17812 "parse.c"
17812
17813 yylen = 0;
17814
17815 *++yyvsp = yyval;
17816 *++yylsp = yyloc;
17817
17818 /* Now 'shift' the result of the reduction. Determine what state
17819 that goes to, based on the state we popped back to and the rule
17820 number reduced by. */
17821 {
17822 const int yylhs = yyr1[yyn] - YYNTOKENS;
17823 const int yyi = yypgoto[yylhs] + *yyssp;
17824 yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
17825 ? yytable[yyi]
17826 : yydefgoto[yylhs]);
17827 }
17828
17829 goto yynewstate;
17830
17831
17832/*--------------------------------------.
17833| yyerrlab -- here on detecting error. |
17834`--------------------------------------*/
17835yyerrlab:
17836 /* Make sure we have latest lookahead translation. See comments at
17837 user semantic actions for why this is necessary. */
17838 yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
17839 /* If not already recovering from an error, report this error. */
17840 if (!yyerrstatus)
17841 {
17842 ++yynerrs;
17843 {
17844 yypcontext_t yyctx
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)
17850 yymsgp = yymsg;
17851 else if (yysyntax_error_status == -1)
17852 {
17853 if (yymsg != yymsgbuf)
17854 YYSTACK_FREE (yymsg);
17855 yymsg = YY_CAST (char *,
17856 YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
17857 if (yymsg)
17858 {
17859 yysyntax_error_status
17860 = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx, p);
17861 yymsgp = yymsg;
17862 }
17863 else
17864 {
17865 yymsg = yymsgbuf;
17866 yymsg_alloc = sizeof yymsgbuf;
17867 yysyntax_error_status = YYENOMEM;
17868 }
17869 }
17870 yyerror (&yylloc, p, yymsgp);
17871 if (yysyntax_error_status == YYENOMEM)
17872 YYNOMEM;
17873 }
17874 }
17875
17876 yyerror_range[1] = yylloc;
17877 if (yyerrstatus == 3)
17878 {
17879 /* If just tried and failed to reuse lookahead token after an
17880 error, discard it. */
17881
17882 if (yychar <= END_OF_INPUT)
17883 {
17884 /* Return failure if at end of input. */
17885 if (yychar == END_OF_INPUT)
17886 YYABORT;
17887 }
17888 else
17889 {
17890 yydestruct ("Error: discarding",
17891 yytoken, &yylval, &yylloc, p);
17892 yychar = YYEMPTY;
17893 }
17894 }
17895
17896 /* Else will try to reuse lookahead token after shifting the error
17897 token. */
17898 goto yyerrlab1;
17899
17900
17901/*---------------------------------------------------.
17902| yyerrorlab -- error raised explicitly by YYERROR. |
17903`---------------------------------------------------*/
17904yyerrorlab:
17905 /* Pacify compilers when the user code never invokes YYERROR and the
17906 label yyerrorlab therefore never appears in user code. */
17907 if (0)
17908 YYERROR;
17909 ++yynerrs;
17910
17911 /* Do not reclaim the symbols of the rule whose action triggered
17912 this YYERROR. */
17913 YYPOPSTACK (yylen);
17914 /* %after-pop-stack function. */
17915#line 2667 "parse.y"
17916 {after_pop_stack(yylen, p);}
17917#line 17918 "parse.c"
17918
17919 yylen = 0;
17920 YY_STACK_PRINT (yyss, yyssp, p);
17921 yystate = *yyssp;
17922 goto yyerrlab1;
17923
17924
17925/*-------------------------------------------------------------.
17926| yyerrlab1 -- common code for both syntax error and YYERROR. |
17927`-------------------------------------------------------------*/
17928yyerrlab1:
17929 yyerrstatus = 3; /* Each real token shifted decrements this. */
17930
17931 /* Pop stack until we find a state that shifts the error token. */
17932 for (;;)
17933 {
17934 yyn = yypact[yystate];
17935 if (!yypact_value_is_default (yyn))
17936 {
17937 yyn += YYSYMBOL_YYerror;
17938 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
17939 {
17940 yyn = yytable[yyn];
17941 if (0 < yyn)
17942 break;
17943 }
17944 }
17945
17946 /* Pop the current state because it cannot handle the error token. */
17947 if (yyssp == yyss)
17948 YYABORT;
17949
17950 yyerror_range[1] = *yylsp;
17951 yydestruct ("Error: popping",
17952 YY_ACCESSING_SYMBOL (yystate), yyvsp, yylsp, p);
17953 YYPOPSTACK (1);
17954 /* %after-pop-stack function. */
17955#line 2667 "parse.y"
17956 {after_pop_stack(1, p);}
17957#line 17958 "parse.c"
17958
17959 yystate = *yyssp;
17960 YY_STACK_PRINT (yyss, yyssp, p);
17961 }
17962
17963 YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
17964 *++yyvsp = yylval;
17965 YY_IGNORE_MAYBE_UNINITIALIZED_END
17966
17967 yyerror_range[2] = yylloc;
17968 ++yylsp;
17969 YYLLOC_DEFAULT (*yylsp, yyerror_range, 2);
17970
17971 /* Shift the error token. */
17972 YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp, p);
17973 /* %after-shift-error-token code. */
17974#line 2666 "parse.y"
17975 {after_shift_error_token(p);}
17976#line 17977 "parse.c"
17977
17978
17979 yystate = yyn;
17980 goto yynewstate;
17981
17982
17983/*-------------------------------------.
17984| yyacceptlab -- YYACCEPT comes here. |
17985`-------------------------------------*/
17986yyacceptlab:
17987 yyresult = 0;
17988 goto yyreturnlab;
17989
17990
17991/*-----------------------------------.
17992| yyabortlab -- YYABORT comes here. |
17993`-----------------------------------*/
17994yyabortlab:
17995 yyresult = 1;
17996 goto yyreturnlab;
17997
17998
17999/*-----------------------------------------------------------.
18000| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. |
18001`-----------------------------------------------------------*/
18002yyexhaustedlab:
18003 yyerror (&yylloc, p, YY_("memory exhausted"));
18004 yyresult = 2;
18005 goto yyreturnlab;
18006
18007
18008/*----------------------------------------------------------.
18009| yyreturnlab -- parsing is finished, clean up and return. |
18010`----------------------------------------------------------*/
18011yyreturnlab:
18012 if (yychar != YYEMPTY)
18013 {
18014 /* Make sure we have latest lookahead translation. See comments at
18015 user semantic actions for why this is necessary. */
18016 yytoken = YYTRANSLATE (yychar);
18017 yydestruct ("Cleanup: discarding lookahead",
18018 yytoken, &yylval, &yylloc, p);
18019 }
18020 /* Do not reclaim the symbols of the rule whose action triggered
18021 this YYABORT or YYACCEPT. */
18022 YYPOPSTACK (yylen);
18023 YY_STACK_PRINT (yyss, yyssp, p);
18024 while (yyssp != yyss)
18025 {
18026 yydestruct ("Cleanup: popping",
18027 YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, yylsp, p);
18028 YYPOPSTACK (1);
18029 }
18030#ifndef yyoverflow
18031 if (yyss != yyssa)
18032 YYSTACK_FREE (yyss);
18033#endif
18034 if (yymsg != yymsgbuf)
18035 YYSTACK_FREE (yymsg);
18036 return yyresult;
18037}
18038
18039#line 6758 "parse.y"
18040
18041# undef p
18042# undef yylex
18043# undef yylval
18044# define yylval (*p->lval)
18045
18046static int regx_options(struct parser_params*);
18047static int tokadd_string(struct parser_params*,int,int,int,long*,rb_encoding**,rb_encoding**);
18048static void tokaddmbc(struct parser_params *p, int c, rb_encoding *enc);
18049static enum yytokentype parse_string(struct parser_params*,rb_strterm_literal_t*);
18050static enum yytokentype here_document(struct parser_params*,rb_strterm_heredoc_t*);
18051
18052#define set_parser_s_value(x) (ifdef_ripper(p->s_value = (x), (void)0))
18053
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)); \
18059}
18060# define set_yylval_str(x) \
18061do { \
18062 set_yylval_node(NEW_STR(x, &_cur_loc)); \
18063 set_parser_s_value(rb_str_new_mutable_parser_string(x)); \
18064} while(0)
18065# define set_yylval_num(x) { \
18066 yylval.num = (x); \
18067 set_parser_s_value(x); \
18068}
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)); \
18073}
18074# define yylval_id() (yylval.id)
18075
18076#define set_yylval_noname() set_yylval_id(keyword_nil)
18077#define has_delayed_token(p) (p->delayed.token != NULL)
18078
18079#ifndef RIPPER
18080#define literal_flush(p, ptr) ((p)->lex.ptok = (ptr))
18081#define dispatch_scan_event(p, t) parser_dispatch_scan_event(p, t, __LINE__)
18082
18083static bool
18084parser_has_token(struct parser_params *p)
18085{
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);
18091 }
18092 return pcur > ptok;
18093}
18094
18095static const char *
18096escaped_char(int c)
18097{
18098 switch (c) {
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?";
18111 }
18112 return NULL;
18113}
18114
18115static rb_parser_string_t *
18116rb_parser_str_escape(struct parser_params *p, rb_parser_string_t *str)
18117{
18118 rb_encoding *enc = p->enc;
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};
18123 rb_parser_string_t * result = rb_parser_string_new(p, 0, 0);
18124
18125 while (ptr < pend) {
18126 unsigned int c;
18127 const char *cc;
18128 int n = rb_enc_precise_mbclen(ptr, pend, enc);
18129 if (!MBCLEN_CHARFOUND_P(n)) {
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);
18134 while (n--) {
18135 c = *ptr & 0xf0 >> 4;
18136 charbuf[2] = (c < 10) ? '0' + c : 'A' + c - 10;
18137 c = *ptr & 0x0f;
18138 charbuf[3] = (c < 10) ? '0' + c : 'A' + c - 10;
18139 parser_str_cat(result, charbuf, 4);
18140 prev = ++ptr;
18141 }
18142 continue;
18143 }
18144 n = MBCLEN_CHARFOUND_LEN(n);
18145 c = rb_enc_mbc_to_codepoint(ptr, pend, enc);
18146 ptr += n;
18147 cc = escaped_char(c);
18148 if (cc) {
18149 if (ptr - n > prev) parser_str_cat(result, prev, ptr - n - prev);
18150 parser_str_cat_cstr(result, cc);
18151 prev = ptr;
18152 }
18153 else if (rb_enc_isascii(c, enc) && ISPRINT(c)) {
18154 }
18155 else {
18156 if (ptr - n > prev) {
18157 parser_str_cat(result, prev, ptr - n - prev);
18158 prev = ptr - n;
18159 }
18160 parser_str_cat(result, prev, ptr - prev);
18161 prev = ptr;
18162 }
18163 }
18164 if (ptr > prev) parser_str_cat(result, prev, ptr - prev);
18165
18166 return result;
18167}
18168
18169static void
18170parser_append_tokens(struct parser_params *p, rb_parser_string_t *str, enum yytokentype t, int line)
18171{
18173 token->id = p->token_id;
18174 token->type_name = parser_token2char(p, t);
18175 token->str = str;
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);
18179 p->token_id++;
18180
18181 if (p->debug) {
18182 rb_parser_string_t *str_escaped = rb_parser_str_escape(p, str);
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);
18188 }
18189}
18190
18191static void
18192parser_dispatch_scan_event(struct parser_params *p, enum yytokentype t, int line)
18193{
18194 debug_token_line(p, "parser_dispatch_scan_event", line);
18195
18196 if (!parser_has_token(p)) return;
18197
18198 RUBY_SET_YYLLOC(*p->yylloc);
18199
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);
18203 }
18204
18205 token_flush(p);
18206}
18207
18208#define dispatch_delayed_token(p, t) parser_dispatch_delayed_token(p, t, __LINE__)
18209static void
18210parser_dispatch_delayed_token(struct parser_params *p, enum yytokentype t, int line)
18211{
18212 debug_token_line(p, "parser_dispatch_delayed_token", line);
18213
18214 if (!has_delayed_token(p)) return;
18215
18216 RUBY_SET_YYLLOC_OF_DELAYED_TOKEN(*p->yylloc);
18217
18218 if (p->keep_tokens) {
18219 /* p->delayed.token is freed by rb_parser_tokens_free */
18220 parser_append_tokens(p, p->delayed.token, t, line);
18221 } else {
18222 rb_parser_string_free(p, p->delayed.token);
18223 }
18224
18225 p->delayed.token = NULL;
18226}
18227#else
18228#define literal_flush(p, ptr) ((void)(ptr))
18229
18230static int
18231ripper_has_scan_event(struct parser_params *p)
18232{
18233 if (p->lex.pcur < p->lex.ptok) rb_raise(rb_eRuntimeError, "lex.pcur < lex.ptok");
18234 return p->lex.pcur > p->lex.ptok;
18235}
18236
18237static VALUE
18238ripper_scan_event_val(struct parser_params *p, enum yytokentype t)
18239{
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);
18243 token_flush(p);
18244 return rval;
18245}
18246
18247static void
18248ripper_dispatch_scan_event(struct parser_params *p, enum yytokentype t)
18249{
18250 if (!ripper_has_scan_event(p)) return;
18251
18252 set_parser_s_value(ripper_scan_event_val(p, t));
18253}
18254#define dispatch_scan_event(p, t) ripper_dispatch_scan_event(p, t)
18255
18256static void
18257ripper_dispatch_delayed_token(struct parser_params *p, enum yytokentype t)
18258{
18259 /* save and adjust the location to delayed token for callbacks */
18260 int saved_line = p->ruby_sourceline;
18261 const char *saved_tokp = p->lex.ptok;
18262 VALUE s_value, str;
18263
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;
18274}
18275#define dispatch_delayed_token(p, t) ripper_dispatch_delayed_token(p, t)
18276#endif /* RIPPER */
18277
18278static inline int
18279is_identchar(struct parser_params *p, const char *ptr, const char *MAYBE_UNUSED(ptr_end), rb_encoding *enc)
18280{
18281 return rb_enc_isalnum((unsigned char)*ptr, enc) || *ptr == '_' || !ISASCII(*ptr);
18282}
18283
18284static inline int
18285parser_is_identchar(struct parser_params *p)
18286{
18287 return !(p)->eofp && is_identchar(p, p->lex.pcur-1, p->lex.pend, p->enc);
18288}
18289
18290static inline int
18291parser_isascii(struct parser_params *p)
18292{
18293 return ISASCII(*(p->lex.pcur-1));
18294}
18295
18296static void
18297token_info_setup(token_info *ptinfo, const char *ptr, const rb_code_location_t *loc)
18298{
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;
18303 }
18304 column++;
18305 if (*ptr != ' ' && *ptr != '\t') {
18306 nonspc = 1;
18307 }
18308 }
18309
18310 ptinfo->beg = loc->beg_pos;
18311 ptinfo->indent = column;
18312 ptinfo->nonspc = nonspc;
18313}
18314
18315static void
18316token_info_push(struct parser_params *p, const char *token, const rb_code_location_t *loc)
18317{
18318 token_info *ptinfo;
18319
18320 if (!p->token_info_enabled) return;
18321 ptinfo = ALLOC(token_info);
18322 ptinfo->token = token;
18323 ptinfo->next = p->token_info;
18324 token_info_setup(ptinfo, p->lex.pbeg, loc);
18325
18326 p->token_info = ptinfo;
18327}
18328
18329static void
18330token_info_pop(struct parser_params *p, const char *token, const rb_code_location_t *loc)
18331{
18332 token_info *ptinfo_beg = p->token_info;
18333
18334 if (!ptinfo_beg) return;
18335
18336 /* indentation check of matched keywords (begin..end, if..end, etc.) */
18337 token_info_warn(p, token, ptinfo_beg, 1, loc);
18338
18339 p->token_info = ptinfo_beg->next;
18340 ruby_sized_xfree(ptinfo_beg, sizeof(*ptinfo_beg));
18341}
18342
18343static void
18344token_info_drop(struct parser_params *p, const char *token, rb_code_position_t beg_pos)
18345{
18346 token_info *ptinfo_beg = p->token_info;
18347
18348 if (!ptinfo_beg) return;
18349 p->token_info = ptinfo_beg->next;
18350
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);
18358 }
18359
18360 ruby_sized_xfree(ptinfo_beg, sizeof(*ptinfo_beg));
18361}
18362
18363static void
18364token_info_warn(struct parser_params *p, const char *token, token_info *ptinfo_beg, int same, const rb_code_location_t *loc)
18365{
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; /* ignore one-line block */
18371 if (ptinfo_beg->nonspc || ptinfo_end->nonspc) return; /* ignore keyword in the middle of a line */
18372 if (ptinfo_beg->indent == ptinfo_end->indent) return; /* the indents are matched */
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));
18377}
18378
18379static int
18380parser_precise_mbclen(struct parser_params *p, const char *ptr)
18381{
18382 int len = rb_enc_precise_mbclen(ptr, p->lex.pend, p->enc);
18383 if (!MBCLEN_CHARFOUND_P(len)) {
18384 compile_error(p, "invalid multibyte char (%s)", rb_enc_name(p->enc));
18385 return -1;
18386 }
18387 return len;
18388}
18389
18390#ifndef RIPPER
18391static inline void
18392parser_show_error_line(struct parser_params *p, const YYLTYPE *yylloc)
18393{
18394 rb_parser_string_t *str;
18395 int lineno = p->ruby_sourceline;
18396 if (!yylloc) {
18397 return;
18398 }
18399 else if (yylloc->beg_pos.lineno == lineno) {
18400 str = p->lex.lastline;
18401 }
18402 else {
18403 return;
18404 }
18405 ruby_show_error_line(p, p->error_buffer, yylloc, lineno, str);
18406}
18407
18408static int
18409parser_yyerror(struct parser_params *p, const rb_code_location_t *yylloc, const char *msg)
18410{
18411#if 0
18412 YYLTYPE current;
18413
18414 if (!yylloc) {
18415 yylloc = RUBY_SET_YYLLOC(current);
18416 }
18417 else if ((p->ruby_sourceline != yylloc->beg_pos.lineno &&
18418 p->ruby_sourceline != yylloc->end_pos.lineno)) {
18419 yylloc = 0;
18420 }
18421#endif
18422 parser_compile_error(p, yylloc, "%s", msg);
18423 parser_show_error_line(p, yylloc);
18424 return 0;
18425}
18426
18427static int
18428parser_yyerror0(struct parser_params *p, const char *msg)
18429{
18430 YYLTYPE current;
18431 return parser_yyerror(p, RUBY_SET_YYLLOC(current), msg);
18432}
18433
18434void
18435ruby_show_error_line(struct parser_params *p, VALUE errbuf, const YYLTYPE *yylloc, int lineno, rb_parser_string_t *str)
18436{
18437 VALUE mesg;
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 = "";
18442 const char *lim;
18443 const char *const pbeg = PARSER_STRING_PTR(str);
18444 char *buf;
18445 long len;
18446 int i;
18447
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;
18452 }
18453
18454 pt = pend;
18455 if (lineno == yylloc->end_pos.lineno &&
18456 (pend - pbeg) > yylloc->end_pos.column) {
18457 pt = pbeg + yylloc->end_pos.column;
18458 }
18459
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--;
18463
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++;
18466
18467 len = ptr_end - ptr;
18468 if (len > 4) {
18469 if (ptr > pbeg) {
18470 ptr = rb_enc_prev_char(pbeg, ptr, pt, rb_parser_str_get_encoding(str));
18471 if (ptr > pbeg) pre = "...";
18472 }
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 = "...";
18476 }
18477 }
18478 pb = pbeg;
18479 if (lineno == yylloc->beg_pos.lineno) {
18480 pb += yylloc->beg_pos.column;
18481 if (pb > pt) pb = pt;
18482 }
18483 if (pb < ptr) pb = ptr;
18484 if (len <= 4 && yylloc->beg_pos.lineno == yylloc->end_pos.lineno) {
18485 return;
18486 }
18487 if (RTEST(errbuf)) {
18488 mesg = rb_attr_get(errbuf, idMesg);
18489 if (char_at_end(p, mesg, '\n') != '\n')
18490 rb_str_cat_cstr(mesg, "\n");
18491 }
18492 else {
18493 mesg = rb_enc_str_new(0, 0, rb_parser_str_get_encoding(str));
18494 }
18495 if (!errbuf && rb_stderr_tty_p()) {
18496#define CSI_BEGIN "\033["
18497#define CSI_SGR "m"
18498 rb_str_catf(mesg,
18499 CSI_BEGIN""CSI_SGR"%s" /* pre */
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" /* post */
18504 "\n",
18505 pre,
18506 (int)(pb - ptr), ptr,
18507 (int)(pt - pb), pb,
18508 (int)(ptr_end - pt), pt,
18509 post);
18510 }
18511 else {
18512 char *p2;
18513
18514 len = ptr_end - ptr;
18515 lim = pt < pend ? pt : pend;
18516 i = (int)(lim - ptr);
18517 buf = ALLOCA_N(char, i+2);
18518 code = ptr;
18519 caret = p2 = buf;
18520 if (ptr <= pb) {
18521 while (ptr < pb) {
18522 *p2++ = *ptr++ == '\t' ? '\t' : ' ';
18523 }
18524 *p2++ = '^';
18525 ptr++;
18526 }
18527 if (lim > ptr) {
18528 memset(p2, '~', (lim - ptr));
18529 p2 += (lim - ptr);
18530 }
18531 *p2 = '\0';
18532 rb_str_catf(mesg, "%s%.*s%s\n""%s%s\n",
18533 pre, (int)len, code, post,
18534 pre, caret);
18535 }
18536 if (!errbuf) rb_write_error_str(mesg);
18537}
18538#else
18539
18540static int
18541parser_yyerror(struct parser_params *p, const YYLTYPE *yylloc, const char *msg)
18542{
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;
18550 }
18551 parser_yyerror0(p, msg);
18552 if (pcur) {
18553 p->lex.ptok = ptok;
18554 p->lex.pcur = pcur;
18555 }
18556 return 0;
18557}
18558
18559static int
18560parser_yyerror0(struct parser_params *p, const char *msg)
18561{
18562 dispatch1(parse_error, STR_NEW2(msg));
18563 ripper_error(p);
18564 return 0;
18565}
18566
18567static inline void
18568parser_show_error_line(struct parser_params *p, const YYLTYPE *yylloc)
18569{
18570}
18571#endif /* !RIPPER */
18572
18573static int
18574vtable_size(const struct vtable *tbl)
18575{
18576 if (!DVARS_TERMINAL_P(tbl)) {
18577 return tbl->pos;
18578 }
18579 else {
18580 return 0;
18581 }
18582}
18583
18584static struct vtable *
18585vtable_alloc_gen(struct parser_params *p, int line, struct vtable *prev)
18586{
18587 struct vtable *tbl = ALLOC(struct vtable);
18588 tbl->pos = 0;
18589 tbl->capa = 8;
18590 tbl->tbl = ALLOC_N(ID, tbl->capa);
18591 tbl->prev = prev;
18592#ifndef RIPPER
18593 if (p->debug) {
18594 rb_parser_printf(p, "vtable_alloc:%d: %p\n", line, (void *)tbl);
18595 }
18596#endif
18597 return tbl;
18598}
18599#define vtable_alloc(prev) vtable_alloc_gen(p, __LINE__, prev)
18600
18601static void
18602vtable_free_gen(struct parser_params *p, int line, const char *name,
18603 struct vtable *tbl)
18604{
18605#ifndef RIPPER
18606 if (p->debug) {
18607 rb_parser_printf(p, "vtable_free:%d: %s(%p)\n", line, name, (void *)tbl);
18608 }
18609#endif
18610 if (!DVARS_TERMINAL_P(tbl)) {
18611 if (tbl->tbl) {
18612 ruby_sized_xfree(tbl->tbl, tbl->capa * sizeof(ID));
18613 }
18614 ruby_sized_xfree(tbl, sizeof(*tbl));
18615 }
18616}
18617#define vtable_free(tbl) vtable_free_gen(p, __LINE__, #tbl, tbl)
18618
18619static void
18620vtable_add_gen(struct parser_params *p, int line, const char *name,
18621 struct vtable *tbl, ID id)
18622{
18623#ifndef RIPPER
18624 if (p->debug) {
18625 rb_parser_printf(p, "vtable_add:%d: %s(%p), %s\n",
18626 line, name, (void *)tbl, rb_id2name(id));
18627 }
18628#endif
18629 if (DVARS_TERMINAL_P(tbl)) {
18630 rb_parser_fatal(p, "vtable_add: vtable is not allocated (%p)", (void *)tbl);
18631 return;
18632 }
18633 if (tbl->pos == tbl->capa) {
18634 tbl->capa = tbl->capa * 2;
18635 SIZED_REALLOC_N(tbl->tbl, ID, tbl->capa, tbl->pos);
18636 }
18637 tbl->tbl[tbl->pos++] = id;
18638}
18639#define vtable_add(tbl, id) vtable_add_gen(p, __LINE__, #tbl, tbl, id)
18640
18641static void
18642vtable_pop_gen(struct parser_params *p, int line, const char *name,
18643 struct vtable *tbl, int n)
18644{
18645 if (p->debug) {
18646 rb_parser_printf(p, "vtable_pop:%d: %s(%p), %d\n",
18647 line, name, (void *)tbl, n);
18648 }
18649 if (tbl->pos < n) {
18650 rb_parser_fatal(p, "vtable_pop: unreachable (%d < %d)", tbl->pos, n);
18651 return;
18652 }
18653 tbl->pos -= n;
18654}
18655#define vtable_pop(tbl, n) vtable_pop_gen(p, __LINE__, #tbl, tbl, n)
18656
18657static int
18658vtable_included(const struct vtable * tbl, ID id)
18659{
18660 int i;
18661
18662 if (!DVARS_TERMINAL_P(tbl)) {
18663 for (i = 0; i < tbl->pos; i++) {
18664 if (tbl->tbl[i] == id) {
18665 return i+1;
18666 }
18667 }
18668 }
18669 return 0;
18670}
18671
18672static void parser_prepare(struct parser_params *p);
18673
18674static int
18675e_option_supplied(struct parser_params *p)
18676{
18677 return strcmp(p->ruby_sourcefile, "-e") == 0;
18678}
18679
18680#ifndef RIPPER
18681static NODE *parser_append_options(struct parser_params *p, NODE *node);
18682
18683static VALUE
18684yycompile0(VALUE arg)
18685{
18686 int n;
18687 NODE *tree;
18688 struct parser_params *p = (struct parser_params *)arg;
18689 int cov = FALSE;
18690
18691 if (!compile_for_eval && !NIL_P(p->ruby_sourcefile_string) && !e_option_supplied(p)) {
18692 cov = TRUE;
18693 }
18694
18695 if (p->debug_lines) {
18696 p->ast->body.script_lines = p->debug_lines;
18697 }
18698
18699 parser_prepare(p);
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); \
18703 }
18704 RUBY_DTRACE_PARSE_HOOK(BEGIN);
18705 n = yyparse(p);
18706 RUBY_DTRACE_PARSE_HOOK(END);
18707
18708 p->debug_lines = 0;
18709
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;
18715 if (!mesg) {
18716 mesg = syntax_error_new();
18717 }
18718 if (!p->error_tolerant) {
18719 rb_set_errinfo(mesg);
18720 return FALSE;
18721 }
18722 }
18723 tree = p->eval_tree;
18724 if (!tree) {
18725 tree = NEW_NIL(&NULL_LOC);
18726 }
18727 else {
18728 rb_parser_ary_t *tokens = p->tokens;
18729 NODE *prelude;
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;
18737 p->tokens = NULL;
18738 }
18739 }
18740 p->ast->body.root = tree;
18741 p->ast->body.line_count = p->line_count;
18742 return TRUE;
18743}
18744
18745static rb_ast_t *
18746yycompile(struct parser_params *p, VALUE fname, int line)
18747{
18748 rb_ast_t *ast;
18749 if (NIL_P(fname)) {
18750 p->ruby_sourcefile_string = Qnil;
18751 p->ruby_sourcefile = "(none)";
18752 }
18753 else {
18754 p->ruby_sourcefile_string = rb_str_to_interned_str(fname);
18755 p->ruby_sourcefile = StringValueCStr(fname);
18756 }
18757 p->ruby_sourceline = line - 1;
18758
18759 p->lvtbl = NULL;
18760
18761 p->ast = ast = rb_ast_new();
18762 compile_callback(yycompile0, (VALUE)p);
18763 p->ast = 0;
18764
18765 while (p->lvtbl) {
18766 local_pop(p);
18767 }
18768
18769 return ast;
18770}
18771#endif /* !RIPPER */
18772
18773static rb_encoding *
18774must_be_ascii_compatible(struct parser_params *p, rb_parser_string_t *s)
18775{
18776 rb_encoding *enc = rb_parser_str_get_encoding(s);
18777 if (!rb_enc_asciicompat(enc)) {
18778 rb_raise(rb_eArgError, "invalid source encoding");
18779 }
18780 return enc;
18781}
18782
18783static rb_parser_string_t *
18784lex_getline(struct parser_params *p)
18785{
18786 rb_parser_string_t *line = (*p->lex.gets)(p, p->lex.input, p->line_count);
18787 if (!line) return 0;
18788 p->line_count++;
18789 string_buffer_append(p, line);
18790 must_be_ascii_compatible(p, line);
18791 return line;
18792}
18793
18794#ifndef RIPPER
18795rb_ast_t*
18796rb_parser_compile(rb_parser_t *p, rb_parser_lex_gets_func *gets, VALUE fname, rb_parser_input_data input, int line)
18797{
18798 p->lex.gets = gets;
18799 p->lex.input = input;
18800 p->lex.pbeg = p->lex.pcur = p->lex.pend = 0;
18801
18802 return yycompile(p, fname, line);
18803}
18804#endif /* !RIPPER */
18805
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
18815
18816enum string_type {
18817 str_label = STR_FUNC_LABEL,
18818 str_squote = (0),
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)
18826};
18827
18828static rb_parser_string_t *
18829parser_str_new(struct parser_params *p, const char *ptr, long len, rb_encoding *enc, int func, rb_encoding *enc0)
18830{
18831 rb_parser_string_t *pstr;
18832
18833 pstr = rb_parser_encoding_string_new(p, ptr, len, enc);
18834
18835 if (!(func & STR_FUNC_REGEXP)) {
18836 if (rb_parser_is_ascii_string(p, pstr)) {
18837 }
18838 else if (rb_is_usascii_enc((void *)enc0) && enc != rb_utf8_encoding()) {
18839 /* everything is valid in ASCII-8BIT */
18840 enc = rb_ascii8bit_encoding();
18841 PARSER_ENCODING_CODERANGE_SET(pstr, enc, RB_PARSER_ENC_CODERANGE_VALID);
18842 }
18843 }
18844
18845 return pstr;
18846}
18847
18848static int
18849strterm_is_heredoc(rb_strterm_t *strterm)
18850{
18851 return strterm->heredoc;
18852}
18853
18854static rb_strterm_t *
18855new_strterm(struct parser_params *p, int func, int term, int paren)
18856{
18857 rb_strterm_t *strterm = ZALLOC(rb_strterm_t);
18858 strterm->u.literal.func = func;
18859 strterm->u.literal.term = term;
18860 strterm->u.literal.paren = paren;
18861 return strterm;
18862}
18863
18864static rb_strterm_t *
18865new_heredoc(struct parser_params *p)
18866{
18867 rb_strterm_t *strterm = ZALLOC(rb_strterm_t);
18868 strterm->heredoc = true;
18869 return strterm;
18870}
18871
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])
18876
18877#define add_delayed_token(p, tok, end) parser_add_delayed_token(p, tok, end, __LINE__)
18878static void
18879parser_add_delayed_token(struct parser_params *p, const char *tok, const char *end, int line)
18880{
18881 debug_token_line(p, "add_delayed_token", line);
18882
18883 if (tok < end) {
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);
18890 }
18891 }
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);
18897 }
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);
18901 p->lex.ptok = end;
18902 }
18903}
18904
18905static void
18906set_lastline(struct parser_params *p, rb_parser_string_t *str)
18907{
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;
18911}
18912
18913static int
18914nextline(struct parser_params *p, int set_encoding)
18915{
18916 rb_parser_string_t *str = p->lex.nextline;
18917 p->lex.nextline = 0;
18918 if (!str) {
18919 if (p->eofp)
18920 return -1;
18921
18922 if (!lex_eol_ptr_p(p, p->lex.pbeg) && *(p->lex.pend-1) != '\n') {
18923 goto end_of_input;
18924 }
18925
18926 if (!p->lex.input || !(str = lex_getline(p))) {
18927 end_of_input:
18928 p->eofp = 1;
18929 lex_goto_eol(p);
18930 return -1;
18931 }
18932#ifndef RIPPER
18933 if (p->debug_lines) {
18934 if (set_encoding) rb_parser_enc_associate(p, str, p->enc);
18935 rb_parser_string_t *copy = rb_parser_string_deep_copy(p, str);
18936 rb_parser_ary_push_script_line(p, p->debug_lines, copy);
18937 }
18938#endif
18939 p->cr_seen = FALSE;
18940 }
18941 else if (str == AFTER_HEREDOC_WITHOUT_TERMINATOR) {
18942 /* after here-document without terminator */
18943 goto end_of_input;
18944 }
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;
18949 }
18950 p->ruby_sourceline++;
18951 set_lastline(p, str);
18952 token_flush(p);
18953 return 0;
18954}
18955
18956static int
18957parser_cr(struct parser_params *p, int c)
18958{
18959 if (peek(p, '\n')) {
18960 p->lex.pcur++;
18961 c = '\n';
18962 }
18963 return c;
18964}
18965
18966static inline int
18967nextc0(struct parser_params *p, int set_encoding)
18968{
18969 int c;
18970
18971 if (UNLIKELY(lex_eol_p(p) || p->eofp || p->lex.nextline > AFTER_HEREDOC_WITHOUT_TERMINATOR)) {
18972 if (nextline(p, set_encoding)) return -1;
18973 }
18974 c = (unsigned char)*p->lex.pcur++;
18975 if (UNLIKELY(c == '\r')) {
18976 c = parser_cr(p, c);
18977 }
18978
18979 return c;
18980}
18981#define nextc(p) nextc0(p, TRUE)
18982
18983static void
18984pushback(struct parser_params *p, int c)
18985{
18986 if (c == -1) return;
18987 p->eofp = 0;
18988 p->lex.pcur--;
18989 if (p->lex.pcur > p->lex.pbeg && p->lex.pcur[0] == '\n' && p->lex.pcur[-1] == '\r') {
18990 p->lex.pcur--;
18991 }
18992}
18993
18994#define was_bol(p) ((p)->lex.pcur == (p)->lex.pbeg + 1)
18995
18996#define tokfix(p) ((p)->tokenbuf[(p)->tokidx]='\0')
18997#define tok(p) (p)->tokenbuf
18998#define toklen(p) (p)->tokidx
18999
19000static int
19001looking_at_eol_p(struct parser_params *p)
19002{
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 == '#');
19007 if (eol || !ISSPACE(c)) {
19008 return eol;
19009 }
19010 }
19011 return TRUE;
19012}
19013
19014static char*
19015newtok(struct parser_params *p)
19016{
19017 p->tokidx = 0;
19018 if (!p->tokenbuf) {
19019 p->toksiz = 60;
19020 p->tokenbuf = ALLOC_N(char, 60);
19021 }
19022 if (p->toksiz > 4096) {
19023 p->toksiz = 60;
19024 REALLOC_N(p->tokenbuf, char, 60);
19025 }
19026 return p->tokenbuf;
19027}
19028
19029static char *
19030tokspace(struct parser_params *p, int n)
19031{
19032 p->tokidx += n;
19033
19034 if (p->tokidx >= p->toksiz) {
19035 do {p->toksiz *= 2;} while (p->toksiz < p->tokidx);
19036 REALLOC_N(p->tokenbuf, char, p->toksiz);
19037 }
19038 return &p->tokenbuf[p->tokidx-n];
19039}
19040
19041static void
19042tokadd(struct parser_params *p, int c)
19043{
19044 p->tokenbuf[p->tokidx++] = (char)c;
19045 if (p->tokidx >= p->toksiz) {
19046 p->toksiz *= 2;
19047 REALLOC_N(p->tokenbuf, char, p->toksiz);
19048 }
19049}
19050
19051static int
19052tok_hex(struct parser_params *p, size_t *numlen)
19053{
19054 int c;
19055
19056 c = (int)ruby_scan_hex(p->lex.pcur, 2, numlen);
19057 if (!*numlen) {
19058 flush_string_content(p, p->enc, rb_strlen_lit("\\x"));
19059 yyerror0("invalid hex escape");
19060 dispatch_scan_event(p, tSTRING_CONTENT);
19061 return 0;
19062 }
19063 p->lex.pcur += *numlen;
19064 return c;
19065}
19066
19067#define tokcopy(p, n) memcpy(tokspace(p, n), (p)->lex.pcur - (n), (n))
19068
19069static int
19070escaped_control_code(int c)
19071{
19072 int c2 = 0;
19073 switch (c) {
19074 case ' ':
19075 c2 = 's';
19076 break;
19077 case '\n':
19078 c2 = 'n';
19079 break;
19080 case '\t':
19081 c2 = 't';
19082 break;
19083 case '\v':
19084 c2 = 'v';
19085 break;
19086 case '\r':
19087 c2 = 'r';
19088 break;
19089 case '\f':
19090 c2 = 'f';
19091 break;
19092 }
19093 return c2;
19094}
19095
19096#define WARN_SPACE_CHAR(c, prefix) \
19097 rb_warn1("invalid character syntax; use "prefix"\\%c", WARN_I(c))
19098
19099static int
19100tokadd_codepoint(struct parser_params *p, rb_encoding **encp,
19101 int regexp_literal, const char *begin)
19102{
19103 const int wide = !begin;
19104 size_t numlen;
19105 int codepoint = (int)ruby_scan_hex(p->lex.pcur, wide ? p->lex.pend - p->lex.pcur : 4, &numlen);
19106
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;
19117 }
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);
19122 return wide;
19123 }
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);
19128 return wide;
19129 }
19130 }
19131 if (regexp_literal) {
19132 tokcopy(p, (int)numlen);
19133 }
19134 else if (codepoint >= 0x80) {
19135 rb_encoding *utf8 = rb_utf8_encoding();
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);
19140 return wide;
19141 }
19142 *encp = utf8;
19143 tokaddmbc(p, codepoint, *encp);
19144 }
19145 else {
19146 tokadd(p, codepoint);
19147 }
19148 return TRUE;
19149}
19150
19151static int tokadd_mbchar(struct parser_params *p, int c);
19152
19153static int
19154tokskip_mbchar(struct parser_params *p)
19155{
19156 int len = parser_precise_mbclen(p, p->lex.pcur-1);
19157 if (len > 0) {
19158 p->lex.pcur += len - 1;
19159 }
19160 return len;
19161}
19162
19163/* return value is for ?\u3042 */
19164static void
19165tokadd_utf8(struct parser_params *p, rb_encoding **encp,
19166 int term, int symbol_literal, int regexp_literal)
19167{
19168 /*
19169 * If `term` is not -1, then we allow multiple codepoints in \u{}
19170 * upto `term` byte, otherwise we're parsing a character literal.
19171 * And then add the codepoints to the current token.
19172 */
19173 static const char multiple_codepoints[] = "Multiple codepoints at single character literal";
19174
19175 const int open_brace = '{', close_brace = '}';
19176
19177 if (regexp_literal) { tokadd(p, '\\'); tokadd(p, 'u'); }
19178
19179 if (peek(p, open_brace)) { /* handle \u{...} form */
19180 if (regexp_literal && p->lex.strterm->u.literal.func == str_regexp) {
19181 /*
19182 * Skip parsing validation code and copy bytes as-is until term or
19183 * closing brace, in order to correctly handle extended regexps where
19184 * invalid unicode escapes are allowed in comments. The regexp parser
19185 * does its own validation and will catch any issues.
19186 */
19187 tokadd(p, open_brace);
19188 while (!lex_eol_ptr_p(p, ++p->lex.pcur)) {
19189 int c = peekc(p);
19190 if (c == close_brace) {
19191 tokadd(p, c);
19192 ++p->lex.pcur;
19193 break;
19194 }
19195 else if (c == term) {
19196 break;
19197 }
19198 if (c == '\\' && !lex_eol_n_p(p, 1)) {
19199 tokadd(p, c);
19200 c = *++p->lex.pcur;
19201 }
19202 tokadd_mbchar(p, c);
19203 }
19204 }
19205 else {
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)) {
19216 break;
19217 }
19218 while (ISSPACE(c = peekc(p))) {
19219 if (lex_eol_ptr_p(p, ++p->lex.pcur)) goto unterminated;
19220 last = c;
19221 }
19222 if (term == -1 && !second)
19223 second = multiple_codepoints;
19224 }
19225
19226 if (c != close_brace) {
19227 unterminated:
19228 flush_string_content(p, rb_utf8_encoding(), 0);
19229 yyerror0("unterminated Unicode escape");
19230 dispatch_scan_event(p, tSTRING_CONTENT);
19231 return;
19232 }
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);
19237 token_flush(p);
19238 p->lex.pcur = pcur;
19239 yyerror0(multiple_codepoints);
19240 token_flush(p);
19241 }
19242
19243 if (regexp_literal) tokadd(p, close_brace);
19244 nextc(p);
19245 }
19246 }
19247 else { /* handle \uxxxx form */
19248 if (!tokadd_codepoint(p, encp, regexp_literal, p->lex.pcur - rb_strlen_lit("\\u"))) {
19249 token_flush(p);
19250 return;
19251 }
19252 }
19253}
19254
19255#define ESCAPE_CONTROL 1
19256#define ESCAPE_META 2
19257
19258static int
19259read_escape(struct parser_params *p, int flags, const char *begin)
19260{
19261 int c;
19262 size_t numlen;
19263
19264 switch (c = nextc(p)) {
19265 case '\\': /* Backslash */
19266 return c;
19267
19268 case 'n': /* newline */
19269 return '\n';
19270
19271 case 't': /* horizontal tab */
19272 return '\t';
19273
19274 case 'r': /* carriage-return */
19275 return '\r';
19276
19277 case 'f': /* form-feed */
19278 return '\f';
19279
19280 case 'v': /* vertical tab */
19281 return '\13';
19282
19283 case 'a': /* alarm(bell) */
19284 return '\007';
19285
19286 case 'e': /* escape */
19287 return 033;
19288
19289 case '0': case '1': case '2': case '3': /* octal constant */
19290 case '4': case '5': case '6': case '7':
19291 pushback(p, c);
19292 c = (int)ruby_scan_oct(p->lex.pcur, 3, &numlen);
19293 p->lex.pcur += numlen;
19294 return c;
19295
19296 case 'x': /* hex constant */
19297 c = tok_hex(p, &numlen);
19298 if (numlen == 0) return 0;
19299 return c;
19300
19301 case 'b': /* backspace */
19302 return '\010';
19303
19304 case 's': /* space */
19305 return ' ';
19306
19307 case 'M':
19308 if (flags & ESCAPE_META) goto eof;
19309 if ((c = nextc(p)) != '-') {
19310 goto eof;
19311 }
19312 if ((c = nextc(p)) == '\\') {
19313 switch (peekc(p)) {
19314 case 'u': case 'U':
19315 nextc(p);
19316 goto eof;
19317 }
19318 return read_escape(p, flags|ESCAPE_META, begin) | 0x80;
19319 }
19320 else if (c == -1) goto eof;
19321 else if (!ISASCII(c)) {
19322 tokskip_mbchar(p);
19323 goto eof;
19324 }
19325 else {
19326 int c2 = escaped_control_code(c);
19327 if (c2) {
19328 if (ISCNTRL(c) || !(flags & ESCAPE_CONTROL)) {
19329 WARN_SPACE_CHAR(c2, "\\M-");
19330 }
19331 else {
19332 WARN_SPACE_CHAR(c2, "\\C-\\M-");
19333 }
19334 }
19335 else if (ISCNTRL(c)) goto eof;
19336 return ((c & 0xff) | 0x80);
19337 }
19338
19339 case 'C':
19340 if ((c = nextc(p)) != '-') {
19341 goto eof;
19342 }
19343 case 'c':
19344 if (flags & ESCAPE_CONTROL) goto eof;
19345 if ((c = nextc(p))== '\\') {
19346 switch (peekc(p)) {
19347 case 'u': case 'U':
19348 nextc(p);
19349 goto eof;
19350 }
19351 c = read_escape(p, flags|ESCAPE_CONTROL, begin);
19352 }
19353 else if (c == '?')
19354 return 0177;
19355 else if (c == -1) goto eof;
19356 else if (!ISASCII(c)) {
19357 tokskip_mbchar(p);
19358 goto eof;
19359 }
19360 else {
19361 int c2 = escaped_control_code(c);
19362 if (c2) {
19363 if (ISCNTRL(c)) {
19364 if (flags & ESCAPE_META) {
19365 WARN_SPACE_CHAR(c2, "\\M-");
19366 }
19367 else {
19368 WARN_SPACE_CHAR(c2, "");
19369 }
19370 }
19371 else {
19372 if (flags & ESCAPE_META) {
19373 WARN_SPACE_CHAR(c2, "\\M-\\C-");
19374 }
19375 else {
19376 WARN_SPACE_CHAR(c2, "\\C-");
19377 }
19378 }
19379 }
19380 else if (ISCNTRL(c)) goto eof;
19381 }
19382 return c & 0x9f;
19383
19384 eof:
19385 case -1:
19386 flush_string_content(p, p->enc, p->lex.pcur - begin);
19387 yyerror0("Invalid escape character syntax");
19388 dispatch_scan_event(p, tSTRING_CONTENT);
19389 return '\0';
19390
19391 default:
19392 if (!ISASCII(c)) {
19393 tokskip_mbchar(p);
19394 goto eof;
19395 }
19396 return c;
19397 }
19398}
19399
19400static void
19401tokaddmbc(struct parser_params *p, int c, rb_encoding *enc)
19402{
19403 int len = rb_enc_codelen(c, enc);
19404 rb_enc_mbcput(c, tokspace(p, len), enc);
19405}
19406
19407static int
19408tokadd_escape(struct parser_params *p)
19409{
19410 int c;
19411 size_t numlen;
19412 const char *begin = p->lex.pcur;
19413
19414 switch (c = nextc(p)) {
19415 case '\n':
19416 return 0; /* just ignore */
19417
19418 case '0': case '1': case '2': case '3': /* octal constant */
19419 case '4': case '5': case '6': case '7':
19420 {
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);
19425 }
19426 return 0;
19427
19428 case 'x': /* hex constant */
19429 {
19430 tok_hex(p, &numlen);
19431 if (numlen == 0) return -1;
19432 tokcopy(p, (int)numlen + 2);
19433 }
19434 return 0;
19435
19436 eof:
19437 case -1:
19438 flush_string_content(p, p->enc, p->lex.pcur - begin);
19439 yyerror0("Invalid escape character syntax");
19440 token_flush(p);
19441 return -1;
19442
19443 default:
19444 tokadd(p, '\\');
19445 tokadd(p, c);
19446 }
19447 return 0;
19448}
19449
19450static int
19451char_to_option(int c)
19452{
19453 int val;
19454
19455 switch (c) {
19456 case 'i':
19457 val = RE_ONIG_OPTION_IGNORECASE;
19458 break;
19459 case 'x':
19460 val = RE_ONIG_OPTION_EXTEND;
19461 break;
19462 case 'm':
19463 val = RE_ONIG_OPTION_MULTILINE;
19464 break;
19465 default:
19466 val = 0;
19467 break;
19468 }
19469 return val;
19470}
19471
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
19477#define ENC_UTF8 4
19478
19479static int
19480char_to_option_kcode(int c, int *option, int *kcode)
19481{
19482 *option = 0;
19483
19484 switch (c) {
19485 case 'n':
19486 *kcode = ENC_ASCII8BIT;
19487 return (*option = ARG_ENCODING_NONE);
19488 case 'e':
19489 *kcode = ENC_EUC_JP;
19490 break;
19491 case 's':
19492 *kcode = ENC_Windows_31J;
19493 break;
19494 case 'u':
19495 *kcode = ENC_UTF8;
19496 break;
19497 default:
19498 *kcode = -1;
19499 return (*option = char_to_option(c));
19500 }
19501 *option = ARG_ENCODING_FIXED;
19502 return 1;
19503}
19504
19505static int
19506regx_options(struct parser_params *p)
19507{
19508 int kcode = 0;
19509 int kopt = 0;
19510 int options = 0;
19511 int c, opt, kc;
19512
19513 newtok(p);
19514 while (c = nextc(p), ISALPHA(c)) {
19515 if (c == 'o') {
19516 options |= RE_OPTION_ONCE;
19517 }
19518 else if (char_to_option_kcode(c, &opt, &kc)) {
19519 if (kc >= 0) {
19520 if (kc != ENC_ASCII8BIT) kcode = c;
19521 kopt = opt;
19522 }
19523 else {
19524 options |= opt;
19525 }
19526 }
19527 else {
19528 tokadd(p, c);
19529 }
19530 }
19531 options |= kopt;
19532 pushback(p, c);
19533 if (toklen(p)) {
19534 YYLTYPE loc = RUBY_INIT_YYLLOC();
19535 tokfix(p);
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);
19539 }
19540 return options | RE_OPTION_ENCODING(kcode);
19541}
19542
19543static int
19544tokadd_mbchar(struct parser_params *p, int c)
19545{
19546 int len = parser_precise_mbclen(p, p->lex.pcur-1);
19547 if (len < 0) return -1;
19548 tokadd(p, c);
19549 p->lex.pcur += --len;
19550 if (len > 0) tokcopy(p, len);
19551 return c;
19552}
19553
19554static inline int
19555simple_re_meta(int c)
19556{
19557 switch (c) {
19558 case '$': case '*': case '+': case '.':
19559 case '?': case '^': case '|':
19560 case ')': case ']': case '}': case '>':
19561 return TRUE;
19562 default:
19563 return FALSE;
19564 }
19565}
19566
19567static int
19568parser_update_heredoc_indent(struct parser_params *p, int c)
19569{
19570 if (p->heredoc_line_indent == -1) {
19571 if (c == '\n') p->heredoc_line_indent = 0;
19572 }
19573 else {
19574 if (c == ' ') {
19575 p->heredoc_line_indent++;
19576 return TRUE;
19577 }
19578 else if (c == '\t') {
19579 int w = (p->heredoc_line_indent / TAB_WIDTH) + 1;
19580 p->heredoc_line_indent = w * TAB_WIDTH;
19581 return TRUE;
19582 }
19583 else if (c != '\n') {
19584 if (p->heredoc_indent > p->heredoc_line_indent) {
19585 p->heredoc_indent = p->heredoc_line_indent;
19586 }
19587 p->heredoc_line_indent = -1;
19588 }
19589 else {
19590 /* Whitespace only line has no indentation */
19591 p->heredoc_line_indent = 0;
19592 }
19593 }
19594 return FALSE;
19595}
19596
19597static void
19598parser_mixed_error(struct parser_params *p, rb_encoding *enc1, rb_encoding *enc2)
19599{
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);
19604}
19605
19606static void
19607parser_mixed_escape(struct parser_params *p, const char *beg, rb_encoding *enc1, rb_encoding *enc2)
19608{
19609 const char *pos = p->lex.pcur;
19610 p->lex.pcur = beg;
19611 parser_mixed_error(p, enc1, enc2);
19612 p->lex.pcur = pos;
19613}
19614
19615static inline char
19616nibble_char_upper(unsigned int c)
19617{
19618 c &= 0xf;
19619 return c + (c < 10 ? '0' : 'A' - 10);
19620}
19621
19622static int
19623tokadd_string(struct parser_params *p,
19624 int func, int term, int paren, long *nest,
19625 rb_encoding **encp, rb_encoding **enc)
19626{
19627 int c;
19628 bool erred = false;
19629#ifdef RIPPER
19630 const int heredoc_end = (p->heredoc_end ? p->heredoc_end + 1 : 0);
19631 int top_of_line = FALSE;
19632#endif
19633
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))
19638
19639 while ((c = nextc(p)) != -1) {
19640 if (p->heredoc_indent > 0) {
19641 parser_update_heredoc_indent(p, c);
19642 }
19643#ifdef RIPPER
19644 if (top_of_line && heredoc_end == p->ruby_sourceline) {
19645 pushback(p, c);
19646 break;
19647 }
19648#endif
19649
19650 if (paren && c == paren) {
19651 ++*nest;
19652 }
19653 else if (c == term) {
19654 if (!nest || !*nest) {
19655 pushback(p, c);
19656 break;
19657 }
19658 --*nest;
19659 }
19660 else if ((func & STR_FUNC_EXPAND) && c == '#' && !lex_eol_p(p)) {
19661 unsigned char c2 = *p->lex.pcur;
19662 if (c2 == '$' || c2 == '@' || c2 == '{') {
19663 pushback(p, c);
19664 break;
19665 }
19666 }
19667 else if (c == '\\') {
19668 c = nextc(p);
19669 switch (c) {
19670 case '\n':
19671 if (func & STR_FUNC_QWORDS) break;
19672 if (func & STR_FUNC_EXPAND) {
19673 if (!(func & STR_FUNC_INDENT) || (p->heredoc_indent < 0))
19674 continue;
19675 if (c == term) {
19676 c = '\\';
19677 goto terminate;
19678 }
19679 }
19680 tokadd(p, '\\');
19681 break;
19682
19683 case '\\':
19684 if (func & STR_FUNC_ESCAPE) tokadd(p, c);
19685 break;
19686
19687 case 'u':
19688 if ((func & STR_FUNC_EXPAND) == 0) {
19689 tokadd(p, '\\');
19690 break;
19691 }
19692 tokadd_utf8(p, enc, term,
19693 func & STR_FUNC_SYMBOL,
19694 func & STR_FUNC_REGEXP);
19695 continue;
19696
19697 default:
19698 if (c == -1) return -1;
19699 if (!ISASCII(c)) {
19700 if ((func & STR_FUNC_EXPAND) == 0) tokadd(p, '\\');
19701 goto non_ascii;
19702 }
19703 if (func & STR_FUNC_REGEXP) {
19704 switch (c) {
19705 case 'c':
19706 case 'C':
19707 case 'M': {
19708 pushback(p, c);
19709 c = read_escape(p, 0, p->lex.pcur - 1);
19710
19711 char *t = tokspace(p, rb_strlen_lit("\\x00"));
19712 *t++ = '\\';
19713 *t++ = 'x';
19714 *t++ = nibble_char_upper(c >> 4);
19715 *t++ = nibble_char_upper(c);
19716 continue;
19717 }
19718 }
19719
19720 if (c == term && !simple_re_meta(c)) {
19721 tokadd(p, c);
19722 continue;
19723 }
19724 pushback(p, c);
19725 if ((c = tokadd_escape(p)) < 0)
19726 return -1;
19727 if (*enc && *enc != *encp) {
19728 mixed_escape(p->lex.ptok+2, *enc, *encp);
19729 }
19730 continue;
19731 }
19732 else if (func & STR_FUNC_EXPAND) {
19733 pushback(p, c);
19734 if (func & STR_FUNC_ESCAPE) tokadd(p, '\\');
19735 c = read_escape(p, 0, p->lex.pcur - 1);
19736 }
19737 else if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
19738 /* ignore backslashed spaces in %w */
19739 }
19740 else if (c != term && !(paren && c == paren)) {
19741 tokadd(p, '\\');
19742 pushback(p, c);
19743 continue;
19744 }
19745 }
19746 }
19747 else if (!parser_isascii(p)) {
19748 non_ascii:
19749 if (!*enc) {
19750 *enc = *encp;
19751 }
19752 else if (*enc != *encp) {
19753 mixed_error(*enc, *encp);
19754 continue;
19755 }
19756 if (tokadd_mbchar(p, c) == -1) return -1;
19757 continue;
19758 }
19759 else if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
19760 pushback(p, c);
19761 break;
19762 }
19763 if (c & 0x80) {
19764 if (!*enc) {
19765 *enc = *encp;
19766 }
19767 else if (*enc != *encp) {
19768 mixed_error(*enc, *encp);
19769 continue;
19770 }
19771 }
19772 tokadd(p, c);
19773#ifdef RIPPER
19774 top_of_line = (c == '\n');
19775#endif
19776 }
19777 terminate:
19778 if (*enc) *encp = *enc;
19779 return c;
19780}
19781
19782#define NEW_STRTERM(func, term, paren) new_strterm(p, func, term, paren)
19783
19784static void
19785flush_string_content(struct parser_params *p, rb_encoding *enc, size_t back)
19786{
19787 p->lex.pcur -= back;
19788 if (has_delayed_token(p)) {
19789 ptrdiff_t len = p->lex.pcur - p->lex.ptok;
19790 if (len > 0) {
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);
19794 }
19795 dispatch_delayed_token(p, tSTRING_CONTENT);
19796 p->lex.ptok = p->lex.pcur;
19797 }
19798 dispatch_scan_event(p, tSTRING_CONTENT);
19799 p->lex.pcur += back;
19800}
19801
19802/* this can be shared with ripper, since it's independent from struct
19803 * parser_params. */
19804#ifndef RIPPER
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) | \
19812 BIT('0', idx))
19813const uint_least32_t ruby_global_name_punct_bits[] = {
19814 SPECIAL_PUNCT(0),
19815 SPECIAL_PUNCT(1),
19816 SPECIAL_PUNCT(2),
19817};
19818#undef BIT
19819#undef SPECIAL_PUNCT
19820#endif
19821
19822static enum yytokentype
19823parser_peek_variable_name(struct parser_params *p)
19824{
19825 int c;
19826 const char *ptr = p->lex.pcur;
19827
19828 if (lex_eol_ptr_n_p(p, ptr, 1)) return 0;
19829 c = *ptr++;
19830 switch (c) {
19831 case '$':
19832 if ((c = *ptr) == '-') {
19833 if (lex_eol_ptr_p(p, ++ptr)) return 0;
19834 c = *ptr;
19835 }
19836 else if (is_global_name_punct(c) || ISDIGIT(c)) {
19837 return tSTRING_DVAR;
19838 }
19839 break;
19840 case '@':
19841 if ((c = *ptr) == '@') {
19842 if (lex_eol_ptr_p(p, ++ptr)) return 0;
19843 c = *ptr;
19844 }
19845 break;
19846 case '{':
19847 p->lex.pcur = ptr;
19848 p->command_start = TRUE;
19849 yylval.state = p->lex.state;
19850 return tSTRING_DBEG;
19851 default:
19852 return 0;
19853 }
19854 if (!ISASCII(c) || c == '_' || ISALPHA(c))
19855 return tSTRING_DVAR;
19856 return 0;
19857}
19858
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) || \
19865 IS_ARG())
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)
19868
19869static inline enum yytokentype
19870parser_string_term(struct parser_params *p, int func)
19871{
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;
19879 }
19880 if ((func & STR_FUNC_LABEL) && IS_LABEL_SUFFIX(0)) {
19881 nextc(p);
19882 SET_LEX_STATE(EXPR_ARG|EXPR_LABELED);
19883 return tLABEL_END;
19884 }
19885 SET_LEX_STATE(EXPR_END);
19886 return tSTRING_END;
19887}
19888
19889static enum yytokentype
19890parse_string(struct parser_params *p, rb_strterm_literal_t *quote)
19891{
19892 int func = quote->func;
19893 int term = quote->term;
19894 int paren = quote->paren;
19895 int c, space = 0;
19896 rb_encoding *enc = p->enc;
19897 rb_encoding *base_enc = 0;
19898 rb_parser_string_t *lit;
19899
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;
19906 }
19907 c = nextc(p);
19908 if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
19909 while (c != '\n' && ISSPACE(c = nextc(p)));
19910 space = 1;
19911 }
19912 if (func & STR_FUNC_LIST) {
19913 quote->func &= ~STR_FUNC_LIST;
19914 space = 1;
19915 }
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);
19921 return ' ';
19922 }
19923 return parser_string_term(p, func);
19924 }
19925 if (space) {
19926 if (!ISSPACE(c)) pushback(p, c);
19927 add_delayed_token(p, p->lex.ptok, p->lex.pcur);
19928 return ' ';
19929 }
19930 newtok(p);
19931 if ((func & STR_FUNC_EXPAND) && c == '#') {
19932 enum yytokentype t = parser_peek_variable_name(p);
19933 if (t) return t;
19934 tokadd(p, '#');
19935 c = nextc(p);
19936 }
19937 pushback(p, c);
19938 if (tokadd_string(p, func, term, paren, &quote->nest,
19939 &enc, &base_enc) == -1) {
19940 if (p->eofp) {
19941#ifndef RIPPER
19942# define unterminated_literal(mesg) yyerror0(mesg)
19943#else
19944# define unterminated_literal(mesg) compile_error(p, mesg)
19945#endif
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;
19953 }
19954 if (func & STR_FUNC_REGEXP) {
19955 unterminated_literal("unterminated regexp meets end of file");
19956 }
19957 else {
19958 unterminated_literal("unterminated string meets end of file");
19959 }
19960 quote->func |= STR_FUNC_TERM;
19961 }
19962 }
19963
19964 tokfix(p);
19965 lit = STR_NEW3(tok(p), toklen(p), enc, func);
19966 set_yylval_str(lit);
19967 flush_string_content(p, enc, 0);
19968
19969 return tSTRING_CONTENT;
19970}
19971
19972static enum yytokentype
19973heredoc_identifier(struct parser_params *p)
19974{
19975 /*
19976 * term_len is length of `<<"END"` except `END`,
19977 * in this case term_len is 4 (<, <, " and ").
19978 */
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;
19982 int indent = 0;
19983
19984 if (c == '-') {
19985 c = nextc(p);
19986 func = STR_FUNC_INDENT;
19987 offset++;
19988 }
19989 else if (c == '~') {
19990 c = nextc(p);
19991 func = STR_FUNC_INDENT;
19992 offset++;
19993 indent = INT_MAX;
19994 }
19995 switch (c) {
19996 case '\'':
19997 func |= str_squote; goto quoted;
19998 case '"':
19999 func |= str_dquote; goto quoted;
20000 case '`':
20001 token = tXSTRING_BEG;
20002 func |= str_xquote; goto quoted;
20003
20004 quoted:
20005 quote++;
20006 offset++;
20007 term = c;
20008 len = 0;
20009 while ((c = nextc(p)) != term) {
20010 if (c == -1 || c == '\r' || c == '\n') {
20011 yyerror0("unterminated here document identifier");
20012 return -1;
20013 }
20014 }
20015 break;
20016
20017 default:
20018 if (!parser_is_identchar(p)) {
20019 pushback(p, c);
20020 if (func & STR_FUNC_INDENT) {
20021 pushback(p, indent > 0 ? '~' : '-');
20022 }
20023 return 0;
20024 }
20025 func |= str_dquote;
20026 do {
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));
20031 pushback(p, c);
20032 break;
20033 }
20034
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);
20039 lex_goto_eol(p);
20040
20041 p->lex.strterm = new_heredoc(p);
20042 rb_strterm_heredoc_t *here = &p->lex.strterm->u.heredoc;
20043 here->offset = offset;
20044 here->sourceline = p->ruby_sourceline;
20045 here->length = (unsigned)len;
20046 here->quote = quote;
20047 here->func = func;
20048 here->lastline = p->lex.lastline;
20049
20050 token_flush(p);
20051 p->heredoc_indent = indent;
20052 p->heredoc_line_indent = 0;
20053 return token;
20054}
20055
20056static void
20057heredoc_restore(struct parser_params *p, rb_strterm_heredoc_t *here)
20058{
20059 rb_parser_string_t *line;
20060 rb_strterm_t *term = p->lex.strterm;
20061
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;
20072 p->eofp = 0;
20073 xfree(term);
20074}
20075
20076static int
20077dedent_string_column(const char *str, long len, int width)
20078{
20079 int i, col = 0;
20080
20081 for (i = 0; i < len && col < width; i++) {
20082 if (str[i] == ' ') {
20083 col++;
20084 }
20085 else if (str[i] == '\t') {
20086 int n = TAB_WIDTH * (col / TAB_WIDTH + 1);
20087 if (n > width) break;
20088 col = n;
20089 }
20090 else {
20091 break;
20092 }
20093 }
20094
20095 return i;
20096}
20097
20098static int
20099dedent_string(struct parser_params *p, rb_parser_string_t *string, int width)
20100{
20101 char *str;
20102 long len;
20103 int i;
20104
20105 len = PARSER_STRING_LEN(string);
20106 str = PARSER_STRING_PTR(string);
20107
20108 i = dedent_string_column(str, len, width);
20109 if (!i) return 0;
20110
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));
20115 MEMMOVE(str, str + i, char, len - i);
20116 rb_parser_str_set_len(p, string, len - i);
20117 return i;
20118}
20119
20120static NODE *
20121heredoc_dedent(struct parser_params *p, NODE *root)
20122{
20123 NODE *node, *str_node, *prev_node;
20124 int indent = p->heredoc_indent;
20125 rb_parser_string_t *prev_lit = 0;
20126
20127 if (indent <= 0) return root;
20128 if (!root) return root;
20129
20130 prev_node = node = str_node = root;
20131 if (nd_type_p(root, NODE_LIST)) str_node = RNODE_LIST(root)->nd_head;
20132
20133 while (str_node) {
20134 rb_parser_string_t *lit = RNODE_STR(str_node)->string;
20135 if (nd_fl_newline(str_node)) {
20136 dedent_string(p, lit, indent);
20137 }
20138 if (!prev_lit) {
20139 prev_lit = lit;
20140 }
20141 else if (!literal_concat0(p, prev_lit, lit)) {
20142 return 0;
20143 }
20144 else {
20145 NODE *end = RNODE_LIST(node)->as.nd_end;
20146 node = RNODE_LIST(prev_node)->nd_next = RNODE_LIST(node)->nd_next;
20147 if (!node) {
20148 if (nd_type_p(prev_node, NODE_DSTR))
20149 nd_set_type(prev_node, NODE_STR);
20150 break;
20151 }
20152 RNODE_LIST(node)->as.nd_end = end;
20153 goto next_str;
20154 }
20155
20156 str_node = 0;
20157 while ((nd_type_p(node, NODE_LIST) || nd_type_p(node, NODE_DSTR)) && (node = RNODE_LIST(prev_node = node)->nd_next) != 0) {
20158 next_str:
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;
20163 prev_lit = 0;
20164 str_node = 0;
20165 }
20166 }
20167 }
20168 return root;
20169}
20170
20171static int
20172whole_match_p(struct parser_params *p, const char *eos, long len, int indent)
20173{
20174 const char *beg = p->lex.pbeg;
20175 const char *ptr = p->lex.pend;
20176
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;
20181 }
20182 if (strncmp(eos, ptr -= len, len)) return FALSE;
20183 if (indent) {
20184 while (beg < ptr && ISSPACE(*beg)) beg++;
20185 }
20186 return beg == ptr;
20187}
20188
20189static int
20190word_match_p(struct parser_params *p, const char *word, long len)
20191{
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];
20195 if (ISSPACE(c)) return 1;
20196 switch (c) {
20197 case '\0': case '\004': case '\032': return 1;
20198 }
20199 return 0;
20200}
20201
20202#define NUM_SUFFIX_R (1<<0)
20203#define NUM_SUFFIX_I (1<<1)
20204#define NUM_SUFFIX_ALL 3
20205
20206static int
20207number_literal_suffix(struct parser_params *p, int mask)
20208{
20209 int c, result = 0;
20210 const char *lastp = p->lex.pcur;
20211
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;
20216 /* r after i, rational of complex is disallowed */
20217 mask &= ~NUM_SUFFIX_R;
20218 continue;
20219 }
20220 if ((mask & NUM_SUFFIX_R) && c == 'r') {
20221 result |= (mask & NUM_SUFFIX_R);
20222 mask &= ~NUM_SUFFIX_R;
20223 continue;
20224 }
20225 if (!ISASCII(c) || ISALPHA(c) || c == '_') {
20226 p->lex.pcur = lastp;
20227 literal_flush(p, p->lex.pcur);
20228 return 0;
20229 }
20230 pushback(p, c);
20231 break;
20232 }
20233 return result;
20234}
20235
20236static enum yytokentype
20237set_number_literal(struct parser_params *p, enum yytokentype type, int suffix, int base, int seen_point)
20238{
20239 enum rb_numeric_type numeric_type = integer_literal;
20240
20241 if (type == tFLOAT) {
20242 numeric_type = float_literal;
20243 }
20244
20245 if (suffix & NUM_SUFFIX_R) {
20246 type = tRATIONAL;
20247 numeric_type = rational_literal;
20248 }
20249 if (suffix & NUM_SUFFIX_I) {
20250 type = tIMAGINARY;
20251 }
20252
20253 switch (type) {
20254 case tINTEGER:
20255 set_yylval_node(NEW_INTEGER(strdup(tok(p)), base, &_cur_loc));
20256 break;
20257 case tFLOAT:
20258 set_yylval_node(NEW_FLOAT(strdup(tok(p)), &_cur_loc));
20259 break;
20260 case tRATIONAL:
20261 set_yylval_node(NEW_RATIONAL(strdup(tok(p)), base, seen_point, &_cur_loc));
20262 break;
20263 case tIMAGINARY:
20264 set_yylval_node(NEW_IMAGINARY(strdup(tok(p)), base, seen_point, numeric_type, &_cur_loc));
20265 (void)numeric_type; /* for ripper */
20266 break;
20267 default:
20268 rb_bug("unexpected token: %d", type);
20269 }
20270 SET_LEX_STATE(EXPR_END);
20271 return type;
20272}
20273
20274#define dispatch_heredoc_end(p) parser_dispatch_heredoc_end(p, __LINE__)
20275static void
20276parser_dispatch_heredoc_end(struct parser_params *p, int line)
20277{
20278 if (has_delayed_token(p))
20279 dispatch_delayed_token(p, tSTRING_CONTENT);
20280
20281#ifdef RIPPER
20282 VALUE str = STR_NEW(p->lex.ptok, p->lex.pend - p->lex.ptok);
20283 ripper_dispatch1(p, ripper_token2eventid(tHEREDOC_END), str);
20284#else
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);
20289 }
20290#endif
20291
20292 RUBY_SET_YYLLOC_FROM_STRTERM_HEREDOC(*p->yylloc);
20293 lex_goto_eol(p);
20294 token_flush(p);
20295}
20296
20297static enum yytokentype
20298here_document(struct parser_params *p, rb_strterm_heredoc_t *here)
20299{
20300 int c, func, indent = 0;
20301 const char *eos, *ptr, *ptr_end;
20302 long len;
20303 rb_parser_string_t *str = 0;
20304 rb_encoding *enc = p->enc;
20305 rb_encoding *base_enc = 0;
20306 int bol;
20307#ifdef RIPPER
20308 VALUE s_value;
20309#endif
20310
20311 eos = PARSER_STRING_PTR(here->lastline) + here->offset;
20312 len = here->length;
20313 indent = (func = here->func) & STR_FUNC_INDENT;
20314
20315 if ((c = nextc(p)) == -1) {
20316 error:
20317#ifdef RIPPER
20318 if (!has_delayed_token(p)) {
20319 dispatch_scan_event(p, tSTRING_CONTENT);
20320 }
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)) {
20324 int cr = ENC_CODERANGE_UNKNOWN;
20325 rb_str_coderange_scan_restartable(p->lex.ptok, p->lex.pcur, enc, &cr);
20326 if (cr != ENC_CODERANGE_7BIT &&
20327 rb_is_usascii_enc(p->enc) &&
20328 enc != rb_utf8_encoding()) {
20329 enc = rb_ascii8bit_encoding();
20330 }
20331 }
20332 rb_parser_enc_str_buf_cat(p, p->delayed.token, p->lex.ptok, len, enc);
20333 }
20334 dispatch_delayed_token(p, tSTRING_CONTENT);
20335 }
20336 else {
20337 dispatch_delayed_token(p, tSTRING_CONTENT);
20338 dispatch_scan_event(p, tSTRING_CONTENT);
20339 }
20340 lex_goto_eol(p);
20341#endif
20342 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20343 compile_error(p, "can't find string \"%.*s\" anywhere before EOF",
20344 (int)len, eos);
20345 token_flush(p);
20346 SET_LEX_STATE(EXPR_END);
20347 return tSTRING_END;
20348 }
20349 bol = was_bol(p);
20350 if (!bol) {
20351 /* not beginning of line, cannot be the terminator */
20352 }
20353 else if (p->heredoc_line_indent == -1) {
20354 /* `heredoc_line_indent == -1` means
20355 * - "after an interpolation in the same line", or
20356 * - "in a continuing line"
20357 */
20358 p->heredoc_line_indent = 0;
20359 }
20360 else if (whole_match_p(p, eos, len, indent)) {
20361 dispatch_heredoc_end(p);
20362 restore:
20363 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20364 token_flush(p);
20365 SET_LEX_STATE(EXPR_END);
20366 return tSTRING_END;
20367 }
20368
20369 if (!(func & STR_FUNC_EXPAND)) {
20370 do {
20371 ptr = PARSER_STRING_PTR(p->lex.lastline);
20372 ptr_end = p->lex.pend;
20373 if (ptr_end > ptr) {
20374 switch (ptr_end[-1]) {
20375 case '\n':
20376 if (--ptr_end == ptr || ptr_end[-1] != '\r') {
20377 ptr_end++;
20378 break;
20379 }
20380 case '\r':
20381 --ptr_end;
20382 }
20383 }
20384
20385 if (p->heredoc_indent > 0) {
20386 long i = 0;
20387 while (ptr + i < ptr_end && parser_update_heredoc_indent(p, ptr[i]))
20388 i++;
20389 p->heredoc_line_indent = 0;
20390 }
20391
20392 if (str)
20393 parser_str_cat(str, ptr, ptr_end - ptr);
20394 else
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");
20397 lex_goto_eol(p);
20398 if (p->heredoc_indent > 0) {
20399 goto flush_str;
20400 }
20401 if (nextc(p) == -1) {
20402 if (str) {
20403 rb_parser_string_free(p, str);
20404 str = 0;
20405 }
20406 goto error;
20407 }
20408 } while (!whole_match_p(p, eos, len, indent));
20409 }
20410 else {
20411 /* int mb = ENC_CODERANGE_7BIT, *mbp = &mb;*/
20412 newtok(p);
20413 if (c == '#') {
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;
20418 }
20419 p->heredoc_line_indent = -1;
20420 }
20421 if (t) return t;
20422 tokadd(p, '#');
20423 c = nextc(p);
20424 }
20425 do {
20426 pushback(p, c);
20427 enc = p->enc;
20428 if ((c = tokadd_string(p, func, '\n', 0, NULL, &enc, &base_enc)) == -1) {
20429 if (p->eofp) goto error;
20430 goto restore;
20431 }
20432 if (c != '\n') {
20433 if (c == '\\') p->heredoc_line_indent = -1;
20434 flush:
20435 str = STR_NEW3(tok(p), toklen(p), enc, func);
20436 flush_str:
20437 set_yylval_str(str);
20438#ifndef RIPPER
20439 if (bol) nd_set_fl_newline(yylval.node);
20440#endif
20441 flush_string_content(p, enc, 0);
20442 return tSTRING_CONTENT;
20443 }
20444 tokadd(p, nextc(p));
20445 if (p->heredoc_indent > 0) {
20446 lex_goto_eol(p);
20447 goto flush;
20448 }
20449 /* if (mbp && mb == ENC_CODERANGE_UNKNOWN) mbp = 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);
20453 }
20454 dispatch_heredoc_end(p);
20455 heredoc_restore(p, &p->lex.strterm->u.heredoc);
20456 token_flush(p);
20457 p->lex.strterm = NEW_STRTERM(func | STR_FUNC_TERM, 0, 0);
20458#ifdef RIPPER
20459 /* Preserve s_value for set_yylval_str */
20460 s_value = p->s_value;
20461#endif
20462 set_yylval_str(str);
20463#ifdef RIPPER
20464 set_parser_s_value(s_value);
20465#endif
20466
20467#ifndef RIPPER
20468 if (bol) nd_set_fl_newline(yylval.node);
20469#endif
20470 return tSTRING_CONTENT;
20471}
20472
20473#include "lex.c"
20474
20475static int
20476arg_ambiguous(struct parser_params *p, char c)
20477{
20478#ifndef RIPPER
20479 if (c == '/') {
20480 rb_warning1("ambiguity between regexp and two divisions: wrap regexp in parentheses or add a space after '%c' operator", WARN_I(c));
20481 }
20482 else {
20483 rb_warning1("ambiguous first argument; put parentheses or a space even after '%c' operator", WARN_I(c));
20484 }
20485#else
20486 dispatch1(arg_ambiguous, rb_usascii_str_new(&c, 1));
20487#endif
20488 return TRUE;
20489}
20490
20491/* returns true value if formal argument error;
20492 * Qtrue, or error message if ripper */
20493static VALUE
20494formal_argument_error(struct parser_params *p, ID id)
20495{
20496 switch (id_type(id)) {
20497 case ID_LOCAL:
20498 break;
20499#ifndef RIPPER
20500# define ERR(mesg) (yyerror0(mesg), Qtrue)
20501#else
20502# define ERR(mesg) WARN_S(mesg)
20503#endif
20504 case ID_CONST:
20505 return ERR("formal argument cannot be a constant");
20506 case ID_INSTANCE:
20507 return ERR("formal argument cannot be an instance variable");
20508 case ID_GLOBAL:
20509 return ERR("formal argument cannot be a global variable");
20510 case ID_CLASS:
20511 return ERR("formal argument cannot be a class variable");
20512 default:
20513 return ERR("formal argument must be local variable");
20514#undef ERR
20515 }
20516 shadowing_lvar(p, id);
20517
20518 return Qfalse;
20519}
20520
20521static int
20522lvar_defined(struct parser_params *p, ID id)
20523{
20524 return (dyna_in_block(p) && dvar_defined(p, id)) || local_id(p, id);
20525}
20526
20527/* emacsen -*- hack */
20528static long
20529parser_encode_length(struct parser_params *p, const char *name, long len)
20530{
20531 long nlen;
20532
20533 if (len > 5 && name[nlen = len - 5] == '-') {
20534 if (rb_memcicmp(name + nlen + 1, "unix", 4) == 0)
20535 return nlen;
20536 }
20537 if (len > 4 && name[nlen = len - 4] == '-') {
20538 if (rb_memcicmp(name + nlen + 1, "dos", 3) == 0)
20539 return nlen;
20540 if (rb_memcicmp(name + nlen + 1, "mac", 3) == 0 &&
20541 !(len == 8 && rb_memcicmp(name, "utf8-mac", len) == 0))
20542 /* exclude UTF8-MAC because the encoding named "UTF8" doesn't exist in Ruby */
20543 return nlen;
20544 }
20545 return len;
20546}
20547
20548static void
20549parser_set_encode(struct parser_params *p, const char *name)
20550{
20551 rb_encoding *enc;
20552 VALUE excargs[3];
20553 int idx = 0;
20554
20555 const char *wrong = 0;
20556 switch (*name) {
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;
20561 }
20562 if (wrong && STRCASECMP(name, wrong) == 0) goto unknown;
20563 idx = rb_enc_find_index(name);
20564 if (idx < 0) {
20565 unknown:
20566 excargs[1] = rb_sprintf("unknown encoding name: %s", name);
20567 error:
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);
20573
20574 rb_ast_free(p->ast);
20575 p->ast = NULL;
20576
20577 rb_exc_raise(exc);
20578 }
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));
20582 goto error;
20583 }
20584 p->enc = enc;
20585#ifndef RIPPER
20586 if (p->debug_lines) {
20587 long i;
20588 for (i = 0; i < p->debug_lines->len; i++) {
20589 rb_parser_enc_associate(p, p->debug_lines->data[i], enc);
20590 }
20591 }
20592#endif
20593}
20594
20595static bool
20596comment_at_top(struct parser_params *p)
20597{
20598 if (p->token_seen) return false;
20599 return (p->line_count == (p->has_shebang ? 2 : 1));
20600}
20601
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);
20604
20605static int parser_invalid_pragma_value(struct parser_params *p, const char *name, const char *val);
20606
20607static void
20608magic_comment_encoding(struct parser_params *p, const char *name, const char *val)
20609{
20610 if (!comment_at_top(p)) {
20611 return;
20612 }
20613 parser_set_encode(p, val);
20614}
20615
20616static int
20617parser_get_bool(struct parser_params *p, const char *name, const char *val)
20618{
20619 switch (*val) {
20620 case 't': case 'T':
20621 if (STRCASECMP(val, "true") == 0) {
20622 return TRUE;
20623 }
20624 break;
20625 case 'f': case 'F':
20626 if (STRCASECMP(val, "false") == 0) {
20627 return FALSE;
20628 }
20629 break;
20630 }
20631 return parser_invalid_pragma_value(p, name, val);
20632}
20633
20634static int
20635parser_invalid_pragma_value(struct parser_params *p, const char *name, const char *val)
20636{
20637 rb_warning2("invalid value for %s: %s", WARN_S(name), WARN_S(val));
20638 return -1;
20639}
20640
20641static void
20642parser_set_token_info(struct parser_params *p, const char *name, const char *val)
20643{
20644 int b = parser_get_bool(p, name, val);
20645 if (b >= 0) p->token_info_enabled = b;
20646}
20647
20648static void
20649parser_set_frozen_string_literal(struct parser_params *p, const char *name, const char *val)
20650{
20651 int b;
20652
20653 if (p->token_seen) {
20654 rb_warning1("'%s' is ignored after any tokens", WARN_S(name));
20655 return;
20656 }
20657
20658 b = parser_get_bool(p, name, val);
20659 if (b < 0) return;
20660
20661 p->frozen_string_literal = b;
20662}
20663
20664static void
20665parser_set_shareable_constant_value(struct parser_params *p, const char *name, const char *val)
20666{
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));
20671 return;
20672 }
20673
20674 switch (*val) {
20675 case 'n': case 'N':
20676 if (STRCASECMP(val, "none") == 0) {
20677 p->ctxt.shareable_constant_value = rb_parser_shareable_none;
20678 return;
20679 }
20680 break;
20681 case 'l': case 'L':
20682 if (STRCASECMP(val, "literal") == 0) {
20683 p->ctxt.shareable_constant_value = rb_parser_shareable_literal;
20684 return;
20685 }
20686 break;
20687 case 'e': case 'E':
20688 if (STRCASECMP(val, "experimental_copy") == 0) {
20689 p->ctxt.shareable_constant_value = rb_parser_shareable_copy;
20690 return;
20691 }
20692 if (STRCASECMP(val, "experimental_everything") == 0) {
20693 p->ctxt.shareable_constant_value = rb_parser_shareable_everything;
20694 return;
20695 }
20696 break;
20697 }
20698 parser_invalid_pragma_value(p, name, val);
20699}
20700
20701# if WARN_PAST_SCOPE
20702static void
20703parser_set_past_scope(struct parser_params *p, const char *name, const char *val)
20704{
20705 int b = parser_get_bool(p, name, val);
20706 if (b >= 0) p->past_scope_enabled = b;
20707}
20708# endif
20709
20711 const char *name;
20712 rb_magic_comment_setter_t func;
20713 rb_magic_comment_length_t length;
20714};
20715
20716static const struct magic_comment magic_comments[] = {
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},
20724# endif
20725};
20726
20727static const char *
20728magic_comment_marker(const char *str, long len)
20729{
20730 long i = 2;
20731
20732 while (i < len) {
20733 switch (str[i]) {
20734 case '-':
20735 if (str[i-1] == '*' && str[i-2] == '-') {
20736 return str + i + 1;
20737 }
20738 i += 2;
20739 break;
20740 case '*':
20741 if (i + 1 >= len) return 0;
20742 if (str[i+1] != '-') {
20743 i += 4;
20744 }
20745 else if (str[i-1] != '-') {
20746 i += 2;
20747 }
20748 else {
20749 return str + i + 2;
20750 }
20751 break;
20752 default:
20753 i += 3;
20754 break;
20755 }
20756 }
20757 return 0;
20758}
20759
20760static int
20761parser_magic_comment(struct parser_params *p, const char *str, long len)
20762{
20763 int indicator = 0;
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))))
20770
20771 if (len <= 7) return FALSE;
20772 if (!!(beg = magic_comment_marker(str, len))) {
20773 if (!(end = magic_comment_marker(beg, str + len - beg)))
20774 return FALSE;
20775 indicator = TRUE;
20776 str = beg;
20777 len = end - beg - 3;
20778 }
20779
20780 /* %r"([^\\s\'\":;]+)\\s*:\\s*(\"(?:\\\\.|[^\"])*\"|[^\"\\s;]+)[\\s;]*" */
20781 while (len > 0) {
20782 const struct magic_comment *mc = magic_comments;
20783 char *s;
20784 int i;
20785 long n = 0;
20786
20787 for (; len > 0 && *str; str++, --len) {
20788 switch (*str) {
20789 case '\'': case '"': case ':': case ';':
20790 continue;
20791 }
20792 if (!ISSPACE(*str)) break;
20793 }
20794 for (beg = str; len > 0; str++, --len) {
20795 switch (*str) {
20796 case '\'': case '"': case ':': case ';':
20797 break;
20798 default:
20799 if (ISSPACE(*str)) break;
20800 continue;
20801 }
20802 break;
20803 }
20804 for (end = str; len > 0 && ISSPACE(*str); str++, --len);
20805 if (!len) break;
20806 if (*str != ':') {
20807 if (!indicator) return FALSE;
20808 continue;
20809 }
20810
20811 do str++; while (--len > 0 && ISSPACE(*str));
20812 if (!len) break;
20813 const char *tok_beg = str;
20814 if (*str == '"') {
20815 for (vbeg = ++str; --len > 0 && *str != '"'; str++) {
20816 if (*str == '\\') {
20817 --len;
20818 ++str;
20819 }
20820 }
20821 vend = str;
20822 if (len) {
20823 --len;
20824 ++str;
20825 }
20826 }
20827 else {
20828 for (vbeg = str; len > 0 && *str != '"' && *str != ';' && !ISSPACE(*str); --len, str++);
20829 vend = str;
20830 }
20831 const char *tok_end = str;
20832 if (indicator) {
20833 while (len > 0 && (*str == ';' || ISSPACE(*str))) --len, str++;
20834 }
20835 else {
20836 while (len > 0 && (ISSPACE(*str))) --len, str++;
20837 if (len) return FALSE;
20838 }
20839
20840 n = end - beg;
20841 str_copy(name, beg, n);
20842 s = RSTRING_PTR(name);
20843 for (i = 0; i < n; ++i) {
20844 if (s[i] == '-') s[i] = '_';
20845 }
20846 do {
20847 if (STRNCASECMP(mc->name, s, n) == 0 && !mc->name[n]) {
20848 n = vend - vbeg;
20849 if (mc->length) {
20850 n = (*mc->length)(p, vbeg, n);
20851 }
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));
20856 break;
20857 }
20858 } while (++mc < magic_comments + numberof(magic_comments));
20859#ifdef RIPPER
20860 str_copy(val, vbeg, vend - vbeg);
20861 dispatch2(magic_comment, name, val);
20862#endif
20863 }
20864
20865 return TRUE;
20866}
20867
20868static void
20869set_file_encoding(struct parser_params *p, const char *str, const char *send)
20870{
20871 int sep = 0;
20872 const char *beg = str;
20873 VALUE s;
20874
20875 for (;;) {
20876 if (send - str <= 6) return;
20877 switch (str[6]) {
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 ':':
20885 sep = 1;
20886 str += 6;
20887 break;
20888 default:
20889 str += 6;
20890 if (ISSPACE(*str)) break;
20891 continue;
20892 }
20893 if (STRNCASECMP(str-6, "coding", 6) == 0) break;
20894 sep = 0;
20895 }
20896 for (;;) {
20897 do {
20898 if (++str >= send) return;
20899 } while (ISSPACE(*str));
20900 if (sep) break;
20901 if (*str != '=' && *str != ':') return;
20902 sep = 1;
20903 str++;
20904 }
20905 beg = str;
20906 while ((*str == '-' || *str == '_' || ISALNUM(*str)) && ++str < send);
20907 s = rb_str_new(beg, parser_encode_length(p, beg, str - beg));
20908 p->lex.ptok = beg;
20909 p->lex.pcur = str;
20910 parser_set_encode(p, RSTRING_PTR(s));
20911 rb_str_resize(s, 0);
20912}
20913
20914static void
20915parser_prepare(struct parser_params *p)
20916{
20917 int c = nextc0(p, FALSE);
20918 p->token_info_enabled = !compile_for_eval && RTEST(ruby_verbose);
20919 switch (c) {
20920 case '#':
20921 if (peek(p, '!')) p->has_shebang = 1;
20922 break;
20923 case 0xef: /* UTF-8 BOM marker */
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();
20928 p->lex.pcur += 2;
20929#ifndef RIPPER
20930 if (p->debug_lines) {
20931 rb_parser_string_set_encoding(p->lex.lastline, p->enc);
20932 }
20933#endif
20934 p->lex.pbeg = p->lex.pcur;
20935 token_flush(p);
20936 return;
20937 }
20938 break;
20939 case -1: /* end of script. */
20940 return;
20941 }
20942 pushback(p, c);
20943 p->enc = rb_parser_str_get_encoding(p->lex.lastline);
20944}
20945
20946#ifndef RIPPER
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""))
20950#else
20951#define ambiguous_operator(tok, op, syn) \
20952 dispatch2(operator_ambiguous, TOKEN2VAL(tok), rb_str_new_cstr(syn))
20953#endif
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))
20959
20960static enum yytokentype
20961no_digits(struct parser_params *p)
20962{
20963 yyerror0("numeric literal without digits");
20964 if (peek(p, '_')) nextc(p);
20965 /* dummy 0, for tUMINUS_NUM at numeric */
20966 return set_number_literal(p, tINTEGER, 0, 10, 0);
20967}
20968
20969static enum yytokentype
20970parse_numeric(struct parser_params *p, int c)
20971{
20972 int is_float, seen_point, seen_e, nondigit;
20973 int suffix;
20974
20975 is_float = seen_point = seen_e = nondigit = 0;
20976 SET_LEX_STATE(EXPR_END);
20977 newtok(p);
20978 if (c == '-' || c == '+') {
20979 tokadd(p, c);
20980 c = nextc(p);
20981 }
20982 if (c == '0') {
20983 int start = toklen(p);
20984 c = nextc(p);
20985 if (c == 'x' || c == 'X') {
20986 /* hexadecimal */
20987 c = nextc(p);
20988 if (c != -1 && ISXDIGIT(c)) {
20989 do {
20990 if (c == '_') {
20991 if (nondigit) break;
20992 nondigit = c;
20993 continue;
20994 }
20995 if (!ISXDIGIT(c)) break;
20996 nondigit = 0;
20997 tokadd(p, c);
20998 } while ((c = nextc(p)) != -1);
20999 }
21000 pushback(p, c);
21001 tokfix(p);
21002 if (toklen(p) == start) {
21003 return no_digits(p);
21004 }
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);
21008 }
21009 if (c == 'b' || c == 'B') {
21010 /* binary */
21011 c = nextc(p);
21012 if (c == '0' || c == '1') {
21013 do {
21014 if (c == '_') {
21015 if (nondigit) break;
21016 nondigit = c;
21017 continue;
21018 }
21019 if (c != '0' && c != '1') break;
21020 nondigit = 0;
21021 tokadd(p, c);
21022 } while ((c = nextc(p)) != -1);
21023 }
21024 pushback(p, c);
21025 tokfix(p);
21026 if (toklen(p) == start) {
21027 return no_digits(p);
21028 }
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);
21032 }
21033 if (c == 'd' || c == 'D') {
21034 /* decimal */
21035 c = nextc(p);
21036 if (c != -1 && ISDIGIT(c)) {
21037 do {
21038 if (c == '_') {
21039 if (nondigit) break;
21040 nondigit = c;
21041 continue;
21042 }
21043 if (!ISDIGIT(c)) break;
21044 nondigit = 0;
21045 tokadd(p, c);
21046 } while ((c = nextc(p)) != -1);
21047 }
21048 pushback(p, c);
21049 tokfix(p);
21050 if (toklen(p) == start) {
21051 return no_digits(p);
21052 }
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);
21056 }
21057 if (c == '_') {
21058 /* 0_0 */
21059 goto octal_number;
21060 }
21061 if (c == 'o' || c == 'O') {
21062 /* prefixed octal */
21063 c = nextc(p);
21064 if (c == -1 || c == '_' || !ISDIGIT(c)) {
21065 tokfix(p);
21066 return no_digits(p);
21067 }
21068 }
21069 if (c >= '0' && c <= '7') {
21070 /* octal */
21071 octal_number:
21072 do {
21073 if (c == '_') {
21074 if (nondigit) break;
21075 nondigit = c;
21076 continue;
21077 }
21078 if (c < '0' || c > '9') break;
21079 if (c > '7') goto invalid_octal;
21080 nondigit = 0;
21081 tokadd(p, c);
21082 } while ((c = nextc(p)) != -1);
21083 if (toklen(p) > start) {
21084 pushback(p, c);
21085 tokfix(p);
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);
21089 }
21090 if (nondigit) {
21091 pushback(p, c);
21092 goto trailing_uc;
21093 }
21094 }
21095 if (c > '7' && c <= '9') {
21096 invalid_octal:
21097 yyerror0("Invalid octal digit");
21098 }
21099 else if (c == '.' || c == 'e' || c == 'E') {
21100 tokadd(p, '0');
21101 }
21102 else {
21103 pushback(p, c);
21104 tokfix(p);
21105 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21106 return set_number_literal(p, tINTEGER, suffix, 10, 0);
21107 }
21108 }
21109
21110 for (;;) {
21111 switch (c) {
21112 case '0': case '1': case '2': case '3': case '4':
21113 case '5': case '6': case '7': case '8': case '9':
21114 nondigit = 0;
21115 tokadd(p, c);
21116 break;
21117
21118 case '.':
21119 if (nondigit) goto trailing_uc;
21120 if (seen_point || seen_e) {
21121 goto decode_num;
21122 }
21123 else {
21124 int c0 = nextc(p);
21125 if (c0 == -1 || !ISDIGIT(c0)) {
21126 pushback(p, c0);
21127 goto decode_num;
21128 }
21129 c = c0;
21130 }
21131 seen_point = toklen(p);
21132 tokadd(p, '.');
21133 tokadd(p, c);
21134 is_float++;
21135 nondigit = 0;
21136 break;
21137
21138 case 'e':
21139 case 'E':
21140 if (nondigit) {
21141 pushback(p, c);
21142 c = nondigit;
21143 goto decode_num;
21144 }
21145 if (seen_e) {
21146 goto decode_num;
21147 }
21148 nondigit = c;
21149 c = nextc(p);
21150 if (c != '-' && c != '+' && !ISDIGIT(c)) {
21151 pushback(p, c);
21152 c = nondigit;
21153 nondigit = 0;
21154 goto decode_num;
21155 }
21156 tokadd(p, nondigit);
21157 seen_e++;
21158 is_float++;
21159 tokadd(p, c);
21160 nondigit = (c == '-' || c == '+') ? c : 0;
21161 break;
21162
21163 case '_': /* `_' in number just ignored */
21164 if (nondigit) goto decode_num;
21165 nondigit = c;
21166 break;
21167
21168 default:
21169 goto decode_num;
21170 }
21171 c = nextc(p);
21172 }
21173
21174 decode_num:
21175 pushback(p, c);
21176 if (nondigit) {
21177 trailing_uc:
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);
21182 }
21183 tokfix(p);
21184 if (is_float) {
21185 enum yytokentype type = tFLOAT;
21186
21187 suffix = number_literal_suffix(p, seen_e ? NUM_SUFFIX_I : NUM_SUFFIX_ALL);
21188 if (suffix & NUM_SUFFIX_R) {
21189 type = tRATIONAL;
21190 }
21191 else {
21192 strtod(tok(p), 0);
21193 if (errno == ERANGE) {
21194 rb_warning1("Float %s out of range", WARN_S(tok(p)));
21195 errno = 0;
21196 }
21197 }
21198 return set_number_literal(p, type, suffix, 0, seen_point);
21199 }
21200 suffix = number_literal_suffix(p, NUM_SUFFIX_ALL);
21201 return set_number_literal(p, tINTEGER, suffix, 10, 0);
21202}
21203
21204static enum yytokentype
21205parse_qmark(struct parser_params *p, int space_seen)
21206{
21207 rb_encoding *enc;
21208 register int c;
21209 rb_parser_string_t *lit;
21210 const char *start = p->lex.pcur;
21211
21212 if (IS_END()) {
21213 SET_LEX_STATE(EXPR_VALUE);
21214 return '?';
21215 }
21216 c = nextc(p);
21217 if (c == -1) {
21218 compile_error(p, "incomplete character syntax");
21219 return 0;
21220 }
21221 if (rb_enc_isspace(c, p->enc)) {
21222 if (!IS_ARG()) {
21223 int c2 = escaped_control_code(c);
21224 if (c2) {
21225 WARN_SPACE_CHAR(c2, "?");
21226 }
21227 }
21228 ternary:
21229 pushback(p, c);
21230 SET_LEX_STATE(EXPR_VALUE);
21231 return '?';
21232 }
21233 newtok(p);
21234 enc = p->enc;
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))) {
21238 if (space_seen) {
21239 const char *ptr = start;
21240 do {
21241 int n = parser_precise_mbclen(p, ptr);
21242 if (n < 0) return -1;
21243 ptr += n;
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)));
21248 }
21249 goto ternary;
21250 }
21251 else if (c == '\\') {
21252 if (peek(p, 'u')) {
21253 nextc(p);
21254 enc = rb_utf8_encoding();
21255 tokadd_utf8(p, &enc, -1, 0, 0);
21256 }
21257 else if (!ISASCII(c = peekc(p)) && c != -1) {
21258 nextc(p);
21259 if (tokadd_mbchar(p, c) == -1) return 0;
21260 }
21261 else {
21262 c = read_escape(p, 0, p->lex.pcur - rb_strlen_lit("?\\"));
21263 tokadd(p, c);
21264 }
21265 }
21266 else {
21267 if (tokadd_mbchar(p, c) == -1) return 0;
21268 }
21269 tokfix(p);
21270 lit = STR_NEW3(tok(p), toklen(p), enc, 0);
21271 set_yylval_str(lit);
21272 SET_LEX_STATE(EXPR_END);
21273 return tCHAR;
21274}
21275
21276static enum yytokentype
21277parse_percent(struct parser_params *p, const int space_seen, const enum lex_state_e last_state)
21278{
21279 register int c;
21280 const char *ptok = p->lex.pcur;
21281
21282 if (IS_BEG()) {
21283 int term;
21284 int paren;
21285
21286 c = nextc(p);
21287 quotation:
21288 if (c == -1) goto unterminated;
21289 if (!ISALNUM(c)) {
21290 term = c;
21291 if (!ISASCII(c)) goto unknown;
21292 c = 'Q';
21293 }
21294 else {
21295 term = nextc(p);
21296 if (rb_enc_isalnum(term, p->enc) || !parser_isascii(p)) {
21297 unknown:
21298 pushback(p, term);
21299 c = parser_precise_mbclen(p, p->lex.pcur);
21300 if (c < 0) return 0;
21301 p->lex.pcur += c;
21302 yyerror0("unknown type of %string");
21303 return 0;
21304 }
21305 }
21306 if (term == -1) {
21307 unterminated:
21308 compile_error(p, "unterminated quoted string meets end of file");
21309 return 0;
21310 }
21311 paren = term;
21312 if (term == '(') term = ')';
21313 else if (term == '[') term = ']';
21314 else if (term == '{') term = '}';
21315 else if (term == '<') term = '>';
21316 else paren = 0;
21317
21318 p->lex.ptok = ptok-1;
21319 switch (c) {
21320 case 'Q':
21321 p->lex.strterm = NEW_STRTERM(str_dquote, term, paren);
21322 return tSTRING_BEG;
21323
21324 case 'q':
21325 p->lex.strterm = NEW_STRTERM(str_squote, term, paren);
21326 return tSTRING_BEG;
21327
21328 case 'W':
21329 p->lex.strterm = NEW_STRTERM(str_dword, term, paren);
21330 return tWORDS_BEG;
21331
21332 case 'w':
21333 p->lex.strterm = NEW_STRTERM(str_sword, term, paren);
21334 return tQWORDS_BEG;
21335
21336 case 'I':
21337 p->lex.strterm = NEW_STRTERM(str_dword, term, paren);
21338 return tSYMBOLS_BEG;
21339
21340 case 'i':
21341 p->lex.strterm = NEW_STRTERM(str_sword, term, paren);
21342 return tQSYMBOLS_BEG;
21343
21344 case 'x':
21345 p->lex.strterm = NEW_STRTERM(str_xquote, term, paren);
21346 return tXSTRING_BEG;
21347
21348 case 'r':
21349 p->lex.strterm = NEW_STRTERM(str_regexp, term, paren);
21350 return tREGEXP_BEG;
21351
21352 case 's':
21353 p->lex.strterm = NEW_STRTERM(str_ssym, term, paren);
21354 SET_LEX_STATE(EXPR_FNAME|EXPR_FITEM);
21355 return tSYMBEG;
21356
21357 default:
21358 yyerror0("unknown type of %string");
21359 return 0;
21360 }
21361 }
21362 if ((c = nextc(p)) == '=') {
21363 set_yylval_id('%');
21364 SET_LEX_STATE(EXPR_BEG);
21365 return tOP_ASGN;
21366 }
21367 if (IS_SPCARG(c) || (IS_lex_state(EXPR_FITEM) && c == 's')) {
21368 goto quotation;
21369 }
21370 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21371 pushback(p, c);
21372 return warn_balanced('%', "%%", "string literal");
21373}
21374
21375static int
21376tokadd_ident(struct parser_params *p, int c)
21377{
21378 do {
21379 if (tokadd_mbchar(p, c) == -1) return -1;
21380 c = nextc(p);
21381 } while (parser_is_identchar(p));
21382 pushback(p, c);
21383 return 0;
21384}
21385
21386static ID
21387tokenize_ident(struct parser_params *p)
21388{
21389 ID ident = TOK_INTERN();
21390
21391 set_yylval_name(ident);
21392
21393 return ident;
21394}
21395
21396static int
21397parse_numvar(struct parser_params *p)
21398{
21399 size_t len;
21400 int overflow;
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;
21404 /* NTH_REF is left-shifted to be ORed with back-ref flag and
21405 * turned into a Fixnum, in compile.c */
21406
21407 if (overflow || n > nth_ref_max) {
21408 /* compile_error()? */
21409 rb_warn1("'%s' is too big for a number variable, always nil", WARN_S(tok(p)));
21410 return 0; /* $0 is $PROGRAM_NAME, not NTH_REF */
21411 }
21412 else {
21413 return (int)n;
21414 }
21415}
21416
21417static enum yytokentype
21418parse_gvar(struct parser_params *p, const enum lex_state_e last_state)
21419{
21420 const char *ptr = p->lex.pcur;
21421 register int c;
21422
21423 SET_LEX_STATE(EXPR_END);
21424 p->lex.ptok = ptr - 1; /* from '$' */
21425 newtok(p);
21426 c = nextc(p);
21427 switch (c) {
21428 case '_': /* $_: last read line string */
21429 c = nextc(p);
21430 if (parser_is_identchar(p)) {
21431 tokadd(p, '$');
21432 tokadd(p, '_');
21433 break;
21434 }
21435 pushback(p, c);
21436 c = '_';
21437 /* fall through */
21438 case '~': /* $~: match-data */
21439 case '*': /* $*: argv */
21440 case '$': /* $$: pid */
21441 case '?': /* $?: last status */
21442 case '!': /* $!: error string */
21443 case '@': /* $@: error position */
21444 case '/': /* $/: input record separator */
21445 case '\\': /* $\: output record separator */
21446 case ';': /* $;: field separator */
21447 case ',': /* $,: output field separator */
21448 case '.': /* $.: last read line number */
21449 case '=': /* $=: ignorecase */
21450 case ':': /* $:: load path */
21451 case '<': /* $<: default input handle */
21452 case '>': /* $>: default output handle */
21453 case '\"': /* $": already loaded files */
21454 tokadd(p, '$');
21455 tokadd(p, c);
21456 goto gvar;
21457
21458 case '-':
21459 tokadd(p, '$');
21460 tokadd(p, c);
21461 c = nextc(p);
21462 if (parser_is_identchar(p)) {
21463 if (tokadd_mbchar(p, c) == -1) return 0;
21464 }
21465 else {
21466 pushback(p, c);
21467 pushback(p, '-');
21468 return '$';
21469 }
21470 gvar:
21471 tokenize_ident(p);
21472 return tGVAR;
21473
21474 case '&': /* $&: last match */
21475 case '`': /* $`: string before last match */
21476 case '\'': /* $': string after last match */
21477 case '+': /* $+: string matches last paren. */
21478 if (IS_lex_state_for(last_state, EXPR_FNAME)) {
21479 tokadd(p, '$');
21480 tokadd(p, c);
21481 goto gvar;
21482 }
21483 set_yylval_node(NEW_BACK_REF(c, &_cur_loc));
21484 return tBACK_REF;
21485
21486 case '1': case '2': case '3':
21487 case '4': case '5': case '6':
21488 case '7': case '8': case '9':
21489 tokadd(p, '$');
21490 do {
21491 tokadd(p, c);
21492 c = nextc(p);
21493 } while (c != -1 && ISDIGIT(c));
21494 pushback(p, c);
21495 if (IS_lex_state_for(last_state, EXPR_FNAME)) goto gvar;
21496 tokfix(p);
21497 c = parse_numvar(p);
21498 set_yylval_node(NEW_NTH_REF(c, &_cur_loc));
21499 return tNTH_REF;
21500
21501 default:
21502 if (!parser_is_identchar(p)) {
21503 YYLTYPE loc = RUBY_INIT_YYLLOC();
21504 if (c == -1 || ISSPACE(c)) {
21505 compile_error(p, "'$' without identifiers is not allowed as a global variable name");
21506 }
21507 else {
21508 pushback(p, c);
21509 compile_error(p, "'$%c' is not allowed as a global variable name", c);
21510 }
21511 parser_show_error_line(p, &loc);
21512 set_yylval_noname();
21513 return tGVAR;
21514 }
21515 /* fall through */
21516 case '0':
21517 tokadd(p, '$');
21518 }
21519
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)) {
21523 tokenize_ident(p);
21524 }
21525 else {
21526 compile_error(p, "'%.*s' is not allowed as a global variable name", toklen(p), tok(p));
21527 set_yylval_noname();
21528 }
21529 return tGVAR;
21530}
21531
21532static bool
21533parser_numbered_param(struct parser_params *p, int n)
21534{
21535 if (n < 0) return false;
21536
21537 if (DVARS_TERMINAL_P(p->lvtbl->args) || DVARS_TERMINAL_P(p->lvtbl->args->prev)) {
21538 return false;
21539 }
21540 if (p->max_numparam == ORDINAL_PARAM) {
21541 compile_error(p, "ordinary parameter is defined");
21542 return false;
21543 }
21544 struct vtable *args = p->lvtbl->args;
21545 if (p->max_numparam < n) {
21546 p->max_numparam = n;
21547 }
21548 while (n > args->pos) {
21549 vtable_add(args, NUMPARAM_IDX_TO_ID(args->pos+1));
21550 }
21551 return true;
21552}
21553
21554static enum yytokentype
21555parse_atmark(struct parser_params *p, const enum lex_state_e last_state)
21556{
21557 const char *ptr = p->lex.pcur;
21558 enum yytokentype result = tIVAR;
21559 register int c = nextc(p);
21560 YYLTYPE loc;
21561
21562 p->lex.ptok = ptr - 1; /* from '@' */
21563 newtok(p);
21564 tokadd(p, '@');
21565 if (c == '@') {
21566 result = tCVAR;
21567 tokadd(p, '@');
21568 c = nextc(p);
21569 }
21570 SET_LEX_STATE(IS_lex_state_for(last_state, EXPR_FNAME) ? EXPR_ENDFN : EXPR_END);
21571 if (c == -1 || !parser_is_identchar(p)) {
21572 pushback(p, c);
21573 RUBY_SET_YYLLOC(loc);
21574 if (result == tIVAR) {
21575 compile_error(p, "'@' without identifiers is not allowed as an instance variable name");
21576 }
21577 else {
21578 compile_error(p, "'@@' without identifiers is not allowed as a class variable name");
21579 }
21580 parser_show_error_line(p, &loc);
21581 set_yylval_noname();
21582 SET_LEX_STATE(EXPR_END);
21583 return result;
21584 }
21585 else if (ISDIGIT(c)) {
21586 pushback(p, c);
21587 RUBY_SET_YYLLOC(loc);
21588 if (result == tIVAR) {
21589 compile_error(p, "'@%c' is not allowed as an instance variable name", c);
21590 }
21591 else {
21592 compile_error(p, "'@@%c' is not allowed as a class variable name", c);
21593 }
21594 parser_show_error_line(p, &loc);
21595 set_yylval_noname();
21596 SET_LEX_STATE(EXPR_END);
21597 return result;
21598 }
21599
21600 if (tokadd_ident(p, c)) return 0;
21601 tokenize_ident(p);
21602 return result;
21603}
21604
21605static enum yytokentype
21606parse_ident(struct parser_params *p, int c, int cmd_state)
21607{
21608 enum yytokentype result;
21609 bool is_ascii = true;
21610 const enum lex_state_e last_state = p->lex.state;
21611 ID ident;
21612 int enforce_keyword_end = 0;
21613
21614 do {
21615 if (!ISASCII(c)) is_ascii = false;
21616 if (tokadd_mbchar(p, c) == -1) return 0;
21617 c = nextc(p);
21618 } while (parser_is_identchar(p));
21619 if ((c == '!' || c == '?') && !peek(p, '=')) {
21620 result = tFID;
21621 tokadd(p, c);
21622 }
21623 else if (c == '=' && IS_lex_state(EXPR_FNAME) &&
21624 (!peek(p, '~') && !peek(p, '>') && (!peek(p, '=') || (peek_n(p, '>', 1))))) {
21625 result = tIDENTIFIER;
21626 tokadd(p, c);
21627 }
21628 else {
21629 result = tCONSTANT; /* assume provisionally */
21630 pushback(p, c);
21631 }
21632 tokfix(p);
21633
21634 if (IS_LABEL_POSSIBLE()) {
21635 if (IS_LABEL_SUFFIX(0)) {
21636 SET_LEX_STATE(EXPR_ARG|EXPR_LABELED);
21637 nextc(p);
21638 tokenize_ident(p);
21639 return tLABEL;
21640 }
21641 }
21642
21643#ifndef RIPPER
21644 if (peek_end_expect_token_locations(p)) {
21645 const rb_code_position_t *end_pos;
21646 int lineno, column;
21647 int beg_pos = (int)(p->lex.ptok - p->lex.pbeg);
21648
21649 end_pos = peek_end_expect_token_locations(p)->pos;
21650 lineno = end_pos->lineno;
21651 column = end_pos->column;
21652
21653 if (p->debug) {
21654 rb_parser_printf(p, "enforce_keyword_end check. current: (%d, %d), peek: (%d, %d)\n",
21655 p->ruby_sourceline, beg_pos, lineno, column);
21656 }
21657
21658 if ((p->ruby_sourceline > lineno) && (beg_pos <= column)) {
21659 const struct kwtable *kw;
21660
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;
21664 }
21665 }
21666 }
21667#endif
21668
21669 if (is_ascii && (!IS_lex_state(EXPR_DOT) || enforce_keyword_end)) {
21670 const struct kwtable *kw;
21671
21672 /* See if it is a reserved word. */
21673 kw = rb_reserved_word(tok(p), toklen(p));
21674 if (kw) {
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)));
21679 return kw->id[0];
21680 }
21681 SET_LEX_STATE(kw->state);
21682 if (IS_lex_state(EXPR_BEG)) {
21683 p->command_start = TRUE;
21684 }
21685 if (kw->id[0] == keyword_do) {
21686 if (lambda_beginning_p()) {
21687 p->lex.lpar_beg = -1; /* make lambda_beginning_p() == FALSE in the body of "-> do ... end" */
21688 return keyword_do_LAMBDA;
21689 }
21690 if (COND_P()) return keyword_do_cond;
21691 if (CMDARG_P() && !IS_lex_state_for(state, EXPR_CMDARG))
21692 return keyword_do_block;
21693 return keyword_do;
21694 }
21695 if (IS_lex_state_for(state, (EXPR_BEG | EXPR_LABELED | EXPR_CLASS)))
21696 return kw->id[0];
21697 else {
21698 if (kw->id[0] != kw->id[1])
21699 SET_LEX_STATE(EXPR_BEG | EXPR_LABEL);
21700 return kw->id[1];
21701 }
21702 }
21703 }
21704
21705 if (IS_lex_state(EXPR_BEG_ANY | EXPR_ARG_ANY | EXPR_DOT)) {
21706 if (cmd_state) {
21707 SET_LEX_STATE(EXPR_CMDARG);
21708 }
21709 else {
21710 SET_LEX_STATE(EXPR_ARG);
21711 }
21712 }
21713 else if (p->lex.state == EXPR_FNAME) {
21714 SET_LEX_STATE(EXPR_ENDFN);
21715 }
21716 else {
21717 SET_LEX_STATE(EXPR_END);
21718 }
21719
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) && /* not EXPR_FNAME, not attrasgn */
21724 (lvar_defined(p, ident) || NUMPARAM_ID_P(ident))) {
21725 SET_LEX_STATE(EXPR_END|EXPR_LABEL);
21726 }
21727 return result;
21728}
21729
21730static void
21731warn_cr(struct parser_params *p)
21732{
21733 if (!p->cr_seen) {
21734 p->cr_seen = TRUE;
21735 /* carried over with p->lex.nextline for nextc() */
21736 rb_warn0("encountered \\r in middle of line, treated as a mere space");
21737 }
21738}
21739
21740static enum yytokentype
21741parser_yylex(struct parser_params *p)
21742{
21743 register int c;
21744 int space_seen = 0;
21745 int cmd_state;
21746 int label;
21747 enum lex_state_e last_state;
21748 int fallthru = FALSE;
21749 int token_seen = p->token_seen;
21750
21751 if (p->lex.strterm) {
21752 if (strterm_is_heredoc(p->lex.strterm)) {
21753 token_flush(p);
21754 return here_document(p, &p->lex.strterm->u.heredoc);
21755 }
21756 else {
21757 token_flush(p);
21758 return parse_string(p, &p->lex.strterm->u.literal);
21759 }
21760 }
21761 cmd_state = p->command_start;
21762 p->command_start = FALSE;
21763 p->token_seen = TRUE;
21764#ifndef RIPPER
21765 token_flush(p);
21766#endif
21767 retry:
21768 last_state = p->lex.state;
21769 switch (c = nextc(p)) {
21770 case '\0': /* NUL */
21771 case '\004': /* ^D */
21772 case '\032': /* ^Z */
21773 case -1: /* end of script. */
21774 p->eofp = 1;
21775#ifndef RIPPER
21776 if (p->end_expect_token_locations) {
21777 pop_end_expect_token_locations(p);
21778 RUBY_SET_YYLLOC_OF_DUMMY_END(*p->yylloc);
21779 return tDUMNY_END;
21780 }
21781#endif
21782 /* Set location for end-of-input because dispatch_scan_event is not called. */
21783 RUBY_SET_YYLLOC(*p->yylloc);
21784 return END_OF_INPUT;
21785
21786 /* white spaces */
21787 case '\r':
21788 warn_cr(p);
21789 /* fall through */
21790 case ' ': case '\t': case '\f':
21791 case '\13': /* '\v' */
21792 space_seen = 1;
21793 while ((c = nextc(p))) {
21794 switch (c) {
21795 case '\r':
21796 warn_cr(p);
21797 /* fall through */
21798 case ' ': case '\t': case '\f':
21799 case '\13': /* '\v' */
21800 break;
21801 default:
21802 goto outofloop;
21803 }
21804 }
21805 outofloop:
21806 pushback(p, c);
21807 dispatch_scan_event(p, tSP);
21808#ifndef RIPPER
21809 token_flush(p);
21810#endif
21811 goto retry;
21812
21813 case '#': /* it's a comment */
21814 p->token_seen = token_seen;
21815 const char *const pcur = p->lex.pcur, *const ptok = p->lex.ptok;
21816 /* no magic_comment in shebang line */
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);
21820 }
21821 }
21822 p->lex.pcur = pcur, p->lex.ptok = ptok;
21823 lex_goto_eol(p);
21824 dispatch_scan_event(p, tCOMMENT);
21825 fallthru = TRUE;
21826 /* fall through */
21827 case '\n':
21828 p->token_seen = token_seen;
21829 rb_parser_string_t *prevline = p->lex.lastline;
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)) {
21833 if (!fallthru) {
21834 dispatch_scan_event(p, tIGNORED_NL);
21835 }
21836 fallthru = FALSE;
21837 if (!c && p->ctxt.in_kwarg) {
21838 goto normal_newline;
21839 }
21840 goto retry;
21841 }
21842 while (1) {
21843 switch (c = nextc(p)) {
21844 case ' ': case '\t': case '\f': case '\r':
21845 case '\13': /* '\v' */
21846 space_seen = 1;
21847 break;
21848 case '#':
21849 pushback(p, c);
21850 if (space_seen) {
21851 dispatch_scan_event(p, tSP);
21852 token_flush(p);
21853 }
21854 goto retry;
21855 case '&':
21856 case '.': {
21857 dispatch_delayed_token(p, tIGNORED_NL);
21858 if (peek(p, '.') == (c == '&')) {
21859 pushback(p, c);
21860 dispatch_scan_event(p, tSP);
21861 goto retry;
21862 }
21863 }
21864 default:
21865 p->ruby_sourceline--;
21866 p->lex.nextline = p->lex.lastline;
21867 set_lastline(p, prevline);
21868 case -1: /* EOF no decrement*/
21869 if (c == -1 && space_seen) {
21870 dispatch_scan_event(p, tSP);
21871 }
21872 lex_goto_eol(p);
21873 if (c != -1) {
21874 token_flush(p);
21875 RUBY_SET_YYLLOC(*p->yylloc);
21876 }
21877 goto normal_newline;
21878 }
21879 }
21880 normal_newline:
21881 p->command_start = TRUE;
21882 SET_LEX_STATE(EXPR_BEG);
21883 return '\n';
21884
21885 case '*':
21886 if ((c = nextc(p)) == '*') {
21887 if ((c = nextc(p)) == '=') {
21888 set_yylval_id(idPow);
21889 SET_LEX_STATE(EXPR_BEG);
21890 return tOP_ASGN;
21891 }
21892 pushback(p, c);
21893 if (IS_SPCARG(c)) {
21894 rb_warning0("'**' interpreted as argument prefix");
21895 c = tDSTAR;
21896 }
21897 else if (IS_BEG()) {
21898 c = tDSTAR;
21899 }
21900 else {
21901 c = warn_balanced((enum ruby_method_ids)tPOW, "**", "argument prefix");
21902 }
21903 }
21904 else {
21905 if (c == '=') {
21906 set_yylval_id('*');
21907 SET_LEX_STATE(EXPR_BEG);
21908 return tOP_ASGN;
21909 }
21910 pushback(p, c);
21911 if (IS_SPCARG(c)) {
21912 rb_warning0("'*' interpreted as argument prefix");
21913 c = tSTAR;
21914 }
21915 else if (IS_BEG()) {
21916 c = tSTAR;
21917 }
21918 else {
21919 c = warn_balanced('*', "*", "argument prefix");
21920 }
21921 }
21922 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21923 return c;
21924
21925 case '!':
21926 c = nextc(p);
21927 if (IS_AFTER_OPERATOR()) {
21928 SET_LEX_STATE(EXPR_ARG);
21929 if (c == '@') {
21930 return '!';
21931 }
21932 }
21933 else {
21934 SET_LEX_STATE(EXPR_BEG);
21935 }
21936 if (c == '=') {
21937 return tNEQ;
21938 }
21939 if (c == '~') {
21940 return tNMATCH;
21941 }
21942 pushback(p, c);
21943 return '!';
21944
21945 case '=':
21946 if (was_bol(p)) {
21947 /* skip embedded rd document */
21948 if (word_match_p(p, "begin", 5)) {
21949 int first_p = TRUE;
21950
21951 lex_goto_eol(p);
21952 dispatch_scan_event(p, tEMBDOC_BEG);
21953 for (;;) {
21954 lex_goto_eol(p);
21955 if (!first_p) {
21956 dispatch_scan_event(p, tEMBDOC);
21957 }
21958 first_p = FALSE;
21959 c = nextc(p);
21960 if (c == -1) {
21961 compile_error(p, "embedded document meets end of file");
21962 return END_OF_INPUT;
21963 }
21964 if (c == '=' && word_match_p(p, "end", 3)) {
21965 break;
21966 }
21967 pushback(p, c);
21968 }
21969 lex_goto_eol(p);
21970 dispatch_scan_event(p, tEMBDOC_END);
21971 goto retry;
21972 }
21973 }
21974
21975 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
21976 if ((c = nextc(p)) == '=') {
21977 if ((c = nextc(p)) == '=') {
21978 return tEQQ;
21979 }
21980 pushback(p, c);
21981 return tEQ;
21982 }
21983 if (c == '~') {
21984 return tMATCH;
21985 }
21986 else if (c == '>') {
21987 return tASSOC;
21988 }
21989 pushback(p, c);
21990 return '=';
21991
21992 case '<':
21993 c = nextc(p);
21994 if (c == '<' &&
21995 !IS_lex_state(EXPR_DOT | EXPR_CLASS) &&
21996 !IS_END() &&
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;
22000 }
22001 if (IS_AFTER_OPERATOR()) {
22002 SET_LEX_STATE(EXPR_ARG);
22003 }
22004 else {
22005 if (IS_lex_state(EXPR_CLASS))
22006 p->command_start = TRUE;
22007 SET_LEX_STATE(EXPR_BEG);
22008 }
22009 if (c == '=') {
22010 if ((c = nextc(p)) == '>') {
22011 return tCMP;
22012 }
22013 pushback(p, c);
22014 return tLEQ;
22015 }
22016 if (c == '<') {
22017 if ((c = nextc(p)) == '=') {
22018 set_yylval_id(idLTLT);
22019 SET_LEX_STATE(EXPR_BEG);
22020 return tOP_ASGN;
22021 }
22022 pushback(p, c);
22023 return warn_balanced((enum ruby_method_ids)tLSHFT, "<<", "here document");
22024 }
22025 pushback(p, c);
22026 return '<';
22027
22028 case '>':
22029 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22030 if ((c = nextc(p)) == '=') {
22031 return tGEQ;
22032 }
22033 if (c == '>') {
22034 if ((c = nextc(p)) == '=') {
22035 set_yylval_id(idGTGT);
22036 SET_LEX_STATE(EXPR_BEG);
22037 return tOP_ASGN;
22038 }
22039 pushback(p, c);
22040 return tRSHFT;
22041 }
22042 pushback(p, c);
22043 return '>';
22044
22045 case '"':
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;
22050
22051 case '`':
22052 if (IS_lex_state(EXPR_FNAME)) {
22053 SET_LEX_STATE(EXPR_ENDFN);
22054 return c;
22055 }
22056 if (IS_lex_state(EXPR_DOT)) {
22057 if (cmd_state)
22058 SET_LEX_STATE(EXPR_CMDARG);
22059 else
22060 SET_LEX_STATE(EXPR_ARG);
22061 return c;
22062 }
22063 p->lex.strterm = NEW_STRTERM(str_xquote, '`', 0);
22064 return tXSTRING_BEG;
22065
22066 case '\'':
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;
22071
22072 case '?':
22073 return parse_qmark(p, space_seen);
22074
22075 case '&':
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);
22081 return tOP_ASGN;
22082 }
22083 pushback(p, c);
22084 return tANDOP;
22085 }
22086 else if (c == '=') {
22087 set_yylval_id('&');
22088 SET_LEX_STATE(EXPR_BEG);
22089 return tOP_ASGN;
22090 }
22091 else if (c == '.') {
22092 set_yylval_id(idANDDOT);
22093 SET_LEX_STATE(EXPR_DOT);
22094 return tANDDOT;
22095 }
22096 pushback(p, c);
22097 if (IS_SPCARG(c)) {
22098 if ((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");
22103 }
22104 c = tAMPER;
22105 }
22106 else if (IS_BEG()) {
22107 c = tAMPER;
22108 }
22109 else {
22110 c = warn_balanced('&', "&", "argument prefix");
22111 }
22112 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22113 return c;
22114
22115 case '|':
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);
22121 return tOP_ASGN;
22122 }
22123 pushback(p, c);
22124 if (IS_lex_state_for(last_state, EXPR_BEG)) {
22125 c = '|';
22126 pushback(p, '|');
22127 return c;
22128 }
22129 return tOROP;
22130 }
22131 if (c == '=') {
22132 set_yylval_id('|');
22133 SET_LEX_STATE(EXPR_BEG);
22134 return tOP_ASGN;
22135 }
22136 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG|EXPR_LABEL);
22137 pushback(p, c);
22138 return '|';
22139
22140 case '+':
22141 c = nextc(p);
22142 if (IS_AFTER_OPERATOR()) {
22143 SET_LEX_STATE(EXPR_ARG);
22144 if (c == '@') {
22145 return tUPLUS;
22146 }
22147 pushback(p, c);
22148 return '+';
22149 }
22150 if (c == '=') {
22151 set_yylval_id('+');
22152 SET_LEX_STATE(EXPR_BEG);
22153 return tOP_ASGN;
22154 }
22155 if (IS_BEG() || (IS_SPCARG(c) && arg_ambiguous(p, '+'))) {
22156 SET_LEX_STATE(EXPR_BEG);
22157 pushback(p, c);
22158 if (c != -1 && ISDIGIT(c)) {
22159 return parse_numeric(p, '+');
22160 }
22161 return tUPLUS;
22162 }
22163 SET_LEX_STATE(EXPR_BEG);
22164 pushback(p, c);
22165 return warn_balanced('+', "+", "unary operator");
22166
22167 case '-':
22168 c = nextc(p);
22169 if (IS_AFTER_OPERATOR()) {
22170 SET_LEX_STATE(EXPR_ARG);
22171 if (c == '@') {
22172 return tUMINUS;
22173 }
22174 pushback(p, c);
22175 return '-';
22176 }
22177 if (c == '=') {
22178 set_yylval_id('-');
22179 SET_LEX_STATE(EXPR_BEG);
22180 return tOP_ASGN;
22181 }
22182 if (c == '>') {
22183 SET_LEX_STATE(EXPR_ENDFN);
22184 yylval.num = p->lex.lpar_beg;
22185 p->lex.lpar_beg = p->lex.paren_nest;
22186 return tLAMBDA;
22187 }
22188 if (IS_BEG() || (IS_SPCARG(c) && arg_ambiguous(p, '-'))) {
22189 SET_LEX_STATE(EXPR_BEG);
22190 pushback(p, c);
22191 if (c != -1 && ISDIGIT(c)) {
22192 return tUMINUS_NUM;
22193 }
22194 return tUMINUS;
22195 }
22196 SET_LEX_STATE(EXPR_BEG);
22197 pushback(p, c);
22198 return warn_balanced('-', "-", "unary operator");
22199
22200 case '.': {
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);
22207 return tBDOT3;
22208 }
22209 if (p->lex.paren_nest == 0 && looking_at_eol_p(p)) {
22210 rb_warn0("... at EOL, should be parenthesized?");
22211 }
22212 return is_beg ? tBDOT3 : tDOT3;
22213 }
22214 pushback(p, c);
22215 return is_beg ? tBDOT2 : tDOT2;
22216 }
22217 pushback(p, c);
22218 if (c != -1 && ISDIGIT(c)) {
22219 char prev = p->lex.pcur-1 > p->lex.pbeg ? *(p->lex.pcur-2) : 0;
22220 parse_numeric(p, '.');
22221 if (ISDIGIT(prev)) {
22222 yyerror0("unexpected fraction part after numeric literal");
22223 }
22224 else {
22225 yyerror0("no .<digit> floating literal anymore; put 0 before dot");
22226 }
22227 SET_LEX_STATE(EXPR_END);
22228 p->lex.ptok = p->lex.pcur;
22229 goto retry;
22230 }
22231 set_yylval_id('.');
22232 SET_LEX_STATE(EXPR_DOT);
22233 return '.';
22234 }
22235
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);
22239
22240 case ')':
22241 COND_POP();
22242 CMDARG_POP();
22243 SET_LEX_STATE(EXPR_ENDFN);
22244 p->lex.paren_nest--;
22245 return c;
22246
22247 case ']':
22248 COND_POP();
22249 CMDARG_POP();
22250 SET_LEX_STATE(EXPR_END);
22251 p->lex.paren_nest--;
22252 return c;
22253
22254 case '}':
22255 /* tSTRING_DEND does COND_POP and CMDARG_POP in the yacc's rule */
22256 if (!p->lex.brace_nest--) return tSTRING_DEND;
22257 COND_POP();
22258 CMDARG_POP();
22259 SET_LEX_STATE(EXPR_END);
22260 p->lex.paren_nest--;
22261 return c;
22262
22263 case ':':
22264 c = nextc(p);
22265 if (c == ':') {
22266 if (IS_BEG() || IS_lex_state(EXPR_CLASS) || IS_SPCARG(-1)) {
22267 SET_LEX_STATE(EXPR_BEG);
22268 return tCOLON3;
22269 }
22270 set_yylval_id(idCOLON2);
22271 SET_LEX_STATE(EXPR_DOT);
22272 return tCOLON2;
22273 }
22274 if (IS_END() || ISSPACE(c) || c == '#') {
22275 pushback(p, c);
22276 c = warn_balanced(':', ":", "symbol literal");
22277 SET_LEX_STATE(EXPR_BEG);
22278 return c;
22279 }
22280 switch (c) {
22281 case '\'':
22282 p->lex.strterm = NEW_STRTERM(str_ssym, c, 0);
22283 break;
22284 case '"':
22285 p->lex.strterm = NEW_STRTERM(str_dsym, c, 0);
22286 break;
22287 default:
22288 pushback(p, c);
22289 break;
22290 }
22291 SET_LEX_STATE(EXPR_FNAME);
22292 return tSYMBEG;
22293
22294 case '/':
22295 if (IS_BEG()) {
22296 p->lex.strterm = NEW_STRTERM(str_regexp, '/', 0);
22297 return tREGEXP_BEG;
22298 }
22299 if ((c = nextc(p)) == '=') {
22300 set_yylval_id('/');
22301 SET_LEX_STATE(EXPR_BEG);
22302 return tOP_ASGN;
22303 }
22304 pushback(p, c);
22305 if (IS_SPCARG(c)) {
22306 arg_ambiguous(p, '/');
22307 p->lex.strterm = NEW_STRTERM(str_regexp, '/', 0);
22308 return tREGEXP_BEG;
22309 }
22310 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22311 return warn_balanced('/', "/", "regexp literal");
22312
22313 case '^':
22314 if ((c = nextc(p)) == '=') {
22315 set_yylval_id('^');
22316 SET_LEX_STATE(EXPR_BEG);
22317 return tOP_ASGN;
22318 }
22319 SET_LEX_STATE(IS_AFTER_OPERATOR() ? EXPR_ARG : EXPR_BEG);
22320 pushback(p, c);
22321 return '^';
22322
22323 case ';':
22324 SET_LEX_STATE(EXPR_BEG);
22325 p->command_start = TRUE;
22326 return ';';
22327
22328 case ',':
22329 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22330 return ',';
22331
22332 case '~':
22333 if (IS_AFTER_OPERATOR()) {
22334 if ((c = nextc(p)) != '@') {
22335 pushback(p, c);
22336 }
22337 SET_LEX_STATE(EXPR_ARG);
22338 }
22339 else {
22340 SET_LEX_STATE(EXPR_BEG);
22341 }
22342 return '~';
22343
22344 case '(':
22345 if (IS_BEG()) {
22346 c = tLPAREN;
22347 }
22348 else if (!space_seen) {
22349 /* foo( ... ) => method call, no ambiguity */
22350 }
22351 else if (IS_ARG() || IS_lex_state_all(EXPR_END|EXPR_LABEL)) {
22352 c = tLPAREN_ARG;
22353 }
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");
22357 }
22358 p->lex.paren_nest++;
22359 COND_PUSH(0);
22360 CMDARG_PUSH(0);
22361 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22362 return c;
22363
22364 case '[':
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)) == '=') {
22371 return tASET;
22372 }
22373 pushback(p, c);
22374 return tAREF;
22375 }
22376 pushback(p, c);
22377 SET_LEX_STATE(EXPR_ARG|EXPR_LABEL);
22378 return '[';
22379 }
22380 else if (IS_BEG()) {
22381 c = tLBRACK;
22382 }
22383 else if (IS_ARG() && (space_seen || IS_lex_state(EXPR_LABELED))) {
22384 c = tLBRACK;
22385 }
22386 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22387 COND_PUSH(0);
22388 CMDARG_PUSH(0);
22389 return c;
22390
22391 case '{':
22392 ++p->lex.brace_nest;
22393 if (lambda_beginning_p())
22394 c = tLAMBEG;
22395 else if (IS_lex_state(EXPR_LABELED))
22396 c = tLBRACE; /* hash */
22397 else if (IS_lex_state(EXPR_ARG_ANY | EXPR_END | EXPR_ENDFN))
22398 c = '{'; /* block (primary) */
22399 else if (IS_lex_state(EXPR_ENDARG))
22400 c = tLBRACE_ARG; /* block (expr) */
22401 else
22402 c = tLBRACE; /* hash */
22403 if (c != tLBRACE) {
22404 p->command_start = TRUE;
22405 SET_LEX_STATE(EXPR_BEG);
22406 }
22407 else {
22408 SET_LEX_STATE(EXPR_BEG|EXPR_LABEL);
22409 }
22410 ++p->lex.paren_nest; /* after lambda_beginning_p() */
22411 COND_PUSH(0);
22412 CMDARG_PUSH(0);
22413 return c;
22414
22415 case '\\':
22416 c = nextc(p);
22417 if (c == '\n') {
22418 space_seen = 1;
22419 dispatch_scan_event(p, tSP);
22420 goto retry; /* skip \\n */
22421 }
22422 if (c == ' ') return tSP;
22423 if (ISSPACE(c)) return c;
22424 pushback(p, c);
22425 return '\\';
22426
22427 case '%':
22428 return parse_percent(p, space_seen, last_state);
22429
22430 case '$':
22431 return parse_gvar(p, last_state);
22432
22433 case '@':
22434 return parse_atmark(p, last_state);
22435
22436 case '_':
22437 if (was_bol(p) && whole_match_p(p, "__END__", 7, 0)) {
22438 p->ruby__end__seen = 1;
22439 p->eofp = 1;
22440#ifdef RIPPER
22441 lex_goto_eol(p);
22442 dispatch_scan_event(p, k__END__);
22443#endif
22444 return END_OF_INPUT;
22445 }
22446 newtok(p);
22447 break;
22448
22449 default:
22450 if (!parser_is_identchar(p)) {
22451 compile_error(p, "Invalid char '\\x%02X' in expression", c);
22452 token_flush(p);
22453 goto retry;
22454 }
22455
22456 newtok(p);
22457 break;
22458 }
22459
22460 return parse_ident(p, c, cmd_state);
22461}
22462
22463static enum yytokentype
22464yylex(YYSTYPE *lval, YYLTYPE *yylloc, struct parser_params *p)
22465{
22466 enum yytokentype t;
22467
22468 p->lval = lval;
22469 lval->node = 0;
22470 p->yylloc = yylloc;
22471
22472 t = parser_yylex(p);
22473
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);
22478
22479 return t;
22480}
22481
22482#define LVAR_USED ((ID)1 << (sizeof(ID) * CHAR_BIT - 1))
22483
22484static NODE*
22485node_new_internal(struct parser_params *p, enum node_type type, size_t size, size_t alignment)
22486{
22487 NODE *n = rb_ast_newnode(p->ast, type, size, alignment);
22488
22489 rb_node_init(n, type);
22490 return n;
22491}
22492
22493static NODE *
22494nd_set_loc(NODE *nd, const YYLTYPE *loc)
22495{
22496 nd->nd_loc = *loc;
22497 nd_set_line(nd, loc->beg_pos.lineno);
22498 return nd;
22499}
22500
22501static NODE*
22502node_newnode(struct parser_params *p, enum node_type type, size_t size, size_t alignment, const rb_code_location_t *loc)
22503{
22504 NODE *n = node_new_internal(p, type, size, alignment);
22505
22506 nd_set_loc(n, loc);
22507 nd_set_node_id(n, parser_get_node_id(p));
22508 return n;
22509}
22510
22511#define NODE_NEWNODE(node_type, type, loc) (type *)(node_newnode(p, node_type, sizeof(type), RUBY_ALIGNOF(type), loc))
22512
22513static rb_node_scope_t *
22514rb_node_scope_new(struct parser_params *p, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc)
22515{
22516 rb_ast_id_table_t *nd_tbl;
22517 nd_tbl = local_tbl(p);
22518 rb_node_scope_t *n = NODE_NEWNODE(NODE_SCOPE, rb_node_scope_t, loc);
22519 n->nd_tbl = nd_tbl;
22520 n->nd_body = nd_body;
22521 n->nd_args = nd_args;
22522
22523 return n;
22524}
22525
22526static rb_node_scope_t *
22527rb_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)
22528{
22529 rb_node_scope_t *n = NODE_NEWNODE(NODE_SCOPE, rb_node_scope_t, loc);
22530 n->nd_tbl = nd_tbl;
22531 n->nd_body = nd_body;
22532 n->nd_args = nd_args;
22533
22534 return n;
22535}
22536
22537static rb_node_defn_t *
22538rb_node_defn_new(struct parser_params *p, ID nd_mid, NODE *nd_defn, const YYLTYPE *loc)
22539{
22540 rb_node_defn_t *n = NODE_NEWNODE(NODE_DEFN, rb_node_defn_t, loc);
22541 n->nd_mid = nd_mid;
22542 n->nd_defn = nd_defn;
22543
22544 return n;
22545}
22546
22547static rb_node_defs_t *
22548rb_node_defs_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_defn, const YYLTYPE *loc)
22549{
22550 rb_node_defs_t *n = NODE_NEWNODE(NODE_DEFS, rb_node_defs_t, loc);
22551 n->nd_recv = nd_recv;
22552 n->nd_mid = nd_mid;
22553 n->nd_defn = nd_defn;
22554
22555 return n;
22556}
22557
22558static rb_node_block_t *
22559rb_node_block_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
22560{
22561 rb_node_block_t *n = NODE_NEWNODE(NODE_BLOCK, rb_node_block_t, loc);
22562 n->nd_head = nd_head;
22563 n->nd_end = (NODE *)n;
22564 n->nd_next = 0;
22565
22566 return n;
22567}
22568
22569static rb_node_for_t *
22570rb_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)
22571{
22572 rb_node_for_t *n = NODE_NEWNODE(NODE_FOR, rb_node_for_t, loc);
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;
22579
22580 return n;
22581}
22582
22583static rb_node_for_masgn_t *
22584rb_node_for_masgn_new(struct parser_params *p, NODE *nd_var, const YYLTYPE *loc)
22585{
22586 rb_node_for_masgn_t *n = NODE_NEWNODE(NODE_FOR_MASGN, rb_node_for_masgn_t, loc);
22587 n->nd_var = nd_var;
22588
22589 return n;
22590}
22591
22592static rb_node_retry_t *
22593rb_node_retry_new(struct parser_params *p, const YYLTYPE *loc)
22594{
22595 rb_node_retry_t *n = NODE_NEWNODE(NODE_RETRY, rb_node_retry_t, loc);
22596
22597 return n;
22598}
22599
22600static rb_node_begin_t *
22601rb_node_begin_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
22602{
22603 rb_node_begin_t *n = NODE_NEWNODE(NODE_BEGIN, rb_node_begin_t, loc);
22604 n->nd_body = nd_body;
22605
22606 return n;
22607}
22608
22609static rb_node_rescue_t *
22610rb_node_rescue_new(struct parser_params *p, NODE *nd_head, NODE *nd_resq, NODE *nd_else, const YYLTYPE *loc)
22611{
22612 rb_node_rescue_t *n = NODE_NEWNODE(NODE_RESCUE, rb_node_rescue_t, loc);
22613 n->nd_head = nd_head;
22614 n->nd_resq = nd_resq;
22615 n->nd_else = nd_else;
22616
22617 return n;
22618}
22619
22620static rb_node_resbody_t *
22621rb_node_resbody_new(struct parser_params *p, NODE *nd_args, NODE *nd_exc_var, NODE *nd_body, NODE *nd_next, const YYLTYPE *loc)
22622{
22623 rb_node_resbody_t *n = NODE_NEWNODE(NODE_RESBODY, rb_node_resbody_t, loc);
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;
22628
22629 return n;
22630}
22631
22632static rb_node_ensure_t *
22633rb_node_ensure_new(struct parser_params *p, NODE *nd_head, NODE *nd_ensr, const YYLTYPE *loc)
22634{
22635 rb_node_ensure_t *n = NODE_NEWNODE(NODE_ENSURE, rb_node_ensure_t, loc);
22636 n->nd_head = nd_head;
22637 n->nd_ensr = nd_ensr;
22638
22639 return n;
22640}
22641
22642static rb_node_and_t *
22643rb_node_and_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *operator_loc)
22644{
22645 rb_node_and_t *n = NODE_NEWNODE(NODE_AND, rb_node_and_t, loc);
22646 n->nd_1st = nd_1st;
22647 n->nd_2nd = nd_2nd;
22648 n->operator_loc = *operator_loc;
22649
22650 return n;
22651}
22652
22653static rb_node_or_t *
22654rb_node_or_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *operator_loc)
22655{
22656 rb_node_or_t *n = NODE_NEWNODE(NODE_OR, rb_node_or_t, loc);
22657 n->nd_1st = nd_1st;
22658 n->nd_2nd = nd_2nd;
22659 n->operator_loc = *operator_loc;
22660
22661 return n;
22662}
22663
22664static rb_node_return_t *
22665rb_node_return_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
22666{
22667 rb_node_return_t *n = NODE_NEWNODE(NODE_RETURN, rb_node_return_t, loc);
22668 n->nd_stts = nd_stts;
22669 n->keyword_loc = *keyword_loc;
22670 return n;
22671}
22672
22673static rb_node_yield_t *
22674rb_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)
22675{
22676 if (nd_head) no_blockarg(p, nd_head);
22677
22678 rb_node_yield_t *n = NODE_NEWNODE(NODE_YIELD, rb_node_yield_t, loc);
22679 n->nd_head = nd_head;
22680 n->keyword_loc = *keyword_loc;
22681 n->lparen_loc = *lparen_loc;
22682 n->rparen_loc = *rparen_loc;
22683
22684 return n;
22685}
22686
22687static rb_node_if_t *
22688rb_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)
22689{
22690 rb_node_if_t *n = NODE_NEWNODE(NODE_IF, rb_node_if_t, 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;
22697
22698 return n;
22699}
22700
22701static rb_node_unless_t *
22702rb_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)
22703{
22704 rb_node_unless_t *n = NODE_NEWNODE(NODE_UNLESS, rb_node_unless_t, 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;
22711
22712 return n;
22713}
22714
22715static rb_node_class_t *
22716rb_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)
22717{
22718 /* Keep the order of node creation */
22719 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22720 rb_node_class_t *n = NODE_NEWNODE(NODE_CLASS, rb_node_class_t, 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;
22727
22728 return n;
22729}
22730
22731static rb_node_sclass_t *
22732rb_node_sclass_new(struct parser_params *p, NODE *nd_recv, NODE *nd_body, const YYLTYPE *loc)
22733{
22734 /* Keep the order of node creation */
22735 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22736 rb_node_sclass_t *n = NODE_NEWNODE(NODE_SCLASS, rb_node_sclass_t, loc);
22737 n->nd_recv = nd_recv;
22738 n->nd_body = scope;
22739
22740 return n;
22741}
22742
22743static rb_node_module_t *
22744rb_node_module_new(struct parser_params *p, NODE *nd_cpath, NODE *nd_body, const YYLTYPE *loc)
22745{
22746 /* Keep the order of node creation */
22747 NODE *scope = NEW_SCOPE(0, nd_body, loc);
22748 rb_node_module_t *n = NODE_NEWNODE(NODE_MODULE, rb_node_module_t, loc);
22749 n->nd_cpath = nd_cpath;
22750 n->nd_body = scope;
22751
22752 return n;
22753}
22754
22755static rb_node_iter_t *
22756rb_node_iter_new(struct parser_params *p, rb_node_args_t *nd_args, NODE *nd_body, const YYLTYPE *loc)
22757{
22758 /* Keep the order of node creation */
22759 NODE *scope = NEW_SCOPE(nd_args, nd_body, loc);
22760 rb_node_iter_t *n = NODE_NEWNODE(NODE_ITER, rb_node_iter_t, loc);
22761 n->nd_body = scope;
22762 n->nd_iter = 0;
22763
22764 return n;
22765}
22766
22767static rb_node_lambda_t *
22768rb_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)
22769{
22770 /* Keep the order of node creation */
22771 NODE *scope = NEW_SCOPE(nd_args, nd_body, loc);
22772 YYLTYPE lambda_loc = code_loc_gen(operator_loc, closing_loc);
22773 rb_node_lambda_t *n = NODE_NEWNODE(NODE_LAMBDA, rb_node_lambda_t, &lambda_loc);
22774 n->nd_body = scope;
22775 n->operator_loc = *operator_loc;
22776 n->opening_loc = *opening_loc;
22777 n->closing_loc = *closing_loc;
22778
22779 return n;
22780}
22781
22782static rb_node_case_t *
22783rb_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)
22784{
22785 rb_node_case_t *n = NODE_NEWNODE(NODE_CASE, rb_node_case_t, 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;
22790
22791 return n;
22792}
22793
22794static rb_node_case2_t *
22795rb_node_case2_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *case_keyword_loc, const YYLTYPE *end_keyword_loc)
22796{
22797 rb_node_case2_t *n = NODE_NEWNODE(NODE_CASE2, rb_node_case2_t, loc);
22798 n->nd_head = 0;
22799 n->nd_body = nd_body;
22800 n->case_keyword_loc = *case_keyword_loc;
22801 n->end_keyword_loc = *end_keyword_loc;
22802
22803 return n;
22804}
22805
22806static rb_node_case3_t *
22807rb_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)
22808{
22809 rb_node_case3_t *n = NODE_NEWNODE(NODE_CASE3, rb_node_case3_t, 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;
22814
22815 return n;
22816}
22817
22818static rb_node_when_t *
22819rb_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)
22820{
22821 rb_node_when_t *n = NODE_NEWNODE(NODE_WHEN, rb_node_when_t, 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;
22827
22828 return n;
22829}
22830
22831static rb_node_in_t *
22832rb_node_in_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, NODE *nd_next, const YYLTYPE *loc)
22833{
22834 rb_node_in_t *n = NODE_NEWNODE(NODE_IN, rb_node_in_t, loc);
22835 n->nd_head = nd_head;
22836 n->nd_body = nd_body;
22837 n->nd_next = nd_next;
22838
22839 return n;
22840}
22841
22842static rb_node_while_t *
22843rb_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)
22844{
22845 rb_node_while_t *n = NODE_NEWNODE(NODE_WHILE, rb_node_while_t, loc);
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;
22851
22852 return n;
22853}
22854
22855static rb_node_until_t *
22856rb_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)
22857{
22858 rb_node_until_t *n = NODE_NEWNODE(NODE_UNTIL, rb_node_until_t, 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;
22864
22865 return n;
22866}
22867
22868static rb_node_colon2_t *
22869rb_node_colon2_new(struct parser_params *p, NODE *nd_head, ID nd_mid, const YYLTYPE *loc)
22870{
22871 rb_node_colon2_t *n = NODE_NEWNODE(NODE_COLON2, rb_node_colon2_t, loc);
22872 n->nd_head = nd_head;
22873 n->nd_mid = nd_mid;
22874
22875 return n;
22876}
22877
22878static rb_node_colon3_t *
22879rb_node_colon3_new(struct parser_params *p, ID nd_mid, const YYLTYPE *loc)
22880{
22881 rb_node_colon3_t *n = NODE_NEWNODE(NODE_COLON3, rb_node_colon3_t, loc);
22882 n->nd_mid = nd_mid;
22883
22884 return n;
22885}
22886
22887static rb_node_dot2_t *
22888rb_node_dot2_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLTYPE *loc, const YYLTYPE *operator_loc)
22889{
22890 rb_node_dot2_t *n = NODE_NEWNODE(NODE_DOT2, rb_node_dot2_t, loc);
22891 n->nd_beg = nd_beg;
22892 n->nd_end = nd_end;
22893 n->operator_loc = *operator_loc;
22894
22895 return n;
22896}
22897
22898static rb_node_dot3_t *
22899rb_node_dot3_new(struct parser_params *p, NODE *nd_beg, NODE *nd_end, const YYLTYPE *loc, const YYLTYPE *operator_loc)
22900{
22901 rb_node_dot3_t *n = NODE_NEWNODE(NODE_DOT3, rb_node_dot3_t, loc);
22902 n->nd_beg = nd_beg;
22903 n->nd_end = nd_end;
22904 n->operator_loc = *operator_loc;
22905
22906 return n;
22907}
22908
22909static rb_node_self_t *
22910rb_node_self_new(struct parser_params *p, const YYLTYPE *loc)
22911{
22912 rb_node_self_t *n = NODE_NEWNODE(NODE_SELF, rb_node_self_t, loc);
22913 n->nd_state = 1;
22914
22915 return n;
22916}
22917
22918static rb_node_nil_t *
22919rb_node_nil_new(struct parser_params *p, const YYLTYPE *loc)
22920{
22921 rb_node_nil_t *n = NODE_NEWNODE(NODE_NIL, rb_node_nil_t, loc);
22922
22923 return n;
22924}
22925
22926static rb_node_true_t *
22927rb_node_true_new(struct parser_params *p, const YYLTYPE *loc)
22928{
22929 rb_node_true_t *n = NODE_NEWNODE(NODE_TRUE, rb_node_true_t, loc);
22930
22931 return n;
22932}
22933
22934static rb_node_false_t *
22935rb_node_false_new(struct parser_params *p, const YYLTYPE *loc)
22936{
22937 rb_node_false_t *n = NODE_NEWNODE(NODE_FALSE, rb_node_false_t, loc);
22938
22939 return n;
22940}
22941
22942static rb_node_super_t *
22943rb_node_super_new(struct parser_params *p, NODE *nd_args, const YYLTYPE *loc,
22944 const YYLTYPE *keyword_loc, const YYLTYPE *lparen_loc, const YYLTYPE *rparen_loc)
22945{
22946 rb_node_super_t *n = NODE_NEWNODE(NODE_SUPER, rb_node_super_t, 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;
22951
22952 return n;
22953}
22954
22955static rb_node_zsuper_t *
22956rb_node_zsuper_new(struct parser_params *p, const YYLTYPE *loc)
22957{
22958 rb_node_zsuper_t *n = NODE_NEWNODE(NODE_ZSUPER, rb_node_zsuper_t, loc);
22959
22960 return n;
22961}
22962
22963static rb_node_match2_t *
22964rb_node_match2_new(struct parser_params *p, NODE *nd_recv, NODE *nd_value, const YYLTYPE *loc)
22965{
22966 rb_node_match2_t *n = NODE_NEWNODE(NODE_MATCH2, rb_node_match2_t, loc);
22967 n->nd_recv = nd_recv;
22968 n->nd_value = nd_value;
22969 n->nd_args = 0;
22970
22971 return n;
22972}
22973
22974static rb_node_match3_t *
22975rb_node_match3_new(struct parser_params *p, NODE *nd_recv, NODE *nd_value, const YYLTYPE *loc)
22976{
22977 rb_node_match3_t *n = NODE_NEWNODE(NODE_MATCH3, rb_node_match3_t, loc);
22978 n->nd_recv = nd_recv;
22979 n->nd_value = nd_value;
22980
22981 return n;
22982}
22983
22984/* TODO: Use union for NODE_LIST2 */
22985static rb_node_list_t *
22986rb_node_list_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
22987{
22988 rb_node_list_t *n = NODE_NEWNODE(NODE_LIST, rb_node_list_t, loc);
22989 n->nd_head = nd_head;
22990 n->as.nd_alen = 1;
22991 n->nd_next = 0;
22992
22993 return n;
22994}
22995
22996static rb_node_list_t *
22997rb_node_list_new2(struct parser_params *p, NODE *nd_head, long nd_alen, NODE *nd_next, const YYLTYPE *loc)
22998{
22999 rb_node_list_t *n = NODE_NEWNODE(NODE_LIST, rb_node_list_t, loc);
23000 n->nd_head = nd_head;
23001 n->as.nd_alen = nd_alen;
23002 n->nd_next = nd_next;
23003
23004 return n;
23005}
23006
23007static rb_node_zlist_t *
23008rb_node_zlist_new(struct parser_params *p, const YYLTYPE *loc)
23009{
23010 rb_node_zlist_t *n = NODE_NEWNODE(NODE_ZLIST, rb_node_zlist_t, loc);
23011
23012 return n;
23013}
23014
23015static rb_node_hash_t *
23016rb_node_hash_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
23017{
23018 rb_node_hash_t *n = NODE_NEWNODE(NODE_HASH, rb_node_hash_t, loc);
23019 n->nd_head = nd_head;
23020 n->nd_brace = 0;
23021
23022 return n;
23023}
23024
23025static rb_node_masgn_t *
23026rb_node_masgn_new(struct parser_params *p, NODE *nd_head, NODE *nd_args, const YYLTYPE *loc)
23027{
23028 rb_node_masgn_t *n = NODE_NEWNODE(NODE_MASGN, rb_node_masgn_t, loc);
23029 n->nd_head = nd_head;
23030 n->nd_value = 0;
23031 n->nd_args = nd_args;
23032
23033 return n;
23034}
23035
23036static rb_node_gasgn_t *
23037rb_node_gasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc)
23038{
23039 rb_node_gasgn_t *n = NODE_NEWNODE(NODE_GASGN, rb_node_gasgn_t, loc);
23040 n->nd_vid = nd_vid;
23041 n->nd_value = nd_value;
23042
23043 return n;
23044}
23045
23046static rb_node_lasgn_t *
23047rb_node_lasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc)
23048{
23049 rb_node_lasgn_t *n = NODE_NEWNODE(NODE_LASGN, rb_node_lasgn_t, loc);
23050 n->nd_vid = nd_vid;
23051 n->nd_value = nd_value;
23052
23053 return n;
23054}
23055
23056static rb_node_dasgn_t *
23057rb_node_dasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc)
23058{
23059 rb_node_dasgn_t *n = NODE_NEWNODE(NODE_DASGN, rb_node_dasgn_t, loc);
23060 n->nd_vid = nd_vid;
23061 n->nd_value = nd_value;
23062
23063 return n;
23064}
23065
23066static rb_node_iasgn_t *
23067rb_node_iasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc)
23068{
23069 rb_node_iasgn_t *n = NODE_NEWNODE(NODE_IASGN, rb_node_iasgn_t, loc);
23070 n->nd_vid = nd_vid;
23071 n->nd_value = nd_value;
23072
23073 return n;
23074}
23075
23076static rb_node_cvasgn_t *
23077rb_node_cvasgn_new(struct parser_params *p, ID nd_vid, NODE *nd_value, const YYLTYPE *loc)
23078{
23079 rb_node_cvasgn_t *n = NODE_NEWNODE(NODE_CVASGN, rb_node_cvasgn_t, loc);
23080 n->nd_vid = nd_vid;
23081 n->nd_value = nd_value;
23082
23083 return n;
23084}
23085
23086static rb_node_op_asgn1_t *
23087rb_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)
23088{
23089 rb_node_op_asgn1_t *n = NODE_NEWNODE(NODE_OP_ASGN1, rb_node_op_asgn1_t, loc);
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;
23098
23099 return n;
23100}
23101
23102static rb_node_op_asgn2_t *
23103rb_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)
23104{
23105 rb_node_op_asgn2_t *n = NODE_NEWNODE(NODE_OP_ASGN2, rb_node_op_asgn2_t, 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;
23114
23115 return n;
23116}
23117
23118static rb_node_op_asgn_or_t *
23119rb_node_op_asgn_or_new(struct parser_params *p, NODE *nd_head, NODE *nd_value, const YYLTYPE *loc)
23120{
23121 rb_node_op_asgn_or_t *n = NODE_NEWNODE(NODE_OP_ASGN_OR, rb_node_op_asgn_or_t, loc);
23122 n->nd_head = nd_head;
23123 n->nd_value = nd_value;
23124
23125 return n;
23126}
23127
23128static rb_node_op_asgn_and_t *
23129rb_node_op_asgn_and_new(struct parser_params *p, NODE *nd_head, NODE *nd_value, const YYLTYPE *loc)
23130{
23131 rb_node_op_asgn_and_t *n = NODE_NEWNODE(NODE_OP_ASGN_AND, rb_node_op_asgn_and_t, loc);
23132 n->nd_head = nd_head;
23133 n->nd_value = nd_value;
23134
23135 return n;
23136}
23137
23138static rb_node_gvar_t *
23139rb_node_gvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23140{
23141 rb_node_gvar_t *n = NODE_NEWNODE(NODE_GVAR, rb_node_gvar_t, loc);
23142 n->nd_vid = nd_vid;
23143
23144 return n;
23145}
23146
23147static rb_node_lvar_t *
23148rb_node_lvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23149{
23150 rb_node_lvar_t *n = NODE_NEWNODE(NODE_LVAR, rb_node_lvar_t, loc);
23151 n->nd_vid = nd_vid;
23152
23153 return n;
23154}
23155
23156static rb_node_dvar_t *
23157rb_node_dvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23158{
23159 rb_node_dvar_t *n = NODE_NEWNODE(NODE_DVAR, rb_node_dvar_t, loc);
23160 n->nd_vid = nd_vid;
23161
23162 return n;
23163}
23164
23165static rb_node_ivar_t *
23166rb_node_ivar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23167{
23168 rb_node_ivar_t *n = NODE_NEWNODE(NODE_IVAR, rb_node_ivar_t, loc);
23169 n->nd_vid = nd_vid;
23170
23171 return n;
23172}
23173
23174static rb_node_const_t *
23175rb_node_const_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23176{
23177 rb_node_const_t *n = NODE_NEWNODE(NODE_CONST, rb_node_const_t, loc);
23178 n->nd_vid = nd_vid;
23179
23180 return n;
23181}
23182
23183static rb_node_cvar_t *
23184rb_node_cvar_new(struct parser_params *p, ID nd_vid, const YYLTYPE *loc)
23185{
23186 rb_node_cvar_t *n = NODE_NEWNODE(NODE_CVAR, rb_node_cvar_t, loc);
23187 n->nd_vid = nd_vid;
23188
23189 return n;
23190}
23191
23192static rb_node_nth_ref_t *
23193rb_node_nth_ref_new(struct parser_params *p, long nd_nth, const YYLTYPE *loc)
23194{
23195 rb_node_nth_ref_t *n = NODE_NEWNODE(NODE_NTH_REF, rb_node_nth_ref_t, loc);
23196 n->nd_nth = nd_nth;
23197
23198 return n;
23199}
23200
23201static rb_node_back_ref_t *
23202rb_node_back_ref_new(struct parser_params *p, long nd_nth, const YYLTYPE *loc)
23203{
23204 rb_node_back_ref_t *n = NODE_NEWNODE(NODE_BACK_REF, rb_node_back_ref_t, loc);
23205 n->nd_nth = nd_nth;
23206
23207 return n;
23208}
23209
23210static rb_node_integer_t *
23211rb_node_integer_new(struct parser_params *p, char* val, int base, const YYLTYPE *loc)
23212{
23213 rb_node_integer_t *n = NODE_NEWNODE(NODE_INTEGER, rb_node_integer_t, loc);
23214 n->val = val;
23215 n->minus = FALSE;
23216 n->base = base;
23217
23218 return n;
23219}
23220
23221static rb_node_float_t *
23222rb_node_float_new(struct parser_params *p, char* val, const YYLTYPE *loc)
23223{
23224 rb_node_float_t *n = NODE_NEWNODE(NODE_FLOAT, rb_node_float_t, loc);
23225 n->val = val;
23226 n->minus = FALSE;
23227
23228 return n;
23229}
23230
23231static rb_node_rational_t *
23232rb_node_rational_new(struct parser_params *p, char* val, int base, int seen_point, const YYLTYPE *loc)
23233{
23234 rb_node_rational_t *n = NODE_NEWNODE(NODE_RATIONAL, rb_node_rational_t, loc);
23235 n->val = val;
23236 n->minus = FALSE;
23237 n->base = base;
23238 n->seen_point = seen_point;
23239
23240 return n;
23241}
23242
23243static rb_node_imaginary_t *
23244rb_node_imaginary_new(struct parser_params *p, char* val, int base, int seen_point, enum rb_numeric_type numeric_type, const YYLTYPE *loc)
23245{
23246 rb_node_imaginary_t *n = NODE_NEWNODE(NODE_IMAGINARY, rb_node_imaginary_t, loc);
23247 n->val = val;
23248 n->minus = FALSE;
23249 n->base = base;
23250 n->seen_point = seen_point;
23251 n->type = numeric_type;
23252
23253 return n;
23254}
23255
23256static rb_node_str_t *
23257rb_node_str_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc)
23258{
23259 rb_node_str_t *n = NODE_NEWNODE(NODE_STR, rb_node_str_t, loc);
23260 n->string = string;
23261
23262 return n;
23263}
23264
23265/* TODO; Use union for NODE_DSTR2 */
23266static rb_node_dstr_t *
23267rb_node_dstr_new0(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc)
23268{
23269 rb_node_dstr_t *n = NODE_NEWNODE(NODE_DSTR, rb_node_dstr_t, loc);
23270 n->string = string;
23271 n->as.nd_alen = nd_alen;
23272 n->nd_next = (rb_node_list_t *)nd_next;
23273
23274 return n;
23275}
23276
23277static rb_node_dstr_t *
23278rb_node_dstr_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc)
23279{
23280 return rb_node_dstr_new0(p, string, 1, 0, loc);
23281}
23282
23283static rb_node_xstr_t *
23284rb_node_xstr_new(struct parser_params *p, rb_parser_string_t *string, const YYLTYPE *loc)
23285{
23286 rb_node_xstr_t *n = NODE_NEWNODE(NODE_XSTR, rb_node_xstr_t, loc);
23287 n->string = string;
23288
23289 return n;
23290}
23291
23292static rb_node_dxstr_t *
23293rb_node_dxstr_new(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc)
23294{
23295 rb_node_dxstr_t *n = NODE_NEWNODE(NODE_DXSTR, rb_node_dxstr_t, loc);
23296 n->string = string;
23297 n->as.nd_alen = nd_alen;
23298 n->nd_next = (rb_node_list_t *)nd_next;
23299
23300 return n;
23301}
23302
23303static rb_node_sym_t *
23304rb_node_sym_new(struct parser_params *p, VALUE str, const YYLTYPE *loc)
23305{
23306 rb_node_sym_t *n = NODE_NEWNODE(NODE_SYM, rb_node_sym_t, loc);
23307 n->string = rb_str_to_parser_string(p, str);
23308
23309 return n;
23310}
23311
23312static rb_node_dsym_t *
23313rb_node_dsym_new(struct parser_params *p, rb_parser_string_t *string, long nd_alen, NODE *nd_next, const YYLTYPE *loc)
23314{
23315 rb_node_dsym_t *n = NODE_NEWNODE(NODE_DSYM, rb_node_dsym_t, loc);
23316 n->string = string;
23317 n->as.nd_alen = nd_alen;
23318 n->nd_next = (rb_node_list_t *)nd_next;
23319
23320 return n;
23321}
23322
23323static rb_node_evstr_t *
23324rb_node_evstr_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc)
23325{
23326 rb_node_evstr_t *n = NODE_NEWNODE(NODE_EVSTR, rb_node_evstr_t, loc);
23327 n->nd_body = nd_body;
23328 n->opening_loc = *opening_loc;
23329 n->closing_loc = *closing_loc;
23330
23331 return n;
23332}
23333
23334static rb_node_regx_t *
23335rb_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)
23336{
23337 rb_node_regx_t *n = NODE_NEWNODE(NODE_REGX, rb_node_regx_t, 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;
23343
23344 return n;
23345}
23346
23347static rb_node_call_t *
23348rb_node_call_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc)
23349{
23350 rb_node_call_t *n = NODE_NEWNODE(NODE_CALL, rb_node_call_t, loc);
23351 n->nd_recv = nd_recv;
23352 n->nd_mid = nd_mid;
23353 n->nd_args = nd_args;
23354
23355 return n;
23356}
23357
23358static rb_node_opcall_t *
23359rb_node_opcall_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc)
23360{
23361 rb_node_opcall_t *n = NODE_NEWNODE(NODE_OPCALL, rb_node_opcall_t, loc);
23362 n->nd_recv = nd_recv;
23363 n->nd_mid = nd_mid;
23364 n->nd_args = nd_args;
23365
23366 return n;
23367}
23368
23369static rb_node_fcall_t *
23370rb_node_fcall_new(struct parser_params *p, ID nd_mid, NODE *nd_args, const YYLTYPE *loc)
23371{
23372 rb_node_fcall_t *n = NODE_NEWNODE(NODE_FCALL, rb_node_fcall_t, loc);
23373 n->nd_mid = nd_mid;
23374 n->nd_args = nd_args;
23375
23376 return n;
23377}
23378
23379static rb_node_qcall_t *
23380rb_node_qcall_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc)
23381{
23382 rb_node_qcall_t *n = NODE_NEWNODE(NODE_QCALL, rb_node_qcall_t, loc);
23383 n->nd_recv = nd_recv;
23384 n->nd_mid = nd_mid;
23385 n->nd_args = nd_args;
23386
23387 return n;
23388}
23389
23390static rb_node_vcall_t *
23391rb_node_vcall_new(struct parser_params *p, ID nd_mid, const YYLTYPE *loc)
23392{
23393 rb_node_vcall_t *n = NODE_NEWNODE(NODE_VCALL, rb_node_vcall_t, loc);
23394 n->nd_mid = nd_mid;
23395
23396 return n;
23397}
23398
23399static rb_node_once_t *
23400rb_node_once_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
23401{
23402 rb_node_once_t *n = NODE_NEWNODE(NODE_ONCE, rb_node_once_t, loc);
23403 n->nd_body = nd_body;
23404
23405 return n;
23406}
23407
23408static rb_node_args_t *
23409rb_node_args_new(struct parser_params *p, const YYLTYPE *loc)
23410{
23411 rb_node_args_t *n = NODE_NEWNODE(NODE_ARGS, rb_node_args_t, loc);
23412 MEMZERO(&n->nd_ainfo, struct rb_args_info, 1);
23413
23414 return n;
23415}
23416
23417static rb_node_args_aux_t *
23418rb_node_args_aux_new(struct parser_params *p, ID nd_pid, int nd_plen, const YYLTYPE *loc)
23419{
23420 rb_node_args_aux_t *n = NODE_NEWNODE(NODE_ARGS_AUX, rb_node_args_aux_t, loc);
23421 n->nd_pid = nd_pid;
23422 n->nd_plen = nd_plen;
23423 n->nd_next = 0;
23424
23425 return n;
23426}
23427
23428static rb_node_opt_arg_t *
23429rb_node_opt_arg_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
23430{
23431 rb_node_opt_arg_t *n = NODE_NEWNODE(NODE_OPT_ARG, rb_node_opt_arg_t, loc);
23432 n->nd_body = nd_body;
23433 n->nd_next = 0;
23434
23435 return n;
23436}
23437
23438static rb_node_kw_arg_t *
23439rb_node_kw_arg_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc)
23440{
23441 rb_node_kw_arg_t *n = NODE_NEWNODE(NODE_KW_ARG, rb_node_kw_arg_t, loc);
23442 n->nd_body = nd_body;
23443 n->nd_next = 0;
23444
23445 return n;
23446}
23447
23448static rb_node_postarg_t *
23449rb_node_postarg_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc)
23450{
23451 rb_node_postarg_t *n = NODE_NEWNODE(NODE_POSTARG, rb_node_postarg_t, loc);
23452 n->nd_1st = nd_1st;
23453 n->nd_2nd = nd_2nd;
23454
23455 return n;
23456}
23457
23458static rb_node_argscat_t *
23459rb_node_argscat_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc)
23460{
23461 rb_node_argscat_t *n = NODE_NEWNODE(NODE_ARGSCAT, rb_node_argscat_t, loc);
23462 n->nd_head = nd_head;
23463 n->nd_body = nd_body;
23464
23465 return n;
23466}
23467
23468static rb_node_argspush_t *
23469rb_node_argspush_new(struct parser_params *p, NODE *nd_head, NODE *nd_body, const YYLTYPE *loc)
23470{
23471 rb_node_argspush_t *n = NODE_NEWNODE(NODE_ARGSPUSH, rb_node_argspush_t, loc);
23472 n->nd_head = nd_head;
23473 n->nd_body = nd_body;
23474
23475 return n;
23476}
23477
23478static rb_node_splat_t *
23479rb_node_splat_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc, const YYLTYPE *operator_loc)
23480{
23481 rb_node_splat_t *n = NODE_NEWNODE(NODE_SPLAT, rb_node_splat_t, loc);
23482 n->nd_head = nd_head;
23483 n->operator_loc = *operator_loc;
23484
23485 return n;
23486}
23487
23488static rb_node_block_pass_t *
23489rb_node_block_pass_new(struct parser_params *p, NODE *nd_body, const YYLTYPE *loc, const YYLTYPE *operator_loc)
23490{
23491 rb_node_block_pass_t *n = NODE_NEWNODE(NODE_BLOCK_PASS, rb_node_block_pass_t, loc);
23492 n->forwarding = 0;
23493 n->nd_head = 0;
23494 n->nd_body = nd_body;
23495 n->operator_loc = *operator_loc;
23496
23497 return n;
23498}
23499
23500static rb_node_alias_t *
23501rb_node_alias_new(struct parser_params *p, NODE *nd_1st, NODE *nd_2nd, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
23502{
23503 rb_node_alias_t *n = NODE_NEWNODE(NODE_ALIAS, rb_node_alias_t, loc);
23504 n->nd_1st = nd_1st;
23505 n->nd_2nd = nd_2nd;
23506 n->keyword_loc = *keyword_loc;
23507
23508 return n;
23509}
23510
23511static rb_node_valias_t *
23512rb_node_valias_new(struct parser_params *p, ID nd_alias, ID nd_orig, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
23513{
23514 rb_node_valias_t *n = NODE_NEWNODE(NODE_VALIAS, rb_node_valias_t, loc);
23515 n->nd_alias = nd_alias;
23516 n->nd_orig = nd_orig;
23517 n->keyword_loc = *keyword_loc;
23518
23519 return n;
23520}
23521
23522static rb_node_undef_t *
23523rb_node_undef_new(struct parser_params *p, NODE *nd_undef, const YYLTYPE *loc)
23524{
23525 rb_node_undef_t *n = NODE_NEWNODE(NODE_UNDEF, rb_node_undef_t, 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);
23529
23530 return n;
23531}
23532
23533static rb_node_errinfo_t *
23534rb_node_errinfo_new(struct parser_params *p, const YYLTYPE *loc)
23535{
23536 rb_node_errinfo_t *n = NODE_NEWNODE(NODE_ERRINFO, rb_node_errinfo_t, loc);
23537
23538 return n;
23539}
23540
23541static rb_node_defined_t *
23542rb_node_defined_new(struct parser_params *p, NODE *nd_head, const YYLTYPE *loc)
23543{
23544 rb_node_defined_t *n = NODE_NEWNODE(NODE_DEFINED, rb_node_defined_t, loc);
23545 n->nd_head = nd_head;
23546
23547 return n;
23548}
23549
23550static rb_node_postexe_t *
23551rb_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)
23552{
23553 rb_node_postexe_t *n = NODE_NEWNODE(NODE_POSTEXE, rb_node_postexe_t, loc);
23554 n->nd_body = nd_body;
23555 n->keyword_loc = *keyword_loc;
23556 n->opening_loc = *opening_loc;
23557 n->closing_loc = *closing_loc;
23558
23559 return n;
23560}
23561
23562static rb_node_attrasgn_t *
23563rb_node_attrasgn_new(struct parser_params *p, NODE *nd_recv, ID nd_mid, NODE *nd_args, const YYLTYPE *loc)
23564{
23565 rb_node_attrasgn_t *n = NODE_NEWNODE(NODE_ATTRASGN, rb_node_attrasgn_t, loc);
23566 n->nd_recv = nd_recv;
23567 n->nd_mid = nd_mid;
23568 n->nd_args = nd_args;
23569
23570 return n;
23571}
23572
23573static rb_node_aryptn_t *
23574rb_node_aryptn_new(struct parser_params *p, NODE *pre_args, NODE *rest_arg, NODE *post_args, const YYLTYPE *loc)
23575{
23576 rb_node_aryptn_t *n = NODE_NEWNODE(NODE_ARYPTN, rb_node_aryptn_t, loc);
23577 n->nd_pconst = 0;
23578 n->pre_args = pre_args;
23579 n->rest_arg = rest_arg;
23580 n->post_args = post_args;
23581
23582 return n;
23583}
23584
23585static rb_node_hshptn_t *
23586rb_node_hshptn_new(struct parser_params *p, NODE *nd_pconst, NODE *nd_pkwargs, NODE *nd_pkwrestarg, const YYLTYPE *loc)
23587{
23588 rb_node_hshptn_t *n = NODE_NEWNODE(NODE_HSHPTN, rb_node_hshptn_t, loc);
23589 n->nd_pconst = nd_pconst;
23590 n->nd_pkwargs = nd_pkwargs;
23591 n->nd_pkwrestarg = nd_pkwrestarg;
23592
23593 return n;
23594}
23595
23596static rb_node_fndptn_t *
23597rb_node_fndptn_new(struct parser_params *p, NODE *pre_rest_arg, NODE *args, NODE *post_rest_arg, const YYLTYPE *loc)
23598{
23599 rb_node_fndptn_t *n = NODE_NEWNODE(NODE_FNDPTN, rb_node_fndptn_t, loc);
23600 n->nd_pconst = 0;
23601 n->pre_rest_arg = pre_rest_arg;
23602 n->args = args;
23603 n->post_rest_arg = post_rest_arg;
23604
23605 return n;
23606}
23607
23608static rb_node_line_t *
23609rb_node_line_new(struct parser_params *p, const YYLTYPE *loc)
23610{
23611 rb_node_line_t *n = NODE_NEWNODE(NODE_LINE, rb_node_line_t, loc);
23612
23613 return n;
23614}
23615
23616static rb_node_file_t *
23617rb_node_file_new(struct parser_params *p, VALUE str, const YYLTYPE *loc)
23618{
23619 rb_node_file_t *n = NODE_NEWNODE(NODE_FILE, rb_node_file_t, loc);
23620 n->path = rb_str_to_parser_string(p, str);
23621
23622 return n;
23623}
23624
23625static rb_node_encoding_t *
23626rb_node_encoding_new(struct parser_params *p, const YYLTYPE *loc)
23627{
23628 rb_node_encoding_t *n = NODE_NEWNODE(NODE_ENCODING, rb_node_encoding_t, loc);
23629 n->enc = p->enc;
23630
23631 return n;
23632}
23633
23634static rb_node_cdecl_t *
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)
23636{
23637 rb_node_cdecl_t *n = NODE_NEWNODE(NODE_CDECL, rb_node_cdecl_t, loc);
23638 n->nd_vid = nd_vid;
23639 n->nd_value = nd_value;
23640 n->nd_else = nd_else;
23641 n->shareability = shareability;
23642
23643 return n;
23644}
23645
23646static rb_node_op_cdecl_t *
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)
23648{
23649 rb_node_op_cdecl_t *n = NODE_NEWNODE(NODE_OP_CDECL, rb_node_op_cdecl_t, loc);
23650 n->nd_head = nd_head;
23651 n->nd_value = nd_value;
23652 n->nd_aid = nd_aid;
23653 n->shareability = shareability;
23654
23655 return n;
23656}
23657
23658static rb_node_error_t *
23659rb_node_error_new(struct parser_params *p, const YYLTYPE *loc)
23660{
23661 rb_node_error_t *n = NODE_NEWNODE(NODE_ERROR, rb_node_error_t, loc);
23662
23663 return n;
23664}
23665
23666static rb_node_break_t *
23667rb_node_break_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
23668{
23669 rb_node_break_t *n = NODE_NEWNODE(NODE_BREAK, rb_node_break_t, loc);
23670 n->nd_stts = nd_stts;
23671 n->nd_chain = 0;
23672 n->keyword_loc = *keyword_loc;
23673
23674 return n;
23675}
23676
23677static rb_node_next_t *
23678rb_node_next_new(struct parser_params *p, NODE *nd_stts, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
23679{
23680 rb_node_next_t *n = NODE_NEWNODE(NODE_NEXT, rb_node_next_t, loc);
23681 n->nd_stts = nd_stts;
23682 n->nd_chain = 0;
23683 n->keyword_loc = *keyword_loc;
23684
23685 return n;
23686}
23687
23688static rb_node_redo_t *
23689rb_node_redo_new(struct parser_params *p, const YYLTYPE *loc, const YYLTYPE *keyword_loc)
23690{
23691 rb_node_redo_t *n = NODE_NEWNODE(NODE_REDO, rb_node_redo_t, loc);
23692 n->nd_chain = 0;
23693 n->keyword_loc = *keyword_loc;
23694
23695 return n;
23696}
23697
23698static rb_node_def_temp_t *
23699rb_node_def_temp_new(struct parser_params *p, const YYLTYPE *loc)
23700{
23701 rb_node_def_temp_t *n = NODE_NEWNODE((enum node_type)NODE_DEF_TEMP, rb_node_def_temp_t, loc);
23702 n->save.numparam_save = 0;
23703 n->save.max_numparam = 0;
23704 n->save.ctxt = p->ctxt;
23705 n->nd_def = 0;
23706 n->nd_mid = 0;
23707
23708 return n;
23709}
23710
23711static rb_node_def_temp_t *
23712def_head_save(struct parser_params *p, rb_node_def_temp_t *n)
23713{
23714 n->save.numparam_save = numparam_push(p);
23715 n->save.max_numparam = p->max_numparam;
23716 return n;
23717}
23718
23719#ifndef RIPPER
23720static enum node_type
23721nodetype(NODE *node) /* for debug */
23722{
23723 return (enum node_type)nd_type(node);
23724}
23725
23726static int
23727nodeline(NODE *node)
23728{
23729 return nd_line(node);
23730}
23731#endif
23732
23733static NODE*
23734newline_node(NODE *node)
23735{
23736 if (node) {
23737 node = remove_begin(node);
23738 nd_set_fl_newline(node);
23739 }
23740 return node;
23741}
23742
23743static void
23744fixpos(NODE *node, NODE *orig)
23745{
23746 if (!node) return;
23747 if (!orig) return;
23748 nd_set_line(node, nd_line(orig));
23749}
23750
23751static NODE*
23752block_append(struct parser_params *p, NODE *head, NODE *tail)
23753{
23754 NODE *end, *h = head, *nd;
23755
23756 if (tail == 0) return head;
23757
23758 if (h == 0) return tail;
23759 switch (nd_type(h)) {
23760 default:
23761 h = end = NEW_BLOCK(head, &head->nd_loc);
23762 head = end;
23763 break;
23764 case NODE_BLOCK:
23765 end = RNODE_BLOCK(h)->nd_end;
23766 break;
23767 }
23768
23769 nd = RNODE_BLOCK(end)->nd_head;
23770 switch (nd_type(nd)) {
23771 case NODE_RETURN:
23772 case NODE_BREAK:
23773 case NODE_NEXT:
23774 case NODE_REDO:
23775 case NODE_RETRY:
23776 rb_warning0L(nd_line(tail), "statement not reached");
23777 break;
23778
23779 default:
23780 break;
23781 }
23782
23783 if (!nd_type_p(tail, NODE_BLOCK)) {
23784 tail = NEW_BLOCK(tail, &tail->nd_loc);
23785 }
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));
23789 return head;
23790}
23791
23792/* append item to the list */
23793static NODE*
23794list_append(struct parser_params *p, NODE *list, NODE *item)
23795{
23796 NODE *last;
23797
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;
23801 }
23802 else {
23803 last = list;
23804 }
23805
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;
23809
23810 nd_set_last_loc(list, nd_last_loc(item));
23811
23812 return list;
23813}
23814
23815/* concat two lists */
23816static NODE*
23817list_concat(NODE *head, NODE *tail)
23818{
23819 NODE *last;
23820
23821 if (RNODE_LIST(head)->nd_next) {
23822 last = RNODE_LIST(RNODE_LIST(head)->nd_next)->as.nd_end;
23823 }
23824 else {
23825 last = head;
23826 }
23827
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;
23832 }
23833 else {
23834 RNODE_LIST(RNODE_LIST(head)->nd_next)->as.nd_end = tail;
23835 }
23836
23837 nd_set_last_loc(head, nd_last_loc(tail));
23838
23839 return head;
23840}
23841
23842static int
23843literal_concat0(struct parser_params *p, rb_parser_string_t *head, rb_parser_string_t *tail)
23844{
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);
23852 return 0;
23853 }
23854 rb_parser_str_buf_append(p, head, tail);
23855 return 1;
23856}
23857
23858static rb_parser_string_t *
23859string_literal_head(struct parser_params *p, enum node_type htype, NODE *head)
23860{
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;
23865 }
23866 rb_parser_string_t *lit = RNODE_DSTR(head)->string;
23867 ASSUME(lit);
23868 return lit;
23869}
23870
23871#ifndef RIPPER
23872static rb_parser_string_t *
23873rb_parser_string_deep_copy(struct parser_params *p, const rb_parser_string_t *orig)
23874{
23875 rb_parser_string_t *copy;
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;
23880 return copy;
23881}
23882#endif
23883
23884/* concat two string literals */
23885static NODE *
23886literal_concat(struct parser_params *p, NODE *head, NODE *tail, const YYLTYPE *loc)
23887{
23888 enum node_type htype;
23889 rb_parser_string_t *lit;
23890
23891 if (!head) return tail;
23892 if (!tail) return head;
23893
23894 htype = nd_type(head);
23895 if (htype == NODE_EVSTR) {
23896 head = new_dstr(p, head, loc);
23897 htype = NODE_DSTR;
23898 }
23899 if (p->heredoc_indent > 0) {
23900 switch (htype) {
23901 case NODE_STR:
23902 head = str2dstr(p, head);
23903 case NODE_DSTR:
23904 return list_append(p, head, tail);
23905 default:
23906 break;
23907 }
23908 }
23909 switch (nd_type(tail)) {
23910 case NODE_STR:
23911 if ((lit = string_literal_head(p, htype, head)) != false) {
23912 htype = NODE_STR;
23913 }
23914 else {
23915 lit = RNODE_DSTR(head)->string;
23916 }
23917 if (htype == NODE_STR) {
23918 if (!literal_concat0(p, lit, RNODE_STR(tail)->string)) {
23919 error:
23920 rb_discard_node(p, head);
23921 rb_discard_node(p, tail);
23922 return 0;
23923 }
23924 rb_discard_node(p, tail);
23925 }
23926 else {
23927 list_append(p, head, tail);
23928 }
23929 break;
23930
23931 case NODE_DSTR:
23932 if (htype == NODE_STR) {
23933 if (!literal_concat0(p, RNODE_STR(head)->string, RNODE_DSTR(tail)->string))
23934 goto error;
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);
23939 head = tail;
23940 }
23941 else if (!RNODE_DSTR(tail)->string) {
23942 append:
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;
23946 }
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;
23950 }
23951 rb_discard_node(p, tail);
23952 }
23953 else if ((lit = string_literal_head(p, htype, head)) != false) {
23954 if (!literal_concat0(p, lit, RNODE_DSTR(tail)->string))
23955 goto error;
23956 rb_parser_string_free(p, RNODE_DSTR(tail)->string);
23957 RNODE_DSTR(tail)->string = 0;
23958 goto append;
23959 }
23960 else {
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;
23963 }
23964 break;
23965
23966 case NODE_EVSTR:
23967 if (htype == NODE_STR) {
23968 head = str2dstr(p, head);
23969 RNODE_DSTR(head)->as.nd_alen = 1;
23970 }
23971 list_append(p, head, tail);
23972 break;
23973 }
23974 return head;
23975}
23976
23977static void
23978nd_copy_flag(NODE *new_node, NODE *old_node)
23979{
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;
23984}
23985
23986static NODE *
23987str2dstr(struct parser_params *p, NODE *node)
23988{
23989 NODE *new_node = (NODE *)NODE_NEW_INTERNAL(NODE_DSTR, rb_node_dstr_t);
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;
23995
23996 return new_node;
23997}
23998
23999static NODE *
24000str2regx(struct parser_params *p, NODE *node, int options, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *content_loc, const YYLTYPE *closing_loc)
24001{
24002 NODE *new_node = (NODE *)NODE_NEW_INTERNAL(NODE_REGX, rb_node_regx_t);
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;
24011
24012 return new_node;
24013}
24014
24015static NODE *
24016evstr2dstr(struct parser_params *p, NODE *node)
24017{
24018 if (nd_type_p(node, NODE_EVSTR)) {
24019 node = new_dstr(p, node, &node->nd_loc);
24020 }
24021 return node;
24022}
24023
24024static NODE *
24025new_evstr(struct parser_params *p, NODE *node, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc)
24026{
24027 NODE *head = node;
24028
24029 if (node) {
24030 switch (nd_type(node)) {
24031 case NODE_STR:
24032 return str2dstr(p, node);
24033 case NODE_DSTR:
24034 break;
24035 case NODE_EVSTR:
24036 return node;
24037 }
24038 }
24039 return NEW_EVSTR(head, loc, opening_loc, closing_loc);
24040}
24041
24042static NODE *
24043new_dstr(struct parser_params *p, NODE *node, const YYLTYPE *loc)
24044{
24045 NODE *dstr = NEW_DSTR(STRING_NEW0(), loc);
24046 return list_append(p, dstr, node);
24047}
24048
24049static NODE *
24050call_bin_op(struct parser_params *p, NODE *recv, ID id, NODE *arg1,
24051 const YYLTYPE *op_loc, const YYLTYPE *loc)
24052{
24053 NODE *expr;
24054 value_expr(recv);
24055 value_expr(arg1);
24056 expr = NEW_OPCALL(recv, id, NEW_LIST(arg1, &arg1->nd_loc), loc);
24057 nd_set_line(expr, op_loc->beg_pos.lineno);
24058 return expr;
24059}
24060
24061static NODE *
24062call_uni_op(struct parser_params *p, NODE *recv, ID id, const YYLTYPE *op_loc, const YYLTYPE *loc)
24063{
24064 NODE *opcall;
24065 value_expr(recv);
24066 opcall = NEW_OPCALL(recv, id, 0, loc);
24067 nd_set_line(opcall, op_loc->beg_pos.lineno);
24068 return opcall;
24069}
24070
24071static NODE *
24072new_qcall(struct parser_params* p, ID atype, NODE *recv, ID mid, NODE *args, const YYLTYPE *op_loc, const YYLTYPE *loc)
24073{
24074 NODE *qcall = NEW_QCALL(atype, recv, mid, args, loc);
24075 nd_set_line(qcall, op_loc->beg_pos.lineno);
24076 return qcall;
24077}
24078
24079static NODE*
24080new_command_qcall(struct parser_params* p, ID atype, NODE *recv, ID mid, NODE *args, NODE *block, const YYLTYPE *op_loc, const YYLTYPE *loc)
24081{
24082 NODE *ret;
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);
24086 fixpos(ret, recv);
24087 return ret;
24088}
24089
24091new_locations_lambda_body(struct parser_params* p, NODE *node, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc)
24092{
24094 body->node = node;
24095 body->opening_loc = *opening_loc;
24096 body->closing_loc = *closing_loc;
24097 return body;
24098}
24099
24100#define nd_once_body(node) (nd_type_p((node), NODE_ONCE) ? RNODE_ONCE(node)->nd_body : node)
24101
24102static NODE*
24103last_expr_once_body(NODE *node)
24104{
24105 if (!node) return 0;
24106 return nd_once_body(node);
24107}
24108
24109static NODE*
24110match_op(struct parser_params *p, NODE *node1, NODE *node2, const YYLTYPE *op_loc, const YYLTYPE *loc)
24111{
24112 NODE *n;
24113 int line = op_loc->beg_pos.lineno;
24114
24115 value_expr(node1);
24116 value_expr(node2);
24117
24118 if ((n = last_expr_once_body(node1)) != 0) {
24119 switch (nd_type(n)) {
24120 case NODE_DREGX:
24121 {
24122 NODE *match = NEW_MATCH2(node1, node2, loc);
24123 nd_set_line(match, line);
24124 return match;
24125 }
24126
24127 case NODE_REGX:
24128 {
24129 const VALUE lit = rb_node_regx_string_val(n);
24130 if (!NIL_P(lit)) {
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);
24134 return match;
24135 }
24136 }
24137 }
24138 }
24139
24140 if ((n = last_expr_once_body(node2)) != 0) {
24141 NODE *match3;
24142
24143 switch (nd_type(n)) {
24144 case NODE_DREGX:
24145 match3 = NEW_MATCH3(node2, node1, loc);
24146 return match3;
24147 }
24148 }
24149
24150 n = NEW_CALL(node1, tMATCH, NEW_LIST(node2, &node2->nd_loc), loc);
24151 nd_set_line(n, line);
24152 return n;
24153}
24154
24155# if WARN_PAST_SCOPE
24156static int
24157past_dvar_p(struct parser_params *p, ID id)
24158{
24159 struct vtable *past = p->lvtbl->past;
24160 while (past) {
24161 if (vtable_included(past, id)) return 1;
24162 past = past->prev;
24163 }
24164 return 0;
24165}
24166# endif
24167
24168static int
24169numparam_nested_p(struct parser_params *p)
24170{
24171 struct local_vars *local = p->lvtbl;
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);
24181 return 1;
24182 }
24183 return 0;
24184}
24185
24186static int
24187numparam_used_p(struct parser_params *p)
24188{
24189 NODE *numparam = p->lvtbl->numparam.current;
24190 if (numparam) {
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);
24195 return 1;
24196 }
24197 return 0;
24198}
24199
24200static int
24201it_used_p(struct parser_params *p)
24202{
24203 NODE *it = p->lvtbl->it;
24204 if (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);
24209 return 1;
24210 }
24211 return 0;
24212}
24213
24214static NODE*
24215gettable(struct parser_params *p, ID id, const YYLTYPE *loc)
24216{
24217 ID *vidp = NULL;
24218 NODE *node;
24219 switch (id) {
24220 case keyword_self:
24221 return NEW_SELF(loc);
24222 case keyword_nil:
24223 return NEW_NIL(loc);
24224 case keyword_true:
24225 return NEW_TRUE(loc);
24226 case keyword_false:
24227 return NEW_FALSE(loc);
24228 case keyword__FILE__:
24229 {
24230 VALUE file = p->ruby_sourcefile_string;
24231 if (NIL_P(file))
24232 file = rb_str_new(0, 0);
24233 node = NEW_FILE(file, loc);
24234 }
24235 return node;
24236 case keyword__LINE__:
24237 return NEW_LINE(loc);
24238 case keyword__ENCODING__:
24239 return NEW_ENCODING(loc);
24240
24241 }
24242 switch (id_type(id)) {
24243 case ID_LOCAL:
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);
24248 return node;
24249 }
24250 if (local_id_ref(p, id, &vidp)) {
24251 if (vidp) *vidp |= LVAR_USED;
24252 node = NEW_LVAR(id, loc);
24253 return node;
24254 }
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);
24259 struct local_vars *local = p->lvtbl;
24260 if (!local->numparam.current) local->numparam.current = node;
24261 return node;
24262 }
24263# if WARN_PAST_SCOPE
24264 if (!p->ctxt.in_defined && RTEST(ruby_verbose) && past_dvar_p(p, id)) {
24265 rb_warning1("possible reference to past scope - %"PRIsWARN, rb_id2str(id));
24266 }
24267# endif
24268 /* method call without arguments */
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");
24273 return 0;
24274 }
24275 if (!p->it_id) {
24276 p->it_id = internal_id(p);
24277 vtable_add(p->lvtbl->args, p->it_id);
24278 }
24279 NODE *node = NEW_DVAR(p->it_id, loc);
24280 if (!p->lvtbl->it) p->lvtbl->it = node;
24281 return node;
24282 }
24283 return NEW_VCALL(id, loc);
24284 case ID_GLOBAL:
24285 return NEW_GVAR(id, loc);
24286 case ID_INSTANCE:
24287 return NEW_IVAR(id, loc);
24288 case ID_CONST:
24289 return NEW_CONST(id, loc);
24290 case ID_CLASS:
24291 return NEW_CVAR(id, loc);
24292 }
24293 compile_error(p, "identifier %"PRIsVALUE" is not valid to get", rb_id2str(id));
24294 return 0;
24295}
24296
24297static rb_node_opt_arg_t *
24298opt_arg_append(rb_node_opt_arg_t *opt_list, rb_node_opt_arg_t *opt)
24299{
24300 rb_node_opt_arg_t *opts = opt_list;
24301 RNODE(opts)->nd_loc.end_pos = RNODE(opt)->nd_loc.end_pos;
24302
24303 while (opts->nd_next) {
24304 opts = opts->nd_next;
24305 RNODE(opts)->nd_loc.end_pos = RNODE(opt)->nd_loc.end_pos;
24306 }
24307 opts->nd_next = opt;
24308
24309 return opt_list;
24310}
24311
24312static rb_node_kw_arg_t *
24313kwd_append(rb_node_kw_arg_t *kwlist, rb_node_kw_arg_t *kw)
24314{
24315 if (kwlist) {
24316 /* Assume rb_node_kw_arg_t and rb_node_opt_arg_t has same structure */
24317 opt_arg_append(RNODE_OPT_ARG(kwlist), RNODE_OPT_ARG(kw));
24318 }
24319 return kwlist;
24320}
24321
24322static NODE *
24323new_defined(struct parser_params *p, NODE *expr, const YYLTYPE *loc)
24324{
24325 NODE *n = expr;
24326 while (n) {
24327 if (nd_type_p(n, NODE_BEGIN)) {
24328 n = RNODE_BEGIN(n)->nd_body;
24329 }
24330 else if (nd_type_p(n, NODE_BLOCK) && RNODE_BLOCK(n)->nd_end == n) {
24331 n = RNODE_BLOCK(n)->nd_head;
24332 }
24333 else {
24334 break;
24335 }
24336 }
24337 return NEW_DEFINED(n, loc);
24338}
24339
24340static NODE*
24341str_to_sym_node(struct parser_params *p, NODE *node, const YYLTYPE *loc)
24342{
24343 VALUE lit;
24344 rb_parser_string_t *str = RNODE_STR(node)->string;
24345 if (rb_parser_enc_str_coderange(p, str) == RB_PARSER_ENC_CODERANGE_BROKEN) {
24346 yyerror1(loc, "invalid symbol");
24347 lit = STR_NEW0();
24348 }
24349 else {
24350 lit = rb_str_new_parser_string(str);
24351 }
24352 return NEW_SYM(lit, loc);
24353}
24354
24355static NODE*
24356symbol_append(struct parser_params *p, NODE *symbols, NODE *symbol)
24357{
24358 enum node_type type = nd_type(symbol);
24359 switch (type) {
24360 case NODE_DSTR:
24361 nd_set_type(symbol, NODE_DSYM);
24362 break;
24363 case NODE_STR:
24364 symbol = str_to_sym_node(p, symbol, &RNODE(symbol)->nd_loc);
24365 break;
24366 default:
24367 compile_error(p, "unexpected node as symbol: %s", parser_node_name(type));
24368 }
24369 return list_append(p, symbols, symbol);
24370}
24371
24372static void
24373dregex_fragment_setenc(struct parser_params *p, rb_node_dregx_t *const dreg, int options)
24374{
24375 if (dreg->string) {
24376 reg_fragment_setenc(p, dreg->string, options);
24377 }
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);
24382 }
24383 else if (nd_type_p(frag, NODE_DSTR)) {
24384 dregex_fragment_setenc(p, RNODE_DSTR(frag), options);
24385 }
24386 }
24387}
24388
24389static NODE *
24390new_regexp(struct parser_params *p, NODE *node, int options, const YYLTYPE *loc, const YYLTYPE *opening_loc, const YYLTYPE *content_loc, const YYLTYPE *closing_loc)
24391{
24392 if (!node) {
24393 /* Check string is valid regex */
24394 rb_parser_string_t *str = STRING_NEW0();
24395 reg_compile(p, str, options);
24396 node = NEW_REGX(str, options, loc, opening_loc, content_loc, closing_loc);
24397 return node;
24398 }
24399 switch (nd_type(node)) {
24400 case NODE_STR:
24401 {
24402 /* Check string is valid regex */
24403 reg_compile(p, RNODE_STR(node)->string, options);
24404 node = str2regx(p, node, options, loc, opening_loc, content_loc, closing_loc);
24405 }
24406 break;
24407 default:
24408 node = NEW_DSTR0(STRING_NEW0(), 1, NEW_LIST(node, loc), loc);
24409 /* fall through */
24410 case NODE_DSTR:
24411 nd_set_type(node, NODE_DREGX);
24412 nd_set_loc(node, loc);
24413 rb_node_dregx_t *const dreg = RNODE_DREGX(node);
24414 dreg->as.nd_cflag = options & RE_OPTION_MASK;
24415 if (dreg->nd_next) {
24416 dregex_fragment_setenc(p, dreg, options);
24417 }
24418 if (options & RE_OPTION_ONCE) {
24419 node = NEW_ONCE(node, loc);
24420 }
24421 break;
24422 }
24423 return node;
24424}
24425
24426static rb_node_kw_arg_t *
24427new_kw_arg(struct parser_params *p, NODE *k, const YYLTYPE *loc)
24428{
24429 if (!k) return 0;
24430 return NEW_KW_ARG((k), loc);
24431}
24432
24433static NODE *
24434new_xstring(struct parser_params *p, NODE *node, const YYLTYPE *loc)
24435{
24436 if (!node) {
24437 NODE *xstr = NEW_XSTR(STRING_NEW0(), loc);
24438 return xstr;
24439 }
24440 switch (nd_type(node)) {
24441 case NODE_STR:
24442 nd_set_type(node, NODE_XSTR);
24443 nd_set_loc(node, loc);
24444 break;
24445 case NODE_DSTR:
24446 nd_set_type(node, NODE_DXSTR);
24447 nd_set_loc(node, loc);
24448 break;
24449 default:
24450 node = NEW_DXSTR(0, 1, NEW_LIST(node, loc), loc);
24451 break;
24452 }
24453 return node;
24454}
24455
24456static const
24457struct st_hash_type literal_type = {
24458 literal_cmp,
24459 literal_hash,
24460};
24461
24462static int nd_type_st_key_enable_p(NODE *node);
24463
24464static void
24465check_literal_when(struct parser_params *p, NODE *arg, const YYLTYPE *loc)
24466{
24467 /* See https://bugs.ruby-lang.org/issues/20331 for discussion about what is warned. */
24468 if (!arg || !p->case_labels) return;
24469 if (!nd_type_st_key_enable_p(arg)) return;
24470
24471 if (p->case_labels == CHECK_LITERAL_WHEN) {
24472 p->case_labels = st_init_table(&literal_type);
24473 }
24474 else {
24475 st_data_t line;
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));
24479 return;
24480 }
24481 }
24482 st_insert(p->case_labels, (st_data_t)arg, (st_data_t)p->ruby_sourceline);
24483}
24484
24485#ifdef RIPPER
24486static int
24487id_is_var(struct parser_params *p, ID id)
24488{
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:
24492 return 1;
24493 case ID_LOCAL:
24494 if (dyna_in_block(p)) {
24495 if (NUMPARAM_ID_P(id) || dvar_defined(p, id)) return 1;
24496 }
24497 if (local_id(p, id)) return 1;
24498 /* method call without arguments */
24499 return 0;
24500 }
24501 }
24502 compile_error(p, "identifier %"PRIsVALUE" is not valid to get", rb_id2str(id));
24503 return 0;
24504}
24505#endif
24506
24507static inline enum lex_state_e
24508parser_set_lex_state(struct parser_params *p, enum lex_state_e ls, int line)
24509{
24510 if (p->debug) {
24511 ls = rb_parser_trace_lex_state(p, p->lex.state, ls, line);
24512 }
24513 return p->lex.state = ls;
24514}
24515
24516#ifndef RIPPER
24517static void
24518flush_debug_buffer(struct parser_params *p, VALUE out, VALUE str)
24519{
24520 VALUE mesg = p->debug_buffer;
24521
24522 if (!NIL_P(mesg) && RSTRING_LEN(mesg)) {
24523 p->debug_buffer = Qnil;
24524 rb_io_puts(1, &mesg, out);
24525 }
24526 if (!NIL_P(str) && RSTRING_LEN(str)) {
24527 rb_io_write(p->debug_output, str);
24528 }
24529}
24530
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",
24535};
24536
24537static VALUE
24538append_lex_state_name(struct parser_params *p, enum lex_state_e state, VALUE buf)
24539{
24540 int i, sep = 0;
24541 unsigned int mask = 1;
24542 static const char none[] = "NONE";
24543
24544 for (i = 0; i < EXPR_MAX_STATE; ++i, mask <<= 1) {
24545 if ((unsigned)state & mask) {
24546 if (sep) {
24547 rb_str_cat(buf, "|", 1);
24548 }
24549 sep = 1;
24550 rb_str_cat_cstr(buf, rb_parser_lex_state_names[i]);
24551 }
24552 }
24553 if (!sep) {
24554 rb_str_cat(buf, none, sizeof(none)-1);
24555 }
24556 return buf;
24557}
24558
24559enum lex_state_e
24560rb_parser_trace_lex_state(struct parser_params *p, enum lex_state_e from,
24561 enum lex_state_e to, int line)
24562{
24563 VALUE mesg;
24564 mesg = rb_str_new_cstr("lex_state: ");
24565 append_lex_state_name(p, from, mesg);
24566 rb_str_cat_cstr(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);
24570 return to;
24571}
24572
24573VALUE
24574rb_parser_lex_state_name(struct parser_params *p, enum lex_state_e state)
24575{
24576 return rb_str_to_interned_str(append_lex_state_name(p, state, rb_str_new(0, 0)));
24577}
24578
24579static void
24580append_bitstack_value(struct parser_params *p, stack_type stack, VALUE mesg)
24581{
24582 if (stack == 0) {
24583 rb_str_cat_cstr(mesg, "0");
24584 }
24585 else {
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);
24589 }
24590}
24591
24592void
24593rb_parser_show_bitstack(struct parser_params *p, stack_type stack,
24594 const char *name, int line)
24595{
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);
24600}
24601
24602void
24603rb_parser_fatal(struct parser_params *p, const char *fmt, ...)
24604{
24605 va_list ap;
24606 VALUE mesg = rb_str_new_cstr("internal parser error: ");
24607
24608 va_start(ap, fmt);
24609 rb_str_vcatf(mesg, fmt, ap);
24610 va_end(ap);
24611 yyerror0(RSTRING_PTR(mesg));
24612 RB_GC_GUARD(mesg);
24613
24614 mesg = rb_str_new(0, 0);
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();
24625 p->debug = TRUE;
24626}
24627
24628static YYLTYPE *
24629rb_parser_set_pos(YYLTYPE *yylloc, int sourceline, int beg_pos, int end_pos)
24630{
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;
24635 return yylloc;
24636}
24637
24638YYLTYPE *
24639rb_parser_set_location_from_strterm_heredoc(struct parser_params *p, rb_strterm_heredoc_t *here, YYLTYPE *yylloc)
24640{
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;
24645
24646 return rb_parser_set_pos(yylloc, sourceline, beg_pos, end_pos);
24647}
24648
24649YYLTYPE *
24650rb_parser_set_location_of_delayed_token(struct parser_params *p, YYLTYPE *yylloc)
24651{
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;
24656
24657 return yylloc;
24658}
24659
24660YYLTYPE *
24661rb_parser_set_location_of_heredoc_end(struct parser_params *p, YYLTYPE *yylloc)
24662{
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);
24667}
24668
24669YYLTYPE *
24670rb_parser_set_location_of_dummy_end(struct parser_params *p, YYLTYPE *yylloc)
24671{
24672 yylloc->end_pos = yylloc->beg_pos;
24673
24674 return yylloc;
24675}
24676
24677YYLTYPE *
24678rb_parser_set_location_of_none(struct parser_params *p, YYLTYPE *yylloc)
24679{
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);
24684}
24685
24686YYLTYPE *
24687rb_parser_set_location(struct parser_params *p, YYLTYPE *yylloc)
24688{
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);
24693}
24694#endif /* !RIPPER */
24695
24696static int
24697assignable0(struct parser_params *p, ID id, const char **err)
24698{
24699 if (!id) return -1;
24700 switch (id) {
24701 case keyword_self:
24702 *err = "Can't change the value of self";
24703 return -1;
24704 case keyword_nil:
24705 *err = "Can't assign to nil";
24706 return -1;
24707 case keyword_true:
24708 *err = "Can't assign to true";
24709 return -1;
24710 case keyword_false:
24711 *err = "Can't assign to false";
24712 return -1;
24713 case keyword__FILE__:
24714 *err = "Can't assign to __FILE__";
24715 return -1;
24716 case keyword__LINE__:
24717 *err = "Can't assign to __LINE__";
24718 return -1;
24719 case keyword__ENCODING__:
24720 *err = "Can't assign to __ENCODING__";
24721 return -1;
24722 }
24723 switch (id_type(id)) {
24724 case ID_LOCAL:
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));
24729 return -1;
24730 }
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;
24734 dyna_var(p, id);
24735 return NODE_DASGN;
24736 }
24737 else {
24738 if (!local_id(p, id)) local_var(p, id);
24739 return NODE_LASGN;
24740 }
24741 break;
24742 case ID_GLOBAL: return NODE_GASGN;
24743 case ID_INSTANCE: return NODE_IASGN;
24744 case ID_CONST:
24745 if (!p->ctxt.in_def) return NODE_CDECL;
24746 *err = "dynamic constant assignment";
24747 return -1;
24748 case ID_CLASS: return NODE_CVASGN;
24749 default:
24750 compile_error(p, "identifier %"PRIsVALUE" is not valid to set", rb_id2str(id));
24751 }
24752 return -1;
24753}
24754
24755static NODE*
24756assignable(struct parser_params *p, ID id, NODE *val, const YYLTYPE *loc)
24757{
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);
24767 }
24768/* TODO: FIXME */
24769#ifndef RIPPER
24770 if (err) yyerror1(loc, err);
24771#else
24772 if (err) set_value(assign_error(p, err, p->s_lvalue));
24773#endif
24774 return NEW_ERROR(loc);
24775}
24776
24777static int
24778is_private_local_id(struct parser_params *p, ID name)
24779{
24780 VALUE s;
24781 if (name == idUScore) return 1;
24782 if (!is_local_id(name)) return 0;
24783 s = rb_id2str(name);
24784 if (!s) return 0;
24785 return RSTRING_PTR(s)[0] == '_';
24786}
24787
24788static int
24789shadowing_lvar_0(struct parser_params *p, ID name)
24790{
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");
24795 }
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);
24800 }
24801 return 0;
24802 }
24803 }
24804 else {
24805 if (local_id(p, name)) {
24806 if (is_private_local_id(p, name)) return 1;
24807 yyerror0("duplicated argument name");
24808 }
24809 }
24810 return 1;
24811}
24812
24813static ID
24814shadowing_lvar(struct parser_params *p, ID name)
24815{
24816 shadowing_lvar_0(p, name);
24817 return name;
24818}
24819
24820static void
24821new_bv(struct parser_params *p, ID name)
24822{
24823 if (!name) return;
24824 if (!is_local_id(name)) {
24825 compile_error(p, "invalid local variable - %"PRIsVALUE,
24826 rb_id2str(name));
24827 return;
24828 }
24829 if (!shadowing_lvar_0(p, name)) return;
24830 dyna_var(p, name);
24831 ID *vidp = 0;
24832 if (dvar_defined_ref(p, name, &vidp)) {
24833 if (vidp) *vidp |= LVAR_USED;
24834 }
24835}
24836
24837static void
24838aryset_check(struct parser_params *p, NODE *args)
24839{
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;
24844 }
24845 if (args && nd_type_p(args, NODE_ARGSCAT)) {
24846 args = RNODE_ARGSCAT(args)->nd_body;
24847 }
24848 if (args && nd_type_p(args, NODE_ARGSPUSH)) {
24849 kwds = RNODE_ARGSPUSH(args)->nd_body;
24850 }
24851 else {
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;
24855 }
24856 }
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");
24859 }
24860 if (block) {
24861 yyerror1(&block->nd_loc, "block arg given in index assignment");
24862 }
24863}
24864
24865static NODE *
24866aryset(struct parser_params *p, NODE *recv, NODE *idx, const YYLTYPE *loc)
24867{
24868 aryset_check(p, idx);
24869 return NEW_ATTRASGN(recv, tASET, idx, loc);
24870}
24871
24872static void
24873block_dup_check(struct parser_params *p, NODE *node1, NODE *node2)
24874{
24875 if (node2 && node1 && nd_type_p(node1, NODE_BLOCK_PASS)) {
24876 compile_error(p, "both block arg and actual block given");
24877 }
24878}
24879
24880static NODE *
24881attrset(struct parser_params *p, NODE *recv, ID atype, ID id, const YYLTYPE *loc)
24882{
24883 if (!CALL_Q_P(atype)) id = rb_id_attrset(id);
24884 return NEW_ATTRASGN(recv, id, 0, loc);
24885}
24886
24887static VALUE
24888rb_backref_error(struct parser_params *p, NODE *node)
24889{
24890#ifndef RIPPER
24891# define ERR(...) (compile_error(p, __VA_ARGS__), Qtrue)
24892#else
24893# define ERR(...) rb_sprintf(__VA_ARGS__)
24894#endif
24895 switch (nd_type(node)) {
24896 case NODE_NTH_REF:
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);
24900 }
24901#undef ERR
24902 UNREACHABLE_RETURN(Qfalse); /* only called on syntax error */
24903}
24904
24905static NODE *
24906arg_append(struct parser_params *p, NODE *node1, NODE *node2, const YYLTYPE *loc)
24907{
24908 if (!node1) return NEW_LIST(node2, &node2->nd_loc);
24909 switch (nd_type(node1)) {
24910 case NODE_LIST:
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;
24915 return node1;
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);
24920 return node1;
24921 case 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;
24925 return node1;
24926 }
24927 return NEW_ARGSPUSH(node1, node2, loc);
24928}
24929
24930static NODE *
24931arg_concat(struct parser_params *p, NODE *node1, NODE *node2, const YYLTYPE *loc)
24932{
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);
24938 else
24939 RNODE_LIST(node1)->nd_head = NEW_LIST(node2, loc);
24940 return node1;
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);
24945 return node1;
24946 case 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);
24950 return node1;
24951 }
24952 return NEW_ARGSCAT(node1, node2, loc);
24953}
24954
24955static NODE *
24956last_arg_append(struct parser_params *p, NODE *args, NODE *last_arg, const YYLTYPE *loc)
24957{
24958 NODE *n1;
24959 if ((n1 = splat_array(args)) != 0) {
24960 return list_append(p, n1, last_arg);
24961 }
24962 return arg_append(p, args, last_arg, loc);
24963}
24964
24965static NODE *
24966rest_arg_append(struct parser_params *p, NODE *args, NODE *rest_arg, const YYLTYPE *loc)
24967{
24968 NODE *n1;
24969 if ((nd_type_p(rest_arg, NODE_LIST)) && (n1 = splat_array(args)) != 0) {
24970 return list_concat(n1, rest_arg);
24971 }
24972 return arg_concat(p, args, rest_arg, loc);
24973}
24974
24975static NODE *
24976splat_array(NODE* node)
24977{
24978 if (nd_type_p(node, NODE_SPLAT)) node = RNODE_SPLAT(node)->nd_head;
24979 if (nd_type_p(node, NODE_LIST)) return node;
24980 return 0;
24981}
24982
24983static void
24984mark_lvar_used(struct parser_params *p, NODE *rhs)
24985{
24986 ID *vidp = NULL;
24987 if (!rhs) return;
24988 switch (nd_type(rhs)) {
24989 case NODE_LASGN:
24990 if (local_id_ref(p, RNODE_LASGN(rhs)->nd_vid, &vidp)) {
24991 if (vidp) *vidp |= LVAR_USED;
24992 }
24993 break;
24994 case NODE_DASGN:
24995 if (dvar_defined_ref(p, RNODE_DASGN(rhs)->nd_vid, &vidp)) {
24996 if (vidp) *vidp |= LVAR_USED;
24997 }
24998 break;
24999#if 0
25000 case NODE_MASGN:
25001 for (rhs = rhs->nd_head; rhs; rhs = rhs->nd_next) {
25002 mark_lvar_used(p, rhs->nd_head);
25003 }
25004 break;
25005#endif
25006 }
25007}
25008
25009static int is_static_content(NODE *node);
25010
25011static NODE *
25012node_assign(struct parser_params *p, NODE *lhs, NODE *rhs, struct lex_context ctxt, const YYLTYPE *loc)
25013{
25014 if (!lhs) return 0;
25015
25016 switch (nd_type(lhs)) {
25017 case NODE_CDECL:
25018 case NODE_GASGN:
25019 case NODE_IASGN:
25020 case NODE_LASGN:
25021 case NODE_DASGN:
25022 case NODE_MASGN:
25023 case NODE_CVASGN:
25024 set_nd_value(p, lhs, rhs);
25025 nd_set_loc(lhs, loc);
25026 break;
25027
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);
25031 break;
25032
25033 default:
25034 /* should not happen */
25035 break;
25036 }
25037
25038 return lhs;
25039}
25040
25041static NODE *
25042value_expr_check(struct parser_params *p, NODE *node)
25043{
25044 NODE *void_node = 0, *vn;
25045
25046 if (!node) {
25047 rb_warning0("empty expression");
25048 }
25049 while (node) {
25050 switch (nd_type(node)) {
25051 case NODE_ENSURE:
25052 vn = RNODE_ENSURE(node)->nd_head;
25053 node = RNODE_ENSURE(node)->nd_ensr;
25054 /* nd_ensr should not be NULL, check it out next */
25055 if (vn && (vn = value_expr_check(p, vn))) {
25056 goto found;
25057 }
25058 break;
25059
25060 case NODE_RESCUE:
25061 /* void only if all children are void */
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");
25068 return NULL;
25069 }
25070 if (!(vn = value_expr_check(p, RNODE_RESBODY(r)->nd_body))) {
25071 void_node = 0;
25072 break;
25073 }
25074 if (!void_node) void_node = vn;
25075 }
25076 node = RNODE_RESCUE(node)->nd_else;
25077 if (!node) return void_node;
25078 break;
25079
25080 case NODE_RETURN:
25081 case NODE_BREAK:
25082 case NODE_NEXT:
25083 case NODE_REDO:
25084 case NODE_RETRY:
25085 goto found;
25086
25087 case NODE_CASE3:
25088 if (!RNODE_CASE3(node)->nd_body || !nd_type_p(RNODE_CASE3(node)->nd_body, NODE_IN)) {
25089 compile_error(p, "unexpected node");
25090 return NULL;
25091 }
25092 if (RNODE_IN(RNODE_CASE3(node)->nd_body)->nd_body) {
25093 return NULL;
25094 }
25095 /* single line pattern matching with "=>" operator */
25096 goto found;
25097
25098 case NODE_BLOCK:
25099 while (RNODE_BLOCK(node)->nd_next) {
25100 node = RNODE_BLOCK(node)->nd_next;
25101 }
25102 node = RNODE_BLOCK(node)->nd_head;
25103 break;
25104
25105 case NODE_BEGIN:
25106 node = RNODE_BEGIN(node)->nd_body;
25107 break;
25108
25109 case NODE_IF:
25110 case NODE_UNLESS:
25111 if (!RNODE_IF(node)->nd_body) {
25112 return NULL;
25113 }
25114 else if (!RNODE_IF(node)->nd_else) {
25115 return NULL;
25116 }
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;
25121 break;
25122
25123 case NODE_AND:
25124 case NODE_OR:
25125 node = RNODE_AND(node)->nd_1st;
25126 break;
25127
25128 case NODE_LASGN:
25129 case NODE_DASGN:
25130 case NODE_MASGN:
25131 mark_lvar_used(p, node);
25132 return NULL;
25133
25134 default:
25135 return NULL;
25136 }
25137 }
25138
25139 return NULL;
25140
25141 found:
25142 /* return the first found node */
25143 return void_node ? void_node : node;
25144}
25145
25146static int
25147value_expr_gen(struct parser_params *p, NODE *node)
25148{
25149 NODE *void_node = value_expr_check(p, node);
25150 if (void_node) {
25151 yyerror1(&void_node->nd_loc, "void value expression");
25152 /* or "control never reach"? */
25153 return FALSE;
25154 }
25155 return TRUE;
25156}
25157
25158static void
25159void_expr(struct parser_params *p, NODE *node)
25160{
25161 const char *useless = 0;
25162
25163 if (!RTEST(ruby_verbose)) return;
25164
25165 if (!node || !(node = nd_once_body(node))) return;
25166 switch (nd_type(node)) {
25167 case NODE_OPCALL:
25168 switch (RNODE_OPCALL(node)->nd_mid) {
25169 case '+':
25170 case '-':
25171 case '*':
25172 case '/':
25173 case '%':
25174 case tPOW:
25175 case tUPLUS:
25176 case tUMINUS:
25177 case '|':
25178 case '^':
25179 case '&':
25180 case tCMP:
25181 case '>':
25182 case tGEQ:
25183 case '<':
25184 case tLEQ:
25185 case tEQ:
25186 case tNEQ:
25187 useless = rb_id2name(RNODE_OPCALL(node)->nd_mid);
25188 break;
25189 }
25190 break;
25191
25192 case NODE_LVAR:
25193 case NODE_DVAR:
25194 case NODE_GVAR:
25195 case NODE_IVAR:
25196 case NODE_CVAR:
25197 case NODE_NTH_REF:
25198 case NODE_BACK_REF:
25199 useless = "a variable";
25200 break;
25201 case NODE_CONST:
25202 useless = "a constant";
25203 break;
25204 case NODE_SYM:
25205 case NODE_LINE:
25206 case NODE_FILE:
25207 case NODE_ENCODING:
25208 case NODE_INTEGER:
25209 case NODE_FLOAT:
25210 case NODE_RATIONAL:
25211 case NODE_IMAGINARY:
25212 case NODE_STR:
25213 case NODE_DSTR:
25214 case NODE_REGX:
25215 case NODE_DREGX:
25216 useless = "a literal";
25217 break;
25218 case NODE_COLON2:
25219 case NODE_COLON3:
25220 useless = "::";
25221 break;
25222 case NODE_DOT2:
25223 useless = "..";
25224 break;
25225 case NODE_DOT3:
25226 useless = "...";
25227 break;
25228 case NODE_SELF:
25229 useless = "self";
25230 break;
25231 case NODE_NIL:
25232 useless = "nil";
25233 break;
25234 case NODE_TRUE:
25235 useless = "true";
25236 break;
25237 case NODE_FALSE:
25238 useless = "false";
25239 break;
25240 case NODE_DEFINED:
25241 useless = "defined?";
25242 break;
25243 }
25244
25245 if (useless) {
25246 rb_warn1L(nd_line(node), "possibly useless use of %s in void context", WARN_S(useless));
25247 }
25248}
25249
25250/* warns useless use of block and returns the last statement node */
25251static NODE *
25252void_stmts(struct parser_params *p, NODE *node)
25253{
25254 NODE *const n = node;
25255 if (!RTEST(ruby_verbose)) return n;
25256 if (!node) return n;
25257 if (!nd_type_p(node, NODE_BLOCK)) return n;
25258
25259 while (RNODE_BLOCK(node)->nd_next) {
25260 void_expr(p, RNODE_BLOCK(node)->nd_head);
25261 node = RNODE_BLOCK(node)->nd_next;
25262 }
25263 return RNODE_BLOCK(node)->nd_head;
25264}
25265
25266static NODE *
25267remove_begin(NODE *node)
25268{
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;
25272 }
25273 return node;
25274}
25275
25276static void
25277reduce_nodes(struct parser_params *p, NODE **body)
25278{
25279 NODE *node = *body;
25280
25281 if (!node) {
25282 *body = NEW_NIL(&NULL_LOC);
25283 return;
25284 }
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))
25289
25290 while (node) {
25291 int newline = (int)nd_fl_newline(node);
25292 switch (nd_type(node)) {
25293 end:
25294 case NODE_NIL:
25295 *body = 0;
25296 return;
25297 case NODE_BEGIN:
25298 *body = node = RNODE_BEGIN(node)->nd_body;
25299 if (newline && node) nd_set_fl_newline(node);
25300 continue;
25301 case NODE_BLOCK:
25302 body = &RNODE_BLOCK(RNODE_BLOCK(node)->nd_end)->nd_head;
25303 break;
25304 case NODE_IF:
25305 case NODE_UNLESS:
25306 if (subnodes(RNODE_IF, nd_body, nd_else)) break;
25307 return;
25308 case NODE_CASE:
25309 body = &RNODE_CASE(node)->nd_body;
25310 break;
25311 case NODE_WHEN:
25312 if (!subnodes(RNODE_WHEN, nd_body, nd_next)) goto end;
25313 break;
25314 case NODE_ENSURE:
25315 body = &RNODE_ENSURE(node)->nd_head;
25316 break;
25317 case NODE_RESCUE:
25318 newline = 0; // RESBODY should not be a NEWLINE
25319 if (RNODE_RESCUE(node)->nd_else) {
25320 body = &RNODE_RESCUE(node)->nd_resq;
25321 break;
25322 }
25323 if (!subnodes(RNODE_RESCUE, nd_head, nd_resq)) goto end;
25324 break;
25325 default:
25326 return;
25327 }
25328 node = *body;
25329 if (newline && node) nd_set_fl_newline(node);
25330 }
25331
25332#undef subnodes
25333}
25334
25335static int
25336is_static_content(NODE *node)
25337{
25338 if (!node) return 1;
25339 switch (nd_type(node)) {
25340 case NODE_HASH:
25341 if (!(node = RNODE_HASH(node)->nd_head)) break;
25342 case NODE_LIST:
25343 do {
25344 if (!is_static_content(RNODE_LIST(node)->nd_head)) return 0;
25345 } while ((node = RNODE_LIST(node)->nd_next) != 0);
25346 case NODE_SYM:
25347 case NODE_REGX:
25348 case NODE_LINE:
25349 case NODE_FILE:
25350 case NODE_ENCODING:
25351 case NODE_INTEGER:
25352 case NODE_FLOAT:
25353 case NODE_RATIONAL:
25354 case NODE_IMAGINARY:
25355 case NODE_STR:
25356 case NODE_NIL:
25357 case NODE_TRUE:
25358 case NODE_FALSE:
25359 case NODE_ZLIST:
25360 break;
25361 default:
25362 return 0;
25363 }
25364 return 1;
25365}
25366
25367static int
25368assign_in_cond(struct parser_params *p, NODE *node)
25369{
25370 switch (nd_type(node)) {
25371 case NODE_MASGN:
25372 case NODE_LASGN:
25373 case NODE_DASGN:
25374 case NODE_GASGN:
25375 case NODE_IASGN:
25376 case NODE_CVASGN:
25377 case NODE_CDECL:
25378 break;
25379
25380 default:
25381 return 0;
25382 }
25383
25384 if (!get_nd_value(p, node)) return 1;
25385 if (is_static_content(get_nd_value(p, node))) {
25386 /* reports always */
25387 rb_warn0L(nd_line(get_nd_value(p, node)), "found '= literal' in conditional, should be ==");
25388 }
25389 return 1;
25390}
25391
25392enum cond_type {
25393 COND_IN_OP,
25394 COND_IN_COND,
25395 COND_IN_FF
25396};
25397
25398#define SWITCH_BY_COND_TYPE(t, w, arg) do { \
25399 switch (t) { \
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; \
25403 } \
25404} while (0)
25405
25406static NODE *cond0(struct parser_params*,NODE*,enum cond_type,const YYLTYPE*,bool);
25407
25408static NODE*
25409range_op(struct parser_params *p, NODE *node, const YYLTYPE *loc)
25410{
25411 enum node_type type;
25412
25413 if (node == 0) return 0;
25414
25415 type = nd_type(node);
25416 value_expr(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);
25421 }
25422 return cond0(p, node, COND_IN_FF, loc, true);
25423}
25424
25425static NODE*
25426cond0(struct parser_params *p, NODE *node, enum cond_type type, const YYLTYPE *loc, bool top)
25427{
25428 if (node == 0) return 0;
25429 if (!(node = nd_once_body(node))) return 0;
25430 assign_in_cond(p, node);
25431
25432 switch (nd_type(node)) {
25433 case NODE_BEGIN:
25434 RNODE_BEGIN(node)->nd_body = cond0(p, RNODE_BEGIN(node)->nd_body, type, loc, top);
25435 break;
25436
25437 case NODE_DSTR:
25438 case NODE_EVSTR:
25439 case NODE_STR:
25440 case NODE_FILE:
25441 SWITCH_BY_COND_TYPE(type, warn, "string ");
25442 break;
25443
25444 case NODE_REGX:
25445 if (!e_option_supplied(p)) SWITCH_BY_COND_TYPE(type, warn, "regex ");
25446 nd_set_type(node, NODE_MATCH);
25447 break;
25448
25449 case NODE_DREGX:
25450 if (!e_option_supplied(p)) SWITCH_BY_COND_TYPE(type, warning, "regex ");
25451
25452 return NEW_MATCH2(node, NEW_GVAR(idLASTLINE, loc), loc);
25453
25454 case NODE_BLOCK:
25455 {
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);
25460 }
25461 break;
25462
25463 case NODE_AND:
25464 case NODE_OR:
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);
25467 break;
25468
25469 case NODE_DOT2:
25470 case NODE_DOT3:
25471 if (!top) break;
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)) {
25475 case NODE_DOT2:
25476 nd_set_type(node,NODE_FLIP2);
25477 rb_node_flip2_t *flip2 = RNODE_FLIP2(node); /* for debug info */
25478 (void)flip2;
25479 break;
25480 case NODE_DOT3:
25481 nd_set_type(node, NODE_FLIP3);
25482 rb_node_flip3_t *flip3 = RNODE_FLIP3(node); /* for debug info */
25483 (void)flip3;
25484 break;
25485 }
25486 break;
25487
25488 case NODE_SYM:
25489 case NODE_DSYM:
25490 SWITCH_BY_COND_TYPE(type, warning, "symbol ");
25491 break;
25492
25493 case NODE_LINE:
25494 case NODE_ENCODING:
25495 case NODE_INTEGER:
25496 case NODE_FLOAT:
25497 case NODE_RATIONAL:
25498 case NODE_IMAGINARY:
25499 SWITCH_BY_COND_TYPE(type, warning, "");
25500 break;
25501
25502 default:
25503 break;
25504 }
25505 return node;
25506}
25507
25508static NODE*
25509cond(struct parser_params *p, NODE *node, const YYLTYPE *loc)
25510{
25511 if (node == 0) return 0;
25512 return cond0(p, node, COND_IN_COND, loc, true);
25513}
25514
25515static NODE*
25516method_cond(struct parser_params *p, NODE *node, const YYLTYPE *loc)
25517{
25518 if (node == 0) return 0;
25519 return cond0(p, node, COND_IN_OP, loc, true);
25520}
25521
25522static NODE*
25523new_nil_at(struct parser_params *p, const rb_code_position_t *pos)
25524{
25525 YYLTYPE loc = {*pos, *pos};
25526 return NEW_NIL(&loc);
25527}
25528
25529static NODE*
25530new_if(struct parser_params *p, NODE *cc, NODE *left, NODE *right, const YYLTYPE *loc, const YYLTYPE* if_keyword_loc, const YYLTYPE* then_keyword_loc, const YYLTYPE* end_keyword_loc)
25531{
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));
25535}
25536
25537static NODE*
25538new_unless(struct parser_params *p, NODE *cc, NODE *left, NODE *right, const YYLTYPE *loc, const YYLTYPE *keyword_loc, const YYLTYPE *then_keyword_loc, const YYLTYPE *end_keyword_loc)
25539{
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));
25543}
25544
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))
25546
25547static NODE*
25548logop(struct parser_params *p, ID id, NODE *left, NODE *right,
25549 const YYLTYPE *op_loc, const YYLTYPE *loc)
25550{
25551 enum node_type type = id == idAND || id == idANDOP ? NODE_AND : NODE_OR;
25552 NODE *op;
25553 value_expr(left);
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)) {
25557 node = second;
25558 }
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;
25562 return left;
25563 }
25564 op = NEW_AND_OR(type, left, right, loc, op_loc);
25565 nd_set_line(op, op_loc->beg_pos.lineno);
25566 return op;
25567}
25568
25569#undef NEW_AND_OR
25570
25571static void
25572no_blockarg(struct parser_params *p, NODE *node)
25573{
25574 if (nd_type_p(node, NODE_BLOCK_PASS)) {
25575 compile_error(p, "block argument should not be given");
25576 }
25577}
25578
25579static NODE *
25580ret_args(struct parser_params *p, NODE *node)
25581{
25582 if (node) {
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;
25586 }
25587 }
25588 return node;
25589}
25590
25591static NODE*
25592negate_lit(struct parser_params *p, NODE* node)
25593{
25594 switch (nd_type(node)) {
25595 case NODE_INTEGER:
25596 RNODE_INTEGER(node)->minus = TRUE;
25597 break;
25598 case NODE_FLOAT:
25599 RNODE_FLOAT(node)->minus = TRUE;
25600 break;
25601 case NODE_RATIONAL:
25602 RNODE_RATIONAL(node)->minus = TRUE;
25603 break;
25604 case NODE_IMAGINARY:
25605 RNODE_IMAGINARY(node)->minus = TRUE;
25606 break;
25607 }
25608 return node;
25609}
25610
25611static NODE *
25612arg_blk_pass(NODE *node1, rb_node_block_pass_t *node2)
25613{
25614 if (node2) {
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;
25620 }
25621 return node1;
25622}
25623
25624static bool
25625args_info_empty_p(struct rb_args_info *args)
25626{
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;
25634 return true;
25635}
25636
25637static rb_node_args_t *
25638new_args(struct parser_params *p, rb_node_args_aux_t *pre_args, rb_node_opt_arg_t *opt_args, ID rest_arg, rb_node_args_aux_t *post_args, rb_node_args_t *tail, const YYLTYPE *loc)
25639{
25640 struct rb_args_info *args = &tail->nd_ainfo;
25641
25642 if (args->forwarding) {
25643 if (rest_arg) {
25644 yyerror1(&RNODE(tail)->nd_loc, "... after rest argument");
25645 return tail;
25646 }
25647 rest_arg = idFWD_REST;
25648 }
25649
25650 args->pre_args_num = pre_args ? pre_args->nd_plen : 0;
25651 args->pre_init = pre_args ? pre_args->nd_next : 0;
25652
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;
25656
25657 args->rest_arg = rest_arg;
25658
25659 args->opt_args = opt_args;
25660
25661#ifdef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
25662 args->ruby2_keywords = args->forwarding;
25663#else
25664 args->ruby2_keywords = 0;
25665#endif
25666
25667 nd_set_loc(RNODE(tail), loc);
25668
25669 return tail;
25670}
25671
25672static rb_node_args_t *
25673new_args_tail(struct parser_params *p, rb_node_kw_arg_t *kw_args, ID kw_rest_arg, ID block, const YYLTYPE *kw_rest_loc)
25674{
25675 rb_node_args_t *node = NEW_ARGS(&NULL_LOC);
25676 struct rb_args_info *args = &node->nd_ainfo;
25677 if (p->error_p) return node;
25678
25679 args->block_arg = block;
25680 args->kw_args = kw_args;
25681
25682 if (kw_args) {
25683 /*
25684 * def foo(k1: 1, kr1:, k2: 2, **krest, &b)
25685 * variable order: k1, kr1, k2, &b, internal_id, krest
25686 * #=> <reorder>
25687 * variable order: kr1, k1, k2, internal_id, krest, &b
25688 */
25689 ID kw_bits = internal_id(p), *required_kw_vars, *kw_vars;
25690 struct vtable *vtargs = p->lvtbl->args;
25691 rb_node_kw_arg_t *kwn = kw_args;
25692
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];
25696 while (kwn) {
25697 if (!NODE_REQUIRED_KEYWORD_P(get_nd_value(p, kwn->nd_body)))
25698 --kw_vars;
25699 --required_kw_vars;
25700 kwn = kwn->nd_next;
25701 }
25702
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;
25707 }
25708 else {
25709 *kw_vars++ = vid;
25710 }
25711 }
25712
25713 arg_var(p, kw_bits);
25714 if (kw_rest_arg) arg_var(p, kw_rest_arg);
25715 if (block) arg_var(p, block);
25716
25717 args->kw_rest_arg = NEW_DVAR(kw_rest_arg, kw_rest_loc);
25718 }
25719 else if (kw_rest_arg == idNil) {
25720 args->no_kwarg = 1;
25721 }
25722 else if (kw_rest_arg) {
25723 args->kw_rest_arg = NEW_DVAR(kw_rest_arg, kw_rest_loc);
25724 }
25725
25726 return node;
25727}
25728
25729static rb_node_args_t *
25730args_with_numbered(struct parser_params *p, rb_node_args_t *args, int max_numparam, ID it_id)
25731{
25732 if (max_numparam > NO_PARAM || it_id) {
25733 if (!args) {
25734 YYLTYPE loc = RUBY_INIT_YYLLOC();
25735 args = new_args_tail(p, 0, 0, 0, 0);
25736 nd_set_loc(RNODE(args), &loc);
25737 }
25738 args->nd_ainfo.pre_args_num = it_id ? 1 : max_numparam;
25739 }
25740 return args;
25741}
25742
25743static NODE*
25744new_array_pattern(struct parser_params *p, NODE *constant, NODE *pre_arg, NODE *aryptn, const YYLTYPE *loc)
25745{
25746 RNODE_ARYPTN(aryptn)->nd_pconst = constant;
25747
25748 if (pre_arg) {
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);
25752 }
25753 else {
25754 RNODE_ARYPTN(aryptn)->pre_args = pre_args;
25755 }
25756 }
25757 return aryptn;
25758}
25759
25760static NODE*
25761new_array_pattern_tail(struct parser_params *p, NODE *pre_args, int has_rest, NODE *rest_arg, NODE *post_args, const YYLTYPE *loc)
25762{
25763 if (has_rest) {
25764 rest_arg = rest_arg ? rest_arg : NODE_SPECIAL_NO_NAME_REST;
25765 }
25766 else {
25767 rest_arg = NULL;
25768 }
25769 NODE *node = NEW_ARYPTN(pre_args, rest_arg, post_args, loc);
25770
25771 return node;
25772}
25773
25774static NODE*
25775new_find_pattern(struct parser_params *p, NODE *constant, NODE *fndptn, const YYLTYPE *loc)
25776{
25777 RNODE_FNDPTN(fndptn)->nd_pconst = constant;
25778
25779 return fndptn;
25780}
25781
25782static NODE*
25783new_find_pattern_tail(struct parser_params *p, NODE *pre_rest_arg, NODE *args, NODE *post_rest_arg, const YYLTYPE *loc)
25784{
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);
25788
25789 return node;
25790}
25791
25792static NODE*
25793new_hash_pattern(struct parser_params *p, NODE *constant, NODE *hshptn, const YYLTYPE *loc)
25794{
25795 RNODE_HSHPTN(hshptn)->nd_pconst = constant;
25796 return hshptn;
25797}
25798
25799static NODE*
25800new_hash_pattern_tail(struct parser_params *p, NODE *kw_args, ID kw_rest_arg, const YYLTYPE *loc)
25801{
25802 NODE *node, *kw_rest_arg_node;
25803
25804 if (kw_rest_arg == idNil) {
25805 kw_rest_arg_node = NODE_SPECIAL_NO_REST_KEYWORD;
25806 }
25807 else if (kw_rest_arg) {
25808 kw_rest_arg_node = assignable(p, kw_rest_arg, 0, loc);
25809 }
25810 else {
25811 kw_rest_arg_node = NULL;
25812 }
25813
25814 node = NEW_HSHPTN(0, kw_args, kw_rest_arg_node, loc);
25815
25816 return node;
25817}
25818
25819static NODE*
25820dsym_node(struct parser_params *p, NODE *node, const YYLTYPE *loc)
25821{
25822 if (!node) {
25823 return NEW_SYM(STR_NEW0(), loc);
25824 }
25825
25826 switch (nd_type(node)) {
25827 case NODE_DSTR:
25828 nd_set_type(node, NODE_DSYM);
25829 nd_set_loc(node, loc);
25830 break;
25831 case NODE_STR:
25832 node = str_to_sym_node(p, node, loc);
25833 break;
25834 default:
25835 node = NEW_DSYM(0, 1, NEW_LIST(node, loc), loc);
25836 break;
25837 }
25838 return node;
25839}
25840
25841static int
25842nd_type_st_key_enable_p(NODE *node)
25843{
25844 switch (nd_type(node)) {
25845 case NODE_INTEGER:
25846 case NODE_FLOAT:
25847 case NODE_RATIONAL:
25848 case NODE_IMAGINARY:
25849 case NODE_STR:
25850 case NODE_SYM:
25851 case NODE_REGX:
25852 case NODE_LINE:
25853 case NODE_FILE:
25854 case NODE_ENCODING:
25855 return true;
25856 default:
25857 return false;
25858 }
25859}
25860
25861static VALUE
25862nd_value(struct parser_params *p, NODE *node)
25863{
25864 switch (nd_type(node)) {
25865 case NODE_STR:
25866 return rb_node_str_string_val(node);
25867 case NODE_INTEGER:
25868 return rb_node_integer_literal_val(node);
25869 case NODE_FLOAT:
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);
25875 case NODE_SYM:
25876 return rb_node_sym_string_val(node);
25877 case NODE_REGX:
25878 return rb_node_regx_string_val(node);
25879 case NODE_LINE:
25880 return rb_node_line_lineno_val(node);
25881 case NODE_ENCODING:
25882 return rb_node_encoding_val(node);
25883 case NODE_FILE:
25884 return rb_node_file_path_val(node);
25885 default:
25886 rb_bug("unexpected node: %s", ruby_node_name(nd_type(node)));
25888 }
25889}
25890
25891static void
25892warn_duplicate_keys(struct parser_params *p, NODE *hash)
25893{
25894 /* See https://bugs.ruby-lang.org/issues/20331 for discussion about what is warned. */
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;
25900 st_data_t key;
25901 st_data_t data;
25902
25903 /* keyword splat, e.g. {k: 1, **z, k: 2} */
25904 if (!head) {
25905 head = value;
25906 }
25907
25908 if (nd_type_st_key_enable_p(head)) {
25909 key = (st_data_t)head;
25910
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)));
25915 }
25916 st_insert(p->warn_duplicate_keys_table, (st_data_t)key, (st_data_t)hash);
25917 }
25918 hash = next;
25919 }
25920 st_free_table(p->warn_duplicate_keys_table);
25921 p->warn_duplicate_keys_table = NULL;
25922}
25923
25924static NODE *
25925new_hash(struct parser_params *p, NODE *hash, const YYLTYPE *loc)
25926{
25927 if (hash) warn_duplicate_keys(p, hash);
25928 return NEW_HASH(hash, loc);
25929}
25930
25931static void
25932error_duplicate_pattern_variable(struct parser_params *p, ID id, const YYLTYPE *loc)
25933{
25934 if (is_private_local_id(p, id)) {
25935 return;
25936 }
25937 if (st_is_member(p->pvtbl, id)) {
25938 yyerror1(loc, "duplicated variable name");
25939 }
25940 else {
25941 st_insert(p->pvtbl, (st_data_t)id, 0);
25942 }
25943}
25944
25945static void
25946error_duplicate_pattern_key(struct parser_params *p, VALUE key, const YYLTYPE *loc)
25947{
25948 if (!p->pktbl) {
25949 p->pktbl = st_init_numtable();
25950 }
25951 else if (st_is_member(p->pktbl, key)) {
25952 yyerror1(loc, "duplicated key name");
25953 return;
25954 }
25955 st_insert(p->pktbl, (st_data_t)key, 0);
25956}
25957
25958static NODE *
25959new_unique_key_hash(struct parser_params *p, NODE *hash, const YYLTYPE *loc)
25960{
25961 return NEW_HASH(hash, loc);
25962}
25963
25964static NODE *
25965new_op_assign(struct parser_params *p, NODE *lhs, ID op, NODE *rhs, struct lex_context ctxt, const YYLTYPE *loc)
25966{
25967 NODE *asgn;
25968
25969 if (lhs) {
25970 ID vid = get_nd_vid(p, lhs);
25971 YYLTYPE lhs_loc = lhs->nd_loc;
25972 if (op == tOROP) {
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);
25976 }
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);
25981 }
25982 else {
25983 asgn = lhs;
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);
25987 }
25988 }
25989 else {
25990 asgn = NEW_ERROR(loc);
25991 }
25992 return asgn;
25993}
25994
25995static NODE *
25996new_ary_op_assign(struct parser_params *p, NODE *ary,
25997 NODE *args, ID op, NODE *rhs, const YYLTYPE *args_loc, const YYLTYPE *loc,
25998 const YYLTYPE *call_operator_loc, const YYLTYPE *opening_loc, const YYLTYPE *closing_loc, const YYLTYPE *binary_operator_loc)
25999{
26000 NODE *asgn;
26001
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);
26005 fixpos(asgn, ary);
26006 return asgn;
26007}
26008
26009static NODE *
26010new_attr_op_assign(struct parser_params *p, NODE *lhs,
26011 ID atype, ID attr, ID op, NODE *rhs, const YYLTYPE *loc,
26012 const YYLTYPE *call_operator_loc, const YYLTYPE *message_loc, const YYLTYPE *binary_operator_loc)
26013{
26014 NODE *asgn;
26015
26016 asgn = NEW_OP_ASGN2(lhs, CALL_Q_P(atype), attr, op, rhs, loc, call_operator_loc, message_loc, binary_operator_loc);
26017 fixpos(asgn, lhs);
26018 return asgn;
26019}
26020
26021static NODE *
26022new_const_op_assign(struct parser_params *p, NODE *lhs, ID op, NODE *rhs, struct lex_context ctxt, const YYLTYPE *loc)
26023{
26024 NODE *asgn;
26025
26026 if (lhs) {
26027 asgn = NEW_OP_CDECL(lhs, op, rhs, ctxt.shareable_constant_value, loc);
26028 }
26029 else {
26030 asgn = NEW_ERROR(loc);
26031 }
26032 fixpos(asgn, lhs);
26033 return asgn;
26034}
26035
26036static NODE *
26037const_decl(struct parser_params *p, NODE *path, const YYLTYPE *loc)
26038{
26039 if (p->ctxt.in_def) {
26040#ifndef RIPPER
26041 yyerror1(loc, "dynamic constant assignment");
26042#else
26043 set_value(assign_error(p, "dynamic constant assignment", p->s_lvalue));
26044#endif
26045 }
26046 return NEW_CDECL(0, 0, (path), p->ctxt.shareable_constant_value, loc);
26047}
26048
26049#ifdef RIPPER
26050static VALUE
26051assign_error(struct parser_params *p, const char *mesg, VALUE a)
26052{
26053 a = dispatch2(assign_error, ERR_MESG(), a);
26054 ripper_error(p);
26055 return a;
26056}
26057#endif
26058
26059static NODE *
26060new_bodystmt(struct parser_params *p, NODE *head, NODE *rescue, NODE *rescue_else, NODE *ensure, const YYLTYPE *loc)
26061{
26062 NODE *result = head;
26063 if (rescue) {
26064 NODE *tmp = rescue_else ? rescue_else : rescue;
26065 YYLTYPE rescue_loc = code_loc_gen(&head->nd_loc, &tmp->nd_loc);
26066
26067 result = NEW_RESCUE(head, rescue, rescue_else, &rescue_loc);
26068 nd_set_line(result, rescue->nd_loc.beg_pos.lineno);
26069 }
26070 if (ensure) {
26071 result = NEW_ENSURE(result, ensure, loc);
26072 }
26073 fixpos(result, head);
26074 return result;
26075}
26076
26077static void
26078warn_unused_var(struct parser_params *p, struct local_vars *local)
26079{
26080 int cnt;
26081
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");
26086 }
26087#ifndef RIPPER
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]));
26094 }
26095#endif
26096}
26097
26098static void
26099local_push(struct parser_params *p, int toplevel_scope)
26100{
26101 struct local_vars *local;
26102 int inherits_dvars = toplevel_scope && compile_for_eval;
26103 int warn_unused_vars = RTEST(ruby_verbose);
26104
26105 local = ALLOC(struct local_vars);
26106 local->prev = p->lvtbl;
26107 local->args = vtable_alloc(0);
26108 local->vars = vtable_alloc(inherits_dvars ? DVARS_INHERIT : DVARS_TOPSCOPE);
26109#ifndef RIPPER
26110 if (toplevel_scope && compile_for_eval) warn_unused_vars = 0;
26111 if (toplevel_scope && e_option_supplied(p)) warn_unused_vars = 0;
26112#endif
26113 local->numparam.outer = 0;
26114 local->numparam.inner = 0;
26115 local->numparam.current = 0;
26116 local->it = 0;
26117 local->used = warn_unused_vars ? vtable_alloc(0) : 0;
26118
26119# if WARN_PAST_SCOPE
26120 local->past = 0;
26121# endif
26122 CMDARG_PUSH(0);
26123 COND_PUSH(0);
26124 p->lvtbl = local;
26125}
26126
26127static void
26128vtable_chain_free(struct parser_params *p, struct vtable *table)
26129{
26130 while (!DVARS_TERMINAL_P(table)) {
26131 struct vtable *cur_table = table;
26132 table = cur_table->prev;
26133 vtable_free(cur_table);
26134 }
26135}
26136
26137static void
26138local_free(struct parser_params *p, struct local_vars *local)
26139{
26140 vtable_chain_free(p, local->used);
26141
26142# if WARN_PAST_SCOPE
26143 vtable_chain_free(p, local->past);
26144# endif
26145
26146 vtable_chain_free(p, local->args);
26147 vtable_chain_free(p, local->vars);
26148
26149 ruby_sized_xfree(local, sizeof(struct local_vars));
26150}
26151
26152static void
26153local_pop(struct parser_params *p)
26154{
26155 struct local_vars *local = p->lvtbl->prev;
26156 if (p->lvtbl->used) {
26157 warn_unused_var(p, p->lvtbl);
26158 }
26159
26160 local_free(p, p->lvtbl);
26161 p->lvtbl = local;
26162
26163 CMDARG_POP();
26164 COND_POP();
26165}
26166
26167static rb_ast_id_table_t *
26168local_tbl(struct parser_params *p)
26169{
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;
26173 int i, j;
26174 rb_ast_id_table_t *tbl;
26175
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);
26179 /* remove IDs duplicated to warn shadowing */
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;
26184 }
26185 }
26186 if (j < cnt) {
26187 tbl = rb_ast_resize_latest_local_table(p->ast, j);
26188 }
26189
26190 return tbl;
26191}
26192
26193static void
26194numparam_name(struct parser_params *p, ID id)
26195{
26196 if (!NUMPARAM_ID_P(id)) return;
26197 compile_error(p, "_%d is reserved for numbered parameter",
26198 NUMPARAM_ID_TO_IDX(id));
26199}
26200
26201static void
26202arg_var(struct parser_params *p, ID id)
26203{
26204 numparam_name(p, id);
26205 vtable_add(p->lvtbl->args, id);
26206}
26207
26208static void
26209local_var(struct parser_params *p, ID id)
26210{
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);
26215 }
26216}
26217
26218#ifndef RIPPER
26219int
26220rb_parser_local_defined(struct parser_params *p, ID id, const struct rb_iseq_struct *iseq)
26221{
26222 return rb_local_defined(id, iseq);
26223}
26224#endif
26225
26226static int
26227local_id_ref(struct parser_params *p, ID id, ID **vidrefp)
26228{
26229 struct vtable *vars, *args, *used;
26230
26231 vars = p->lvtbl->vars;
26232 args = p->lvtbl->args;
26233 used = p->lvtbl->used;
26234
26235 while (vars && !DVARS_TERMINAL_P(vars->prev)) {
26236 vars = vars->prev;
26237 args = args->prev;
26238 if (used) used = used->prev;
26239 }
26240
26241 if (vars && vars->prev == DVARS_INHERIT) {
26242 return rb_parser_local_defined(p, id, p->parent_iseq);
26243 }
26244 else if (vtable_included(args, id)) {
26245 return 1;
26246 }
26247 else {
26248 int i = vtable_included(vars, id);
26249 if (i && used && vidrefp) *vidrefp = &used->tbl[i-1];
26250 return i != 0;
26251 }
26252}
26253
26254static int
26255local_id(struct parser_params *p, ID id)
26256{
26257 return local_id_ref(p, id, NULL);
26258}
26259
26260static int
26261check_forwarding_args(struct parser_params *p)
26262{
26263 if (local_id(p, idFWD_ALL)) return TRUE;
26264 compile_error(p, "unexpected ...");
26265 return FALSE;
26266}
26267
26268static void
26269add_forwarding_args(struct parser_params *p)
26270{
26271 arg_var(p, idFWD_REST);
26272#ifndef FORWARD_ARGS_WITH_RUBY2_KEYWORDS
26273 arg_var(p, idFWD_KWREST);
26274#endif
26275 arg_var(p, idFWD_BLOCK);
26276 arg_var(p, idFWD_ALL);
26277}
26278
26279static void
26280forwarding_arg_check(struct parser_params *p, ID arg, ID all, const char *var)
26281{
26282 bool conflict = false;
26283
26284 struct vtable *vars, *args;
26285
26286 vars = p->lvtbl->vars;
26287 args = p->lvtbl->args;
26288
26289 while (vars && !DVARS_TERMINAL_P(vars->prev)) {
26290 conflict |= (vtable_included(args, arg) && !(all && vtable_included(args, all)));
26291 vars = vars->prev;
26292 args = args->prev;
26293 }
26294
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)));
26299 }
26300 else {
26301 found = (vtable_included(args, arg) &&
26302 !(all && vtable_included(args, all)));
26303 }
26304
26305 if (!found) {
26306 compile_error(p, "no anonymous %s parameter", var);
26307 }
26308 else if (conflict) {
26309 compile_error(p, "anonymous %s parameter is also used within block", var);
26310 }
26311}
26312
26313static NODE *
26314new_args_forward_call(struct parser_params *p, NODE *leading, const YYLTYPE *loc, const YYLTYPE *argsloc)
26315{
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));
26319#endif
26320 rb_node_block_pass_t *block = NEW_BLOCK_PASS(NEW_LVAR(idFWD_BLOCK, loc), argsloc, &NULL_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);
26325#endif
26326 return arg_blk_pass(args, block);
26327}
26328
26329static NODE *
26330numparam_push(struct parser_params *p)
26331{
26332 struct local_vars *local = p->lvtbl;
26333 NODE *inner = local->numparam.inner;
26334 if (!local->numparam.outer) {
26335 local->numparam.outer = local->numparam.current;
26336 }
26337 local->numparam.inner = 0;
26338 local->numparam.current = 0;
26339 local->it = 0;
26340 return inner;
26341}
26342
26343static void
26344numparam_pop(struct parser_params *p, NODE *prev_inner)
26345{
26346 struct local_vars *local = p->lvtbl;
26347 if (prev_inner) {
26348 /* prefer first one */
26349 local->numparam.inner = prev_inner;
26350 }
26351 else if (local->numparam.current) {
26352 /* current and inner are exclusive */
26353 local->numparam.inner = local->numparam.current;
26354 }
26355 if (p->max_numparam > NO_PARAM) {
26356 /* current and outer are exclusive */
26357 local->numparam.current = local->numparam.outer;
26358 local->numparam.outer = 0;
26359 }
26360 else {
26361 /* no numbered parameter */
26362 local->numparam.current = 0;
26363 }
26364 local->it = 0;
26365}
26366
26367static const struct vtable *
26368dyna_push(struct parser_params *p)
26369{
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);
26374 }
26375 return p->lvtbl->args;
26376}
26377
26378static void
26379dyna_pop_vtable(struct parser_params *p, struct vtable **vtblp)
26380{
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;
26387 return;
26388 }
26389# endif
26390 vtable_free(tmp);
26391}
26392
26393static void
26394dyna_pop_1(struct parser_params *p)
26395{
26396 struct vtable *tmp;
26397
26398 if ((tmp = p->lvtbl->used) != 0) {
26399 warn_unused_var(p, p->lvtbl);
26400 p->lvtbl->used = p->lvtbl->used->prev;
26401 vtable_free(tmp);
26402 }
26403 dyna_pop_vtable(p, &p->lvtbl->args);
26404 dyna_pop_vtable(p, &p->lvtbl->vars);
26405}
26406
26407static void
26408dyna_pop(struct parser_params *p, const struct vtable *lvargs)
26409{
26410 while (p->lvtbl->args != lvargs) {
26411 dyna_pop_1(p);
26412 if (!p->lvtbl->args) {
26413 struct local_vars *local = p->lvtbl->prev;
26414 ruby_sized_xfree(p->lvtbl, sizeof(*p->lvtbl));
26415 p->lvtbl = local;
26416 }
26417 }
26418 dyna_pop_1(p);
26419}
26420
26421static int
26422dyna_in_block(struct parser_params *p)
26423{
26424 return !DVARS_TERMINAL_P(p->lvtbl->vars) && p->lvtbl->vars->prev != DVARS_TOPSCOPE;
26425}
26426
26427#ifndef RIPPER
26428int
26429dvar_defined_ref(struct parser_params *p, ID id, ID **vidrefp)
26430{
26431 struct vtable *vars, *args, *used;
26432 int i;
26433
26434 args = p->lvtbl->args;
26435 vars = p->lvtbl->vars;
26436 used = p->lvtbl->used;
26437
26438 while (!DVARS_TERMINAL_P(vars)) {
26439 if (vtable_included(args, id)) {
26440 return 1;
26441 }
26442 if ((i = vtable_included(vars, id)) != 0) {
26443 if (used && vidrefp) *vidrefp = &used->tbl[i-1];
26444 return 1;
26445 }
26446 args = args->prev;
26447 vars = vars->prev;
26448 if (!vidrefp) used = 0;
26449 if (used) used = used->prev;
26450 }
26451
26452 if (vars == DVARS_INHERIT && !NUMPARAM_ID_P(id)) {
26453 return rb_dvar_defined(id, p->parent_iseq);
26454 }
26455
26456 return 0;
26457}
26458#endif
26459
26460static int
26461dvar_defined(struct parser_params *p, ID id)
26462{
26463 return dvar_defined_ref(p, id, NULL);
26464}
26465
26466static int
26467dvar_curr(struct parser_params *p, ID id)
26468{
26469 return (vtable_included(p->lvtbl->args, id) ||
26470 vtable_included(p->lvtbl->vars, id));
26471}
26472
26473static void
26474reg_fragment_enc_error(struct parser_params* p, rb_parser_string_t *str, int c)
26475{
26476 compile_error(p,
26477 "regexp encoding option '%c' differs from source encoding '%s'",
26478 c, rb_enc_name(rb_parser_str_get_encoding(str)));
26479}
26480
26481#ifndef RIPPER
26482static rb_encoding *
26483find_enc(struct parser_params* p, const char *name)
26484{
26485 int idx = rb_enc_find_index(name);
26486 if (idx < 0) {
26487 rb_bug("unknown encoding name: %s", name);
26488 }
26489
26490 return rb_enc_from_index(idx);
26491}
26492
26493static rb_encoding *
26494kcode_to_enc(struct parser_params* p, int kcode)
26495{
26496 rb_encoding *enc;
26497
26498 switch (kcode) {
26499 case ENC_ASCII8BIT:
26500 enc = rb_ascii8bit_encoding();
26501 break;
26502 case ENC_EUC_JP:
26503 enc = find_enc(p, "EUC-JP");
26504 break;
26505 case ENC_Windows_31J:
26506 enc = find_enc(p, "Windows-31J");
26507 break;
26508 case ENC_UTF8:
26509 enc = rb_utf8_encoding();
26510 break;
26511 default:
26512 enc = NULL;
26513 break;
26514 }
26515
26516 return enc;
26517}
26518
26519int
26520rb_reg_fragment_setenc(struct parser_params* p, rb_parser_string_t *str, int options)
26521{
26522 int c = RE_OPTION_ENCODING_IDX(options);
26523
26524 if (c) {
26525 int opt, idx;
26526 rb_encoding *enc;
26527
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)) {
26532 goto error;
26533 }
26534 rb_parser_string_set_encoding(str, enc);
26535 }
26536 else if (RE_OPTION_ENCODING_NONE(options)) {
26537 if (!PARSER_ENCODING_IS_ASCII8BIT(p, str) &&
26538 !rb_parser_is_ascii_string(p, str)) {
26539 c = 'n';
26540 goto error;
26541 }
26542 rb_parser_enc_associate(p, str, rb_ascii8bit_encoding());
26543 }
26544 else if (rb_is_usascii_enc(p->enc)) {
26545 rb_parser_enc_associate(p, str, rb_ascii8bit_encoding());
26546 }
26547 return 0;
26548
26549 error:
26550 return c;
26551}
26552#endif
26553
26554static void
26555reg_fragment_setenc(struct parser_params* p, rb_parser_string_t *str, int options)
26556{
26557 int c = rb_reg_fragment_setenc(p, str, options);
26558 if (c) reg_fragment_enc_error(p, str, c);
26559}
26560
26561#ifndef UNIVERSAL_PARSER
26562typedef struct {
26563 struct parser_params* parser;
26564 rb_encoding *enc;
26565 NODE *succ_block;
26566 const YYLTYPE *loc;
26567 rb_parser_assignable_func assignable;
26569
26570static int
26571reg_named_capture_assign_iter(const OnigUChar *name, const OnigUChar *name_end,
26572 int back_num, int *back_refs, OnigRegex regex, void *arg0)
26573{
26575 struct parser_params* p = arg->parser;
26576 rb_encoding *enc = arg->enc;
26577 long len = name_end - name;
26578 const char *s = (const char *)name;
26579
26580 return rb_reg_named_capture_assign_iter_impl(p, s, len, enc, &arg->succ_block, arg->loc, arg->assignable);
26581}
26582
26583static NODE *
26584reg_named_capture_assign(struct parser_params* p, VALUE regexp, const YYLTYPE *loc, rb_parser_assignable_func assignable)
26585{
26587
26588 arg.parser = p;
26589 arg.enc = rb_enc_get(regexp);
26590 arg.succ_block = 0;
26591 arg.loc = loc;
26592 arg.assignable = assignable;
26593 onig_foreach_name(RREGEXP_PTR(regexp), reg_named_capture_assign_iter, &arg);
26594
26595 if (!arg.succ_block) return 0;
26596 return RNODE_BLOCK(arg.succ_block)->nd_next;
26597}
26598#endif
26599
26600#ifndef RIPPER
26601NODE *
26602rb_parser_assignable(struct parser_params *p, ID id, NODE *val, const YYLTYPE *loc)
26603{
26604 return assignable(p, id, val, loc);
26605}
26606
26607int
26608rb_reg_named_capture_assign_iter_impl(struct parser_params *p, const char *s, long len,
26609 rb_encoding *enc, NODE **succ_block, const rb_code_location_t *loc, rb_parser_assignable_func assignable)
26610{
26611 ID var;
26612 NODE *node, *succ;
26613
26614 if (!len) return ST_CONTINUE;
26615 if (!VALID_SYMNAME_P(s, len, enc, ID_LOCAL))
26616 return ST_CONTINUE;
26617
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;
26621 }
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;
26628}
26629#endif
26630
26631static VALUE
26632parser_reg_compile(struct parser_params* p, rb_parser_string_t *str, int options)
26633{
26634 VALUE str2;
26635 reg_fragment_setenc(p, str, options);
26636 str2 = rb_str_new_parser_string(str);
26637 return rb_parser_reg_compile(p, str2, options);
26638}
26639
26640#ifndef RIPPER
26641VALUE
26642rb_parser_reg_compile(struct parser_params* p, VALUE str, int options)
26643{
26644 return rb_reg_compile(str, options & RE_OPTION_MASK, p->ruby_sourcefile, p->ruby_sourceline);
26645}
26646#endif
26647
26648static VALUE
26649reg_compile(struct parser_params* p, rb_parser_string_t *str, int options)
26650{
26651 VALUE re;
26652 VALUE err;
26653
26654 err = rb_errinfo();
26655 re = parser_reg_compile(p, str, options);
26656 if (NIL_P(re)) {
26657 VALUE m = rb_attr_get(rb_errinfo(), idMesg);
26658 rb_set_errinfo(err);
26659 compile_error(p, "%"PRIsVALUE, m);
26660 return Qnil;
26661 }
26662 return re;
26663}
26664
26665#ifndef RIPPER
26666void
26667rb_ruby_parser_set_options(struct parser_params *p, int print, int loop, int chomp, int split)
26668{
26669 p->do_print = print;
26670 p->do_loop = loop;
26671 p->do_chomp = chomp;
26672 p->do_split = split;
26673}
26674
26675static NODE *
26676parser_append_options(struct parser_params *p, NODE *node)
26677{
26678 static const YYLTYPE default_location = {{1, 0}, {1, 0}};
26679 const YYLTYPE *const LOC = &default_location;
26680
26681 if (p->do_print) {
26682 NODE *print = (NODE *)NEW_FCALL(rb_intern("print"),
26683 NEW_LIST(NEW_GVAR(idLASTLINE, LOC), LOC),
26684 LOC);
26685 node = block_append(p, node, print);
26686 }
26687
26688 if (p->do_loop) {
26689 NODE *irs = NEW_LIST(NEW_GVAR(rb_intern("$/"), LOC), LOC);
26690
26691 if (p->do_split) {
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),
26698 LOC);
26699 node = block_append(p, split, node);
26700 }
26701 if (p->do_chomp) {
26702 NODE *chomp = NEW_SYM(rb_str_new_cstr("chomp"), LOC);
26703 chomp = list_append(p, NEW_LIST(chomp, LOC), NEW_TRUE(LOC));
26704 irs = list_append(p, irs, NEW_HASH(chomp, LOC));
26705 }
26706
26707 node = NEW_WHILE((NODE *)NEW_FCALL(idGets, irs, LOC), node, 1, LOC, &NULL_LOC, &NULL_LOC);
26708 }
26709
26710 return node;
26711}
26712
26713void
26714rb_init_parse(void)
26715{
26716 /* just to suppress unused-function warnings */
26717 (void)nodetype;
26718 (void)nodeline;
26719}
26720
26721ID
26722internal_id(struct parser_params *p)
26723{
26724 return rb_make_temporary_id(vtable_size(p->lvtbl->args) + vtable_size(p->lvtbl->vars));
26725}
26726#endif /* !RIPPER */
26727
26728static void
26729parser_initialize(struct parser_params *p)
26730{
26731 /* note: we rely on TypedData_Make_Struct to set most fields to 0 */
26732 p->command_start = TRUE;
26733 p->ruby_sourcefile_string = Qnil;
26734 p->lex.lpar_beg = -1; /* make lambda_beginning_p() == FALSE at first */
26735 string_buffer_init(p);
26736 p->node_id = 0;
26737 p->delayed.token = NULL;
26738 p->frozen_string_literal = -1; /* not specified */
26739#ifndef RIPPER
26740 p->error_buffer = Qfalse;
26741 p->end_expect_token_locations = NULL;
26742 p->token_id = 0;
26743 p->tokens = NULL;
26744#else
26745 p->result = Qnil;
26746 p->parsing_thread = Qnil;
26747 p->s_value = Qnil;
26748 p->s_lvalue = Qnil;
26749 p->s_value_stack = rb_ary_new();
26750#endif
26751 p->debug_buffer = Qnil;
26752 p->debug_output = rb_ractor_stdout();
26753 p->enc = rb_utf8_encoding();
26754 p->exits = 0;
26755}
26756
26757#ifdef RIPPER
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
26761#endif
26762
26763void
26764rb_ruby_parser_mark(void *ptr)
26765{
26766 struct parser_params *p = (struct parser_params*)ptr;
26767
26768 rb_gc_mark(p->ruby_sourcefile_string);
26769#ifndef RIPPER
26770 rb_gc_mark(p->error_buffer);
26771#else
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);
26778#endif
26779 rb_gc_mark(p->debug_buffer);
26780 rb_gc_mark(p->debug_output);
26781}
26782
26783void
26784rb_ruby_parser_free(void *ptr)
26785{
26786 struct parser_params *p = (struct parser_params*)ptr;
26787 struct local_vars *local, *prev;
26788
26789 if (p->ast) {
26790 rb_ast_free(p->ast);
26791 }
26792
26793 if (p->warn_duplicate_keys_table) {
26794 st_free_table(p->warn_duplicate_keys_table);
26795 }
26796
26797#ifndef RIPPER
26798 if (p->tokens) {
26799 rb_parser_ary_free(p, p->tokens);
26800 }
26801#endif
26802
26803 if (p->tokenbuf) {
26804 ruby_sized_xfree(p->tokenbuf, p->toksiz);
26805 }
26806
26807 for (local = p->lvtbl; local; local = prev) {
26808 prev = local->prev;
26809 local_free(p, local);
26810 }
26811
26812 {
26813 token_info *ptinfo;
26814 while ((ptinfo = p->token_info) != 0) {
26815 p->token_info = ptinfo->next;
26816 xfree(ptinfo);
26817 }
26818 }
26819 string_buffer_free(p);
26820
26821 if (p->pvtbl) {
26822 st_free_table(p->pvtbl);
26823 }
26824
26825 if (CASE_LABELS_ENABLED_P(p->case_labels)) {
26826 st_free_table(p->case_labels);
26827 }
26828
26829 xfree(p->lex.strterm);
26830 p->lex.strterm = 0;
26831
26832 xfree(ptr);
26833}
26834
26835size_t
26836rb_ruby_parser_memsize(const void *ptr)
26837{
26838 struct parser_params *p = (struct parser_params*)ptr;
26839 struct local_vars *local;
26840 size_t size = sizeof(*p);
26841
26842 size += p->toksiz;
26843 for (local = p->lvtbl; local; local = local->prev) {
26844 size += sizeof(*local);
26845 if (local->vars) size += local->vars->capa * sizeof(ID);
26846 }
26847 return size;
26848}
26849
26850#ifndef RIPPER
26851#undef rb_reserved_word
26852
26853const struct kwtable *
26854rb_reserved_word(const char *str, unsigned int len)
26855{
26856 return reserved_word(str, len);
26857}
26858
26859#ifdef UNIVERSAL_PARSER
26861rb_ruby_parser_allocate(const rb_parser_config_t *config)
26862{
26863 /* parser_initialize expects fields to be set to 0 */
26864 rb_parser_t *p = (rb_parser_t *)config->calloc(1, sizeof(rb_parser_t));
26865 p->config = config;
26866 return p;
26867}
26868
26870rb_ruby_parser_new(const rb_parser_config_t *config)
26871{
26872 /* parser_initialize expects fields to be set to 0 */
26873 rb_parser_t *p = rb_ruby_parser_allocate(config);
26874 parser_initialize(p);
26875 return p;
26876}
26877#else
26879rb_ruby_parser_allocate(void)
26880{
26881 /* parser_initialize expects fields to be set to 0 */
26882 rb_parser_t *p = (rb_parser_t *)ruby_xcalloc(1, sizeof(rb_parser_t));
26883 return p;
26884}
26885
26887rb_ruby_parser_new(void)
26888{
26889 /* parser_initialize expects fields to be set to 0 */
26890 rb_parser_t *p = rb_ruby_parser_allocate();
26891 parser_initialize(p);
26892 return p;
26893}
26894#endif
26895
26897rb_ruby_parser_set_context(rb_parser_t *p, const struct rb_iseq_struct *base, int main)
26898{
26899 p->error_buffer = main ? Qfalse : Qnil;
26900 p->parent_iseq = base;
26901 return p;
26902}
26903
26904void
26905rb_ruby_parser_set_script_lines(rb_parser_t *p)
26906{
26907 p->debug_lines = rb_parser_ary_new_capa_for_script_line(p, 10);
26908}
26909
26910void
26911rb_ruby_parser_error_tolerant(rb_parser_t *p)
26912{
26913 p->error_tolerant = 1;
26914}
26915
26916void
26917rb_ruby_parser_keep_tokens(rb_parser_t *p)
26918{
26919 p->keep_tokens = 1;
26920 p->tokens = rb_parser_ary_new_capa_for_ast_token(p, 10);
26921}
26922
26924rb_ruby_parser_encoding(rb_parser_t *p)
26925{
26926 return p->enc;
26927}
26928
26929int
26930rb_ruby_parser_end_seen_p(rb_parser_t *p)
26931{
26932 return p->ruby__end__seen;
26933}
26934
26935int
26936rb_ruby_parser_set_yydebug(rb_parser_t *p, int flag)
26937{
26938 p->debug = flag;
26939 return flag;
26940}
26941#endif /* !RIPPER */
26942
26943#ifdef RIPPER
26944int
26945rb_ruby_parser_get_yydebug(rb_parser_t *p)
26946{
26947 return p->debug;
26948}
26949
26950void
26951rb_ruby_parser_set_value(rb_parser_t *p, VALUE value)
26952{
26953 p->value = value;
26954}
26955
26956int
26957rb_ruby_parser_error_p(rb_parser_t *p)
26958{
26959 return p->error_p;
26960}
26961
26962VALUE
26963rb_ruby_parser_debug_output(rb_parser_t *p)
26964{
26965 return p->debug_output;
26966}
26967
26968void
26969rb_ruby_parser_set_debug_output(rb_parser_t *p, VALUE output)
26970{
26971 p->debug_output = output;
26972}
26973
26974VALUE
26975rb_ruby_parser_parsing_thread(rb_parser_t *p)
26976{
26977 return p->parsing_thread;
26978}
26979
26980void
26981rb_ruby_parser_set_parsing_thread(rb_parser_t *p, VALUE parsing_thread)
26982{
26983 p->parsing_thread = parsing_thread;
26984}
26985
26986void
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)
26988{
26989 p->lex.gets = gets;
26990 p->lex.input = input;
26991 p->eofp = 0;
26992 p->ruby_sourcefile_string = sourcefile_string;
26993 p->ruby_sourcefile = sourcefile;
26994 p->ruby_sourceline = sourceline;
26995}
26996
26997VALUE
26998rb_ruby_parser_result(rb_parser_t *p)
26999{
27000 return p->result;
27001}
27002
27004rb_ruby_parser_enc(rb_parser_t *p)
27005{
27006 return p->enc;
27007}
27008
27009VALUE
27010rb_ruby_parser_ruby_sourcefile_string(rb_parser_t *p)
27011{
27012 return p->ruby_sourcefile_string;
27013}
27014
27015int
27016rb_ruby_parser_ruby_sourceline(rb_parser_t *p)
27017{
27018 return p->ruby_sourceline;
27019}
27020
27021int
27022rb_ruby_parser_lex_state(rb_parser_t *p)
27023{
27024 return p->lex.state;
27025}
27026
27027void
27028rb_ruby_ripper_parse0(rb_parser_t *p)
27029{
27030 parser_prepare(p);
27031 p->ast = rb_ast_new();
27032 ripper_yyparse((void*)p);
27033 rb_ast_free(p->ast);
27034 p->ast = 0;
27035 p->eval_tree = 0;
27036 p->eval_tree_begin = 0;
27037}
27038
27039int
27040rb_ruby_ripper_dedent_string(rb_parser_t *p, rb_parser_string_t *string, int width)
27041{
27042 return dedent_string(p, string, width);
27043}
27044
27045int
27046rb_ruby_ripper_initialized_p(rb_parser_t *p)
27047{
27048 return p->lex.input != 0;
27049}
27050
27051void
27052rb_ruby_ripper_parser_initialize(rb_parser_t *p)
27053{
27054 parser_initialize(p);
27055}
27056
27057long
27058rb_ruby_ripper_column(rb_parser_t *p)
27059{
27060 return p->lex.ptok - p->lex.pbeg;
27061}
27062
27063long
27064rb_ruby_ripper_token_len(rb_parser_t *p)
27065{
27066 return p->lex.pcur - p->lex.ptok;
27067}
27068
27070rb_ruby_ripper_lex_lastline(rb_parser_t *p)
27071{
27072 return p->lex.lastline;
27073}
27074
27075VALUE
27076rb_ruby_ripper_lex_state_name(struct parser_params *p, int state)
27077{
27078 return rb_parser_lex_state_name(p, (enum lex_state_e)state);
27079}
27080
27081#ifdef UNIVERSAL_PARSER
27083rb_ripper_parser_params_allocate(const rb_parser_config_t *config)
27084{
27085 rb_parser_t *p = (rb_parser_t *)config->calloc(1, sizeof(rb_parser_t));
27086 p->config = config;
27087 return p;
27088}
27089#endif
27090
27091struct parser_params*
27092rb_ruby_ripper_parser_allocate(void)
27093{
27094 return (struct parser_params *)ruby_xcalloc(1, sizeof(struct parser_params));
27095}
27096#endif /* RIPPER */
27097
27098#ifndef RIPPER
27099void
27100rb_parser_printf(struct parser_params *p, const char *fmt, ...)
27101{
27102 va_list ap;
27103 VALUE mesg = p->debug_buffer;
27104
27105 if (NIL_P(mesg)) p->debug_buffer = mesg = rb_str_new(0, 0);
27106 va_start(ap, fmt);
27107 rb_str_vcatf(mesg, fmt, ap);
27108 va_end(ap);
27109 if (char_at_end(p, mesg, 0) == '\n') {
27110 rb_io_write(p->debug_output, mesg);
27111 p->debug_buffer = Qnil;
27112 }
27113}
27114
27115static void
27116parser_compile_error(struct parser_params *p, const rb_code_location_t *loc, const char *fmt, ...)
27117{
27118 va_list ap;
27119 int lineno, column;
27120
27121 if (loc) {
27122 lineno = loc->end_pos.lineno;
27123 column = loc->end_pos.column;
27124 }
27125 else {
27126 lineno = p->ruby_sourceline;
27127 column = rb_long2int(p->lex.pcur - p->lex.pbeg);
27128 }
27129
27130 rb_io_flush(p->debug_output);
27131 p->error_p = 1;
27132 va_start(ap, fmt);
27133 p->error_buffer =
27134 rb_syntax_error_append(p->error_buffer,
27135 p->ruby_sourcefile_string,
27136 lineno, column,
27137 p->enc, fmt, ap);
27138 va_end(ap);
27139}
27140
27141static size_t
27142count_char(const char *str, int c)
27143{
27144 int n = 0;
27145 while (str[n] == c) ++n;
27146 return n;
27147}
27148
27149/*
27150 * strip enclosing double-quotes, same as the default yytnamerr except
27151 * for that single-quotes matching back-quotes do not stop stripping.
27152 *
27153 * "\"`class' keyword\"" => "`class' keyword"
27154 */
27155size_t
27156rb_yytnamerr(struct parser_params *p, char *yyres, const char *yystr)
27157{
27158 if (*yystr == '"') {
27159 size_t yyn = 0, bquote = 0;
27160 const char *yyp = yystr;
27161
27162 while (*++yyp) {
27163 switch (*yyp) {
27164 case '\'':
27165 if (!bquote) {
27166 bquote = count_char(yyp+1, '\'') + 1;
27167 if (yyres) memcpy(&yyres[yyn], yyp, bquote);
27168 yyn += bquote;
27169 yyp += bquote - 1;
27170 break;
27171 }
27172 else {
27173 if (bquote && count_char(yyp+1, '\'') + 1 == bquote) {
27174 if (yyres) memcpy(yyres + yyn, yyp, bquote);
27175 yyn += bquote;
27176 yyp += bquote - 1;
27177 bquote = 0;
27178 break;
27179 }
27180 if (yyp[1] && yyp[1] != '\'' && yyp[2] == '\'') {
27181 if (yyres) memcpy(yyres + yyn, yyp, 3);
27182 yyn += 3;
27183 yyp += 2;
27184 break;
27185 }
27186 goto do_not_strip_quotes;
27187 }
27188
27189 case ',':
27190 goto do_not_strip_quotes;
27191
27192 case '\\':
27193 if (*++yyp != '\\')
27194 goto do_not_strip_quotes;
27195 /* Fall through. */
27196 default:
27197 if (yyres)
27198 yyres[yyn] = *yyp;
27199 yyn++;
27200 break;
27201
27202 case '"':
27203 case '\0':
27204 if (yyres)
27205 yyres[yyn] = '\0';
27206 return yyn;
27207 }
27208 }
27209 do_not_strip_quotes: ;
27210 }
27211
27212 if (!yyres) return strlen(yystr);
27213
27214 return (YYSIZE_T)(yystpcpy(yyres, yystr) - yyres);
27215}
27216#endif
27217
27218#ifdef RIPPER
27219#define validate(x) (void)(x)
27220
27221static VALUE
27222ripper_dispatch0(struct parser_params *p, ID mid)
27223{
27224 return rb_funcall(p->value, mid, 0);
27225}
27226
27227static VALUE
27228ripper_dispatch1(struct parser_params *p, ID mid, VALUE a)
27229{
27230 validate(a);
27231 return rb_funcall(p->value, mid, 1, a);
27232}
27233
27234static VALUE
27235ripper_dispatch2(struct parser_params *p, ID mid, VALUE a, VALUE b)
27236{
27237 validate(a);
27238 validate(b);
27239 return rb_funcall(p->value, mid, 2, a, b);
27240}
27241
27242static VALUE
27243ripper_dispatch3(struct parser_params *p, ID mid, VALUE a, VALUE b, VALUE c)
27244{
27245 validate(a);
27246 validate(b);
27247 validate(c);
27248 return rb_funcall(p->value, mid, 3, a, b, c);
27249}
27250
27251static VALUE
27252ripper_dispatch4(struct parser_params *p, ID mid, VALUE a, VALUE b, VALUE c, VALUE d)
27253{
27254 validate(a);
27255 validate(b);
27256 validate(c);
27257 validate(d);
27258 return rb_funcall(p->value, mid, 4, a, b, c, d);
27259}
27260
27261static VALUE
27262ripper_dispatch5(struct parser_params *p, ID mid, VALUE a, VALUE b, VALUE c, VALUE d, VALUE e)
27263{
27264 validate(a);
27265 validate(b);
27266 validate(c);
27267 validate(d);
27268 validate(e);
27269 return rb_funcall(p->value, mid, 5, a, b, c, d, e);
27270}
27271
27272static VALUE
27273ripper_dispatch7(struct parser_params *p, ID mid, VALUE a, VALUE b, VALUE c, VALUE d, VALUE e, VALUE f, VALUE g)
27274{
27275 validate(a);
27276 validate(b);
27277 validate(c);
27278 validate(d);
27279 validate(e);
27280 validate(f);
27281 validate(g);
27282 return rb_funcall(p->value, mid, 7, a, b, c, d, e, f, g);
27283}
27284
27285void
27286ripper_error(struct parser_params *p)
27287{
27288 p->error_p = TRUE;
27289}
27290
27291VALUE
27292ripper_value(struct parser_params *p)
27293{
27294 (void)yystpcpy; /* may not used in newer bison */
27295
27296 return p->value;
27297}
27298
27299#endif /* RIPPER */
27300/*
27301 * Local variables:
27302 * mode: c
27303 * c-file-style: "ruby"
27304 * End:
27305 */
#define ENC_CODERANGE_7BIT
Old name of RUBY_ENC_CODERANGE_7BIT.
Definition coderange.h:180
#define REALLOC_N
Old name of RB_REALLOC_N.
Definition memory.h:403
#define ISSPACE
Old name of rb_isspace.
Definition ctype.h:88
#define ALLOC
Old name of RB_ALLOC.
Definition memory.h:400
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
Definition assume.h:29
#define ZALLOC
Old name of RB_ZALLOC.
Definition memory.h:402
#define ENC_CODERANGE_UNKNOWN
Old name of RUBY_ENC_CODERANGE_UNKNOWN.
Definition coderange.h:179
#define xmalloc
Old name of ruby_xmalloc.
Definition xmalloc.h:53
#define ISDIGIT
Old name of rb_isdigit.
Definition ctype.h:93
#define ASSUME
Old name of RBIMPL_ASSUME.
Definition assume.h:27
#define ALLOC_N
Old name of RB_ALLOC_N.
Definition memory.h:399
#define MBCLEN_CHARFOUND_LEN(ret)
Old name of ONIGENC_MBCLEN_CHARFOUND_LEN.
Definition encoding.h:517
#define STRCASECMP
Old name of st_locale_insensitive_strcasecmp.
Definition ctype.h:102
#define ISALPHA
Old name of rb_isalpha.
Definition ctype.h:92
#define STRNCASECMP
Old name of st_locale_insensitive_strncasecmp.
Definition ctype.h:103
#define ISASCII
Old name of rb_isascii.
Definition ctype.h:85
#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.
Definition encoding.h:516
#define ISPRINT
Old name of rb_isprint.
Definition ctype.h:86
#define xcalloc
Old name of ruby_xcalloc.
Definition xmalloc.h:55
#define ISXDIGIT
Old name of rb_isxdigit.
Definition ctype.h:94
#define ISCNTRL
Old name of rb_iscntrl.
Definition ctype.h:96
#define ISALNUM
Old name of rb_isalnum.
Definition ctype.h:91
void rb_exc_raise(VALUE mesg)
Raises an exception in the current thread.
Definition eval.c:675
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
Definition error.h:475
VALUE rb_eRuntimeError
RuntimeError exception.
Definition error.c:1428
VALUE rb_eSyntaxError
SyntaxError exception.
Definition error.c:1447
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
Definition object.c:2138
Encoding relates APIs.
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.
Definition string.c:793
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
#define rb_str_new(str, len)
Allocates an instance of rb_cString.
Definition string.h:1498
#define rb_usascii_str_new(str, len)
Identical to rb_str_new, except it generates a string of "US ASCII" encoding.
Definition string.h:1532
VALUE rb_str_cat(VALUE dst, const char *src, long srclen)
Destructively appends the passed contents to the string.
Definition string.c:3463
#define rb_strlen_lit(str)
Length of a string literal.
Definition string.h:1692
#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.
Definition string.h:1656
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1514
ID rb_sym2id(VALUE obj)
Converts an instance of rb_cSymbol into an ID.
Definition symbol.c:933
int len
Length of the buffer.
Definition io.h:8
#define strtod(s, e)
Just another name of ruby_strtod.
Definition util.h:223
#define strdup(s)
Just another name of ruby_strdup.
Definition util.h:187
#define rb_long2int
Just another name of rb_long2int_inline.
Definition long.h:62
#define MEMCPY(p1, p2, type, n)
Handy macro to call memcpy.
Definition memory.h:372
#define ALLOCA_N(type, n)
Definition memory.h:292
#define MEMZERO(p, type, n)
Handy macro to erase a region of memory.
Definition memory.h:360
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
#define MEMMOVE(p1, p2, type, n)
Handy macro to call memmove.
Definition memory.h:384
VALUE type(ANYARGS)
ANYARGS-ed function type.
Functions related to nodes in the AST.
#define RREGEXP_PTR(obj)
Convenient accessor macro.
Definition rregexp.h:45
#define StringValueCStr(v)
Identical to StringValuePtr, except it additionally checks for the contents for viability as a C stri...
Definition rstring.h:89
#define errno
Ractor-aware version of errno.
Definition ruby.h:388
#define RTEST
This is an old name of RB_TEST.
Definition lex.c:33
Definition st.h:79
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
#define RBIMPL_WARNING_IGNORED(flag)
Suppresses a warning.
#define RBIMPL_WARNING_PUSH()
Pushes compiler warning state.
#define RBIMPL_WARNING_POP()
Pops compiler warning state.