summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler
diff options
context:
space:
mode:
Diffstat (limited to 'mrbgems/mruby-compiler')
-rw-r--r--mrbgems/mruby-compiler/core/codegen.c1488
-rw-r--r--mrbgems/mruby-compiler/core/parse.y384
-rw-r--r--mrbgems/mruby-compiler/core/y.tab.c7324
3 files changed, 4984 insertions, 4212 deletions
diff --git a/mrbgems/mruby-compiler/core/codegen.c b/mrbgems/mruby-compiler/core/codegen.c
index 12f7c3b3f..7edcd2029 100644
--- a/mrbgems/mruby-compiler/core/codegen.c
+++ b/mrbgems/mruby-compiler/core/codegen.c
@@ -4,10 +4,6 @@
** See Copyright Notice in mruby.h
*/
-#include <ctype.h>
-#include <stdlib.h>
-#include <string.h>
-#include <math.h>
#include <mruby.h>
#include <mruby/compile.h>
#include <mruby/proc.h>
@@ -20,9 +16,11 @@
#include <mruby/opcode.h>
#include <mruby/re.h>
#include <mruby/throw.h>
+#include <ctype.h>
+#include <string.h>
#ifndef MRB_CODEGEN_LEVEL_MAX
-#define MRB_CODEGEN_LEVEL_MAX 1024
+#define MRB_CODEGEN_LEVEL_MAX 256
#endif
#define MAXARG_S (1<<16)
@@ -40,15 +38,16 @@ enum looptype {
struct loopinfo {
enum looptype type;
- uint32_t pc0, pc1, pc2, pc3;
- int acc;
+ uint32_t pc0; /* `next` destination */
+ uint32_t pc1; /* `redo` destination */
+ uint32_t pc2; /* `break` destination */
+ int reg; /* destination register */
struct loopinfo *prev;
};
typedef struct scope {
mrb_state *mrb;
mrb_pool *mpool;
- struct mrb_jmpbuf jmp;
struct scope *prev;
@@ -58,7 +57,7 @@ typedef struct scope {
uint32_t pc;
uint32_t lastpc;
uint32_t lastlabel;
- int ainfo:15;
+ size_t ainfo:15;
mrb_bool mscope:1;
struct loopinfo *loop;
@@ -147,7 +146,7 @@ codegen_error(codegen_scope *s, const char *message)
fprintf(stderr, "%s\n", message);
}
#endif
- MRB_THROW(&s->jmp);
+ MRB_THROW(s->mrb->jmp);
}
static void*
@@ -237,7 +236,9 @@ genop_1(codegen_scope *s, mrb_code i, uint16_t a)
{
s->lastpc = s->pc;
if (a > 0xff) {
- codegen_error(s, "too big operand");
+ gen_B(s, OP_EXT1);
+ gen_B(s, i);
+ gen_S(s, a);
}
else {
gen_B(s, i);
@@ -249,30 +250,24 @@ static void
genop_2(codegen_scope *s, mrb_code i, uint16_t a, uint16_t b)
{
s->lastpc = s->pc;
- if (a > 0xff || b > 0xff) {
- codegen_error(s, "too big operand");
- }
- else {
+ if (a > 0xff && b > 0xff) {
+ gen_B(s, OP_EXT3);
gen_B(s, i);
- gen_B(s, (uint8_t)a);
- gen_B(s, (uint8_t)b);
- }
-}
-
-/* similar to `genop_2` but generate `genop_2S` with `i+1` */
-/* works for OP_LOADL, OP_LOADSYM, OP_STRING */
-static void
-genop_bs(codegen_scope *s, mrb_code i, uint16_t a, uint16_t b)
-{
- s->lastpc = s->pc;
- if (a > 0xff || b > 0xffff) {
- codegen_error(s, "too big operand");
+ gen_S(s, a);
+ gen_S(s, b);
}
- if (b > 0xff) {
- gen_B(s, i+1);
+ else if (b > 0xff) {
+ gen_B(s, OP_EXT2);
+ gen_B(s, i);
gen_B(s, (uint8_t)a);
gen_S(s, b);
}
+ else if (a > 0xff) {
+ gen_B(s, OP_EXT1);
+ gen_B(s, i);
+ gen_S(s, a);
+ gen_B(s, (uint8_t)b);
+ }
else {
gen_B(s, i);
gen_B(s, (uint8_t)a);
@@ -331,6 +326,8 @@ struct mrb_insn_data
mrb_decode_insn(const mrb_code *pc)
{
struct mrb_insn_data data = { 0 };
+ if (pc == 0) return data;
+ data.addr = pc;
mrb_code insn = READ_B();
uint16_t a = 0;
uint16_t b = 0;
@@ -341,6 +338,32 @@ mrb_decode_insn(const mrb_code *pc)
#define OPCODE(i,x) case OP_ ## i: FETCH_ ## x (); break;
#include "mruby/ops.h"
#undef OPCODE
+ }
+ switch (insn) {
+ case OP_EXT1:
+ insn = READ_B();
+ switch (insn) {
+#define OPCODE(i,x) case OP_ ## i: FETCH_ ## x ## _1 (); break;
+#include "mruby/ops.h"
+#undef OPCODE
+ }
+ break;
+ case OP_EXT2:
+ insn = READ_B();
+ switch (insn) {
+#define OPCODE(i,x) case OP_ ## i: FETCH_ ## x ## _2 (); break;
+#include "mruby/ops.h"
+#undef OPCODE
+ }
+ break;
+ case OP_EXT3:
+ insn = READ_B();
+ switch (insn) {
+#define OPCODE(i,x) case OP_ ## i: FETCH_ ## x ## _3 (); break;
+#include "mruby/ops.h"
+#undef OPCODE
+ }
+ break;
default:
break;
}
@@ -351,13 +374,101 @@ mrb_decode_insn(const mrb_code *pc)
return data;
}
+#undef OPCODE
+#define Z 1
+#define S 3
+#define W 4
+#define OPCODE(_,x) x,
+/* instruction sizes */
+static uint8_t mrb_insn_size[] = {
+#define B 2
+#define BB 3
+#define BBB 4
+#define BS 4
+#define BSS 6
+#include "mruby/ops.h"
+#undef B
+#undef BB
+#undef BBB
+#undef BS
+#undef BSS
+};
+/* EXT1 instruction sizes */
+static uint8_t mrb_insn_size1[] = {
+#define B 3
+#define BB 4
+#define BBB 5
+#define BS 5
+#define BSS 7
+#include "mruby/ops.h"
+#undef B
+#undef BS
+#undef BSS
+};
+/* EXT2 instruction sizes */
+static uint8_t mrb_insn_size2[] = {
+#define B 2
+#define BS 4
+#define BSS 6
+#include "mruby/ops.h"
+#undef B
+#undef BB
+#undef BBB
+#undef BS
+#undef BSS
+};
+/* EXT3 instruction sizes */
+#define B 3
+#define BB 5
+#define BBB 6
+#define BS 5
+#define BSS 7
+static uint8_t mrb_insn_size3[] = {
+#include "mruby/ops.h"
+};
+#undef B
+#undef BB
+#undef BBB
+#undef BS
+#undef BSS
+#undef OPCODE
+
+static const mrb_code*
+mrb_prev_pc(codegen_scope *s, const mrb_code *pc)
+{
+ const mrb_code *prev_pc = NULL;
+ const mrb_code *i = s->iseq;
+
+ while (i<pc) {
+ uint8_t insn = i[0];
+ prev_pc = i;
+ switch (insn) {
+ case OP_EXT1:
+ i += mrb_insn_size1[i[1]] + 1;
+ break;
+ case OP_EXT2:
+ i += mrb_insn_size2[i[1]] + 1;
+ break;
+ case OP_EXT3:
+ i += mrb_insn_size3[i[1]] + 1;
+ break;
+ default:
+ i += mrb_insn_size[insn];
+ break;
+ }
+ }
+ return prev_pc;
+}
+
+#define pc_addr(s) &((s)->iseq[(s)->pc])
+#define addr_pc(s, addr) (uint32_t)((addr) - s->iseq)
+#define rewind_pc(s) s->pc = s->lastpc
+
static struct mrb_insn_data
mrb_last_insn(codegen_scope *s)
{
- if (s->pc == s->lastpc) {
- struct mrb_insn_data data;
-
- data.insn = OP_NOP;
+ if (s->pc == 0) {
+ struct mrb_insn_data data = { OP_NOP, 0 };
return data;
}
return mrb_decode_insn(&s->iseq[s->lastpc]);
@@ -376,17 +487,15 @@ gen_jmpdst(codegen_scope *s, uint32_t pc)
{
if (pc == JMPLINK_START) {
- gen_S(s, 0);
+ pc = 0;
}
- else {
- uint32_t pos2 = s->pc+2;
- int32_t off = pc - pos2;
+ uint32_t pos2 = s->pc+2;
+ int32_t off = pc - pos2;
- if (off > INT16_MAX || INT16_MIN > off) {
- codegen_error(s, "too big jump offset");
- }
- gen_S(s, (uint16_t)off);
+ if (off > INT16_MAX || INT16_MIN > off) {
+ codegen_error(s, "too big jump offset");
}
+ gen_S(s, (uint16_t)off);
}
static uint32_t
@@ -394,8 +503,7 @@ genjmp(codegen_scope *s, mrb_code i, uint32_t pc)
{
uint32_t pos;
- s->lastpc = s->pc;
- gen_B(s, i);
+ genop_0(s, i);
pos = s->pc;
gen_jmpdst(s, pc);
return pos;
@@ -411,36 +519,64 @@ genjmp2(codegen_scope *s, mrb_code i, uint16_t a, uint32_t pc, int val)
if (!no_peephole(s) && !val) {
struct mrb_insn_data data = mrb_last_insn(s);
- if (data.insn == OP_MOVE && data.a == a) {
- s->pc = s->lastpc;
- a = data.b;
+ switch (data.insn) {
+ case OP_MOVE:
+ if (data.a == a && data.a > s->nlocals) {
+ rewind_pc(s);
+ a = data.b;
+ }
+ break;
+ case OP_LOADNIL:
+ case OP_LOADF:
+ if (data.a == a || data.a > s->nlocals) {
+ s->pc = addr_pc(s, data.addr);
+ if (i == OP_JMPNOT || (i == OP_JMPNIL && data.insn == OP_LOADNIL)) {
+ return genjmp(s, OP_JMP, pc);
+ }
+ else { /* OP_JMPIF */
+ return JMPLINK_START;
+ }
+ }
+ break;
+ case OP_LOADT: case OP_LOADI: case OP_LOADINEG: case OP_LOADI__1:
+ case OP_LOADI_0: case OP_LOADI_1: case OP_LOADI_2: case OP_LOADI_3:
+ case OP_LOADI_4: case OP_LOADI_5: case OP_LOADI_6: case OP_LOADI_7:
+ if (data.a == a || data.a > s->nlocals) {
+ s->pc = addr_pc(s, data.addr);
+ if (i == OP_JMPIF) {
+ return genjmp(s, OP_JMP, pc);
+ }
+ else { /* OP_JMPNOT and OP_JMPNIL */
+ return JMPLINK_START;
+ }
+ }
+ break;
}
}
- s->lastpc = s->pc;
if (a > 0xff) {
- codegen_error(s, "too big operand");
- pos = 0;
+ gen_B(s, OP_EXT1);
+ genop_0(s, i);
+ gen_S(s, a);
}
else {
- gen_B(s, i);
+ genop_0(s, i);
gen_B(s, (uint8_t)a);
- pos = s->pc;
- gen_jmpdst(s, pc);
}
+ pos = s->pc;
+ gen_jmpdst(s, pc);
return pos;
}
#define genjmp2_0(s,i,a,val) genjmp2(s,i,a,JMPLINK_START,val)
+static mrb_bool get_int_operand(codegen_scope *s, struct mrb_insn_data *data, mrb_int *ns);
+static void gen_int(codegen_scope *s, uint16_t dst, mrb_int i);
+
static void
gen_move(codegen_scope *s, uint16_t dst, uint16_t src, int nopeep)
{
- if (no_peephole(s)) {
- normal:
- genop_2(s, OP_MOVE, dst, src);
- return;
- }
+ if (nopeep || no_peephole(s)) goto normal;
else {
struct mrb_insn_data data = mrb_last_insn(s);
@@ -454,25 +590,104 @@ gen_move(codegen_scope *s, uint16_t dst, uint16_t src, int nopeep)
case OP_LOADI__1:
case OP_LOADI_0: case OP_LOADI_1: case OP_LOADI_2: case OP_LOADI_3:
case OP_LOADI_4: case OP_LOADI_5: case OP_LOADI_6: case OP_LOADI_7:
- if (nopeep || data.a != src || data.a < s->nlocals) goto normal;
- s->pc = s->lastpc;
+ if (data.a != src || data.a < s->nlocals) goto normal;
+ rewind_pc(s);
genop_1(s, data.insn, dst);
- break;
+ return;
+ case OP_HASH: case OP_ARRAY:
+ if (data.b != 0) goto normal;
+ /* fall through */
case OP_LOADI: case OP_LOADINEG:
case OP_LOADL: case OP_LOADSYM:
- case OP_LOADL16: case OP_LOADSYM16:
case OP_GETGV: case OP_GETSV: case OP_GETIV: case OP_GETCV:
- case OP_GETCONST: case OP_STRING: case OP_STRING16:
+ case OP_GETCONST: case OP_STRING:
case OP_LAMBDA: case OP_BLOCK: case OP_METHOD: case OP_BLKPUSH:
- case OP_LAMBDA16: case OP_BLOCK16: case OP_METHOD16:
- if (nopeep || data.a != src || data.a < s->nlocals) goto normal;
- s->pc = s->lastpc;
+ if (data.a != src || data.a < s->nlocals) goto normal;
+ rewind_pc(s);
genop_2(s, data.insn, dst, data.b);
- break;
+ return;
+ case OP_LOADI16:
+ if (data.a != src || data.a < s->nlocals) goto normal;
+ rewind_pc(s);
+ genop_2S(s, data.insn, dst, data.b);
+ return;
+ case OP_LOADI32:
+ if (data.a != src || data.a < s->nlocals) goto normal;
+ else {
+ uint32_t i = (uint32_t)data.b<<16|data.c;
+ rewind_pc(s);
+ genop_2SS(s, data.insn, dst, i);
+ }
+ return;
+ case OP_AREF:
+ case OP_GETUPVAR:
+ if (data.a != src || data.a < s->nlocals) goto normal;
+ rewind_pc(s);
+ genop_3(s, data.insn, dst, data.b, data.c);
+ return;
+ case OP_ADDI: case OP_SUBI:
+ if (addr_pc(s, data.addr) == s->lastlabel || data.a != src || data.a < s->nlocals) goto normal;
+ else {
+ struct mrb_insn_data data0 = mrb_decode_insn(mrb_prev_pc(s, data.addr));
+ if (data0.insn != OP_MOVE || data0.a != data.a || data0.b != dst) goto normal;
+ s->pc = addr_pc(s, data0.addr);
+ if (addr_pc(s, data0.addr) != s->lastlabel) {
+ /* constant folding */
+ data0 = mrb_decode_insn(mrb_prev_pc(s, data0.addr));
+ mrb_int n;
+ if (data0.a == dst && get_int_operand(s, &data0, &n)) {
+ if ((data.insn == OP_ADDI && !mrb_int_add_overflow(n, data.b, &n)) ||
+ (data.insn == OP_SUBI && !mrb_int_sub_overflow(n, data.b, &n))) {
+ s->pc = addr_pc(s, data0.addr);
+ gen_int(s, dst, n);
+ return;
+ }
+ }
+ }
+ }
+ genop_2(s, data.insn, dst, data.b);
+ return;
default:
- goto normal;
+ break;
}
}
+ normal:
+ genop_2(s, OP_MOVE, dst, src);
+ return;
+}
+
+static int search_upvar(codegen_scope *s, mrb_sym id, int *idx);
+
+static void
+gen_getupvar(codegen_scope *s, uint16_t dst, mrb_sym id)
+{
+ int idx;
+ int lv = search_upvar(s, id, &idx);
+
+ if (!no_peephole(s)) {
+ struct mrb_insn_data data = mrb_last_insn(s);
+ if (data.insn == OP_SETUPVAR && data.a == dst && data.b == idx && data.c == lv) {
+ /* skip GETUPVAR right after SETUPVAR */
+ return;
+ }
+ }
+ genop_3(s, OP_GETUPVAR, dst, idx, lv);
+}
+
+static void
+gen_setupvar(codegen_scope *s, uint16_t dst, mrb_sym id)
+{
+ int idx;
+ int lv = search_upvar(s, id, &idx);
+
+ if (!no_peephole(s)) {
+ struct mrb_insn_data data = mrb_last_insn(s);
+ if (data.insn == OP_MOVE && data.a == dst) {
+ dst = data.b;
+ rewind_pc(s);
+ }
+ }
+ genop_3(s, OP_SETUPVAR, dst, idx, lv);
}
static void
@@ -485,7 +700,7 @@ gen_return(codegen_scope *s, uint8_t op, uint16_t src)
struct mrb_insn_data data = mrb_last_insn(s);
if (data.insn == OP_MOVE && src == data.a) {
- s->pc = s->lastpc;
+ rewind_pc(s);
genop_1(s, op, data.b);
}
else if (data.insn != OP_RETURN) {
@@ -494,6 +709,55 @@ gen_return(codegen_scope *s, uint8_t op, uint16_t src)
}
}
+static mrb_bool
+get_int_operand(codegen_scope *s, struct mrb_insn_data *data, mrb_int *n)
+{
+ switch (data->insn) {
+ case OP_LOADI__1:
+ *n = -1;
+ return TRUE;
+
+ case OP_LOADINEG:
+ *n = -data->b;
+ return TRUE;
+
+ case OP_LOADI_0: case OP_LOADI_1: case OP_LOADI_2: case OP_LOADI_3:
+ case OP_LOADI_4: case OP_LOADI_5: case OP_LOADI_6: case OP_LOADI_7:
+ *n = data->insn - OP_LOADI_0;
+ return TRUE;
+
+ case OP_LOADI:
+ case OP_LOADI16:
+ *n = data->b;
+ return TRUE;
+
+ case OP_LOADI32:
+ *n = (mrb_int)((uint32_t)data->b<<16)+data->c;
+ return TRUE;
+
+ case OP_LOADL:
+ {
+ mrb_pool_value *pv = &s->pool[data->b];
+
+ if (pv->tt == IREP_TT_INT32) {
+ *n = (mrb_int)pv->u.i32;
+ }
+#ifdef MRB_INT64
+ else if (pv->tt == IREP_TT_INT64) {
+ *n = (mrb_int)pv->u.i64;
+ }
+#endif
+ else {
+ return FALSE;
+ }
+ }
+ return TRUE;
+
+ default:
+ return FALSE;
+ }
+}
+
static void
gen_addsub(codegen_scope *s, uint8_t op, uint16_t dst)
{
@@ -504,31 +768,123 @@ gen_addsub(codegen_scope *s, uint8_t op, uint16_t dst)
}
else {
struct mrb_insn_data data = mrb_last_insn(s);
+ mrb_int n;
- switch (data.insn) {
- case OP_LOADI__1:
- if (op == OP_ADD) op = OP_SUB;
- else op = OP_ADD;
- data.b = 1;
- goto replace;
- case OP_LOADI_0: case OP_LOADI_1: case OP_LOADI_2: case OP_LOADI_3:
- case OP_LOADI_4: case OP_LOADI_5: case OP_LOADI_6: case OP_LOADI_7:
- data.b = data.insn - OP_LOADI_0;
- /* fall through */
- case OP_LOADI:
- replace:
- if (data.b >= 128) goto normal;
- s->pc = s->lastpc;
+ if (!get_int_operand(s, &data, &n)) {
+ /* not integer immediate */
+ goto normal;
+ }
+ struct mrb_insn_data data0 = mrb_decode_insn(mrb_prev_pc(s, data.addr));
+ mrb_int n0;
+ if (addr_pc(s, data.addr) == s->lastlabel || !get_int_operand(s, &data0, &n0)) {
+ /* OP_ADDI/OP_SUBI takes upto 16bits */
+ if (n > INT16_MAX) goto normal;
+ rewind_pc(s);
if (op == OP_ADD) {
- genop_2(s, OP_ADDI, dst, (uint8_t)data.b);
+ genop_2(s, OP_ADDI, dst, (uint16_t)n);
}
else {
- genop_2(s, OP_SUBI, dst, (uint8_t)data.b);
+ genop_2(s, OP_SUBI, dst, (uint16_t)n);
}
- break;
- default:
+ return;
+ }
+ if (op == OP_ADD) {
+ if (mrb_int_add_overflow(n0, n, &n)) goto normal;
+ }
+ else { /* OP_SUB */
+ if (mrb_int_sub_overflow(n0, n, &n)) goto normal;
+ }
+ s->pc = addr_pc(s, data0.addr);
+ gen_int(s, dst, n);
+ }
+}
+
+static void
+gen_muldiv(codegen_scope *s, uint8_t op, uint16_t dst)
+{
+ if (no_peephole(s)) {
+ normal:
+ genop_1(s, op, dst);
+ return;
+ }
+ else {
+ struct mrb_insn_data data = mrb_last_insn(s);
+ mrb_int n, n0;
+ if (addr_pc(s, data.addr) == s->lastlabel || !get_int_operand(s, &data, &n)) {
+ /* not integer immediate */
+ goto normal;
+ }
+ struct mrb_insn_data data0 = mrb_decode_insn(mrb_prev_pc(s, data.addr));
+ if (!get_int_operand(s, &data0, &n0) || n == 0) {
goto normal;
}
+ if (op == OP_MUL) {
+ if (mrb_int_mul_overflow(n0, n, &n)) goto normal;
+ }
+ else { /* OP_DIV */
+ if (n0 == MRB_INT_MIN && n == -1) goto normal;
+ n = n0 / n;
+ }
+ s->pc = addr_pc(s, data0.addr);
+ gen_int(s, dst, n);
+ }
+}
+
+mrb_bool mrb_num_shift(mrb_state *mrb, mrb_int val, mrb_int width, mrb_int *num);
+
+static mrb_bool
+gen_binop(codegen_scope *s, mrb_sym op, uint16_t dst)
+{
+ if (no_peephole(s)) return FALSE;
+ else if (op == MRB_OPSYM_2(s->mrb, aref)) {
+ genop_1(s, OP_GETIDX, dst);
+ return TRUE;
+ }
+ else {
+ struct mrb_insn_data data = mrb_last_insn(s);
+ mrb_int n, n0;
+ if (addr_pc(s, data.addr) == s->lastlabel || !get_int_operand(s, &data, &n)) {
+ /* not integer immediate */
+ return FALSE;
+ }
+ struct mrb_insn_data data0 = mrb_decode_insn(mrb_prev_pc(s, data.addr));
+ if (!get_int_operand(s, &data0, &n0)) {
+ return FALSE;
+ }
+ if (op == MRB_OPSYM_2(s->mrb, lshift)) {
+ if (!mrb_num_shift(s->mrb, n0, n, &n)) return FALSE;
+ }
+ else if (op == MRB_OPSYM_2(s->mrb, rshift)) {
+ if (n == MRB_INT_MIN) return FALSE;
+ if (!mrb_num_shift(s->mrb, n0, -n, &n)) return FALSE;
+ }
+ else if (op == MRB_OPSYM_2(s->mrb, mod) && n != 0) {
+ if (n0 == MRB_INT_MIN && n == -1) {
+ n = 0;
+ }
+ else {
+ mrb_int n1 = n0 % n;
+ if ((n0 < 0) != (n < 0) && n1 != 0) {
+ n1 += n;
+ }
+ n = n1;
+ }
+ }
+ else if (op == MRB_OPSYM_2(s->mrb, and)) {
+ n = n0 & n;
+ }
+ else if (op == MRB_OPSYM_2(s->mrb, or)) {
+ n = n0 | n;
+ }
+ else if (op == MRB_OPSYM_2(s->mrb, xor)) {
+ n = n0 ^ n;
+ }
+ else {
+ return FALSE;
+ }
+ s->pc = addr_pc(s, data0.addr);
+ gen_int(s, dst, n);
+ return TRUE;
}
}
@@ -751,6 +1107,66 @@ new_sym(codegen_scope *s, mrb_sym sym)
return s->irep->slen++;
}
+static void
+gen_setxv(codegen_scope *s, uint8_t op, uint16_t dst, mrb_sym sym, int val)
+{
+ int idx = new_sym(s, sym);
+ if (!val && !no_peephole(s)) {
+ struct mrb_insn_data data = mrb_last_insn(s);
+ if (data.insn == OP_MOVE && data.a == dst) {
+ dst = data.b;
+ rewind_pc(s);
+ }
+ }
+ genop_2(s, op, dst, idx);
+}
+
+static void
+gen_int(codegen_scope *s, uint16_t dst, mrb_int i)
+{
+ if (i < 0) {
+ if (i == -1) genop_1(s, OP_LOADI__1, dst);
+ else if (i >= -0xff) genop_2(s, OP_LOADINEG, dst, (uint16_t)-i);
+ else if (i >= INT16_MIN) genop_2S(s, OP_LOADI16, dst, (uint16_t)i);
+ else if (i >= INT32_MIN) genop_2SS(s, OP_LOADI32, dst, (uint32_t)i);
+ else goto int_lit;
+ }
+ else if (i < 8) genop_1(s, OP_LOADI_0 + (uint8_t)i, dst);
+ else if (i <= 0xff) genop_2(s, OP_LOADI, dst, (uint16_t)i);
+ else if (i <= INT16_MAX) genop_2S(s, OP_LOADI16, dst, (uint16_t)i);
+ else if (i <= INT32_MAX) genop_2SS(s, OP_LOADI32, dst, (uint32_t)i);
+ else {
+ int_lit:
+ genop_2(s, OP_LOADL, dst, new_lit(s, mrb_int_value(s->mrb, i)));
+ }
+}
+
+static mrb_bool
+gen_uniop(codegen_scope *s, mrb_sym sym, uint16_t dst)
+{
+ if (no_peephole(s)) return FALSE;
+ struct mrb_insn_data data = mrb_last_insn(s);
+ mrb_int n;
+
+ if (!get_int_operand(s, &data, &n)) return FALSE;
+ if (sym == MRB_OPSYM_2(s->mrb, plus)) {
+ /* unary plus does nothing */
+ }
+ else if (sym == MRB_OPSYM_2(s->mrb, minus)) {
+ if (n == MRB_INT_MIN) return FALSE;
+ n = -n;
+ }
+ else if (sym == MRB_OPSYM_2(s->mrb, neg)) {
+ n = ~n;
+ }
+ else {
+ return FALSE;
+ }
+ s->pc = addr_pc(s, data.addr);
+ gen_int(s, dst, n);
+ return TRUE;
+}
+
static int
node_len(node *tree)
{
@@ -807,10 +1223,12 @@ search_upvar(codegen_scope *s, mrb_sym id, int *idx)
int i;
const mrb_sym *v = ir->lv;
- for (i=1; n > 1; n--, v++, i++) {
- if (*v == id) {
- *idx = i;
- return lv - 1;
+ if (v) {
+ for (i=1; n > 1; n--, v++, i++) {
+ if (*v == id) {
+ *idx = i;
+ return lv - 1;
+ }
}
}
if (MRB_PROC_SCOPE_P(u)) break;
@@ -848,7 +1266,7 @@ for_body(codegen_scope *s, node *tree)
}
/* construct loop */
lp = loop_push(s, LOOP_FOR);
- lp->pc2 = new_label(s);
+ lp->pc1 = new_label(s);
/* loop body */
codegen(s, tree->cdr->cdr->car, VAL);
@@ -883,8 +1301,8 @@ lambda_body(codegen_scope *s, node *tree, int blk)
}
else {
mrb_aspec a;
- int ma, oa, ra, pa, ka, kd, ba;
- int pos, i;
+ int ma, oa, ra, pa, ka, kd, ba, i;
+ uint32_t pos;
node *opt;
node *margs, *pargs;
node *tail;
@@ -945,8 +1363,7 @@ lambda_body(codegen_scope *s, node *tree, int blk)
gen_move(s, idx, cursp(), 0);
}
else {
- int lv = search_upvar(s, id, &idx);
- genop_3(s, OP_GETUPVAR, cursp(), idx, lv);
+ gen_getupvar(s, cursp(), id);
}
i++;
opt = opt->cdr;
@@ -984,8 +1401,7 @@ lambda_body(codegen_scope *s, node *tree, int blk)
gen_move(s, idx, cursp(), 0);
}
else {
- int lv = search_upvar(s, kwd_sym, &idx);
- genop_3(s, OP_GETUPVAR, cursp(), idx, lv);
+ gen_getupvar(s, cursp(), kwd_sym);
}
jmp_def_set = genjmp_0(s, OP_JMP);
dispatch(s, jmpif_key_p);
@@ -1091,80 +1507,149 @@ attrsym(codegen_scope *s, mrb_sym a)
return mrb_intern(s->mrb, name2, len+1);
}
-#define CALL_MAXARGS 127
+#define CALL_MAXARGS 15
+#define GEN_LIT_ARY_MAX 64
+#define GEN_VAL_STACK_MAX 99
static int
-gen_values(codegen_scope *s, node *t, int val, int extra)
+gen_values(codegen_scope *s, node *t, int val, int extra, int limit)
{
int n = 0;
- int is_splat;
+ int first = 1;
+ int slimit = GEN_VAL_STACK_MAX;
+
+ if (limit == 0) limit = GEN_LIT_ARY_MAX;
+ if (cursp() >= slimit) slimit = INT16_MAX;
+
+ if (!val) {
+ while (t) {
+ codegen(s, t->car, NOVAL);
+ n++;
+ t = t->cdr;
+ }
+ return n;
+ }
while (t) {
- is_splat = nint(t->car->car) == NODE_SPLAT; /* splat mode */
- if (
- n+extra >= CALL_MAXARGS - 1 /* need to subtract one because vm.c expects an array if n == CALL_MAXARGS */
- || is_splat) {
- if (val) {
- if (is_splat && n == 0 && nint(t->car->cdr->car) == NODE_ARRAY) {
- codegen(s, t->car->cdr, VAL);
- pop();
+ int is_splat = nint(t->car->car) == NODE_SPLAT;
+
+ if (is_splat || n+extra >= limit-1 || cursp() >= slimit) { /* flush stack */
+ pop_n(n);
+ if (first) {
+ if (n == 0) {
+ genop_1(s, OP_LOADNIL, cursp());
}
else {
- pop_n(n);
- if (n == 0 && is_splat) {
- genop_1(s, OP_LOADNIL, cursp());
- }
- else {
- genop_2(s, OP_ARRAY, cursp(), n);
- }
- push();
- codegen(s, t->car, VAL);
- pop(); pop();
- if (is_splat) {
- genop_1(s, OP_ARYCAT, cursp());
- }
- else {
- genop_1(s, OP_ARYPUSH, cursp());
- }
- }
- t = t->cdr;
- while (t) {
- push();
- codegen(s, t->car, VAL);
- pop(); pop();
- if (nint(t->car->car) == NODE_SPLAT) {
- genop_1(s, OP_ARYCAT, cursp());
- }
- else {
- genop_1(s, OP_ARYPUSH, cursp());
- }
- t = t->cdr;
+ genop_2(s, OP_ARRAY, cursp(), n);
}
+ push();
+ first = 0;
+ limit = GEN_LIT_ARY_MAX;
}
- else {
- while (t) {
- codegen(s, t->car, NOVAL);
- t = t->cdr;
- }
+ else if (n > 0) {
+ pop();
+ genop_2(s, OP_ARYPUSH, cursp(), n);
+ push();
}
- return -1;
+ n = 0;
}
- /* normal (no splat) mode */
codegen(s, t->car, val);
- n++;
+ if (is_splat) {
+ pop(); pop();
+ genop_1(s, OP_ARYCAT, cursp());
+ push();
+ }
+ else {
+ n++;
+ }
t = t->cdr;
}
+ if (!first) {
+ pop();
+ if (n > 0) {
+ pop_n(n);
+ genop_2(s, OP_ARYPUSH, cursp(), n);
+ }
+ return -1; /* variable length */
+ }
return n;
}
+static int
+gen_hash(codegen_scope *s, node *tree, int val, int limit)
+{
+ int slimit = GEN_VAL_STACK_MAX;
+ if (cursp() >= GEN_LIT_ARY_MAX) slimit = INT16_MAX;
+ int len = 0;
+ mrb_bool update = FALSE;
+
+ while (tree) {
+ if (nint(tree->car->car->car) == NODE_KW_REST_ARGS) {
+ if (len > 0) {
+ pop_n(len*2);
+ if (!update) {
+ genop_2(s, OP_HASH, cursp(), len);
+ }
+ else {
+ pop();
+ genop_2(s, OP_HASHADD, cursp(), len);
+ }
+ push();
+ }
+ codegen(s, tree->car->cdr, val);
+ if (len > 0 || update) {
+ pop(); pop();
+ genop_1(s, OP_HASHCAT, cursp());
+ push();
+ }
+ update = TRUE;
+ len = 0;
+ }
+ else {
+ codegen(s, tree->car->car, val);
+ codegen(s, tree->car->cdr, val);
+ len++;
+ }
+ tree = tree->cdr;
+ if (val && cursp() >= slimit) {
+ pop_n(len*2);
+ if (!update) {
+ genop_2(s, OP_HASH, cursp(), len);
+ }
+ else {
+ pop();
+ genop_2(s, OP_HASHADD, cursp(), len);
+ }
+ push();
+ update = TRUE;
+ len = 0;
+ }
+ }
+ if (update) {
+ if (len > 0) {
+ pop_n(len*2+1);
+ genop_2(s, OP_HASHADD, cursp(), len);
+ push();
+ }
+ return -1; /* variable length */
+ }
+ if (update) return -1;
+ return len;
+}
+
static void
gen_call(codegen_scope *s, node *tree, mrb_sym name, int sp, int val, int safe)
{
mrb_sym sym = name ? name : nsym(tree->cdr->car);
- int skip = 0;
- int n = 0, noop = 0, sendv = 0, blk = 0;
+ int skip = 0, n = 0, nk = 0, noop = 0, noself = 0, blk = 0, sp_save = cursp();
- codegen(s, tree->car, VAL); /* receiver */
+ if (!tree->car) {
+ noself = noop = 1;
+ push();
+ }
+ else {
+ codegen(s, tree->car, VAL); /* receiver */
+ }
if (safe) {
int recv = cursp()-1;
gen_move(s, cursp(), recv, 1);
@@ -1172,74 +1657,92 @@ gen_call(codegen_scope *s, node *tree, mrb_sym name, int sp, int val, int safe)
}
tree = tree->cdr->cdr->car;
if (tree) {
- n = gen_values(s, tree->car, VAL, sp?1:0);
- if (n < 0) {
- n = noop = sendv = 1;
- push();
+ if (tree->car) { /* positional arguments */
+ n = gen_values(s, tree->car, VAL, sp?1:0, 14);
+ if (n < 0) { /* variable length */
+ noop = 1; /* not operator */
+ n = 15;
+ push();
+ }
+ }
+ if (tree->cdr->car) { /* keyword arguments */
+ noop = 1;
+ nk = gen_hash(s, tree->cdr->car->cdr, VAL, 14);
+ if (nk < 0) nk = 15;
}
}
- if (sp) { /* last argument pushed (attr=) */
- if (sendv) {
+ if (sp) { /* last argument pushed (attr=, []=) */
+ /* pack keyword arguments */
+ if (nk > 0 && nk < 15) {
+ pop_n(nk*2);
+ genop_2(s, OP_HASH, cursp(), nk);
+ push();
+ }
+ if (n == CALL_MAXARGS) {
+ if (nk > 0) {
+ pop(); pop();
+ genop_2(s, OP_ARYPUSH, cursp(), 1);
+ push();
+ }
gen_move(s, cursp(), sp, 0);
pop();
- genop_1(s, OP_ARYPUSH, cursp());
+ genop_2(s, OP_ARYPUSH, cursp(), 1);
push();
}
else {
gen_move(s, cursp(), sp, 0);
push();
+ if (nk > 0) n++;
n++;
}
+ nk = 0;
}
- if (tree && tree->cdr) {
- noop = 1;
- codegen(s, tree->cdr, VAL);
+ if (tree && tree->cdr && tree->cdr->cdr) {
+ codegen(s, tree->cdr->cdr, VAL);
pop();
+ noop = 1;
blk = 1;
}
push();pop();
- pop_n(n+1);
- {
- mrb_int symlen;
- const char *symname = mrb_sym_name_len(s->mrb, sym, &symlen);
-
- if (!noop && symlen == 1 && symname[0] == '+' && n == 1) {
- gen_addsub(s, OP_ADD, cursp());
- }
- else if (!noop && symlen == 1 && symname[0] == '-' && n == 1) {
- gen_addsub(s, OP_SUB, cursp());
- }
- else if (!noop && symlen == 1 && symname[0] == '*' && n == 1) {
- genop_1(s, OP_MUL, cursp());
- }
- else if (!noop && symlen == 1 && symname[0] == '/' && n == 1) {
- genop_1(s, OP_DIV, cursp());
- }
- else if (!noop && symlen == 1 && symname[0] == '<' && n == 1) {
- genop_1(s, OP_LT, cursp());
- }
- else if (!noop && symlen == 2 && symname[0] == '<' && symname[1] == '=' && n == 1) {
- genop_1(s, OP_LE, cursp());
- }
- else if (!noop && symlen == 1 && symname[0] == '>' && n == 1) {
- genop_1(s, OP_GT, cursp());
- }
- else if (!noop && symlen == 2 && symname[0] == '>' && symname[1] == '=' && n == 1) {
- genop_1(s, OP_GE, cursp());
- }
- else if (!noop && symlen == 2 && symname[0] == '=' && symname[1] == '=' && n == 1) {
- genop_1(s, OP_EQ, cursp());
- }
- else {
- int idx = new_sym(s, sym);
-
- if (sendv) {
- genop_2(s, blk ? OP_SENDVB : OP_SENDV, cursp(), idx);
- }
- else {
- genop_3(s, blk ? OP_SENDB : OP_SEND, cursp(), idx, n);
- }
- }
+ s->sp = sp_save;
+ if (!noop && sym == MRB_OPSYM_2(s->mrb, add) && n == 1) {
+ gen_addsub(s, OP_ADD, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, sub) && n == 1) {
+ gen_addsub(s, OP_SUB, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, mul) && n == 1) {
+ gen_muldiv(s, OP_MUL, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, div) && n == 1) {
+ gen_muldiv(s, OP_DIV, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, lt) && n == 1) {
+ genop_1(s, OP_LT, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, le) && n == 1) {
+ genop_1(s, OP_LE, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, gt) && n == 1) {
+ genop_1(s, OP_GT, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, ge) && n == 1) {
+ genop_1(s, OP_GE, cursp());
+ }
+ else if (!noop && sym == MRB_OPSYM_2(s->mrb, eq) && n == 1) {
+ genop_1(s, OP_EQ, cursp());
+ }
+ else if (!noop && n == 0 && gen_uniop(s, sym, cursp())) {
+ /* constant folding succeeded */
+ }
+ else if (!noop && n == 1 && gen_binop(s, sym, cursp())) {
+ /* constant folding succeeded */
+ }
+ else if (noself ){
+ genop_3(s, blk ? OP_SSENDB : OP_SSEND, cursp(), new_sym(s, sym), n|(nk<<4));
+ }
+ else {
+ genop_3(s, blk ? OP_SENDB : OP_SEND, cursp(), new_sym(s, sym), n|(nk<<4));
}
if (safe) {
dispatch(s, skip);
@@ -1258,8 +1761,7 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val)
tree = tree->cdr;
switch (type) {
case NODE_GVAR:
- idx = new_sym(s, nsym(tree));
- genop_2(s, OP_SETGV, sp, idx);
+ gen_setxv(s, OP_SETGV, sp, nsym(tree), val);
break;
case NODE_ARG:
case NODE_LVAR:
@@ -1271,8 +1773,7 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val)
break;
}
else { /* upvar */
- int lv = search_upvar(s, nsym(tree), &idx);
- genop_3(s, OP_SETUPVAR, sp, idx, lv);
+ gen_setupvar(s, sp, nsym(tree));
}
break;
case NODE_NVAR:
@@ -1280,16 +1781,13 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val)
codegen_error(s, "Can't assign to numbered parameter");
break;
case NODE_IVAR:
- idx = new_sym(s, nsym(tree));
- genop_2(s, OP_SETIV, sp, idx);
+ gen_setxv(s, OP_SETIV, sp, nsym(tree), val);
break;
case NODE_CVAR:
- idx = new_sym(s, nsym(tree));
- genop_2(s, OP_SETCV, sp, idx);
+ gen_setxv(s, OP_SETCV, sp, nsym(tree), val);
break;
case NODE_CONST:
- idx = new_sym(s, nsym(tree));
- genop_2(s, OP_SETCONST, sp, idx);
+ gen_setxv(s, OP_SETCONST, sp, nsym(tree), val);
break;
case NODE_COLON2:
gen_move(s, cursp(), sp, 0);
@@ -1320,9 +1818,7 @@ gen_assignment(codegen_scope *s, node *tree, int sp, int val)
break;
default:
-#ifndef MRB_NO_STDIO
- fprintf(stderr, "unknown lhs %d\n", type);
-#endif
+ codegen_error(s, "unknown lhs");
break;
}
if (val) push();
@@ -1383,6 +1879,16 @@ static void
gen_intern(codegen_scope *s)
{
pop();
+ if (!no_peephole(s)) {
+ struct mrb_insn_data data = mrb_last_insn(s);
+
+ if (data.insn == OP_STRING && data.a == cursp()) {
+ rewind_pc(s);
+ genop_2(s, OP_SYMBOL, data.a, data.b);
+ push();
+ return;
+ }
+ }
genop_1(s, OP_INTERN, cursp());
push();
}
@@ -1391,7 +1897,7 @@ static void
gen_literal_array(codegen_scope *s, node *tree, mrb_bool sym, int val)
{
if (val) {
- int i = 0, j = 0;
+ int i = 0, j = 0, gen = 0;
while (tree) {
switch (nint(tree->car->car)) {
@@ -1419,6 +1925,19 @@ gen_literal_array(codegen_scope *s, node *tree, mrb_bool sym, int val)
push();
j--;
}
+ if (i > GEN_LIT_ARY_MAX) {
+ pop_n(i);
+ if (gen) {
+ pop();
+ genop_2(s, OP_ARYPUSH, cursp(), i);
+ }
+ else {
+ genop_2(s, OP_ARRAY, cursp(), i);
+ gen = 1;
+ }
+ push();
+ i = 0;
+ }
tree = tree->cdr;
}
if (j > 0) {
@@ -1427,7 +1946,13 @@ gen_literal_array(codegen_scope *s, node *tree, mrb_bool sym, int val)
gen_intern(s);
}
pop_n(i);
- genop_2(s, OP_ARRAY, cursp(), i);
+ if (gen) {
+ pop();
+ genop_2(s, OP_ARYPUSH, cursp(), i);
+ }
+ else {
+ genop_2(s, OP_ARRAY, cursp(), i);
+ }
push();
}
else {
@@ -1450,45 +1975,48 @@ raise_error(codegen_scope *s, const char *msg)
}
static mrb_int
-readint_mrb_int(codegen_scope *s, const char *p, int base, mrb_bool neg, mrb_bool *overflow)
+readint(codegen_scope *s, const char *p, int base, mrb_bool neg, mrb_bool *overflow)
{
const char *e = p + strlen(p);
mrb_int result = 0;
- int n;
- mrb_assert(base >= 2 && base <= 36);
+ mrb_assert(base >= 2 && base <= 16);
if (*p == '+') p++;
while (p < e) {
+ int n;
char c = *p;
- c = tolower((unsigned char)c);
- for (n=0; n<base; n++) {
- if (mrb_digitmap[n] == c) {
- break;
- }
- }
- if (n == base) {
+ switch (c) {
+ case '0': case '1': case '2': case '3':
+ case '4': case '5': case '6': case '7':
+ n = c - '0'; break;
+ case '8': case '9':
+ n = c - '0'; break;
+ case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
+ n = c - 'a' + 10; break;
+ case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
+ n = c - 'A' + 10; break;
+ default:
codegen_error(s, "malformed readint input");
- }
-
- if (neg) {
- if ((MRB_INT_MIN + n)/base > result) {
- *overflow = TRUE;
- return 0;
- }
- result *= base;
- result -= n;
- }
- else {
- if ((MRB_INT_MAX - n)/base < result) {
- *overflow = TRUE;
- return 0;
- }
- result *= base;
- result += n;
- }
+ *overflow = TRUE;
+ /* not reached */
+ return result;
+ }
+ if (mrb_int_mul_overflow(result, base, &result)) {
+ overflow:
+ *overflow = TRUE;
+ return 0;
+ }
+ mrb_uint tmp = ((mrb_uint)result)+n;
+ if (neg && tmp == (mrb_uint)MRB_INT_MAX+1) {
+ *overflow = FALSE;
+ return MRB_INT_MIN;
+ }
+ if (tmp > MRB_INT_MAX) goto overflow;
+ result = (mrb_int)tmp;
p++;
}
*overflow = FALSE;
+ if (neg) return -result;
return result;
}
@@ -1506,6 +2034,49 @@ gen_retval(codegen_scope *s, node *tree)
}
}
+static mrb_bool
+true_always(node *tree)
+{
+ switch (nint(tree->car)) {
+ case NODE_TRUE:
+ case NODE_INT:
+ case NODE_STR:
+ case NODE_SYM:
+ return TRUE;
+ default:
+ return FALSE;
+ }
+}
+
+static mrb_bool
+false_always(node *tree)
+{
+ switch (nint(tree->car)) {
+ case NODE_FALSE:
+ case NODE_NIL:
+ return TRUE;
+ default:
+ return FALSE;
+ }
+}
+
+static void
+gen_blkmove(codegen_scope *s, int ainfo, int lv)
+{
+ int m1 = (ainfo>>7)&0x3f;
+ int r = (ainfo>>6)&0x1;
+ int m2 = (ainfo>>1)&0x1f;
+ int kd = (ainfo)&0x1;
+ int off = m1+r+m2+kd+1;
+ if (lv == 0) {
+ gen_move(s, cursp(), off, 0);
+ }
+ else {
+ genop_3(s, OP_GETUPVAR, cursp(), off, lv);
+ }
+ push();
+}
+
static void
codegen(codegen_scope *s, node *tree, int val)
{
@@ -1673,7 +2244,7 @@ codegen(codegen_scope *s, node *tree, int val)
if (val) {
int idx = lambda_body(s, tree, 1);
- genop_bs(s, OP_LAMBDA, cursp(), idx);
+ genop_2(s, OP_LAMBDA, cursp(), idx);
push();
}
break;
@@ -1682,41 +2253,37 @@ codegen(codegen_scope *s, node *tree, int val)
if (val) {
int idx = lambda_body(s, tree, 1);
- genop_bs(s, OP_BLOCK, cursp(), idx);
+ genop_2(s, OP_BLOCK, cursp(), idx);
push();
}
break;
case NODE_IF:
{
- int pos1, pos2, nil_p = FALSE;
+ uint32_t pos1, pos2;
+ mrb_bool nil_p = FALSE;
node *elsepart = tree->cdr->cdr->car;
if (!tree->car) {
codegen(s, elsepart, val);
goto exit;
}
- switch (nint(tree->car->car)) {
- case NODE_TRUE:
- case NODE_INT:
- case NODE_STR:
+ if (true_always(tree->car)) {
codegen(s, tree->cdr->car, val);
goto exit;
- case NODE_FALSE:
- case NODE_NIL:
+ }
+ if (false_always(tree->car)) {
codegen(s, elsepart, val);
goto exit;
- case NODE_CALL:
- {
- node *n = tree->car->cdr;
- mrb_sym mid = nsym(n->cdr->car);
- mrb_sym mnil = MRB_SYM_Q_2(s->mrb, nil);
- if (mid == mnil && n->cdr->cdr->car == NULL) {
- nil_p = TRUE;
- codegen(s, n->car, VAL);
- }
+ }
+ if (nint(tree->car->car) == NODE_CALL) {
+ node *n = tree->car->cdr;
+ mrb_sym mid = nsym(n->cdr->car);
+ mrb_sym sym_nil_p = MRB_SYM_Q_2(s->mrb, nil);
+ if (mid == sym_nil_p && n->cdr->cdr->car == NULL) {
+ nil_p = TRUE;
+ codegen(s, n->car, VAL);
}
- break;
}
if (!nil_p) {
codegen(s, tree->car, VAL);
@@ -1764,8 +2331,16 @@ codegen(codegen_scope *s, node *tree, int val)
case NODE_AND:
{
- int pos;
+ uint32_t pos;
+ if (true_always(tree->car)) {
+ codegen(s, tree->cdr, val);
+ goto exit;
+ }
+ if (false_always(tree->car)) {
+ codegen(s, tree->car, val);
+ goto exit;
+ }
codegen(s, tree->car, VAL);
pop();
pos = genjmp2_0(s, OP_JMPNOT, cursp(), val);
@@ -1776,8 +2351,16 @@ codegen(codegen_scope *s, node *tree, int val)
case NODE_OR:
{
- int pos;
+ uint32_t pos;
+ if (true_always(tree->car)) {
+ codegen(s, tree->car, val);
+ goto exit;
+ }
+ if (false_always(tree->car)) {
+ codegen(s, tree->cdr, val);
+ goto exit;
+ }
codegen(s, tree->car, VAL);
pop();
pos = genjmp2_0(s, OP_JMPIF, cursp(), val);
@@ -1787,35 +2370,44 @@ codegen(codegen_scope *s, node *tree, int val)
break;
case NODE_WHILE:
- {
- struct loopinfo *lp = loop_push(s, LOOP_NORMAL);
-
- lp->pc0 = new_label(s);
- lp->pc1 = genjmp_0(s, OP_JMP);
- lp->pc2 = new_label(s);
- codegen(s, tree->cdr, NOVAL);
- dispatch(s, lp->pc1);
- codegen(s, tree->car, VAL);
- pop();
- genjmp2(s, OP_JMPIF, cursp(), lp->pc2, NOVAL);
-
- loop_pop(s, val);
- }
- break;
-
case NODE_UNTIL:
{
+ if (true_always(tree->car)) {
+ if (nt == NODE_UNTIL) {
+ if (val) {
+ genop_1(s, OP_LOADNIL, cursp());
+ push();
+ }
+ goto exit;
+ }
+ }
+ else if (false_always(tree->car)) {
+ if (nt == NODE_WHILE) {
+ if (val) {
+ genop_1(s, OP_LOADNIL, cursp());
+ push();
+ }
+ goto exit;
+ }
+ }
+
+ uint32_t pos = JMPLINK_START;
struct loopinfo *lp = loop_push(s, LOOP_NORMAL);
+ if (!val) lp->reg = -1;
lp->pc0 = new_label(s);
- lp->pc1 = genjmp_0(s, OP_JMP);
- lp->pc2 = new_label(s);
- codegen(s, tree->cdr, NOVAL);
- dispatch(s, lp->pc1);
codegen(s, tree->car, VAL);
pop();
- genjmp2(s, OP_JMPNOT, cursp(), lp->pc2, NOVAL);
-
+ if (nt == NODE_WHILE) {
+ pos = genjmp2_0(s, OP_JMPNOT, cursp(), NOVAL);
+ }
+ else {
+ pos = genjmp2_0(s, OP_JMPIF, cursp(), NOVAL);
+ }
+ lp->pc1 = new_label(s);
+ codegen(s, tree->cdr, NOVAL);
+ genjmp(s, OP_JMP, lp->pc0);
+ dispatch(s, pos);
loop_pop(s, val);
}
break;
@@ -1948,15 +2540,12 @@ codegen(codegen_scope *s, node *tree, int val)
{
int n;
- n = gen_values(s, tree, val, 0);
- if (n >= 0) {
- if (val) {
+ n = gen_values(s, tree, val, 0, 0);
+ if (val) {
+ if (n >= 0) {
pop_n(n);
genop_2(s, OP_ARRAY, cursp(), n);
- push();
}
- }
- else if (val) {
push();
}
}
@@ -1965,62 +2554,10 @@ codegen(codegen_scope *s, node *tree, int val)
case NODE_HASH:
case NODE_KW_HASH:
{
- int len = 0;
- mrb_bool update = FALSE;
-
- while (tree) {
- if (nint(tree->car->car->car) == NODE_KW_REST_ARGS) {
- if (len > 0) {
- pop_n(len*2);
- if (!update) {
- genop_2(s, OP_HASH, cursp(), len);
- }
- else {
- pop();
- genop_2(s, OP_HASHADD, cursp(), len);
- }
- push();
- }
- codegen(s, tree->car->cdr, VAL);
- if (len > 0 || update) {
- pop(); pop();
- genop_1(s, OP_HASHCAT, cursp());
- push();
- }
- update = TRUE;
- len = 0;
- }
- else {
- codegen(s, tree->car->car, val);
- codegen(s, tree->car->cdr, val);
- len++;
- }
- tree = tree->cdr;
- if (val && cursp() > 127) {
- pop_n(len*2);
- if (!update) {
- genop_2(s, OP_HASH, cursp(), len);
- }
- else {
- pop();
- genop_2(s, OP_HASHADD, cursp(), len);
- }
- push();
- update = TRUE;
- len = 0;
- }
- }
- if (val) {
- pop_n(len*2);
- if (!update) {
- genop_2(s, OP_HASH, cursp(), len);
- }
- else {
- pop();
- if (len > 0) {
- genop_2(s, OP_HASHADD, cursp(), len);
- }
- }
+ int nk = gen_hash(s, tree, val, GEN_LIT_ARY_MAX);
+ if (val && nk >= 0) {
+ pop_n(nk*2);
+ genop_2(s, OP_HASH, cursp(), nk);
push();
}
}
@@ -2156,7 +2693,7 @@ codegen(codegen_scope *s, node *tree, int val)
idx = new_sym(s, nsym(n->cdr->car));
base = cursp()-1;
if (n->cdr->cdr->car) {
- nargs = gen_values(s, n->cdr->cdr->car->car, VAL, 1);
+ nargs = gen_values(s, n->cdr->cdr->car->car, VAL, 1, 14);
if (nargs >= 0) {
callargs = nargs;
}
@@ -2181,7 +2718,7 @@ codegen(codegen_scope *s, node *tree, int val)
if (len == 2 &&
((name[0] == '|' && name[1] == '|') ||
(name[0] == '&' && name[1] == '&'))) {
- int pos;
+ uint32_t pos;
pop();
if (val) {
@@ -2201,7 +2738,7 @@ codegen(codegen_scope *s, node *tree, int val)
if (nint(tree->car->car) == NODE_CALL) {
if (callargs == CALL_MAXARGS) {
pop();
- genop_1(s, OP_ARYPUSH, cursp());
+ genop_2(s, OP_ARYPUSH, cursp(), 1);
}
else {
pop_n(callargs);
@@ -2258,7 +2795,7 @@ codegen(codegen_scope *s, node *tree, int val)
}
if (callargs == CALL_MAXARGS) {
pop();
- genop_1(s, OP_ARYPUSH, cursp());
+ genop_2(s, OP_ARYPUSH, cursp(), 1);
}
else {
pop_n(callargs);
@@ -2275,37 +2812,48 @@ codegen(codegen_scope *s, node *tree, int val)
{
codegen_scope *s2 = s;
int lv = 0;
- int n = 0, noop = 0, sendv = 0;
+ int n = 0, nk = 0, st = 0;
- push(); /* room for receiver */
+ push();
while (!s2->mscope) {
lv++;
s2 = s2->prev;
if (!s2) break;
}
- genop_2S(s, OP_ARGARY, cursp(), (lv & 0xf));
- push(); push(); /* ARGARY pushes two values */
- pop(); pop();
if (tree) {
node *args = tree->car;
if (args) {
- n = gen_values(s, args, VAL, 0);
+ st = n = gen_values(s, args, VAL, 0, 14);
if (n < 0) {
- n = noop = sendv = 1;
+ st = 1; n = 15;
push();
}
}
- }
- if (tree && tree->cdr) {
- codegen(s, tree->cdr, VAL);
- pop();
+ /* keyword arguments */
+ if (s2 && (s2->ainfo & 0x1) && tree->cdr->car) {
+ nk = gen_hash(s, tree->cdr->car->cdr, VAL, 14);
+ if (nk < 0) {st++; nk = 15;}
+ else st += nk;
+ n |= 15<<4;
+ }
+ /* block arguments */
+ if (tree->cdr->cdr) {
+ codegen(s, tree->cdr->cdr, VAL);
+ }
+ else if (!s2) {/* super at top-level */
+ push(); /* no need to push block */
+ }
+ else {
+ gen_blkmove(s, s2->ainfo, lv);
+ }
+ st++;
}
else {
- genop_1(s, OP_LOADNIL, cursp());
- push(); pop();
+ if (!s2) push();
+ else gen_blkmove(s, s2->ainfo, lv);
+ st++;
}
- pop_n(n+1);
- if (sendv) n = CALL_MAXARGS;
+ pop_n(st+1);
genop_2(s, OP_SUPER, cursp(), n);
if (val) push();
}
@@ -2314,7 +2862,10 @@ codegen(codegen_scope *s, node *tree, int val)
case NODE_ZSUPER:
{
codegen_scope *s2 = s;
- int lv = 0, ainfo = 0;
+ int lv = 0;
+ size_t ainfo = 0;
+ int n = CALL_MAXARGS;
+ int sp = cursp();
push(); /* room for receiver */
while (!s2->mscope) {
@@ -2325,14 +2876,33 @@ codegen(codegen_scope *s, node *tree, int val)
if (s2 && s2->ainfo > 0) {
ainfo = s2->ainfo;
}
- genop_2S(s, OP_ARGARY, cursp(), (ainfo<<4)|(lv & 0xf));
- push(); push(); pop(); /* ARGARY pushes two values */
- if (tree && tree->cdr) {
- codegen(s, tree->cdr, VAL);
- pop();
+ if (ainfo > 0) {
+ genop_2S(s, OP_ARGARY, cursp(), (ainfo<<4)|(lv & 0xf));
+ push(); push(); push(); /* ARGARY pushes 3 values at most */
+ pop(); pop(); pop();
+ /* keyword arguments */
+ if (ainfo & 0x1) {
+ n |= CALL_MAXARGS<<4;
+ push();
+ }
+ /* block argument */
+ if (tree && tree->cdr && tree->cdr->cdr) {
+ push();
+ codegen(s, tree->cdr->cdr, VAL);
+ }
}
- pop(); pop();
- genop_2(s, OP_SUPER, cursp(), CALL_MAXARGS);
+ else {
+ /* block argument */
+ if (tree && tree->cdr && tree->cdr->cdr) {
+ codegen(s, tree->cdr->cdr, VAL);
+ }
+ else {
+ gen_blkmove(s, 0, lv);
+ }
+ n = 0;
+ }
+ s->sp = sp;
+ genop_2(s, OP_SUPER, cursp(), n);
if (val) push();
}
break;
@@ -2365,12 +2935,12 @@ codegen(codegen_scope *s, node *tree, int val)
if (!s2) break;
}
if (s2) {
- ainfo = s2->ainfo;
+ ainfo = (int)s2->ainfo;
}
if (ainfo < 0) codegen_error(s, "invalid yield (SyntaxError)");
push();
if (tree) {
- n = gen_values(s, tree, VAL, 0);
+ n = gen_values(s, tree, VAL, 0, 14);
if (n < 0) {
n = sendv = 1;
push();
@@ -2416,7 +2986,7 @@ codegen(codegen_scope *s, node *tree, int val)
raise_error(s, "unexpected redo");
}
else {
- genjmp(s, OP_JMPUW, s->loop->pc2);
+ genjmp(s, OP_JMPUW, s->loop->pc1);
}
if (val) push();
break;
@@ -2447,8 +3017,7 @@ codegen(codegen_scope *s, node *tree, int val)
gen_move(s, cursp(), idx, val);
}
else {
- int lv = search_upvar(s, nsym(tree), &idx);
- genop_3(s, OP_GETUPVAR, cursp(), idx, lv);
+ gen_getupvar(s, cursp(), nsym(tree));
}
push();
}
@@ -2538,29 +3107,13 @@ codegen(codegen_scope *s, node *tree, int val)
mrb_int i;
mrb_bool overflow;
- i = readint_mrb_int(s, p, base, FALSE, &overflow);
+ i = readint(s, p, base, FALSE, &overflow);
if (overflow) {
int off = new_litbn(s, p, base, FALSE);
- genop_bs(s, OP_LOADL, cursp(), off);
+ genop_2(s, OP_LOADL, cursp(), off);
}
else {
- if (i < 0) {
- if (i == -1) genop_1(s, OP_LOADI__1, cursp());
- else if (i >= -0xff) genop_2(s, OP_LOADINEG, cursp(), (uint16_t)-i);
- else if (i >= INT16_MIN) genop_2S(s, OP_LOADI16, cursp(), (uint16_t)i);
- else if (i >= INT32_MIN) genop_2SS(s, OP_LOADI32, cursp(), (uint32_t)i);
- else goto lit_int;
- }
- else if (i < 8) genop_1(s, OP_LOADI_0 + (uint8_t)i, cursp());
- else if (i <= 0xff) genop_2(s, OP_LOADI, cursp(), (uint16_t)i);
- else if (i <= INT16_MAX) genop_2S(s, OP_LOADI16, cursp(), (uint16_t)i);
- else if (i <= INT32_MAX) genop_2SS(s, OP_LOADI32, cursp(), (uint32_t)i);
- else {
- int off;
- lit_int:
- off = new_lit(s, mrb_int_value(s->mrb, i));
- genop_bs(s, OP_LOADL, cursp(), off);
- }
+ gen_int(s, cursp(), i);
}
push();
}
@@ -2573,7 +3126,7 @@ codegen(codegen_scope *s, node *tree, int val)
mrb_float f = mrb_float_read(p, NULL);
int off = new_lit(s, mrb_float_value(s->mrb, f));
- genop_bs(s, OP_LOADL, cursp(), off);
+ genop_2(s, OP_LOADL, cursp(), off);
push();
}
break;
@@ -2590,7 +3143,7 @@ codegen(codegen_scope *s, node *tree, int val)
mrb_float f = mrb_float_read(p, NULL);
int off = new_lit(s, mrb_float_value(s->mrb, -f));
- genop_bs(s, OP_LOADL, cursp(), off);
+ genop_2(s, OP_LOADL, cursp(), off);
push();
}
break;
@@ -2603,26 +3156,13 @@ codegen(codegen_scope *s, node *tree, int val)
mrb_int i;
mrb_bool overflow;
- i = readint_mrb_int(s, p, base, TRUE, &overflow);
+ i = readint(s, p, base, TRUE, &overflow);
if (overflow) {
int off = new_litbn(s, p, base, TRUE);
- genop_bs(s, OP_LOADL, cursp(), off);
+ genop_2(s, OP_LOADL, cursp(), off);
}
else {
- if (i == -1) genop_1(s, OP_LOADI__1, cursp());
- else if (i >= -0xff) {
- genop_2(s, OP_LOADINEG, cursp(), (uint16_t)-i);
- }
- else if (i >= INT16_MIN) {
- genop_2S(s, OP_LOADI16, cursp(), (uint16_t)i);
- }
- else if (i >= INT32_MIN) {
- genop_2SS(s, OP_LOADI32, cursp(), (uint32_t)i);
- }
- else {
- int off = new_lit(s, mrb_int_value(s->mrb, i));
- genop_bs(s, OP_LOADL, cursp(), off);
- }
+ gen_int(s, cursp(), i);
}
push();
}
@@ -2630,10 +3170,13 @@ codegen(codegen_scope *s, node *tree, int val)
default:
if (val) {
- int sym = new_sym(s, MRB_OPSYM_2(s->mrb, minus));
codegen(s, tree, VAL);
pop();
- genop_3(s, OP_SEND, cursp(), sym, 0);
+ push_n(2);pop_n(2); /* space for receiver&block */
+ mrb_sym minus = MRB_OPSYM_2(s->mrb, minus);
+ if (!gen_uniop(s, minus, cursp())) {
+ genop_3(s, OP_SEND, cursp(), new_sym(s, minus), 0);
+ }
push();
}
else {
@@ -2652,7 +3195,7 @@ codegen(codegen_scope *s, node *tree, int val)
int off = new_lit(s, mrb_str_new(s->mrb, p, len));
mrb_gc_arena_restore(s->mrb, ai);
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push();
}
break;
@@ -2739,7 +3282,7 @@ codegen(codegen_scope *s, node *tree, int val)
genop_1(s, OP_LOADSELF, cursp());
push();
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push(); push();
pop_n(3);
sym = new_sym(s, MRB_OPSYM_2(s->mrb, tick)); /* ` */
@@ -2762,12 +3305,12 @@ codegen(codegen_scope *s, node *tree, int val)
genop_1(s, OP_OCLASS, cursp());
genop_2(s, OP_GETMCNST, cursp(), sym);
push();
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push();
if (p2 || p3) {
if (p2) { /* opt */
off = new_lit(s, mrb_str_new_cstr(s->mrb, p2));
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
}
else {
genop_1(s, OP_LOADNIL, cursp());
@@ -2776,7 +3319,7 @@ codegen(codegen_scope *s, node *tree, int val)
argc++;
if (p3) { /* enc */
off = new_lit(s, mrb_str_new(s->mrb, p3, 1));
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push();
argc++;
}
@@ -2816,7 +3359,7 @@ codegen(codegen_scope *s, node *tree, int val)
p = (char*)n->car;
off = new_lit(s, mrb_str_new_cstr(s->mrb, p));
codegen(s, tree->car, VAL);
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
pop();
genop_1(s, OP_STRCAT, cursp());
push();
@@ -2824,14 +3367,14 @@ codegen(codegen_scope *s, node *tree, int val)
if (n->cdr->car) { /* opt */
char *p2 = (char*)n->cdr->car;
off = new_lit(s, mrb_str_new_cstr(s->mrb, p2));
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push();
argc++;
}
if (n->cdr->cdr) { /* enc */
char *p2 = (char*)n->cdr->cdr;
off = new_lit(s, mrb_str_new_cstr(s->mrb, p2));
- genop_bs(s, OP_STRING, cursp(), off);
+ genop_2(s, OP_STRING, cursp(), off);
push();
argc++;
}
@@ -2858,7 +3401,7 @@ codegen(codegen_scope *s, node *tree, int val)
if (val) {
int sym = new_sym(s, nsym(tree));
- genop_bs(s, OP_LOADSYM, cursp(), sym);
+ genop_2(s, OP_LOADSYM, cursp(), sym);
push();
}
break;
@@ -2959,7 +3502,7 @@ codegen(codegen_scope *s, node *tree, int val)
}
else {
idx = scope_body(s, body, val);
- genop_bs(s, OP_EXEC, cursp(), idx);
+ genop_2(s, OP_EXEC, cursp(), idx);
}
if (val) {
push();
@@ -2991,7 +3534,7 @@ codegen(codegen_scope *s, node *tree, int val)
}
else {
idx = scope_body(s, tree->cdr->car, val);
- genop_bs(s, OP_EXEC, cursp(), idx);
+ genop_2(s, OP_EXEC, cursp(), idx);
}
if (val) {
push();
@@ -3012,7 +3555,7 @@ codegen(codegen_scope *s, node *tree, int val)
}
else {
idx = scope_body(s, tree->cdr->car, val);
- genop_bs(s, OP_EXEC, cursp(), idx);
+ genop_2(s, OP_EXEC, cursp(), idx);
}
if (val) {
push();
@@ -3027,14 +3570,11 @@ codegen(codegen_scope *s, node *tree, int val)
genop_1(s, OP_TCLASS, cursp());
push();
- genop_bs(s, OP_METHOD, cursp(), idx);
+ genop_2(s, OP_METHOD, cursp(), idx);
push(); pop();
pop();
genop_2(s, OP_DEF, cursp(), sym);
- if (val) {
- genop_bs(s, OP_LOADSYM, cursp(), sym);
- push();
- }
+ if (val) push();
}
break;
@@ -3048,13 +3588,10 @@ codegen(codegen_scope *s, node *tree, int val)
pop();
genop_1(s, OP_SCLASS, cursp());
push();
- genop_bs(s, OP_METHOD, cursp(), idx);
+ genop_2(s, OP_METHOD, cursp(), idx);
pop();
genop_2(s, OP_DEF, cursp(), sym);
- if (val) {
- genop_bs(s, OP_LOADSYM, cursp(), sym);
- push();
- }
+ if (val) push();
}
break;
@@ -3111,7 +3648,7 @@ scope_new(mrb_state *mrb, codegen_scope *prev, node *nlv)
s->mpool = pool;
if (!prev) return s;
s->prev = prev;
- s->ainfo = -1;
+ s->ainfo = 0;
s->mscope = 0;
scope_add_irep(s);
@@ -3214,9 +3751,9 @@ loop_push(codegen_scope *s, enum looptype t)
struct loopinfo *p = (struct loopinfo *)codegen_palloc(s, sizeof(struct loopinfo));
p->type = t;
- p->pc0 = p->pc1 = p->pc2 = p->pc3 = JMPLINK_START;
+ p->pc0 = p->pc1 = p->pc2 = JMPLINK_START;
p->prev = s->loop;
- p->acc = cursp();
+ p->reg = cursp();
s->loop = p;
return p;
@@ -3232,11 +3769,16 @@ loop_break(codegen_scope *s, node *tree)
else {
struct loopinfo *loop;
- if (tree) {
- gen_retval(s, tree);
- }
loop = s->loop;
+ if (tree) {
+ if (loop->reg < 0) {
+ codegen(s, tree, NOVAL);
+ }
+ else {
+ gen_retval(s, tree);
+ }
+ }
while (loop) {
if (loop->type == LOOP_BEGIN) {
loop = loop->prev;
@@ -3256,11 +3798,16 @@ loop_break(codegen_scope *s, node *tree)
if (loop->type == LOOP_NORMAL) {
int tmp;
- if (tree) {
- gen_move(s, loop->acc, cursp(), 0);
+ if (loop->reg >= 0) {
+ if (tree) {
+ gen_move(s, loop->reg, cursp(), 0);
+ }
+ else {
+ genop_1(s, OP_LOADNIL, loop->reg);
+ }
}
- tmp = genjmp(s, OP_JMPUW, loop->pc3);
- loop->pc3 = tmp;
+ tmp = genjmp(s, OP_JMPUW, loop->pc2);
+ loop->pc2 = tmp;
}
else {
if (!tree) {
@@ -3277,7 +3824,7 @@ loop_pop(codegen_scope *s, int val)
if (val) {
genop_1(s, OP_LOADNIL, cursp());
}
- dispatch_linked(s, s->loop->pc3);
+ dispatch_linked(s, s->loop->pc2);
s->loop = s->loop->prev;
if (val) push();
}
@@ -3308,16 +3855,18 @@ static struct RProc*
generate_code(mrb_state *mrb, parser_state *p, int val)
{
codegen_scope *scope = scope_new(mrb, 0, 0);
- struct RProc *proc;
struct mrb_jmpbuf *prev_jmp = mrb->jmp;
+ struct mrb_jmpbuf jmpbuf;
+ struct RProc *proc;
+
+ mrb->jmp = &jmpbuf;
scope->mrb = mrb;
scope->parser = p;
scope->filename_sym = p->filename_sym;
scope->filename_index = p->current_filename_index;
- MRB_TRY(&scope->jmp) {
- mrb->jmp = &scope->jmp;
+ MRB_TRY(mrb->jmp) {
/* prepare irep */
codegen(scope, p->tree, val);
proc = mrb_proc_new(mrb, scope->irep);
@@ -3330,13 +3879,13 @@ generate_code(mrb_state *mrb, parser_state *p, int val)
mrb->jmp = prev_jmp;
return proc;
}
- MRB_CATCH(&scope->jmp) {
+ MRB_CATCH(mrb->jmp) {
mrb_irep_decref(mrb, scope->irep);
mrb_pool_close(scope->mpool);
mrb->jmp = prev_jmp;
return NULL;
}
- MRB_END_EXC(&scope->jmp);
+ MRB_END_EXC(mrb->jmp);
}
MRB_API struct RProc*
@@ -3360,26 +3909,3 @@ mrb_irep_remove_lv(mrb_state *mrb, mrb_irep *irep)
mrb_irep_remove_lv(mrb, (mrb_irep*)irep->reps[i]);
}
}
-
-#undef OPCODE
-#define Z 1
-#define S 3
-#define W 4
-/* instruction sizes */
-uint8_t mrb_insn_size[] = {
-#define B 2
-#define BB 3
-#define BBB 4
-#define BS 4
-#define BSS 6
-#define SB 4
-#define OPCODE(_,x) x,
-#include "mruby/ops.h"
-#undef OPCODE
-#undef B
-#undef BB
-#undef BS
-#undef BSS
-#undef SB
-#undef BBB
-};
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y
index 2c2bff714..ed4265a16 100644
--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -13,7 +13,6 @@
#include <ctype.h>
#include <errno.h>
-#include <stdlib.h>
#include <string.h>
#include <mruby.h>
#include <mruby/compile.h>
@@ -34,7 +33,6 @@ typedef struct mrb_parser_heredoc_info parser_heredoc_info;
static int yyparse(parser_state *p);
static int yylex(void *lval, parser_state *p);
static void yyerror(parser_state *p, const char *s);
-static void yywarn(parser_state *p, const char *s);
static void yywarning(parser_state *p, const char *s);
static void backref_error(parser_state *p, node *n);
static void void_expr_error(parser_state *p, node *n);
@@ -106,7 +104,7 @@ parser_palloc(parser_state *p, size_t size)
void *m = mrb_pool_alloc(p->pool, size);
if (!m) {
- MRB_THROW(p->jmp);
+ MRB_THROW(p->mrb->jmp);
}
return m;
}
@@ -286,9 +284,10 @@ local_var_p(parser_state *p, mrb_sym sym)
const mrb_sym *v = ir->lv;
int i;
- if (!v) break;
- for (i=0; i+1 < ir->nlocals; i++) {
- if (v[i] == sym) return TRUE;
+ if (v) {
+ for (i=0; i+1 < ir->nlocals; i++) {
+ if (v[i] == sym) return TRUE;
+ }
}
if (MRB_PROC_SCOPE_P(u)) break;
u = u->upper;
@@ -500,13 +499,18 @@ new_call(parser_state *p, node *a, mrb_sym b, node *c, int pass)
static node*
new_fcall(parser_state *p, mrb_sym b, node *c)
{
- node *n = new_self(p);
- NODE_LINENO(n, c);
- n = list4((node*)NODE_FCALL, n, nsym(b), c);
+ node *n = list4((node*)NODE_FCALL, 0, nsym(b), c);
NODE_LINENO(n, c);
return n;
}
+/* (a b . c) */
+static node*
+new_callargs(parser_state *p, node *a, node *b, node *c)
+{
+ return cons(a, cons(b, c));
+}
+
/* (:super . c) */
static node*
new_super(parser_state *p, node *c)
@@ -518,7 +522,7 @@ new_super(parser_state *p, node *c)
static node*
new_zsuper(parser_state *p)
{
- return list1((node*)NODE_ZSUPER);
+ return cons((node*)NODE_ZSUPER, 0);
}
/* (:yield . c) */
@@ -527,7 +531,12 @@ new_yield(parser_state *p, node *c)
{
if (c) {
if (c->cdr) {
- yyerror(p, "both block arg and actual block given");
+ if (c->cdr->cdr) {
+ yyerror(p, "both block arg and actual block given");
+ }
+ if (c->cdr->car) {
+ return cons((node*)NODE_YIELD, push(c->car, c->cdr->car));
+ }
}
return cons((node*)NODE_YIELD, c->car);
}
@@ -961,13 +970,14 @@ new_op_asgn(parser_state *p, node *a, mrb_sym op, node *b)
static node*
new_imaginary(parser_state *p, node *imaginary)
{
- return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Complex), list1(list2(list3((node*)NODE_INT, (node*)strdup("0"), nint(10)), imaginary)), 1);
+ return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Complex),
+ new_callargs(p, list2(list3((node*)NODE_INT, (node*)strdup("0"), nint(10)), imaginary), 0, 0), 1);
}
static node*
new_rational(parser_state *p, node *rational)
{
- return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Rational), list1(list1(rational)), 1);
+ return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Rational), new_callargs(p, list1(rational), 0, 0), 1);
}
/* (:int . i) */
@@ -1190,17 +1200,17 @@ call_uni_op(parser_state *p, node *recv, const char *m)
static node*
call_bin_op(parser_state *p, node *recv, const char *m, node *arg1)
{
- return new_call(p, recv, intern_cstr(m), list1(list1(arg1)), 1);
+ return new_call(p, recv, intern_cstr(m), new_callargs(p, list1(arg1), 0, 0), 1);
}
static void
args_with_block(parser_state *p, node *a, node *b)
{
if (b) {
- if (a->cdr) {
+ if (a->cdr && a->cdr->cdr) {
yyerror(p, "both block arg and actual block given");
}
- a->cdr = b;
+ a->cdr->cdr = b;
}
}
@@ -1227,19 +1237,16 @@ call_with_block(parser_state *p, node *a, node *b)
switch (typen(a->car)) {
case NODE_SUPER:
case NODE_ZSUPER:
- if (!a->cdr) a->cdr = cons(0, b);
- else {
- args_with_block(p, a->cdr, b);
- }
+ if (!a->cdr) a->cdr = new_callargs(p, 0, 0, b);
+ else args_with_block(p, a->cdr, b);
break;
case NODE_CALL:
case NODE_FCALL:
case NODE_SCALL:
- n = a->cdr->cdr->cdr;
- if (!n->car) n->car = cons(0, b);
- else {
- args_with_block(p, n->car, b);
- }
+ /* (NODE_CALL recv mid (args kw . blk)) */
+ n = a->cdr->cdr->cdr; /* (args kw . blk) */
+ if (!n->car) n->car = new_callargs(p, 0, 0, b);
+ else args_with_block(p, n->car, b);
break;
default:
break;
@@ -1247,7 +1254,7 @@ call_with_block(parser_state *p, node *a, node *b)
}
static node*
-negate_lit(parser_state *p, node *n)
+new_negate(parser_state *p, node *n)
{
return cons((node*)NODE_NEGATE, n);
}
@@ -1261,10 +1268,11 @@ cond(node *n)
static node*
ret_args(parser_state *p, node *n)
{
- if (n->cdr) {
+ if (n->cdr->cdr) {
yyerror(p, "block argument should not be given");
return NULL;
}
+ if (!n->car) return NULL;
if (!n->car->cdr) return n->car->car;
return new_array(p, n->car);
}
@@ -1293,6 +1301,24 @@ var_reference(parser_state *p, node *lhs)
return lhs;
}
+static node*
+label_reference(parser_state *p, mrb_sym sym)
+{
+ const char *name = mrb_sym_name(p->mrb, sym);
+ node *n;
+
+ if (local_var_p(p, sym)) {
+ n = new_lvar(p, sym);
+ }
+ else if (ISUPPER(name[0])) {
+ n = new_const(p, sym);
+ }
+ else {
+ n = new_fcall(p, sym, 0);
+ }
+ return n;
+}
+
typedef enum mrb_string_type string_type;
static node*
@@ -1623,7 +1649,7 @@ bodystmt : compstmt
NODE_LINENO($$, $1);
}
else if ($3) {
- yywarn(p, "else without rescue is useless");
+ yywarning(p, "else without rescue is useless");
$$ = push($1, $3);
}
else {
@@ -1754,6 +1780,44 @@ command_asgn : lhs '=' command_rhs
{
$$ = new_op_asgn(p, new_call(p, $1, $3, 0, tCOLON2), $4, $5);
}
+ | defn_head f_opt_arglist_paren '=' command
+ {
+ $$ = $1;
+ endless_method_name(p, $1);
+ void_expr_error(p, $4);
+ defn_setup(p, $$, $2, $4);
+ nvars_unnest(p);
+ p->in_def--;
+ }
+ | defn_head f_opt_arglist_paren '=' command modifier_rescue arg
+ {
+ $$ = $1;
+ endless_method_name(p, $1);
+ void_expr_error(p, $4);
+ void_expr_error(p, $6);
+ defn_setup(p, $$, $2, new_mod_rescue(p, $4, $6));
+ nvars_unnest(p);
+ p->in_def--;
+ }
+ | defs_head f_opt_arglist_paren '=' command
+ {
+ $$ = $1;
+ void_expr_error(p, $4);
+ defs_setup(p, $$, $2, $4);
+ nvars_unnest(p);
+ p->in_def--;
+ p->in_single--;
+ }
+ | defs_head f_opt_arglist_paren '=' command modifier_rescue arg
+ {
+ $$ = $1;
+ void_expr_error(p, $4);
+ void_expr_error(p, $6);
+ defs_setup(p, $$, $2, new_mod_rescue(p, $4, $6));
+ nvars_unnest(p);
+ p->in_def--;
+ p->in_single--;
+ }
| backref tOP_ASGN command_rhs
{
backref_error(p, $1);
@@ -2253,11 +2317,11 @@ arg : lhs '=' arg_rhs
}
| tUMINUS_NUM tINTEGER tPOW arg
{
- $$ = call_uni_op(p, call_bin_op(p, $2, "**", $4), "-@");
+ $$ = new_negate(p, call_bin_op(p, $2, "**", $4));
}
| tUMINUS_NUM tFLOAT tPOW arg
{
- $$ = call_uni_op(p, call_bin_op(p, $2, "**", $4), "-@");
+ $$ = new_negate(p, call_bin_op(p, $2, "**", $4));
}
| tUPLUS arg
{
@@ -2265,7 +2329,7 @@ arg : lhs '=' arg_rhs
}
| tUMINUS arg
{
- $$ = call_uni_op(p, $2, "-@");
+ $$ = new_negate(p, $2);
}
| arg '|' arg
{
@@ -2370,7 +2434,7 @@ arg : lhs '=' arg_rhs
nvars_unnest(p);
p->in_def--;
}
- | defs_head f_arglist_paren '=' arg
+ | defs_head f_opt_arglist_paren '=' arg
{
$$ = $1;
void_expr_error(p, $4);
@@ -2379,7 +2443,7 @@ arg : lhs '=' arg_rhs
p->in_def--;
p->in_single--;
}
- | defs_head f_arglist_paren '=' arg modifier_rescue arg
+ | defs_head f_opt_arglist_paren '=' arg modifier_rescue arg
{
$$ = $1;
void_expr_error(p, $4);
@@ -2403,7 +2467,7 @@ aref_args : none
}
| args comma assocs trailer
{
- $$ = push($1, new_kw_hash(p, $3));
+ $$ = push($1, new_hash(p, $3));
}
| assocs trailer
{
@@ -2430,39 +2494,23 @@ paren_args : '(' opt_call_args ')'
}
| '(' args comma tBDOT3 rparen
{
-#if 1
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- $$ = cons(push($2, new_splat(p, new_lvar(p, r))),
- new_block_arg(p, new_lvar(p, b)));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- $$ = cons(list2(push($2, new_splat(p, new_lvar(p, r))),
- new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k))))),
- new_block_arg(p, new_lvar(p, b)));
-#endif
+ $$ = new_callargs(p, push($2, new_splat(p, new_lvar(p, r))),
+ new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k)))),
+ new_block_arg(p, new_lvar(p, b)));
}
| '(' tBDOT3 rparen
{
-#if 1
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- if (local_var_p(p, r) && local_var_p(p, b)) {
- $$ = cons(list1(new_splat(p, new_lvar(p, r))),
- new_block_arg(p, new_lvar(p, b)));
- }
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
if (local_var_p(p, r) && local_var_p(p, k) && local_var_p(p, b)) {
- $$ = cons(list2(new_splat(p, new_lvar(p, r)),
- new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k))))),
- new_block_arg(p, new_lvar(p, b)));
+ $$ = new_callargs(p, list1(new_splat(p, new_lvar(p, r))),
+ new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k)))),
+ new_block_arg(p, new_lvar(p, b)));
}
-#endif
else {
yyerror(p, "unexpected argument forwarding ...");
$$ = 0;
@@ -2478,17 +2526,17 @@ opt_call_args : none
| call_args opt_terms
| args comma
{
- $$ = cons($1,0);
+ $$ = new_callargs(p,$1,0,0);
NODE_LINENO($$, $1);
}
| args comma assocs comma
{
- $$ = cons(push($1, new_kw_hash(p, $3)), 0);
+ $$ = new_callargs(p,$1,new_kw_hash(p,$3),0);
NODE_LINENO($$, $1);
}
| assocs comma
{
- $$ = cons(list1(new_kw_hash(p, $1)), 0);
+ $$ = new_callargs(p,0,new_kw_hash(p,$1),0);
NODE_LINENO($$, $1);
}
;
@@ -2496,27 +2544,27 @@ opt_call_args : none
call_args : command
{
void_expr_error(p, $1);
- $$ = cons(list1($1), 0);
+ $$ = new_callargs(p, list1($1), 0, 0);
NODE_LINENO($$, $1);
}
| args opt_block_arg
{
- $$ = cons($1, $2);
+ $$ = new_callargs(p, $1, 0, $2);
NODE_LINENO($$, $1);
}
| assocs opt_block_arg
{
- $$ = cons(list1(new_kw_hash(p, $1)), $2);
+ $$ = new_callargs(p, 0, new_kw_hash(p, $1), $2);
NODE_LINENO($$, $1);
}
| args comma assocs opt_block_arg
{
- $$ = cons(push($1, new_kw_hash(p, $3)), $4);
+ $$ = new_callargs(p, $1, new_kw_hash(p, $3), $4);
NODE_LINENO($$, $1);
}
| block_arg
{
- $$ = cons(0, $1);
+ $$ = new_callargs(p, 0, 0, $1);
NODE_LINENO($$, $1);
}
;
@@ -2548,20 +2596,19 @@ opt_block_arg : comma block_arg
}
;
-comma : ','
- | ',' opt_nl heredoc_bodies
+comma : ',' opt_nl
;
args : arg
{
void_expr_error(p, $1);
- $$ = cons($1, 0);
+ $$ = list1($1);
NODE_LINENO($$, $1);
}
| tSTAR arg
{
void_expr_error(p, $2);
- $$ = cons(new_splat(p, $2), 0);
+ $$ = list1(new_splat(p, $2));
NODE_LINENO($$, $2);
}
| args comma arg
@@ -2673,7 +2720,7 @@ primary : literal
}
| operation brace_block
{
- $$ = new_fcall(p, $1, cons(0, $2));
+ $$ = new_fcall(p, $1, new_callargs(p, 0, 0, $2));
}
| method_call
| method_call brace_block
@@ -3268,7 +3315,14 @@ string_fragment : tCHAR
}
| tSTRING_BEG string_rep tSTRING
{
- $$ = new_dstr(p, push($2, $3));
+ node *n = $2;
+ if (intn($3->cdr->cdr) > 0) {
+ n = push(n, $3);
+ }
+ else {
+ cons_free($3);
+ }
+ $$ = new_dstr(p, n);
}
;
@@ -3310,7 +3364,14 @@ xstring : tXSTRING_BEG tXSTRING
}
| tXSTRING_BEG string_rep tXSTRING
{
- $$ = new_dxstr(p, push($2, $3));
+ node *n = $2;
+ if (intn($3->cdr->cdr) > 0) {
+ n = push(n, $3);
+ }
+ else {
+ cons_free($3);
+ }
+ $$ = new_dxstr(p, n);
}
;
@@ -3373,7 +3434,14 @@ words : tWORDS_BEG tSTRING
}
| tWORDS_BEG string_rep tSTRING
{
- $$ = new_words(p, push($2, $3));
+ node *n = $2;
+ if (intn($3->cdr->cdr) > 0) {
+ n = push(n, $3);
+ }
+ else {
+ cons_free($3);
+ }
+ $$ = new_words(p, n);
}
;
@@ -3385,8 +3453,15 @@ symbol : basic_symbol
}
| tSYMBEG tSTRING_BEG string_rep tSTRING
{
+ node *n = $3;
p->lstate = EXPR_ENDARG;
- $$ = new_dsym(p, new_dstr(p, push($3, $4)));
+ if (intn($4->cdr->cdr) > 0) {
+ n = push(n, $4);
+ }
+ else {
+ cons_free($4);
+ }
+ $$ = new_dsym(p, new_dstr(p, n));
}
;
@@ -3416,7 +3491,11 @@ symbols : tSYMBOLS_BEG tSTRING
}
| tSYMBOLS_BEG string_rep tSTRING
{
- $$ = new_symbols(p, push($2, $3));
+ node *n = $2;
+ if (intn($3->cdr->cdr) > 0) {
+ n = push(n, $3);
+ }
+ $$ = new_symbols(p, n);
}
;
@@ -3424,11 +3503,11 @@ numeric : tINTEGER
| tFLOAT
| tUMINUS_NUM tINTEGER %prec tLOWEST
{
- $$ = negate_lit(p, $2);
+ $$ = new_negate(p, $2);
}
| tUMINUS_NUM tFLOAT %prec tLOWEST
{
- $$ = negate_lit(p, $2);
+ $$ = new_negate(p, $2);
}
;
@@ -3501,12 +3580,7 @@ var_ref : variable
}
| keyword__ENCODING__
{
-#ifdef MRB_UTF8_STRING
- const char *enc = "UTF-8";
-#else
- const char *enc = "ASCII-8BIT";
-#endif
- $$ = new_str(p, enc, strlen(enc));
+ $$ = new_fcall(p, MRB_SYM_2(p->mrb, __ENCODING__), 0);
}
;
@@ -3547,39 +3621,21 @@ f_arglist_paren : '(' f_args rparen
}
| '(' f_arg ',' tBDOT3 rparen
{
-#if 1
- /* til real keyword args implemented */
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- local_add_f(p, r);
- $$ = new_args(p, $2, 0, r, 0,
- new_args_tail(p, 0, 0, b));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- local_add_f(p, r); local_add_f(p, k);
+ local_add_f(p, r);
$$ = new_args(p, $2, 0, r, 0,
new_args_tail(p, 0, new_kw_rest_args(p, nsym(k)), b));
-#endif
}
| '(' tBDOT3 rparen
{
-#if 1
- /* til real keyword args implemented */
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- local_add_f(p, r);
- $$ = new_args(p, 0, 0, r, 0,
- new_args_tail(p, 0, 0, b));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- local_add_f(p, r); local_add_f(p, k);
+ local_add_f(p, r);
$$ = new_args(p, 0, 0, r, 0,
new_args_tail(p, 0, new_kw_rest_args(p, nsym(k)), b));
-#endif
}
;
@@ -3938,22 +3994,22 @@ assocs : assoc
}
;
-label_tag : tLABEL_TAG
- | tLABEL_TAG heredoc_bodies
- ;
-
assoc : arg tASSOC arg
{
void_expr_error(p, $1);
void_expr_error(p, $3);
$$ = cons($1, $3);
}
- | tIDENTIFIER label_tag arg
+ | tIDENTIFIER tLABEL_TAG arg
{
void_expr_error(p, $3);
$$ = cons(new_sym(p, $1), $3);
}
- | string_fragment label_tag arg
+ | tIDENTIFIER tLABEL_TAG
+ {
+ $$ = cons(new_sym(p, $1), label_reference(p, $1));
+ }
+ | string_fragment tLABEL_TAG arg
{
void_expr_error(p, $3);
if (typen($1->car) == NODE_DSTR) {
@@ -4012,7 +4068,7 @@ opt_terms : /* none */
;
opt_nl : /* none */
- | nl
+ | opt_nl nl
;
rparen : opt_terms ')'
@@ -4025,7 +4081,6 @@ trailer : /* none */
term : ';' {yyerrok;}
| nl
- | heredoc_body
;
nl : '\n'
@@ -4033,6 +4088,7 @@ nl : '\n'
p->lineno += $<num>1;
p->column = 0;
}
+ | heredoc_body
;
terms : term
@@ -4087,7 +4143,7 @@ yyerror_c(parser_state *p, const char *msg, char c)
}
static void
-yywarn(parser_state *p, const char *s)
+yywarning(parser_state *p, const char *s)
{
char* c;
size_t n;
@@ -4115,12 +4171,6 @@ yywarn(parser_state *p, const char *s)
}
static void
-yywarning(parser_state *p, const char *s)
-{
- yywarn(p, s);
-}
-
-static void
yywarning_s(parser_state *p, const char *msg, const char *s)
{
char buf[256];
@@ -6225,10 +6275,10 @@ parser_yylex(parser_state *p)
if (last_state == EXPR_FNAME) goto gvar;
tokfix(p);
{
- unsigned long n = strtoul(tok(p), NULL, 10);
- if (n > INT_MAX) {
- yyerror(p, "capture group index must be <= " MRB_STRINGIZE(INT_MAX));
- return 0;
+ mrb_int n = mrb_int_read(tok(p), NULL, NULL);
+ if (n > INT32_MAX) {
+ yywarning(p, "capture group index too big; always nil");
+ return keyword_nil;
}
pylval.nd = new_nth_ref(p, (int)n);
}
@@ -6513,6 +6563,7 @@ parser_update_cxt(parser_state *p, mrbc_context *cxt)
int i = 0;
if (!cxt) return;
+ if (!p->tree) return;
if (intn(p->tree->car) != NODE_SCOPE) return;
n0 = n = p->tree->cdr->car;
while (n) {
@@ -6533,53 +6584,39 @@ MRB_API void
mrb_parser_parse(parser_state *p, mrbc_context *c)
{
struct mrb_jmpbuf buf1;
- p->jmp = &buf1;
+ struct mrb_jmpbuf *prev = p->mrb->jmp;
+ p->mrb->jmp = &buf1;
- MRB_TRY(p->jmp) {
+ MRB_TRY(p->mrb->jmp) {
int n = 1;
p->cmd_start = TRUE;
p->in_def = p->in_single = 0;
p->nerr = p->nwarn = 0;
p->lex_strterm = NULL;
-
parser_init_cxt(p, c);
- if (p->mrb->jmp) {
- n = yyparse(p);
- }
- else {
- struct mrb_jmpbuf buf2;
-
- p->mrb->jmp = &buf2;
- MRB_TRY(p->mrb->jmp) {
- n = yyparse(p);
- }
- MRB_CATCH(p->mrb->jmp) {
- p->nerr++;
- }
- MRB_END_EXC(p->mrb->jmp);
- p->mrb->jmp = 0;
- }
+ n = yyparse(p);
if (n != 0 || p->nerr > 0) {
p->tree = 0;
+ p->mrb->jmp = prev;
return;
}
- if (!p->tree) {
- p->tree = new_nil(p);
- }
parser_update_cxt(p, c);
if (c && c->dump_result) {
mrb_parser_dump(p->mrb, p->tree, 0);
}
}
- MRB_CATCH(p->jmp) {
- yyerror(p, "memory allocation error");
+ MRB_CATCH(p->mrb->jmp) {
p->nerr++;
- p->tree = 0;
- return;
+ if (p->mrb->exc == NULL) {
+ yyerror(p, "memory allocation error");
+ p->nerr++;
+ p->tree = 0;
+ }
}
MRB_END_EXC(p->jmp);
+ p->mrb->jmp = prev;
}
MRB_API parser_state*
@@ -6964,8 +7001,13 @@ dump_args(mrb_state *mrb, node *n, int offset)
}
n = n->cdr;
if (n->car) {
+ mrb_sym rest = sym(n->car);
+
dump_prefix(n, offset+1);
- printf("rest=*%s\n", mrb_sym_name(mrb, sym(n->car)));
+ if (rest == MRB_OPSYM(mul))
+ printf("rest=*\n");
+ else
+ printf("rest=*%s\n", mrb_sym_name(mrb, rest));
}
n = n->cdr;
if (n->car) {
@@ -7242,9 +7284,16 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
printf("args:\n");
dump_recur(mrb, tree->car, offset+2);
if (tree->cdr) {
- dump_prefix(tree, offset+1);
- printf("block:\n");
- mrb_parser_dump(mrb, tree->cdr, offset+2);
+ if (tree->cdr->car) {
+ dump_prefix(tree, offset+1);
+ printf("kwargs:\n");
+ mrb_parser_dump(mrb, tree->cdr->car, offset+2);
+ }
+ if (tree->cdr->cdr) {
+ dump_prefix(tree, offset+1);
+ printf("block:\n");
+ mrb_parser_dump(mrb, tree->cdr->cdr, offset+2);
+ }
}
}
break;
@@ -7385,7 +7434,17 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
break;
case NODE_ZSUPER:
- printf("NODE_ZSUPER\n");
+ printf("NODE_ZSUPER:\n");
+ if (tree) {
+ dump_prefix(tree, offset+1);
+ printf("args:\n");
+ dump_recur(mrb, tree->car, offset+2);
+ if (tree->cdr) {
+ dump_prefix(tree, offset+1);
+ printf("block:\n");
+ mrb_parser_dump(mrb, tree->cdr, offset+2);
+ }
+ }
break;
case NODE_RETURN:
@@ -7711,7 +7770,10 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
break;
case NODE_KW_REST_ARGS:
- printf("NODE_KW_REST_ARGS %s\n", mrb_sym_name(mrb, sym(tree)));
+ if (tree)
+ printf("NODE_KW_REST_ARGS %s\n", mrb_sym_name(mrb, sym(tree)));
+ else
+ printf("NODE_KW_REST_ARGS\n");
break;
default:
@@ -7720,3 +7782,19 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
}
#endif
}
+
+typedef mrb_bool mrb_parser_foreach_top_variable_func(mrb_state *mrb, mrb_sym sym, void *user);
+void mrb_parser_foreach_top_variable(mrb_state *mrb, struct mrb_parser_state *p, mrb_parser_foreach_top_variable_func *func, void *user);
+
+void
+mrb_parser_foreach_top_variable(mrb_state *mrb, struct mrb_parser_state *p, mrb_parser_foreach_top_variable_func *func, void *user)
+{
+ const mrb_ast_node *n = p->tree;
+ if ((intptr_t)n->car == NODE_SCOPE) {
+ n = n->cdr->car;
+ for (; n; n = n->cdr) {
+ mrb_sym sym = sym(n->car);
+ if (sym && !func(mrb, sym, user)) break;
+ }
+ }
+}
diff --git a/mrbgems/mruby-compiler/core/y.tab.c b/mrbgems/mruby-compiler/core/y.tab.c
index 137e4d4cf..ef956207c 100644
--- a/mrbgems/mruby-compiler/core/y.tab.c
+++ b/mrbgems/mruby-compiler/core/y.tab.c
@@ -76,7 +76,6 @@
#include <ctype.h>
#include <errno.h>
-#include <stdlib.h>
#include <string.h>
#include <mruby.h>
#include <mruby/compile.h>
@@ -97,7 +96,6 @@ typedef struct mrb_parser_heredoc_info parser_heredoc_info;
static int yyparse(parser_state *p);
static int yylex(void *lval, parser_state *p);
static void yyerror(parser_state *p, const char *s);
-static void yywarn(parser_state *p, const char *s);
static void yywarning(parser_state *p, const char *s);
static void backref_error(parser_state *p, node *n);
static void void_expr_error(parser_state *p, node *n);
@@ -169,7 +167,7 @@ parser_palloc(parser_state *p, size_t size)
void *m = mrb_pool_alloc(p->pool, size);
if (!m) {
- MRB_THROW(p->jmp);
+ MRB_THROW(p->mrb->jmp);
}
return m;
}
@@ -349,9 +347,10 @@ local_var_p(parser_state *p, mrb_sym sym)
const mrb_sym *v = ir->lv;
int i;
- if (!v) break;
- for (i=0; i+1 < ir->nlocals; i++) {
- if (v[i] == sym) return TRUE;
+ if (v) {
+ for (i=0; i+1 < ir->nlocals; i++) {
+ if (v[i] == sym) return TRUE;
+ }
}
if (MRB_PROC_SCOPE_P(u)) break;
u = u->upper;
@@ -563,13 +562,18 @@ new_call(parser_state *p, node *a, mrb_sym b, node *c, int pass)
static node*
new_fcall(parser_state *p, mrb_sym b, node *c)
{
- node *n = new_self(p);
- NODE_LINENO(n, c);
- n = list4((node*)NODE_FCALL, n, nsym(b), c);
+ node *n = list4((node*)NODE_FCALL, 0, nsym(b), c);
NODE_LINENO(n, c);
return n;
}
+/* (a b . c) */
+static node*
+new_callargs(parser_state *p, node *a, node *b, node *c)
+{
+ return cons(a, cons(b, c));
+}
+
/* (:super . c) */
static node*
new_super(parser_state *p, node *c)
@@ -581,7 +585,7 @@ new_super(parser_state *p, node *c)
static node*
new_zsuper(parser_state *p)
{
- return list1((node*)NODE_ZSUPER);
+ return cons((node*)NODE_ZSUPER, 0);
}
/* (:yield . c) */
@@ -590,7 +594,12 @@ new_yield(parser_state *p, node *c)
{
if (c) {
if (c->cdr) {
- yyerror(p, "both block arg and actual block given");
+ if (c->cdr->cdr) {
+ yyerror(p, "both block arg and actual block given");
+ }
+ if (c->cdr->car) {
+ return cons((node*)NODE_YIELD, push(c->car, c->cdr->car));
+ }
}
return cons((node*)NODE_YIELD, c->car);
}
@@ -1024,13 +1033,14 @@ new_op_asgn(parser_state *p, node *a, mrb_sym op, node *b)
static node*
new_imaginary(parser_state *p, node *imaginary)
{
- return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Complex), list1(list2(list3((node*)NODE_INT, (node*)strdup("0"), nint(10)), imaginary)), 1);
+ return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Complex),
+ new_callargs(p, list2(list3((node*)NODE_INT, (node*)strdup("0"), nint(10)), imaginary), 0, 0), 1);
}
static node*
new_rational(parser_state *p, node *rational)
{
- return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Rational), list1(list1(rational)), 1);
+ return new_call(p, new_const(p, MRB_SYM_2(p->mrb, Kernel)), MRB_SYM_2(p->mrb, Rational), new_callargs(p, list1(rational), 0, 0), 1);
}
/* (:int . i) */
@@ -1253,17 +1263,17 @@ call_uni_op(parser_state *p, node *recv, const char *m)
static node*
call_bin_op(parser_state *p, node *recv, const char *m, node *arg1)
{
- return new_call(p, recv, intern_cstr(m), list1(list1(arg1)), 1);
+ return new_call(p, recv, intern_cstr(m), new_callargs(p, list1(arg1), 0, 0), 1);
}
static void
args_with_block(parser_state *p, node *a, node *b)
{
if (b) {
- if (a->cdr) {
+ if (a->cdr && a->cdr->cdr) {
yyerror(p, "both block arg and actual block given");
}
- a->cdr = b;
+ a->cdr->cdr = b;
}
}
@@ -1290,19 +1300,16 @@ call_with_block(parser_state *p, node *a, node *b)
switch (typen(a->car)) {
case NODE_SUPER:
case NODE_ZSUPER:
- if (!a->cdr) a->cdr = cons(0, b);
- else {
- args_with_block(p, a->cdr, b);
- }
+ if (!a->cdr) a->cdr = new_callargs(p, 0, 0, b);
+ else args_with_block(p, a->cdr, b);
break;
case NODE_CALL:
case NODE_FCALL:
case NODE_SCALL:
- n = a->cdr->cdr->cdr;
- if (!n->car) n->car = cons(0, b);
- else {
- args_with_block(p, n->car, b);
- }
+ /* (NODE_CALL recv mid (args kw . blk)) */
+ n = a->cdr->cdr->cdr; /* (args kw . blk) */
+ if (!n->car) n->car = new_callargs(p, 0, 0, b);
+ else args_with_block(p, n->car, b);
break;
default:
break;
@@ -1310,7 +1317,7 @@ call_with_block(parser_state *p, node *a, node *b)
}
static node*
-negate_lit(parser_state *p, node *n)
+new_negate(parser_state *p, node *n)
{
return cons((node*)NODE_NEGATE, n);
}
@@ -1324,10 +1331,11 @@ cond(node *n)
static node*
ret_args(parser_state *p, node *n)
{
- if (n->cdr) {
+ if (n->cdr->cdr) {
yyerror(p, "block argument should not be given");
return NULL;
}
+ if (!n->car) return NULL;
if (!n->car->cdr) return n->car->car;
return new_array(p, n->car);
}
@@ -1356,6 +1364,24 @@ var_reference(parser_state *p, node *lhs)
return lhs;
}
+static node*
+label_reference(parser_state *p, mrb_sym sym)
+{
+ const char *name = mrb_sym_name(p->mrb, sym);
+ node *n;
+
+ if (local_var_p(p, sym)) {
+ n = new_lvar(p, sym);
+ }
+ else if (ISUPPER(name[0])) {
+ n = new_const(p, sym);
+ }
+ else {
+ n = new_fcall(p, sym, 0);
+ }
+ return n;
+}
+
typedef enum mrb_string_type string_type;
static node*
@@ -1448,7 +1474,7 @@ heredoc_end(parser_state *p)
/* xxx ----------------------------- */
-#line 1452 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 1478 "mrbgems/mruby-compiler/core/y.tab.c"
# ifndef YY_CAST
# ifdef __cplusplus
@@ -1620,7 +1646,7 @@ extern int yydebug;
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{
-#line 1394 "mrbgems/mruby-compiler/core/parse.y"
+#line 1420 "mrbgems/mruby-compiler/core/parse.y"
node *nd;
mrb_sym id;
@@ -1628,7 +1654,7 @@ union YYSTYPE
stack_type stack;
const struct vtable *vars;
-#line 1632 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 1658 "mrbgems/mruby-compiler/core/y.tab.c"
};
typedef union YYSTYPE YYSTYPE;
@@ -1946,16 +1972,16 @@ union yyalloc
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 3
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 12611
+#define YYLAST 12926
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 149
/* YYNNTS -- Number of nonterminals. */
-#define YYNNTS 177
+#define YYNNTS 176
/* YYNRULES -- Number of rules. */
-#define YYNRULES 607
+#define YYNRULES 609
/* YYNSTATES -- Number of states. */
-#define YYNSTATES 1063
+#define YYNSTATES 1072
#define YYUNDEFTOK 2
#define YYMAXUTOK 377
@@ -2014,67 +2040,67 @@ static const yytype_uint8 yytranslate[] =
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
- 0, 1565, 1565, 1565, 1576, 1582, 1586, 1591, 1595, 1601,
- 1603, 1602, 1616, 1643, 1649, 1653, 1658, 1662, 1668, 1668,
- 1672, 1676, 1680, 1684, 1688, 1692, 1696, 1701, 1702, 1706,
- 1710, 1714, 1718, 1725, 1728, 1732, 1736, 1740, 1744, 1748,
- 1753, 1757, 1764, 1765, 1769, 1773, 1774, 1778, 1782, 1786,
- 1790, 1794, 1804, 1803, 1818, 1827, 1828, 1831, 1832, 1839,
- 1838, 1853, 1857, 1862, 1866, 1871, 1875, 1880, 1884, 1888,
- 1892, 1896, 1902, 1906, 1912, 1913, 1919, 1923, 1927, 1931,
- 1935, 1939, 1943, 1947, 1951, 1955, 1961, 1962, 1968, 1972,
- 1978, 1982, 1988, 1992, 1996, 2000, 2004, 2008, 2014, 2020,
- 2027, 2031, 2035, 2039, 2043, 2047, 2053, 2059, 2064, 2070,
- 2074, 2077, 2081, 2085, 2092, 2093, 2094, 2095, 2100, 2107,
- 2108, 2111, 2115, 2115, 2121, 2122, 2123, 2124, 2125, 2126,
- 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136,
- 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146,
- 2147, 2148, 2149, 2150, 2153, 2153, 2153, 2154, 2154, 2155,
- 2155, 2155, 2156, 2156, 2156, 2156, 2157, 2157, 2157, 2158,
- 2158, 2158, 2159, 2159, 2159, 2159, 2160, 2160, 2160, 2160,
- 2161, 2161, 2161, 2161, 2162, 2162, 2162, 2162, 2163, 2163,
- 2163, 2163, 2164, 2164, 2167, 2171, 2175, 2179, 2183, 2187,
- 2191, 2196, 2201, 2206, 2210, 2214, 2218, 2222, 2226, 2230,
- 2234, 2238, 2242, 2246, 2250, 2254, 2258, 2262, 2266, 2270,
- 2274, 2278, 2282, 2286, 2290, 2294, 2298, 2302, 2306, 2310,
- 2314, 2318, 2322, 2326, 2330, 2334, 2338, 2342, 2346, 2350,
- 2354, 2363, 2373, 2382, 2392, 2398, 2399, 2404, 2408, 2415,
- 2419, 2427, 2431, 2447, 2473, 2474, 2477, 2478, 2479, 2484,
- 2489, 2496, 2502, 2507, 2512, 2517, 2524, 2524, 2535, 2541,
- 2545, 2551, 2552, 2555, 2561, 2567, 2572, 2579, 2584, 2589,
- 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2607, 2612,
- 2611, 2623, 2627, 2622, 2632, 2632, 2636, 2640, 2644, 2648,
- 2653, 2658, 2662, 2666, 2670, 2674, 2678, 2679, 2685, 2691,
- 2684, 2703, 2711, 2719, 2719, 2719, 2726, 2726, 2726, 2733,
- 2739, 2744, 2746, 2743, 2755, 2753, 2771, 2776, 2769, 2793,
- 2791, 2807, 2817, 2828, 2832, 2836, 2840, 2846, 2853, 2854,
- 2855, 2858, 2859, 2862, 2863, 2871, 2872, 2878, 2882, 2885,
- 2889, 2893, 2897, 2902, 2906, 2910, 2914, 2920, 2919, 2929,
- 2933, 2937, 2941, 2947, 2952, 2957, 2961, 2965, 2969, 2973,
- 2977, 2981, 2985, 2989, 2993, 2997, 3001, 3005, 3009, 3013,
- 3019, 3024, 3031, 3031, 3035, 3040, 3047, 3051, 3057, 3058,
- 3061, 3066, 3069, 3073, 3079, 3083, 3090, 3089, 3104, 3114,
- 3118, 3123, 3130, 3134, 3138, 3142, 3146, 3150, 3154, 3158,
- 3162, 3169, 3168, 3183, 3182, 3198, 3206, 3215, 3218, 3225,
- 3228, 3232, 3233, 3236, 3240, 3243, 3247, 3250, 3251, 3252,
- 3253, 3256, 3257, 3263, 3264, 3265, 3269, 3275, 3276, 3282,
- 3287, 3286, 3297, 3301, 3307, 3311, 3317, 3321, 3327, 3330,
- 3331, 3334, 3340, 3346, 3347, 3350, 3357, 3356, 3370, 3374,
- 3381, 3386, 3393, 3399, 3400, 3401, 3402, 3403, 3407, 3413,
- 3417, 3423, 3424, 3425, 3429, 3435, 3439, 3443, 3447, 3451,
- 3457, 3461, 3467, 3471, 3475, 3479, 3483, 3487, 3495, 3502,
- 3513, 3514, 3518, 3522, 3521, 3538, 3539, 3542, 3548, 3566,
- 3586, 3587, 3593, 3599, 3605, 3612, 3617, 3624, 3628, 3634,
- 3638, 3644, 3645, 3648, 3652, 3658, 3662, 3666, 3670, 3676,
- 3681, 3686, 3690, 3694, 3698, 3702, 3706, 3710, 3714, 3718,
- 3722, 3726, 3730, 3734, 3738, 3743, 3749, 3754, 3759, 3764,
- 3769, 3776, 3780, 3787, 3792, 3791, 3803, 3807, 3813, 3821,
- 3829, 3837, 3841, 3847, 3851, 3857, 3858, 3861, 3866, 3873,
- 3874, 3877, 3883, 3887, 3893, 3898, 3898, 3923, 3924, 3930,
- 3935, 3941, 3942, 3945, 3951, 3956, 3966, 3973, 3974, 3975,
- 3978, 3979, 3980, 3981, 3984, 3985, 3986, 3989, 3990, 3993,
- 3997, 4003, 4004, 4010, 4011, 4014, 4015, 4018, 4021, 4022,
- 4023, 4026, 4027, 4028, 4031, 4038, 4039, 4043
+ 0, 1591, 1591, 1591, 1602, 1608, 1612, 1617, 1621, 1627,
+ 1629, 1628, 1642, 1669, 1675, 1679, 1684, 1688, 1694, 1694,
+ 1698, 1702, 1706, 1710, 1714, 1718, 1722, 1727, 1728, 1732,
+ 1736, 1740, 1744, 1751, 1754, 1758, 1762, 1766, 1770, 1774,
+ 1779, 1783, 1792, 1802, 1811, 1821, 1828, 1829, 1833, 1837,
+ 1838, 1842, 1846, 1850, 1854, 1858, 1868, 1867, 1882, 1891,
+ 1892, 1895, 1896, 1903, 1902, 1917, 1921, 1926, 1930, 1935,
+ 1939, 1944, 1948, 1952, 1956, 1960, 1966, 1970, 1976, 1977,
+ 1983, 1987, 1991, 1995, 1999, 2003, 2007, 2011, 2015, 2019,
+ 2025, 2026, 2032, 2036, 2042, 2046, 2052, 2056, 2060, 2064,
+ 2068, 2072, 2078, 2084, 2091, 2095, 2099, 2103, 2107, 2111,
+ 2117, 2123, 2128, 2134, 2138, 2141, 2145, 2149, 2156, 2157,
+ 2158, 2159, 2164, 2171, 2172, 2175, 2179, 2179, 2185, 2186,
+ 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196,
+ 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206,
+ 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2217, 2217,
+ 2217, 2218, 2218, 2219, 2219, 2219, 2220, 2220, 2220, 2220,
+ 2221, 2221, 2221, 2222, 2222, 2222, 2223, 2223, 2223, 2223,
+ 2224, 2224, 2224, 2224, 2225, 2225, 2225, 2225, 2226, 2226,
+ 2226, 2226, 2227, 2227, 2227, 2227, 2228, 2228, 2231, 2235,
+ 2239, 2243, 2247, 2251, 2255, 2260, 2265, 2270, 2274, 2278,
+ 2282, 2286, 2290, 2294, 2298, 2302, 2306, 2310, 2314, 2318,
+ 2322, 2326, 2330, 2334, 2338, 2342, 2346, 2350, 2354, 2358,
+ 2362, 2366, 2370, 2374, 2378, 2382, 2386, 2390, 2394, 2398,
+ 2402, 2406, 2410, 2414, 2418, 2427, 2437, 2446, 2456, 2462,
+ 2463, 2468, 2472, 2479, 2483, 2491, 2495, 2504, 2521, 2522,
+ 2525, 2526, 2527, 2532, 2537, 2544, 2550, 2555, 2560, 2565,
+ 2572, 2572, 2583, 2589, 2593, 2599, 2602, 2608, 2614, 2619,
+ 2626, 2631, 2636, 2643, 2644, 2645, 2646, 2647, 2648, 2649,
+ 2650, 2654, 2659, 2658, 2670, 2674, 2669, 2679, 2679, 2683,
+ 2687, 2691, 2695, 2700, 2705, 2709, 2713, 2717, 2721, 2725,
+ 2726, 2732, 2738, 2731, 2750, 2758, 2766, 2766, 2766, 2773,
+ 2773, 2773, 2780, 2786, 2791, 2793, 2790, 2802, 2800, 2818,
+ 2823, 2816, 2840, 2838, 2854, 2864, 2875, 2879, 2883, 2887,
+ 2893, 2900, 2901, 2902, 2905, 2906, 2909, 2910, 2918, 2919,
+ 2925, 2929, 2932, 2936, 2940, 2944, 2949, 2953, 2957, 2961,
+ 2967, 2966, 2976, 2980, 2984, 2988, 2994, 2999, 3004, 3008,
+ 3012, 3016, 3020, 3024, 3028, 3032, 3036, 3040, 3044, 3048,
+ 3052, 3056, 3060, 3066, 3071, 3078, 3078, 3082, 3087, 3094,
+ 3098, 3104, 3105, 3108, 3113, 3116, 3120, 3126, 3130, 3137,
+ 3136, 3151, 3161, 3165, 3170, 3177, 3181, 3185, 3189, 3193,
+ 3197, 3201, 3205, 3209, 3216, 3215, 3230, 3229, 3245, 3253,
+ 3262, 3265, 3272, 3275, 3279, 3280, 3283, 3287, 3290, 3294,
+ 3297, 3298, 3299, 3300, 3303, 3304, 3310, 3311, 3312, 3316,
+ 3329, 3330, 3336, 3341, 3340, 3351, 3355, 3361, 3365, 3378,
+ 3382, 3388, 3391, 3392, 3395, 3401, 3407, 3408, 3411, 3418,
+ 3417, 3431, 3435, 3449, 3454, 3468, 3474, 3475, 3476, 3477,
+ 3478, 3482, 3488, 3492, 3502, 3503, 3504, 3508, 3514, 3518,
+ 3522, 3526, 3530, 3536, 3540, 3546, 3550, 3554, 3558, 3562,
+ 3566, 3574, 3581, 3587, 3588, 3592, 3596, 3595, 3612, 3613,
+ 3616, 3622, 3631, 3642, 3643, 3649, 3655, 3661, 3668, 3673,
+ 3680, 3684, 3690, 3694, 3700, 3701, 3704, 3708, 3714, 3718,
+ 3722, 3726, 3732, 3737, 3742, 3746, 3750, 3754, 3758, 3762,
+ 3766, 3770, 3774, 3778, 3782, 3786, 3790, 3794, 3799, 3805,
+ 3810, 3815, 3820, 3825, 3832, 3836, 3843, 3848, 3847, 3859,
+ 3863, 3869, 3877, 3885, 3893, 3897, 3903, 3907, 3913, 3914,
+ 3917, 3922, 3929, 3930, 3933, 3939, 3943, 3949, 3954, 3954,
+ 3979, 3980, 3986, 3991, 3997, 4003, 4008, 4012, 4022, 4029,
+ 4030, 4031, 4034, 4035, 4036, 4037, 4040, 4041, 4042, 4045,
+ 4046, 4049, 4053, 4059, 4060, 4066, 4067, 4070, 4071, 4074,
+ 4077, 4078, 4079, 4082, 4083, 4086, 4091, 4094, 4095, 4099
};
#endif
@@ -2141,9 +2167,9 @@ static const char *const yytname[] =
"f_arg_item", "@32", "f_arg", "f_opt_asgn", "f_opt", "f_block_opt",
"f_block_optarg", "f_optarg", "restarg_mark", "f_rest_arg",
"blkarg_mark", "f_block_arg", "opt_f_block_arg", "singleton", "$@33",
- "assoc_list", "assocs", "label_tag", "assoc", "operation", "operation2",
- "operation3", "dot_or_colon", "call_op", "call_op2", "opt_terms",
- "opt_nl", "rparen", "trailer", "term", "nl", "terms", "none", YY_NULLPTR
+ "assoc_list", "assocs", "assoc", "operation", "operation2", "operation3",
+ "dot_or_colon", "call_op", "call_op2", "opt_terms", "opt_nl", "rparen",
+ "trailer", "term", "nl", "terms", "none", YY_NULLPTR
};
#endif
@@ -2170,12 +2196,12 @@ static const yytype_int16 yytoknum[] =
};
# endif
-#define YYPACT_NINF (-848)
+#define YYPACT_NINF (-862)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
-#define YYTABLE_NINF (-608)
+#define YYTABLE_NINF (-610)
#define yytable_value_is_error(Yyn) \
((Yyn) == YYTABLE_NINF)
@@ -2184,113 +2210,114 @@ static const yytype_int16 yytoknum[] =
STATE-NUM. */
static const yytype_int16 yypact[] =
{
- -848, 137, 2991, -848, 7860, 9984, 10326, 6168, -848, 9630,
- 9630, -848, -848, 10098, 7350, 5903, 8096, 8096, -848, -848,
- 8096, 3648, 3240, -848, -848, -848, -848, 97, 7350, -848,
- 49, -848, -848, -848, 6310, 3104, -848, -848, 6452, -848,
- -848, -848, -848, -848, -848, -848, 51, 9748, 9748, 9748,
- 9748, 168, 5162, 891, 8568, 8922, 7632, -848, 7068, 1196,
- 473, 810, 1387, 1396, -848, 273, 9866, 9748, -848, 1021,
- -848, 1343, -848, 279, 1637, 1722, -848, -848, 130, 112,
- -848, 121, 10212, -848, 152, 12292, 671, 677, 36, 82,
- -848, 321, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, 46, 187, -848, 200, 71, -848, -848, -848, -848,
- -848, 181, 181, 207, 689, 917, -848, 9630, 283, 5281,
- 352, 1722, 1722, -848, 174, -848, 806, -848, -848, 71,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, 24, 103,
- 146, 166, -848, -848, -848, -848, -848, -848, 179, 182,
- 197, 225, -848, 228, -848, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, 233,
- 4340, 341, 279, 680, 277, 12416, 843, 52, 309, 76,
- 680, 9630, 9630, 883, 348, -848, -848, 1109, 381, 98,
- 107, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- 7209, -848, -848, 278, -848, -848, -848, -848, -848, -848,
- 1021, -848, 338, -848, 402, -848, -848, 1021, 3376, 9748,
- 9748, 9748, 9748, -848, 12354, -848, -848, 292, 379, 292,
- -848, -848, -848, 8214, -848, -848, -848, 8096, -848, -848,
- -848, 5903, 9630, -848, -848, 317, 5400, -848, 1118, 368,
- 12478, 12478, 203, 7978, 5162, 343, 1021, 1343, 1021, 380,
- -848, 7978, 1021, 359, 1352, 1352, -848, 12354, 364, 1352,
- -848, 461, 10440, 383, 1158, 1213, 1216, 1732, -848, -848,
- -848, -848, 1421, -848, -848, -848, -848, -848, -848, 518,
- 1507, -848, -848, 499, -848, 880, -848, 1513, -848, 1528,
- 430, 441, -848, -848, -848, -848, 5665, 9630, 9630, 9630,
- 9630, 7978, 9630, 9630, 155, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, 1378, 431, 444,
- 4340, 9748, -848, 409, 524, 446, -848, 1021, -848, -848,
- -848, 475, 9748, -848, 480, 556, 481, 576, -848, -848,
- 511, 4340, -848, -848, 9040, -848, 5162, 7746, 492, 9040,
- 9748, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 9748, 9748,
- 9748, 9748, 9748, 9748, 588, 9748, 9748, 9748, 9748, 9748,
- 9748, 9748, 9748, 9748, 9748, 9748, 9748, 1200, -848, 8096,
- -848, 2511, -848, -848, 11750, -848, -848, -848, -848, 9866,
- 9866, -848, 542, -848, 279, -848, 1218, -848, -848, -848,
- -848, -848, -848, 2629, 8096, 10718, 4340, 9630, -848, -848,
- -848, 627, 630, 218, -848, 4486, 629, 9748, 10804, 8096,
- 10890, 9748, 9748, 4778, 106, 106, 122, 10976, 8096, 11062,
- -848, 583, -848, 5400, 402, -848, -848, 9158, 645, -848,
- 518, 9748, 12416, 12416, 12416, 9748, 374, -848, 8332, -848,
- 9748, -848, 8686, 6022, 520, 1021, 292, 292, -848, -848,
- 1016, 526, -848, -848, 7350, 4897, 534, 10804, 10890, 9748,
- 1343, 1021, -848, -848, 5784, 541, 1343, -848, -848, 8804,
- -848, 1021, 8922, -848, -848, -848, 1218, 121, 10440, -848,
- 10440, 11148, 8096, 11234, 2150, -848, -848, -848, 1539, 5400,
- 518, -848, -848, -848, -848, -848, -848, -848, 9748, 9748,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- 1672, 1021, 1021, 545, 9748, 661, 12416, 78, -848, -848,
- -848, 47, -848, -848, 2150, -848, 12416, 2150, -848, -848,
- 1545, -848, -848, 9748, 673, 38, 9748, -848, 12008, 292,
- -848, 1021, 10440, 549, -848, -848, -848, 648, 572, 1998,
- -848, -848, 1267, 219, 2194, 2194, 2194, 2194, 2128, 2128,
- 2694, 2786, 2194, 2194, 12478, 12478, 465, 465, -848, 368,
- 11946, 2128, 2128, 1923, 1923, 1531, 674, 674, 368, 368,
- 368, 3784, 6808, 4056, 6926, -848, 181, -848, 554, 292,
- 258, -848, 507, -848, -848, 3512, -848, -848, 2370, 38,
- 38, -848, 2848, -848, -848, -848, -848, -848, 1021, 9630,
- 4340, 1033, 515, -848, 181, 557, 181, 685, 1016, 7491,
- -848, 9276, 683, -848, 425, -848, 6570, 6689, 563, 295,
- 296, 683, -848, -848, -848, -848, 66, 115, 567, 126,
- 128, 9630, 7350, 571, 706, 12416, 80, -848, 518, 12416,
- 12416, 518, 9748, 12354, -848, 292, 12416, -848, -848, -848,
- -848, 8450, 8686, -848, -848, -848, 585, -848, -848, 170,
- 1343, 1021, 1352, 492, -848, 1033, 515, 586, 1058, 1092,
- 581, 89, -848, 591, -848, 368, 368, -848, 1286, 1021,
- 592, -848, -848, 1886, 11822, -848, 676, -848, 446, -848,
- -848, -848, 593, 595, 596, -848, 612, 676, 596, 11884,
- -848, -848, 2150, 4340, -848, -848, 12079, 9394, -848, -848,
- 10440, 7978, 9866, 9748, 11320, 8096, 11406, 55, 9866, 9866,
- -848, 542, 509, 8332, 9866, 9866, -848, 542, 82, 130,
- 4340, 5400, 38, -848, 1021, 740, -848, -848, -848, -848,
- 12008, -848, 665, -848, 5043, 745, -848, 9630, 750, -848,
- 9748, 9748, 298, 9748, 9748, 753, 5546, 5546, 140, 106,
- -848, -848, -848, 9512, 4632, 518, 12416, -848, 6022, 292,
- -848, -848, -848, 1095, 615, 625, 4340, 5400, -848, -848,
- -848, 631, -848, 1803, 1021, 9748, -848, 2150, -848, 1545,
- -848, 1545, -848, 1545, -848, -848, 9748, -848, 581, 581,
- 10554, -848, 635, 446, 638, 10554, -848, 643, 649, -848,
- 757, 9748, 12150, -848, -848, 12416, 3920, 4192, 651, 305,
- 449, 9748, 9748, -848, -848, -848, -848, -848, 9866, -848,
- -848, -848, -848, -848, -848, -848, 789, 684, 5400, 4340,
- -848, -848, 10668, 680, -848, -848, 5546, -848, -848, 680,
- -848, 9748, -848, 797, 825, -848, 12416, 365, -848, 8686,
- -848, 1320, 826, 710, 1836, 1836, 1295, -848, 12416, 596,
- 704, 596, 596, 12416, 724, 727, 801, 1322, 78, -848,
- -848, 1742, -848, 1322, 2150, -848, 1545, -848, -848, 12221,
- 464, 12416, 12416, -848, -848, -848, -848, 718, 844, 805,
- -848, 1335, 1213, 1216, 4340, -848, 4486, -848, -848, 5546,
- -848, -848, -848, -848, 12, -848, -848, -848, -848, 721,
- 721, 1836, 726, -848, 1545, -848, -848, -848, -848, -848,
- -848, 11492, -848, 446, 78, -848, -848, 731, 735, 739,
- -848, 742, 739, -848, -848, 1218, 11578, 8096, 11664, 630,
- 425, 851, 1320, -848, 1836, 721, 1836, 596, 741, 744,
- -848, 2150, -848, 1545, -848, 1545, -848, 1545, -848, -848,
- 1033, 515, 748, 746, 804, -848, -848, -848, -848, 721,
- -848, 739, 751, 739, 739, 1095, -848, 1545, -848, -848,
- -848, 739, -848
+ -862, 113, 3344, -862, 8328, 10452, 10794, 6636, -862, 10098,
+ 10098, -862, -862, 10566, 7818, 6252, 8564, 8564, -862, -862,
+ 8564, 3997, 3582, -862, -862, -862, -862, 10, 7818, -862,
+ 20, -862, -862, -862, 6778, 3179, -862, -862, 6920, -862,
+ -862, -862, -862, -862, -862, -862, 292, 10216, 10216, 10216,
+ 10216, 114, 5511, 1275, 9036, 9390, 8100, -862, 7536, 628,
+ 100, 502, 965, 992, -862, 487, 10334, 10216, -862, 756,
+ -862, 1407, -862, 364, 1613, 1613, -862, -862, 155, 65,
+ -862, 67, 10680, -862, 115, 12651, 82, 154, 137, 88,
+ -862, 103, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, 81, 142, -862, 277, 97, -862, -862, -862, -862,
+ -862, 107, 107, 10, 618, 1033, -862, 10098, 148, 5630,
+ 567, 1261, 1261, -862, 145, -862, 206, -862, -862, 97,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, 54, 106,
+ 110, 158, -862, -862, -862, -862, -862, -862, 173, 192,
+ 216, 219, -862, 238, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, 280,
+ 4689, 224, 364, 1613, 1613, 810, 160, 12775, 377, 320,
+ 193, 331, 810, 10098, 10098, 644, 235, -862, -862, 645,
+ 275, 86, 116, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, 7677, -862, -862, 162, -862, -862, -862, -862,
+ -862, -862, 756, -862, 557, -862, 287, -862, -862, 756,
+ 3725, 10216, 10216, 10216, 10216, -862, 12713, -862, -862, 180,
+ 258, 180, -862, -862, -862, 8682, -862, -862, -862, 8564,
+ -862, -862, -862, 6252, 6490, -862, 186, 5749, -862, 678,
+ 225, 2722, 2722, 288, 8446, 5511, 198, 756, 1407, 756,
+ 267, -862, 8446, 756, 251, 1367, 1367, -862, 12713, 256,
+ 1367, -862, 342, 10908, 257, 768, 926, 1070, 1707, -862,
+ -862, -862, -862, 1192, -862, -862, -862, -862, -862, -862,
+ 570, 1262, -862, -862, 326, -862, 663, -862, 1270, -862,
+ 1280, 313, 324, -862, -862, -862, -862, 6014, 10098, 10098,
+ 10098, 10098, 8446, 10098, 10098, 63, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, 2066, 318,
+ 337, 4689, 10216, -862, 308, 409, 336, -862, 756, -862,
+ -862, -862, 339, 10216, -862, 341, 453, 367, 462, -862,
+ -862, 399, 4689, -862, -862, 9508, -862, 5511, 8214, 380,
+ 9508, 10216, 10216, 10216, 10216, 10216, 10216, 10216, 10216, 10216,
+ 10216, 10216, 10216, 10216, 10216, 479, 10216, 10216, 10216, 10216,
+ 10216, 10216, 10216, 10216, 10216, 10216, 10216, 10216, 11186, -862,
+ 8564, -862, 11272, -862, -862, 12476, -862, -862, -862, -862,
+ 10334, 10334, -862, 438, -862, 364, -862, 1071, -862, -862,
+ -862, -862, -862, -862, 11358, 8564, 11444, 4689, 10098, -862,
+ -862, -862, 532, 550, 382, 456, 460, -862, 4835, 578,
+ 10216, 11530, 8564, 11616, 10216, 10216, 5127, 73, 73, 124,
+ 11702, 8564, 11788, -862, 535, -862, 5749, 287, -862, -862,
+ 9626, 585, -862, 10216, 12775, 12775, 12775, 10216, -862, -862,
+ 8800, -862, 10216, -862, 9154, 6371, 470, 756, 180, 180,
+ -862, -862, 1006, 472, -862, -862, -862, 7818, 5246, 464,
+ 11530, 11616, 10216, 1407, 756, -862, -862, 6133, 489, 1407,
+ -862, -862, 9272, -862, 756, 9390, -862, -862, -862, 1071,
+ 67, 10908, -862, 10908, 11874, 8564, 11960, 1470, -862, -862,
+ -862, 1285, 5749, 570, -862, -862, -862, -862, -862, -862,
+ -862, 10216, 10216, -862, -862, -862, -862, -862, -862, -862,
+ -862, -862, -862, 1586, 756, 756, 500, 10334, 633, 12775,
+ 92, -862, -862, -862, 47, -862, -862, 1470, -862, 12775,
+ 1470, -862, -862, 1815, -862, -862, 10334, 638, 56, 10216,
+ -862, 2992, 180, -862, 756, 10908, 526, -862, -862, -862,
+ 626, 553, 1418, -862, -862, 1092, 407, 3503, 3503, 3503,
+ 3503, 1726, 1726, 12793, 2453, 3503, 3503, 2722, 2722, 918,
+ 918, -862, 225, 12775, 1726, 1726, 1345, 1345, 1622, 314,
+ 314, 225, 225, 225, 4133, 7276, 4405, 7394, -862, 107,
+ -862, 538, 180, 343, -862, 413, -862, -862, 3861, -862,
+ -862, 1934, 56, 56, -862, 2201, -862, -862, -862, -862,
+ -862, 756, 10098, 4689, 1091, 634, -862, 107, 543, 107,
+ 683, 1006, 7959, -862, 9744, 682, -862, 10216, 10216, 619,
+ -862, 7038, 7157, 562, 458, 465, 682, -862, -862, -862,
+ -862, 62, 112, 568, 130, 134, 10098, 7818, 576, 701,
+ 12775, 774, -862, 12775, 12775, 493, 10216, 12713, -862, 180,
+ 12775, -862, -862, -862, -862, 8918, 9154, -862, -862, -862,
+ 582, -862, -862, 55, 1407, 756, 1367, 380, -862, 1091,
+ 634, 581, 1159, 1160, -862, 72, -862, 593, -862, 225,
+ 225, -862, 1007, 756, 606, -862, -862, 2252, 708, 2789,
+ -862, 703, -862, 336, -862, -862, -862, 624, 625, 627,
+ -862, 635, 703, 627, 744, 2908, -862, -862, 1470, 4689,
+ -862, -862, 3393, 9862, -862, -862, 10908, 8446, 10334, 10216,
+ 12046, 8564, 12132, 217, 10334, 10334, -862, 438, 433, 8800,
+ 10334, 10334, -862, 438, 88, 155, 4689, 5749, 56, -862,
+ 756, 778, -862, -862, -862, -862, 2992, -862, 704, -862,
+ 5392, 787, -862, 10098, 789, -862, 10216, 10216, 476, 10216,
+ 10216, 795, 5895, 5895, 135, 73, -862, -862, -862, 9980,
+ 4981, 12775, -862, 6371, 180, -862, -862, -862, 1173, 667,
+ 1415, 4689, 5749, -862, -862, -862, 671, -862, 1596, 756,
+ 10216, 10216, -862, 1470, -862, 1815, -862, 1815, -862, 1815,
+ -862, -862, 10216, 10216, -862, -862, -862, 11022, -862, 681,
+ 336, 688, 11022, -862, 692, 696, -862, 828, 10216, 12509,
+ -862, -862, 12775, 4269, 4541, 705, 517, 528, 10216, 10216,
+ -862, -862, -862, -862, -862, 10334, -862, -862, -862, -862,
+ -862, -862, -862, 829, 711, 5749, 4689, -862, -862, 11136,
+ 810, -862, -862, 5895, -862, -862, 810, -862, 10216, -862,
+ 836, 840, -862, 12775, 244, -862, 9154, -862, 1385, 842,
+ 723, 1676, 1676, 1081, -862, 12775, 12775, 627, 721, 627,
+ 627, 12775, 12775, 740, 741, 821, 1093, 92, -862, -862,
+ 1793, -862, 1093, 1470, -862, 1815, -862, -862, 12580, 575,
+ 12775, 12775, -862, -862, -862, -862, 742, 864, 827, -862,
+ 1136, 926, 1070, 4689, -862, 4835, -862, -862, 5895, -862,
+ -862, -862, -862, 746, -862, -862, -862, -862, 752, 752,
+ 1676, 755, -862, 1815, -862, -862, -862, -862, -862, -862,
+ 12218, -862, 336, 92, -862, -862, 761, 763, 769, -862,
+ 779, 769, -862, -862, 1071, 12304, 8564, 12390, 550, 619,
+ 868, 1385, 493, 1676, 752, 1676, 627, 766, 782, -862,
+ 1470, -862, 1815, -862, 1815, -862, 1815, -862, -862, 1091,
+ 634, 745, 853, 995, -862, -862, -862, -862, 752, -862,
+ 769, 788, 769, 769, 1173, -862, 1815, -862, -862, -862,
+ 769, -862
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
@@ -2298,159 +2325,160 @@ static const yytype_int16 yypact[] =
means the default is an error. */
static const yytype_int16 yydefact[] =
{
- 2, 0, 0, 1, 0, 0, 0, 0, 289, 0,
- 0, 313, 316, 0, 0, 593, 333, 334, 335, 336,
- 301, 266, 266, 484, 483, 485, 486, 595, 0, 10,
- 0, 488, 487, 489, 475, 579, 477, 476, 479, 478,
- 471, 472, 433, 434, 490, 491, 287, 0, 0, 0,
- 0, 0, 0, 291, 607, 607, 84, 308, 0, 0,
- 0, 0, 0, 0, 448, 0, 0, 0, 3, 593,
- 6, 9, 27, 33, 535, 535, 45, 56, 55, 0,
- 72, 0, 76, 86, 0, 50, 244, 0, 57, 306,
- 280, 281, 431, 282, 283, 284, 429, 428, 460, 430,
- 427, 482, 0, 285, 286, 266, 5, 8, 333, 334,
- 301, 607, 409, 0, 109, 110, 287, 0, 0, 0,
- 0, 535, 535, 112, 492, 337, 0, 482, 286, 0,
- 329, 164, 174, 165, 161, 190, 191, 192, 193, 172,
- 187, 180, 170, 169, 185, 168, 167, 163, 188, 162,
- 175, 179, 181, 173, 166, 182, 189, 184, 183, 176,
- 186, 171, 160, 178, 177, 159, 157, 158, 154, 155,
- 156, 114, 116, 115, 149, 150, 127, 128, 129, 136,
- 133, 135, 130, 131, 151, 152, 137, 138, 142, 145,
- 146, 132, 134, 124, 125, 126, 139, 140, 141, 143,
- 144, 147, 148, 153, 565, 51, 117, 118, 564, 0,
- 0, 0, 54, 0, 0, 50, 0, 482, 0, 286,
- 0, 0, 0, 108, 0, 348, 347, 0, 0, 482,
- 286, 183, 176, 186, 171, 154, 155, 156, 114, 115,
- 0, 119, 121, 20, 120, 451, 456, 455, 601, 604,
- 593, 603, 0, 453, 0, 605, 602, 594, 577, 0,
- 0, 0, 0, 261, 273, 70, 265, 607, 431, 607,
- 569, 71, 69, 607, 255, 302, 68, 0, 254, 408,
- 67, 593, 0, 596, 18, 0, 0, 217, 0, 218,
- 205, 208, 298, 0, 0, 0, 593, 15, 593, 74,
- 14, 0, 593, 0, 598, 598, 245, 0, 0, 598,
- 567, 0, 0, 82, 0, 92, 99, 535, 465, 464,
- 466, 467, 0, 463, 462, 435, 440, 439, 442, 0,
- 0, 437, 444, 0, 446, 0, 458, 0, 469, 0,
- 473, 474, 49, 232, 233, 4, 594, 0, 0, 0,
- 0, 0, 0, 0, 542, 538, 537, 536, 539, 540,
- 544, 556, 511, 512, 560, 559, 555, 535, 0, 500,
- 0, 504, 509, 607, 514, 607, 534, 0, 541, 543,
- 546, 520, 0, 553, 520, 558, 520, 0, 518, 496,
- 500, 0, 396, 398, 0, 88, 0, 80, 77, 0,
+ 2, 0, 0, 1, 0, 0, 0, 0, 292, 0,
+ 0, 316, 319, 0, 0, 595, 336, 337, 338, 339,
+ 304, 270, 270, 487, 486, 488, 489, 597, 0, 10,
+ 0, 491, 490, 492, 478, 581, 480, 479, 482, 481,
+ 474, 475, 436, 437, 493, 494, 290, 0, 0, 0,
+ 0, 0, 0, 294, 609, 609, 88, 311, 0, 0,
+ 0, 0, 0, 0, 451, 0, 0, 0, 3, 595,
+ 6, 9, 27, 33, 538, 538, 49, 60, 59, 0,
+ 76, 0, 80, 90, 0, 54, 248, 0, 61, 309,
+ 283, 284, 434, 285, 286, 287, 432, 431, 463, 433,
+ 430, 485, 0, 288, 289, 270, 5, 8, 336, 337,
+ 304, 609, 412, 0, 113, 114, 290, 0, 0, 0,
+ 0, 538, 538, 116, 495, 340, 0, 485, 289, 0,
+ 332, 168, 178, 169, 165, 194, 195, 196, 197, 176,
+ 191, 184, 174, 173, 189, 172, 171, 167, 192, 166,
+ 179, 183, 185, 177, 170, 186, 193, 188, 187, 180,
+ 190, 175, 164, 182, 181, 163, 161, 162, 158, 159,
+ 160, 118, 120, 119, 153, 154, 131, 132, 133, 140,
+ 137, 139, 134, 135, 155, 156, 141, 142, 146, 149,
+ 150, 136, 138, 128, 129, 130, 143, 144, 145, 147,
+ 148, 151, 152, 157, 568, 55, 121, 122, 567, 0,
+ 0, 0, 58, 538, 538, 0, 0, 54, 0, 485,
+ 0, 289, 0, 0, 0, 112, 0, 351, 350, 0,
+ 0, 485, 289, 187, 180, 190, 175, 158, 159, 160,
+ 118, 119, 0, 123, 125, 20, 124, 454, 459, 458,
+ 603, 605, 595, 606, 0, 456, 0, 607, 604, 596,
+ 579, 0, 0, 0, 0, 265, 276, 74, 269, 609,
+ 434, 609, 572, 75, 73, 609, 259, 305, 72, 0,
+ 258, 411, 71, 595, 0, 18, 0, 0, 221, 0,
+ 222, 209, 212, 301, 0, 0, 0, 595, 15, 595,
+ 78, 14, 0, 595, 0, 600, 600, 249, 0, 0,
+ 600, 570, 0, 0, 86, 0, 96, 103, 538, 468,
+ 467, 469, 470, 0, 466, 465, 438, 443, 442, 445,
+ 0, 0, 440, 447, 0, 449, 0, 461, 0, 472,
+ 0, 476, 477, 53, 236, 237, 4, 596, 0, 0,
+ 0, 0, 0, 0, 0, 545, 541, 540, 539, 542,
+ 543, 547, 559, 514, 515, 563, 562, 558, 538, 0,
+ 503, 0, 507, 512, 609, 517, 609, 537, 0, 544,
+ 546, 549, 523, 0, 556, 523, 561, 523, 0, 521,
+ 499, 0, 0, 399, 401, 0, 92, 0, 84, 81,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 204, 207, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 590, 607,
- 589, 0, 592, 591, 0, 413, 411, 307, 432, 0,
- 0, 402, 61, 305, 326, 109, 110, 111, 473, 474,
- 500, 493, 324, 0, 607, 0, 0, 0, 588, 587,
- 52, 0, 607, 298, 339, 0, 338, 0, 0, 607,
- 0, 0, 0, 0, 0, 0, 298, 0, 607, 0,
- 321, 0, 122, 0, 0, 452, 454, 0, 0, 606,
- 571, 0, 274, 576, 268, 0, 271, 262, 0, 270,
- 0, 263, 0, 593, 0, 593, 607, 607, 256, 267,
- 593, 0, 304, 48, 0, 0, 0, 0, 0, 0,
- 17, 593, 296, 13, 594, 73, 292, 295, 299, 600,
- 246, 599, 600, 248, 300, 568, 98, 90, 0, 85,
- 0, 0, 607, 0, 535, 309, 393, 468, 0, 0,
- 443, 449, 436, 438, 445, 447, 459, 470, 0, 0,
- 7, 21, 22, 23, 24, 25, 46, 47, 502, 548,
- 0, 593, 593, 520, 0, 0, 503, 0, 516, 563,
- 513, 0, 517, 501, 0, 527, 549, 0, 530, 557,
- 0, 532, 561, 0, 0, 607, 0, 28, 30, 0,
- 31, 593, 0, 78, 89, 44, 34, 42, 0, 249,
- 194, 29, 0, 286, 222, 227, 228, 229, 224, 226,
- 236, 237, 230, 231, 203, 206, 234, 235, 32, 214,
- 595, 223, 225, 219, 220, 221, 209, 210, 211, 212,
- 213, 580, 585, 581, 586, 407, 266, 405, 0, 607,
- 580, 582, 581, 583, 406, 266, 580, 581, 266, 607,
- 607, 35, 249, 195, 41, 202, 59, 62, 0, 0,
- 0, 109, 110, 113, 0, 0, 607, 0, 593, 0,
- 290, 607, 607, 419, 607, 340, 584, 297, 0, 580,
- 581, 607, 342, 314, 341, 317, 584, 297, 0, 580,
- 581, 0, 0, 0, 0, 273, 0, 320, 572, 574,
- 573, 0, 0, 275, 269, 607, 575, 570, 253, 251,
- 257, 258, 260, 303, 597, 19, 0, 26, 201, 75,
- 16, 593, 598, 91, 83, 95, 97, 0, 94, 96,
- 595, 0, 461, 0, 450, 215, 216, 542, 356, 593,
- 349, 499, 497, 0, 240, 331, 0, 510, 607, 562,
- 519, 547, 520, 520, 520, 554, 520, 542, 520, 242,
- 332, 384, 382, 0, 381, 380, 279, 0, 87, 81,
- 0, 0, 0, 0, 0, 607, 0, 0, 0, 0,
- 404, 65, 410, 258, 0, 0, 403, 63, 399, 58,
- 0, 0, 607, 327, 0, 0, 410, 330, 566, 53,
- 420, 421, 607, 422, 0, 607, 345, 0, 0, 343,
- 0, 0, 410, 0, 0, 0, 0, 0, 410, 0,
- 123, 457, 319, 0, 0, 272, 276, 264, 593, 607,
- 11, 293, 247, 93, 0, 386, 0, 0, 310, 441,
- 357, 354, 545, 0, 593, 0, 515, 0, 523, 0,
- 525, 0, 531, 0, 528, 533, 0, 379, 595, 595,
- 506, 507, 607, 607, 364, 0, 551, 364, 364, 362,
- 0, 0, 277, 79, 43, 250, 580, 581, 0, 580,
- 581, 0, 0, 40, 199, 39, 200, 66, 0, 37,
- 197, 38, 198, 64, 400, 401, 0, 0, 0, 0,
- 494, 325, 0, 0, 424, 346, 0, 12, 426, 0,
- 311, 0, 312, 0, 0, 322, 275, 607, 252, 259,
- 392, 0, 0, 0, 0, 0, 352, 498, 241, 520,
- 520, 520, 520, 243, 0, 0, 0, 505, 0, 360,
- 361, 364, 372, 550, 0, 375, 0, 377, 397, 278,
- 410, 239, 238, 36, 196, 414, 412, 0, 0, 0,
- 423, 0, 100, 107, 0, 425, 0, 315, 318, 0,
- 416, 417, 415, 390, 595, 388, 391, 395, 394, 358,
- 355, 0, 350, 524, 0, 521, 526, 529, 385, 383,
- 298, 0, 508, 607, 0, 363, 370, 364, 364, 364,
- 552, 364, 364, 60, 328, 106, 0, 607, 0, 607,
- 607, 0, 0, 387, 0, 353, 0, 520, 584, 297,
- 359, 0, 367, 0, 369, 0, 376, 0, 373, 378,
- 103, 105, 0, 580, 581, 418, 344, 323, 389, 351,
- 522, 364, 364, 364, 364, 101, 368, 0, 365, 371,
- 374, 364, 366
+ 0, 208, 211, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 592,
+ 609, 591, 0, 594, 593, 0, 416, 414, 310, 435,
+ 0, 0, 405, 65, 308, 329, 113, 114, 115, 476,
+ 477, 503, 496, 327, 0, 609, 0, 0, 0, 590,
+ 589, 56, 0, 609, 301, 0, 0, 342, 0, 341,
+ 0, 0, 609, 0, 0, 0, 0, 0, 0, 301,
+ 0, 609, 0, 324, 0, 126, 0, 0, 455, 457,
+ 0, 0, 608, 576, 277, 578, 272, 0, 597, 266,
+ 0, 274, 0, 267, 0, 595, 0, 595, 609, 609,
+ 260, 271, 595, 0, 307, 52, 598, 0, 0, 0,
+ 0, 0, 0, 17, 595, 299, 13, 596, 77, 295,
+ 298, 302, 602, 250, 601, 602, 252, 303, 571, 102,
+ 94, 0, 89, 0, 0, 609, 0, 538, 312, 396,
+ 471, 0, 0, 446, 452, 439, 441, 448, 450, 462,
+ 473, 0, 0, 7, 21, 22, 23, 24, 25, 50,
+ 51, 505, 551, 0, 595, 595, 523, 0, 0, 506,
+ 0, 519, 566, 516, 0, 520, 504, 0, 530, 552,
+ 0, 533, 560, 0, 535, 564, 0, 0, 609, 0,
+ 28, 30, 0, 31, 595, 0, 82, 93, 48, 34,
+ 46, 0, 253, 198, 29, 0, 289, 226, 231, 232,
+ 233, 228, 230, 240, 241, 234, 235, 207, 210, 238,
+ 239, 32, 218, 597, 227, 229, 223, 224, 225, 213,
+ 214, 215, 216, 217, 582, 587, 583, 588, 410, 270,
+ 408, 0, 609, 582, 584, 583, 585, 409, 270, 582,
+ 583, 270, 609, 609, 35, 253, 199, 45, 206, 63,
+ 66, 0, 0, 0, 113, 114, 117, 0, 0, 609,
+ 0, 595, 0, 293, 609, 609, 422, 0, 0, 609,
+ 343, 586, 300, 0, 582, 583, 609, 345, 317, 344,
+ 320, 586, 300, 0, 582, 583, 0, 0, 0, 0,
+ 276, 0, 323, 575, 574, 275, 0, 278, 273, 609,
+ 577, 573, 257, 255, 261, 262, 264, 306, 599, 19,
+ 0, 26, 205, 79, 16, 595, 600, 95, 87, 99,
+ 101, 0, 98, 100, 597, 0, 464, 0, 453, 219,
+ 220, 545, 359, 595, 352, 502, 500, 0, 41, 244,
+ 334, 0, 513, 609, 565, 522, 550, 523, 523, 523,
+ 557, 523, 545, 523, 43, 246, 335, 387, 385, 0,
+ 384, 383, 282, 0, 91, 85, 0, 0, 0, 0,
+ 0, 609, 0, 0, 0, 0, 407, 69, 413, 262,
+ 0, 0, 406, 67, 402, 62, 0, 0, 609, 330,
+ 0, 0, 413, 333, 569, 57, 423, 424, 609, 425,
+ 0, 609, 348, 0, 0, 346, 0, 0, 413, 0,
+ 0, 0, 0, 0, 413, 0, 127, 460, 322, 0,
+ 0, 279, 268, 595, 609, 11, 296, 251, 97, 0,
+ 389, 0, 0, 313, 444, 360, 357, 548, 0, 595,
+ 0, 0, 518, 0, 526, 0, 528, 0, 534, 0,
+ 531, 536, 0, 0, 382, 597, 597, 509, 510, 609,
+ 609, 367, 0, 554, 367, 367, 365, 0, 0, 280,
+ 83, 47, 254, 582, 583, 0, 582, 583, 0, 0,
+ 40, 203, 39, 204, 70, 0, 37, 201, 38, 202,
+ 68, 403, 404, 0, 0, 0, 0, 497, 328, 0,
+ 0, 427, 349, 0, 12, 429, 0, 314, 0, 315,
+ 0, 0, 325, 278, 609, 256, 263, 395, 0, 0,
+ 0, 0, 0, 355, 501, 42, 245, 523, 523, 523,
+ 523, 44, 247, 0, 0, 0, 508, 0, 363, 364,
+ 367, 375, 553, 0, 378, 0, 380, 400, 281, 413,
+ 243, 242, 36, 200, 417, 415, 0, 0, 0, 426,
+ 0, 104, 111, 0, 428, 0, 318, 321, 0, 419,
+ 420, 418, 393, 597, 391, 394, 398, 397, 361, 358,
+ 0, 353, 527, 0, 524, 529, 532, 388, 386, 301,
+ 0, 511, 609, 0, 366, 373, 367, 367, 367, 555,
+ 367, 367, 64, 331, 110, 0, 609, 0, 609, 609,
+ 0, 0, 390, 0, 356, 0, 523, 586, 300, 362,
+ 0, 370, 0, 372, 0, 379, 0, 376, 381, 107,
+ 109, 0, 582, 583, 421, 347, 326, 392, 354, 525,
+ 367, 367, 367, 367, 105, 371, 0, 368, 374, 377,
+ 367, 369
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
- -848, -848, -848, 382, -848, 28, -848, -255, 267, -848,
- 120, -848, -31, -208, 229, 64, 100, -848, 83, -46,
- -848, -605, -848, 30, 886, -183, -19, -66, -274, -472,
- -45, 1894, -87, 898, 20, 14, -848, -848, 15, -848,
- 1140, -848, 707, 65, -55, -403, 72, 26, -848, -298,
- -233, 280, 375, -340, 129, -848, -848, -848, -848, -848,
- -848, -848, -848, -848, -848, -848, -848, -848, -848, -848,
- -848, 8, -216, -467, -115, -563, -848, -848, -848, 136,
- 91, -848, -565, -848, -848, -424, -848, -110, -848, -848,
- 114, -848, -848, -848, -86, -848, -848, -469, -848, -104,
- -848, -848, -848, -848, -848, -15, 21, -178, -848, -848,
- -848, -848, -405, -273, -848, 669, -848, -848, -848, 16,
- -848, -848, -848, 1698, 2055, 921, 1364, -848, -848, -848,
- 405, 74, -668, 354, -16, -848, -848, -848, 73, -20,
- -195, -246, -815, -685, -526, -848, 135, -735, -520, -847,
- -11, -505, -848, -439, -848, 262, -318, -848, -848, -848,
- 45, 667, -422, 609, -265, -848, -848, -53, -848, 34,
- -18, 366, -264, 601, -21, -62, -2
+ -862, -862, -862, 419, -862, 28, -862, -277, 32, -862,
+ 74, -862, -195, -390, 422, 1715, 1901, -862, 1, -58,
+ -862, -635, -862, 14, 927, -207, -30, -53, -275, -506,
+ -12, 985, -38, 933, 13, -21, -862, -862, 19, -862,
+ 1204, -862, 149, 41, -202, -374, 66, 5, -862, -392,
+ -262, -131, 161, -361, 35, -862, -862, -862, -862, -862,
+ -862, -862, -862, -862, -862, -862, -862, -862, -862, -862,
+ -862, 8, -179, -442, -88, -590, -862, -862, -862, 164,
+ 85, -862, -558, -862, -862, -218, -862, -86, -862, -862,
+ 141, -862, -862, -862, -85, -862, -862, -472, -862, -77,
+ -862, -862, -862, -862, -862, 38, 71, -210, -862, -862,
+ -862, -862, -862, -245, -862, 698, -862, -862, -862, 31,
+ -862, -862, -862, 2358, 2761, 946, 2172, -862, -862, 0,
+ 590, -6, 76, 397, 24, -862, -862, -862, 329, -445,
+ -14, -229, -842, -706, -60, -862, 227, -711, -525, -861,
+ -3, -517, -862, 75, -862, 202, -308, -862, -862, -862,
+ 102, -438, 612, -157, -862, -862, -82, -862, 34, -26,
+ 344, -249, -180, -281, -67, -2
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
- -1, 1, 2, 68, 69, 70, 285, 461, 462, 296,
- 297, 514, 72, 606, 73, 74, 75, 679, 213, 76,
- 77, 667, 802, 78, 79, 298, 80, 81, 82, 539,
- 83, 214, 123, 124, 241, 242, 243, 702, 644, 207,
- 85, 303, 610, 645, 275, 504, 505, 276, 277, 266,
- 497, 532, 649, 600, 86, 210, 301, 731, 302, 317,
- 741, 221, 826, 222, 827, 701, 979, 670, 668, 909,
- 456, 288, 465, 693, 818, 819, 228, 749, 934, 1005,
- 952, 868, 773, 774, 869, 844, 984, 985, 545, 848,
- 393, 595, 88, 89, 443, 660, 659, 488, 982, 682,
- 812, 913, 917, 90, 91, 92, 330, 331, 549, 93,
- 94, 95, 550, 251, 252, 253, 483, 96, 97, 98,
- 324, 99, 100, 217, 218, 103, 219, 452, 669, 368,
- 450, 370, 371, 372, 871, 872, 373, 374, 375, 760,
- 585, 377, 378, 379, 380, 570, 381, 382, 383, 876,
- 877, 384, 385, 386, 387, 388, 578, 209, 457, 308,
- 507, 491, 270, 129, 674, 647, 460, 455, 434, 511,
- 845, 512, 530, 255, 256, 257, 300
+ -1, 1, 2, 68, 69, 70, 286, 462, 463, 297,
+ 298, 517, 72, 609, 73, 213, 214, 682, 215, 76,
+ 77, 670, 808, 78, 79, 299, 80, 81, 82, 542,
+ 83, 216, 123, 124, 243, 244, 245, 707, 647, 207,
+ 85, 304, 613, 648, 277, 506, 507, 278, 279, 268,
+ 499, 535, 652, 603, 86, 210, 302, 735, 303, 318,
+ 745, 223, 832, 224, 833, 706, 988, 673, 671, 916,
+ 457, 289, 468, 698, 824, 825, 230, 753, 941, 1014,
+ 961, 875, 779, 780, 876, 849, 993, 994, 548, 853,
+ 394, 598, 88, 89, 444, 663, 662, 491, 991, 685,
+ 818, 920, 924, 90, 91, 92, 331, 332, 552, 93,
+ 94, 95, 553, 253, 254, 255, 486, 96, 97, 98,
+ 325, 99, 100, 219, 220, 103, 221, 453, 672, 369,
+ 370, 371, 372, 373, 878, 879, 374, 375, 376, 377,
+ 588, 378, 379, 380, 381, 573, 382, 383, 384, 883,
+ 884, 385, 386, 387, 388, 389, 581, 209, 458, 309,
+ 509, 272, 129, 677, 650, 461, 456, 435, 513, 850,
+ 514, 533, 257, 258, 259, 301
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
@@ -2458,549 +2486,572 @@ static const yytype_int16 yydefgoto[] =
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
- 106, 268, 268, 437, 473, 268, 283, 346, 695, 282,
- 87, 313, 87, 126, 126, 704, 398, 216, 216, 278,
- 342, 227, 206, 216, 216, 216, 648, 205, 216, 206,
- 244, 447, 107, 299, 431, 433, 501, 875, 538, 268,
- 268, 533, 284, 206, 244, 535, 263, 263, 280, 254,
- 263, 675, 306, 310, 376, 376, 551, 582, 761, 611,
- 87, 269, 269, 851, 314, 269, 688, 765, 734, 121,
- 121, 546, 389, 206, 216, 698, 438, 121, 323, 762,
- 717, 333, 335, 337, 339, 708, 274, 279, 265, 271,
- 314, -103, 272, 220, 800, 801, 464, 435, 250, 305,
- 309, 376, 376, 345, 870, 122, 122, 1010, 435, 278,
- 717, 521, 891, 122, -484, 575, 986, 771, 846, 815,
- 121, 572, 71, -100, 71, 216, 432, 87, 825, 756,
- 779, 442, -107, 692, 125, 125, 594, 3, -480, 737,
- -105, 428, 125, -481, -480, 763, 121, -106, 766, 391,
- 364, -102, 553, -104, 1022, 553, 122, 553, 392, 553,
- 249, 553, 646, 470, 772, -101, 655, -100, 472, 658,
- 441, -484, -108, -100, 479, 365, 274, 279, 892, 362,
- 363, 364, 122, 430, 1010, 125, 897, 286, -92, 588,
- 676, 591, 903, -483, 441, 245, 391, -107, 246, 247,
- 714, 677, 847, 646, 714, 655, 365, 986, -95, 436,
- -580, 125, 568, 601, 676, 273, 875, 551, 87, 875,
- 436, 245, 496, 292, 246, 247, 248, 761, 249, 216,
- 216, 661, 664, 394, 524, 518, -485, 908, 212, 212,
- -92, 281, 531, 531, 212, 249, 537, 531, 762, -99,
- -483, 992, 248, 676, 249, 206, -486, -97, 268, -581,
- 323, 543, 268, 395, -98, 499, 538, 499, -94, -488,
- -96, 508, -487, 399, 501, 299, 569, 744, 676, 439,
- 870, 216, -93, 870, 484, 216, 870, -489, 870, 216,
- 216, -73, 440, -485, 87, 519, 875, 376, 740, 451,
- 717, 87, 87, 263, 474, 475, 835, 263, 883, 87,
- 519, 440, -87, -486, 763, -475, 352, 353, -479, 295,
- 314, -107, 269, 458, -106, 273, -488, 761, 538, -487,
- 523, 340, 341, 878, 445, 761, 870, 765, 446, -106,
- -107, 811, -99, 548, -489, -98, 444, 376, 597, 509,
- 794, 281, 603, 607, 87, 216, 216, 216, 216, 87,
- 216, 216, 925, 870, 980, 870, 673, 870, 605, 870,
- 553, 579, -475, 579, 560, -479, 121, 299, 87, -102,
- 459, 42, 888, 814, 43, 487, 295, 823, 824, 870,
- 921, 267, 267, 607, 607, 267, 463, 794, 467, 87,
- -94, 471, 216, 476, 87, 314, 480, 612, 605, 605,
- 448, 449, 122, 520, 268, 805, -102, -104, 940, -101,
- 482, 526, 487, 714, 714, 761, -102, 508, 59, 304,
- 561, 562, 563, 564, 496, 744, 490, 216, 551, 268,
- 856, 125, 817, 814, 944, 945, 653, 612, 612, 653,
- 212, 212, 508, 485, 268, 515, 246, 247, 981, 263,
- 683, 121, 216, 268, 87, 216, 71, 508, 842, 415,
- 653, 565, 733, 87, 537, 283, 508, 216, 711, 369,
- 390, 87, 837, 268, 263, 653, 216, 268, 522, -595,
- 834, 87, -595, -595, 653, 714, 654, 122, 761, 263,
- 528, -72, 573, 534, 499, 499, 538, 717, 263, 761,
- 510, 513, 1008, 106, 268, 1011, 536, 268, 880, 646,
- 654, 655, 249, 87, 376, 540, 125, 268, 725, 206,
- 244, 558, 87, 653, 332, 654, 537, 326, 327, 720,
- 508, 795, 559, 715, 654, 906, 314, 498, 314, 502,
- 216, 577, 574, 516, 949, 950, 898, 87, 653, 786,
- 554, 295, 744, 326, 327, -495, 415, 858, 860, 862,
- -104, 864, 263, 865, 732, 580, 212, 212, 212, 212,
- 893, 566, 567, 654, 529, -101, 899, 901, 581, 328,
- 329, 932, 1052, 775, 422, 423, 424, 425, 426, 795,
- 796, 898, 121, 798, 121, -297, 837, 589, 654, 283,
- 314, 105, 787, 105, 1042, 328, 329, 584, 105, 105,
- -297, 796, 587, 590, 105, 105, 105, 592, -104, 105,
- -101, 714, 593, 245, 604, 71, 246, 247, 122, 628,
- 122, 666, 680, 681, 730, 685, 547, 499, 506, -96,
- 758, -93, 267, 278, 968, -297, 278, 775, 775, -581,
- 707, 105, -297, 295, 525, 719, 121, 125, 527, 125,
- 531, 724, 791, 727, 278, 105, 755, 216, 87, 813,
- 816, 797, 816, -87, 799, 1030, 678, 753, 770, 816,
- 963, 780, 781, 782, 206, 792, 464, 974, 806, 809,
- 807, 814, 122, 976, 822, 750, 268, 268, 828, 216,
- 831, 790, 904, 499, 537, -577, 830, 206, 244, 283,
- 274, 832, 764, 274, 840, 768, 105, 843, 105, 249,
- 849, 125, 684, 568, 853, 857, 607, 859, 861, 790,
- 691, 274, 607, 895, 993, 995, 996, 997, 607, 607,
- 703, 605, 804, 676, 863, 911, 579, 605, 912, 916,
- 930, -337, -102, 605, 605, 920, 839, 427, 922, 599,
- 268, 931, 958, 935, 599, 415, -337, 948, 268, -475,
- 951, 87, 428, 508, 829, 954, 721, 722, 314, 87,
- 612, 956, 960, 216, -475, 245, 612, 216, 246, 247,
- 775, 653, 612, 612, 965, 424, 425, 426, 87, 87,
- 914, -337, 977, 918, 466, 263, 743, 429, -337, 105,
- -104, 466, 87, 966, 430, 216, 248, -577, 249, -475,
- 105, 105, 1050, -577, 87, 87, -475, 499, 839, 759,
- 978, 987, 87, 759, 121, 873, 994, 283, 283, 988,
- 998, 654, 607, 999, 87, 87, 1000, 1013, 489, 1014,
- 1015, -102, 706, 1024, -102, -102, 1047, 605, 1026, 718,
- 579, 579, 334, 1031, 326, 327, 723, 1033, 947, 777,
- 122, 1035, 105, 953, 1037, -580, 105, 729, -581, 1055,
- 105, 105, -102, 1057, -102, 105, 453, 726, 212, 225,
- 919, 884, 105, 105, 130, 1046, 612, 874, 867, 125,
- 105, 428, 1048, 905, 268, 1045, 87, 87, 1018, -104,
- 971, 486, -104, -104, 87, 816, 328, 329, 208, 793,
- 212, 757, 1002, 468, 121, 500, 0, 751, 752, 121,
- 1007, 0, 555, -578, 326, 327, 454, 489, 428, 0,
- -104, 0, -104, 430, 0, 105, 105, 105, 105, 105,
- 105, 105, 105, 283, 0, 0, 1023, 778, 955, 957,
- 122, 0, 0, -287, 0, 122, 121, 0, 583, 105,
- 0, 0, 87, 469, 87, 0, 833, 87, -287, 0,
- 430, 0, 939, 0, 941, 502, 328, 329, 942, 125,
- 105, 579, 268, 105, 125, 105, -294, -479, 105, -294,
- -294, 0, 122, 0, 0, 508, 0, 683, 816, 0,
- 0, 1003, -479, -287, 873, 216, 0, 873, 0, 873,
- -287, 0, 0, 653, 879, 0, -294, -294, 105, -294,
- 0, 125, 1006, 0, 808, 0, 212, 263, 105, 105,
- 0, 0, 0, 352, 353, -578, 599, -479, 0, -584,
- 0, -578, 0, 105, -479, 105, 105, 0, 907, 989,
- 990, 0, 0, 0, 105, 694, 694, 873, 105, 0,
- 0, 915, 105, 654, -580, 0, 0, 105, 0, 1009,
- 0, 1012, 105, 923, 924, 0, 0, 841, 1032, 1034,
- 1036, 927, 1038, 1039, 873, 0, 873, 0, 873, 0,
- 873, 0, 0, 0, 933, 852, 0, 0, -581, 929,
- 0, -410, 0, -584, 105, 489, 1025, 0, 0, 1027,
- 873, 245, 489, 105, 246, 247, 245, 0, -584, 246,
- 247, 0, 1056, 1058, 1059, 1060, 663, 665, -580, 215,
- 215, 105, 1062, 0, 0, 215, 264, 264, 105, 0,
- 264, 1049, 248, -580, 249, 0, 1051, 248, 1053, 249,
- 0, -584, 1054, -584, 0, 967, 0, -580, 663, 665,
- -584, 0, -581, 975, 0, -410, 0, 287, 289, 290,
- 291, 0, 1061, 0, 264, 307, -580, -581, -580, 477,
- -410, 0, -580, 0, 928, -580, 343, 344, 517, 0,
- 759, 0, 0, 879, 428, 0, 879, 0, 879, 0,
- 937, 0, 0, 428, 0, 0, 728, 0, 0, 0,
- -581, 0, -581, -410, 0, -410, -581, 0, 0, -581,
- 0, 1019, -410, 1020, 0, 0, 1021, 0, 541, 478,
- 0, 641, 642, 0, 0, 643, 430, 215, 469, 325,
- 326, 327, 0, 428, 0, 430, 879, 0, 0, 803,
- 174, 175, 176, 177, 178, 179, 180, 181, 105, 105,
- 182, 183, 0, 0, 0, 0, 184, 185, 186, 187,
- 0, 0, 0, 879, 0, 879, 0, 879, 542, 879,
- 188, 189, 190, -482, 0, 430, -286, 466, -298, 0,
- 105, 0, 328, 329, 0, 0, 0, 0, -482, 879,
- 0, -286, 0, -298, 191, 192, 193, 194, 195, 196,
- 197, 198, 199, 200, 0, 201, 202, 747, 0, 355,
- 356, 357, 358, 203, 273, 0, 747, 0, 355, 356,
- 357, 358, 0, -482, 0, 359, -286, 784, -298, 0,
- -482, 215, 215, -286, 359, -298, 104, 0, 104, 128,
- 128, 983, 428, 355, 356, 357, 358, 230, 0, 0,
- 0, 0, 105, 347, 348, 349, 350, 351, 0, 359,
- 105, 105, 0, 0, 105, 0, 0, 105, 105, 492,
- 493, 494, 343, 105, 105, 910, 0, 785, 0, 105,
- 105, 0, 1001, 264, 430, 0, 104, 264, 0, 0,
- 316, 215, 215, 105, 0, 1016, 105, 428, 850, 354,
- 694, 355, 356, 357, 358, 105, 105, 991, 0, 0,
- 428, 0, 0, 105, 0, 0, 316, 359, 0, 0,
- 336, 326, 327, 0, 0, 105, 105, 0, 0, 338,
- 326, 327, 454, 571, 0, 0, 0, 245, 0, 430,
- 246, 247, 360, 0, 0, 1017, 0, 0, 361, 362,
- 363, 364, 430, 104, 547, 326, 327, 215, 215, 215,
- 215, 0, 215, 215, 496, 894, 896, 0, 248, 0,
- 249, 900, 902, 328, 329, 0, 365, 105, 0, 366,
- 0, 576, 328, 329, 466, 0, 0, 105, 105, 0,
- 466, 0, 586, 0, 0, 105, 0, 894, 896, 0,
- 900, 902, 0, 0, 598, 0, 0, 328, 329, 609,
- 614, 615, 616, 617, 618, 619, 620, 621, 622, 623,
- 624, 625, 626, 627, 0, 629, 630, 631, 632, 633,
- 634, 635, 636, 637, 638, 639, 640, 0, 0, 264,
- 552, 326, 327, 0, 104, 0, 556, 326, 327, 662,
- 662, 0, 0, 105, 0, 105, 0, 0, 105, 0,
- 0, 557, 326, 327, 264, 0, 767, 215, 355, 356,
- 357, 358, 742, 326, 327, 964, 0, 662, 0, 264,
- 0, 662, 662, 0, 359, 0, 0, 0, 264, 412,
- 413, 0, 0, 328, 329, 0, 105, 705, 964, 328,
- 329, 709, 415, 0, 0, 710, 0, 0, 713, 360,
- 716, 0, 307, 291, 328, 329, 362, 363, 364, 0,
- 104, 0, 0, 0, 0, 328, 329, 104, 104, 662,
- 422, 423, 424, 425, 426, 104, 0, 0, 0, 713,
- 0, 0, 307, 365, 0, 0, 316, 0, 0, 0,
- 0, 0, 264, 0, 0, 0, 0, 0, 354, 0,
- 355, 356, 357, 358, 0, 0, 0, 0, 745, 746,
- 101, 0, 101, 127, 127, 127, 359, 0, 0, 0,
- 104, 229, 0, 0, 754, 104, 0, 0, 0, 0,
- 0, 0, 0, 747, 0, 355, 356, 357, 358, 0,
- 0, 360, 0, 769, 104, 0, 776, 361, 362, 363,
- 364, 359, 0, 0, 0, 0, 0, 0, 0, 0,
- 101, 0, 0, 0, 315, 104, 0, 0, -607, 0,
- 104, 316, 0, 613, 0, 365, 360, 0, 366, 0,
- 0, 0, 748, 354, 0, 355, 356, 357, 358, 0,
- 315, 367, 0, 354, 0, 355, 356, 357, 358, 0,
- 0, 359, 0, 354, 0, 355, 356, 357, 358, 0,
- 0, 359, 0, 613, 613, 0, 0, 0, 0, 215,
- 0, 359, 0, 0, 0, 0, 360, 101, 0, 0,
- 104, 810, 361, 362, 363, 364, 360, 0, 0, 104,
- 0, 0, 361, 362, 363, 364, 360, 104, 0, 0,
- 0, 215, 361, 362, 363, 364, 0, 104, 0, 0,
- 365, 0, 836, 366, 747, 0, 355, 356, 357, 358,
- 365, 713, 307, 366, 0, 0, 367, 0, 0, 0,
- 365, 0, 359, 366, 0, 0, 544, 0, 0, 104,
- 0, 0, 0, 0, 1004, 0, 0, 747, 104, 355,
- 356, 357, 358, 0, 0, 0, 84, 360, 84, 0,
- 0, 0, 316, 936, 316, 359, 0, 226, 101, 0,
- 0, 0, 0, 104, 0, 0, 0, 882, 0, 0,
- 0, 0, 662, 885, 0, 264, 0, 0, 662, 662,
- 360, 0, 0, 713, 662, 662, 0, 354, 0, 355,
- 356, 357, 358, 0, 0, 0, 84, 0, 0, 0,
- 0, 0, 0, 0, 0, 359, 0, 215, 0, 0,
- 662, 662, 0, 662, 662, 0, 316, 0, 0, 0,
- 0, 854, 0, 926, 0, 0, 0, 0, 291, 0,
- 360, 0, 0, 0, 101, 0, 361, 362, 363, 364,
- 0, 101, 101, 0, 0, 938, 0, 0, 0, 101,
- 0, 0, 0, 0, 0, 0, 943, 0, 0, 0,
- 315, 412, 413, 84, 365, 0, 0, 366, 0, 0,
- 0, 959, 0, 0, 415, 0, 0, 0, 0, 0,
- 0, 961, 962, 0, 104, 0, 0, 0, 662, 0,
- 0, 0, 783, 0, 101, 0, 0, 0, 0, 101,
- 0, 421, 422, 423, 424, 425, 426, 102, 0, 102,
- 0, 662, 0, 0, 0, 0, 0, 0, 101, 307,
- 400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
- 410, 411, 0, 0, 0, 0, 412, 413, 0, 101,
- 0, 0, 0, 0, 101, 315, 0, 0, 0, 415,
- 0, 0, 0, 0, 84, 0, 0, 102, 0, 0,
+ 106, 284, 347, 516, 438, 432, 434, 285, 343, 503,
+ 87, 222, 87, 126, 126, 709, 252, 218, 218, 280,
+ 205, 229, 300, 218, 218, 218, 206, 282, 218, 399,
+ 265, 265, 107, 206, 265, 469, 700, 738, 541, 614,
+ 125, 125, 469, 476, 314, 246, 856, 206, 125, 256,
+ 664, 667, 307, 311, 270, 270, 651, 536, 270, 246,
+ 87, 538, 276, 281, 315, 770, 721, 882, 585, 392,
+ 767, 324, 390, 390, 218, 391, 71, 206, 71, 492,
+ 448, 678, 267, 273, 296, 554, 274, -107, 524, 549,
+ 315, 125, 270, 270, 578, 821, 995, 721, 693, 785,
+ 697, 851, 1019, 346, 806, 807, 831, 703, 718, 280,
+ 443, -104, 718, 3, 436, 597, 392, 125, 271, 271,
+ 571, 556, 271, 436, 556, 218, 556, 87, 556, 439,
+ 556, 334, 336, 338, 340, 777, 473, -109, 500, 575,
+ 504, -111, 765, 761, -487, 765, 442, 482, 765, -110,
+ 365, 296, 276, 281, 283, -106, 306, 310, 287, -108,
+ -105, 333, 904, 42, 327, 328, 43, 492, 910, 293,
+ 442, 741, -340, -483, 532, 366, -77, 269, 269, 1019,
+ 680, 269, 778, 393, 572, 852, 395, -340, 247, 995,
+ 604, 248, 249, 363, 364, 365, -486, -91, 586, 446,
+ -488, -487, -104, 447, -99, 608, -582, 521, 392, 396,
+ 59, 390, 390, 465, 466, 305, 329, 330, 87, 250,
+ 366, 251, -340, -96, 477, 478, 437, 433, -96, -340,
+ 527, 218, 218, 546, 440, 437, 400, 1001, 534, 534,
+ 767, 275, 429, 534, 428, 608, 608, 503, -489, 882,
+ 915, 275, 882, -486, -101, 324, -583, -488, -103, 429,
+ 540, 206, 820, -491, 490, 300, -102, 501, 541, 501,
+ 452, 649, -98, 510, 898, 658, -100, -97, 661, 464,
+ 890, 470, -490, 218, 431, 474, 487, 218, 721, 265,
+ 479, 218, 218, 265, 430, 87, 454, 699, 699, 679,
+ 483, 431, 87, 87, 485, -489, -492, 490, 748, -478,
+ 87, 429, 765, 270, 649, 502, 658, 270, 744, 519,
+ -491, 315, 498, 817, 518, 679, 416, 296, -482, 882,
+ 541, 526, 247, 718, 718, 248, 249, 600, 770, -490,
+ 899, 556, 610, 525, 989, 511, 455, 492, 125, 564,
+ 565, 566, 567, 431, 492, 87, 218, 218, 218, 218,
+ 87, 218, 218, -492, 679, 251, -478, 300, 523, 441,
+ 459, 591, 582, 594, 582, 563, 529, 725, 726, 87,
+ 522, 271, 610, 610, -484, -482, 606, 557, -76, 679,
+ 327, 328, 531, 932, 551, 537, 811, 539, -111, 543,
+ 87, 353, 354, 218, 900, 87, 315, 718, 615, -110,
+ 906, 908, -483, -112, 561, 416, 676, 895, 765, -103,
+ 765, 71, 765, 475, 765, 562, 568, 460, 510, 296,
+ -102, 212, 212, 125, 516, 800, 508, 212, 218, 577,
+ 269, -104, 329, 330, 265, 425, 426, 427, 615, 615,
+ 580, 656, -111, 510, 656, 862, 802, 842, -498, 804,
+ 583, 686, 990, 218, -106, 87, 218, 471, 270, 265,
+ 510, 783, 715, 657, 522, 656, 87, 802, 584, 510,
+ 218, 587, 429, 590, 87, -98, 265, 847, 737, 218,
+ 540, 809, 656, 270, 87, 265, 729, 657, 721, 441,
+ 689, 656, 887, -110, 592, 801, 501, 501, 696, 593,
+ 270, 541, 516, 595, 657, 972, 106, 472, 708, 270,
+ 596, 799, 607, 657, 431, 905, 87, 766, -111, 913,
+ 631, 469, 840, 792, -108, 87, 206, 669, 270, 445,
+ 656, 724, 270, 510, 718, 341, 342, 683, 246, 315,
+ 829, 315, 540, 218, -105, -100, 602, 830, 765, 265,
+ 87, 602, 657, 684, 335, 656, 327, 328, 928, 516,
+ 270, 958, 959, 270, 939, -97, 125, 687, 125, -106,
+ 839, 688, 842, 270, 747, 218, -108, 657, 504, 666,
+ 668, 758, 71, 608, 690, 576, 781, -105, 550, 608,
+ 712, 734, 719, 731, 218, 608, 608, 793, 247, 800,
+ 774, 248, 249, 315, 105, 723, 105, 728, 329, 330,
+ 801, 105, 105, 666, 668, 449, 450, 105, 105, 105,
+ 917, -91, 105, 649, 736, 658, 823, 820, -106, 977,
+ 125, 251, 757, 528, -579, 212, 212, 530, 760, -108,
+ 501, 711, 1051, 776, 797, 699, 280, 953, 954, 280,
+ 781, 781, 768, 803, 105, 771, 805, 905, 786, 534,
+ 787, 732, 488, 810, 788, 248, 249, 280, 105, 798,
+ 218, 87, 819, 822, 812, 247, 836, 822, 248, 249,
+ 796, 326, 327, 328, 822, 815, -105, 766, 813, 276,
+ 820, 206, 276, 828, 1039, 512, 515, 835, -478, 834,
+ 608, 451, 451, 936, 218, 837, 838, 501, 796, 911,
+ 276, 845, 848, -478, -300, 558, 206, 327, 328, 105,
+ 610, 105, 854, 540, -290, 480, 610, 902, 246, -300,
+ 469, 983, 610, 610, 329, 330, 469, 985, 858, -290,
+ 429, 516, 860, 864, 866, 868, -579, 870, -478, 871,
+ 571, 582, -579, 270, 270, -478, 863, 865, 520, 867,
+ 212, 212, 212, 212, -300, 569, 570, 869, -583, 329,
+ 330, -300, 764, 429, -290, 481, 764, 87, 872, 510,
+ 467, -290, 431, 918, 315, 87, 615, 919, 766, 218,
+ 754, 923, 615, 218, 927, 265, 781, 766, 615, 615,
+ 929, 656, 937, 942, 87, 87, 921, 769, 472, 925,
+ 773, 125, 105, 957, 926, 431, 467, 844, 87, 270,
+ 960, 218, 768, 657, 963, 105, 105, 270, 965, 914,
+ 87, 87, 501, 967, 974, 602, 969, 610, 87, 722,
+ 975, 986, 922, 885, 877, 987, 727, 996, 544, 87,
+ 87, 891, 997, 1003, 930, 931, 1007, 1008, 733, -106,
+ 679, 247, 934, 429, 248, 249, 1009, 582, 582, 1023,
+ 681, 1022, 1024, 1056, 940, 956, 1064, 105, 1031, 247,
+ 962, 105, 248, 249, 1033, 105, 105, 1035, 1027, 105,
+ 766, 844, 250, 1040, 251, 1042, 105, 105, 545, 763,
+ -582, 1044, 125, 615, 105, 431, 498, 125, 755, 756,
+ 250, 1046, 251, 87, 87, 247, -583, 980, 248, 249,
+ 1066, 87, 822, 1002, 1004, 1005, 1006, 730, 948, 130,
+ 227, 1055, 874, 901, 903, 1057, 912, 976, 784, 907,
+ 909, 1054, 489, 208, 125, 984, 250, 1016, 251, 105,
+ 105, 105, 105, 105, 105, 105, 105, 1032, -106, 964,
+ 966, -106, -106, 766, 270, 901, 903, 762, 907, 909,
+ 886, 1011, 0, 105, 766, 0, 0, 84, 0, 84,
+ 0, 87, 0, 87, 0, 0, 87, 0, 228, -106,
+ 0, -106, 0, 0, 105, 881, 0, 105, 0, 105,
+ 582, -108, 105, 0, 0, 1028, -485, 1029, 0, 416,
+ 1030, 0, 1059, 0, 510, 814, 686, 822, 337, 327,
+ 328, -485, 0, 877, 218, 1017, 877, 84, 1020, 877,
+ 265, 877, 105, 353, 354, 1015, 656, 423, 424, 425,
+ 426, 427, 105, 105, 973, 339, 327, 328, 751, -580,
+ 356, 357, 358, 359, 270, 0, -485, 105, 657, 105,
+ 105, 0, 0, -485, 0, 0, 360, 973, 0, 846,
+ 105, 329, 330, 0, 105, 0, 0, 0, 105, 877,
+ 947, 0, 949, 105, 212, 0, 950, 857, 105, 0,
+ 0, 1041, 1043, 1045, 84, 1047, 1048, 880, 329, 330,
+ -108, 0, 0, -108, -108, 1061, 877, -586, 877, 0,
+ 877, 247, 877, -482, 248, 249, 0, 0, 212, 0,
+ 105, 0, 751, 0, 356, 357, 358, 359, -482, 105,
+ 0, -108, 877, -108, 0, 1065, 1067, 1068, 1069, 855,
+ 360, 0, 250, 0, 251, 1071, 0, 105, 0, 764,
+ -289, -301, 886, 0, 105, 886, 0, 886, 998, 999,
+ 0, -580, 0, -482, 0, -289, -301, -580, 0, 0,
+ -482, -586, 790, 1010, 0, -582, -583, 935, 0, 105,
+ 1018, 0, 1021, 0, 0, 84, -586, 429, 429, -413,
+ 0, 0, 0, 944, 0, 0, 0, 0, 105, 0,
+ -289, -301, 0, 217, 217, 886, 0, -289, -301, 217,
+ 266, 266, 0, 1000, 266, 0, 1025, 1034, 0, -586,
+ 1036, -586, 791, 455, 0, -582, 0, 0, -586, 431,
+ 431, 429, 886, 0, 886, 212, 886, 0, 886, -582,
+ -583, 288, 290, 291, 292, 550, 327, 328, 266, 308,
+ 0, 0, 1058, -413, -582, -583, 0, 1060, 886, 1062,
+ 344, 345, 84, 1063, 0, 0, 1026, 0, -413, 84,
+ 84, 0, 0, 431, 105, 105, 1012, 84, 0, 880,
+ 0, 0, 880, 1070, 880, 0, 0, -582, -583, -582,
+ -583, 0, 0, -582, -583, 0, -582, -583, 329, 330,
+ 0, -413, 355, -413, 356, 357, 358, 359, 105, 0,
+ -413, 217, 0, 0, 0, 555, 327, 328, 0, 0,
+ 360, 0, 84, 559, 327, 328, 0, 84, 0, 0,
+ 0, 0, 880, 560, 327, 328, 0, 0, 746, 327,
+ 328, 0, 0, 0, 0, 361, 84, 0, 0, 0,
+ 0, 362, 363, 364, 365, 0, 0, 0, 0, 880,
+ 0, 880, 0, 880, 0, 880, 0, 84, 329, 330,
+ 0, 0, 84, 0, 0, 611, 329, 330, 0, 366,
+ -297, 105, 367, -297, -297, 880, 329, 330, 0, 105,
+ 105, 329, 330, 105, 0, 368, 105, 105, 0, 0,
+ 0, 0, 105, 105, 0, 0, 0, 0, 105, 105,
+ -297, -297, 0, -297, 0, 611, 611, 217, 217, 0,
+ 0, 0, 105, 413, 414, 105, 992, 0, 356, 357,
+ 358, 359, 84, 0, 105, 105, 416, 348, 349, 350,
+ 351, 352, 105, 84, 360, 0, 0, 0, 0, 0,
+ 0, 84, 789, 105, 105, 494, 495, 496, 344, 0,
+ 0, 84, 0, 422, 423, 424, 425, 426, 427, 266,
+ 0, 0, 247, 266, 0, 248, 249, 217, 217, 0,
+ 401, 402, 403, 404, 405, 406, 407, 408, 409, 410,
+ 411, 412, 0, 84, 0, 0, 413, 414, 0, 498,
+ 0, 0, 84, 250, 0, 251, 0, 105, 0, 416,
+ 0, 355, 0, 356, 357, 358, 359, 105, 105, 0,
+ 247, 0, 0, 248, 249, 105, 0, 84, 0, 360,
+ 417, 0, 418, 419, 420, 421, 422, 423, 424, 425,
+ 426, 427, 217, 217, 217, 217, 0, 217, 217, 0,
+ -276, 938, 0, 251, 361, 0, 0, 0, 0, 0,
+ 362, 363, 364, 365, 0, 0, 579, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 589, 0, 0,
+ 0, 0, 0, 0, 0, 105, 0, 105, 366, 601,
+ 105, 367, 0, 0, 612, 617, 618, 619, 620, 621,
+ 622, 623, 624, 625, 626, 627, 628, 629, 630, 0,
+ 632, 633, 634, 635, 636, 637, 638, 639, 640, 641,
+ 642, 643, 0, 0, 266, 0, 0, 751, 105, 356,
+ 357, 358, 359, 0, 665, 665, 0, 751, 0, 356,
+ 357, 358, 359, 0, 0, 360, 0, 0, 84, 266,
+ 0, 0, 217, 0, 355, 360, 356, 357, 358, 359,
+ 0, 0, 0, 0, 665, 0, 266, 0, 665, 665,
+ 361, 0, 360, 0, 0, 266, 752, 0, 0, 0,
+ 361, 0, 0, 0, 710, 0, 943, 713, 0, 0,
+ 0, 714, 0, 0, 717, 0, 720, 361, 308, 292,
+ 413, 414, 0, 362, 363, 364, 365, 74, 0, 74,
+ 121, 121, 0, 416, 0, 0, 665, 751, 121, 356,
+ 357, 358, 359, 0, -609, 0, 717, 0, 0, 308,
+ 0, 366, 0, 0, 367, 360, 0, 0, 0, 266,
+ 0, 423, 424, 425, 426, 427, 0, 368, 355, 0,
+ 356, 357, 358, 359, 84, 749, 750, 74, 0, 0,
+ 361, 121, 84, 611, 0, 0, 360, 0, 0, 611,
+ 0, 759, 0, 0, 0, 611, 611, 0, 0, 0,
+ 0, 84, 84, 0, 0, 0, 0, 121, 0, 0,
+ 775, 361, 0, 782, 0, 84, 0, 362, 363, 364,
+ 365, 0, 0, 0, 413, 414, 0, 84, 84, 0,
+ 0, 0, 0, 0, 0, 84, 0, 416, 0, 0,
+ 0, 0, 0, 0, 74, 366, 84, 84, 367, 0,
+ 0, 0, 0, 0, 355, 0, 356, 357, 358, 359,
+ 0, 547, 420, 421, 422, 423, 424, 425, 426, 427,
+ 0, 0, 360, 0, 0, 0, 772, 0, 356, 357,
+ 358, 359, 0, 0, 0, 0, 217, 0, 0, 0,
+ 0, 0, 0, 0, 360, 0, 0, 361, 816, 0,
+ 611, 759, 775, 362, 363, 364, 365, 0, 0, 0,
+ 84, 84, 0, 75, 979, 75, 122, 122, 84, 361,
+ 217, 0, 0, 0, 122, 0, 363, 364, 365, 0,
+ 841, 366, 0, 0, 367, 74, 0, 0, 0, 717,
+ 308, 0, 0, 0, -609, 1013, 0, 0, 0, 0,
+ 0, 0, 0, 366, 0, 0, 0, -609, -609, -609,
+ -609, -609, -609, 75, -609, 0, 0, 122, 0, 0,
+ -609, -609, 0, 0, 0, 0, 0, 0, 84, 0,
+ 84, -609, -609, 84, -609, -609, -609, -609, -609, 0,
+ 0, 0, 0, 122, 0, 0, 0, 889, 0, 0,
+ 0, 0, 665, 892, 0, 266, 0, 0, 665, 665,
+ 0, 0, 74, 717, 665, 665, 0, 0, 0, 74,
+ 74, 0, 0, 0, 0, 0, 0, 74, 0, 0,
+ 75, 0, 0, 0, -609, 0, 0, 217, 121, 0,
+ 665, 665, 0, 665, 665, 0, 0, 0, 0, -609,
+ 0, 0, 0, 933, 0, 0, 0, 292, 0, -609,
+ 0, 0, -609, -609, 0, 0, 0, 0, 0, 0,
+ 0, 0, 74, 0, 945, 946, 0, 74, 0, 0,
+ 0, 0, -609, -609, 0, 0, 951, 952, 275, -609,
+ -609, -609, -609, 0, 0, 0, 74, 0, 0, 0,
+ 0, 0, 968, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 970, 971, 0, 0, 0, 74, 0, 665,
+ 0, 75, 74, 121, 0, 74, 0, 355, 0, 356,
+ 357, 358, 359, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 665, 0, 0, 360, 0, 0, 0, 0,
+ 308, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 574, 0, 0, 0, 74, 74, 0, 0, 0,
+ 361, 0, 0, 0, 0, 0, 362, 363, 364, 365,
+ 0, 0, 74, 0, 104, 0, 104, 128, 128, 0,
+ 0, 0, 0, 74, 0, 232, 0, 0, 75, 0,
+ 0, 74, 0, 0, 366, 75, 75, 367, 0, 0,
+ 0, 74, 0, 75, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 122, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 104, 0, 0, 0, 317, 0,
+ 266, 0, 0, 74, 0, 0, 0, 0, 0, 0,
+ 0, 0, 74, 0, 0, 789, 0, 0, 75, 0,
+ 0, 0, 0, 75, 317, 0, 121, 0, 121, 0,
+ 0, 0, 0, 0, 0, 0, 0, 74, 0, 0,
+ 0, 0, 75, 401, 402, 403, 404, 405, 406, 407,
+ 408, 409, 410, 411, 412, 0, 0, 0, 0, 413,
+ 414, 104, 0, 75, 0, 0, 0, 0, 75, 122,
+ 0, 75, 416, 355, 0, 356, 357, 358, 359, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 416, 0, 417, 418, 419, 420, 421, 422, 423, 424,
- 425, 426, 0, 0, 0, 0, 0, 104, 0, 0,
- -273, 0, 0, 0, 316, 104, 613, 0, 0, 0,
- 0, 0, 613, 0, 101, 0, 0, 264, 613, 613,
- 0, 0, 0, 101, 104, 104, 0, 0, 0, 0,
- 0, 101, 0, 0, 102, 0, 0, 0, 104, 0,
- 84, 101, 0, 0, 0, 0, 0, 84, 84, 0,
- 104, 104, 0, 0, 0, 84, 0, 0, 104, 0,
- 0, 354, 0, 355, 356, 357, 358, 0, 0, 0,
- 104, 104, 0, 101, 0, 0, 412, 413, 0, 359,
- 0, 0, 101, 0, 0, 0, 0, 0, 0, 415,
- 0, 0, 0, 0, 128, 0, 315, 0, 315, 128,
- 84, 0, 0, 0, 360, 84, 0, 101, 0, 0,
- 361, 362, 363, 364, 419, 420, 421, 422, 423, 424,
- 425, 426, 613, 0, 84, 102, -608, -608, -608, -608,
- 404, 405, 104, 104, -608, -608, 973, 0, 365, 0,
- 104, 366, 412, 413, 0, 84, 0, 0, 0, 0,
- 84, 0, 0, 608, 0, 415, 0, 0, 0, 0,
- 315, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 417, 418,
- 419, 420, 421, 422, 423, 424, 425, 426, 0, 0,
- 0, 0, 0, 608, 608, 0, 0, 0, 104, 0,
- 104, 102, 0, 104, 0, 0, 0, 0, 102, 102,
- 84, 0, 0, 0, 0, 0, 102, 0, 0, 84,
- 0, 0, 0, 0, 0, 0, 0, 84, 101, 0,
- -607, 0, 0, 0, 0, 0, 0, 84, 0, 0,
- 0, 0, 0, -607, -607, -607, -607, -607, -607, 0,
- -607, 0, 0, 0, 0, 0, -607, -607, 0, 0,
- 0, 102, 0, 0, 0, 0, 102, -607, -607, 84,
- -607, -607, -607, -607, -607, 0, 0, 0, 84, 0,
- 0, 0, 0, 0, 0, 102, 0, 0, 0, 0,
+ 121, 360, 0, 417, 0, 418, 419, 420, 421, 422,
+ 423, 424, 425, 426, 427, 0, 0, 859, 0, 0,
+ 0, 75, 75, 0, 0, 0, 361, 0, 0, 0,
+ 0, 0, 362, 363, 364, 365, 0, 0, 75, 0,
+ 101, 0, 101, 127, 127, 127, 0, 0, 0, 75,
+ 0, 231, 0, 0, 0, 0, 0, 75, 0, 0,
+ 366, 0, 104, 367, 0, 0, 0, 75, 74, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 84, 0, 0, 102, 0, 0, 0,
- 0, 102, 0, 0, 102, 0, 0, 0, 0, 0,
- -607, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 101, 0, 0, 0, -607, 0, 0, 315, 101,
- 0, 0, 0, 0, 0, -607, 0, 0, -607, -607,
- 0, 0, 0, 0, 102, 102, 0, 0, 101, 101,
- 0, 0, 0, 0, 0, 0, 0, 0, -607, -607,
- 0, 102, 101, 0, 273, -607, -607, -607, -607, 0,
- 102, 0, 0, 0, 101, 101, 0, 0, 102, 0,
- 0, 0, 101, 0, 0, 0, 0, 0, 102, 0,
- 0, 0, 0, 0, 101, 101, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 650, 651, 84, 0, 652, 0, 127, 0,
- 102, 0, 0, 127, 0, 0, 0, 0, 0, 102,
- 0, 174, 175, 176, 177, 178, 179, 180, 181, 0,
- 0, 182, 183, 0, 0, 0, 0, 184, 185, 186,
- 187, 0, 0, 0, 102, 0, 101, 101, 0, 0,
- 972, 188, 189, 190, 101, 0, 0, 0, 0, 0,
+ 101, 0, 0, 0, 316, 0, 0, 0, 0, 75,
+ 0, 0, 0, 0, 0, 0, 0, 0, 75, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 191, 192, 193, 194, 195,
- 196, 197, 198, 199, 200, 0, 201, 202, 0, 0,
- 0, 0, 0, 0, 203, 273, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 84, 0, 0,
- 0, 0, 101, 0, 101, 84, 608, 101, 0, 0,
- 671, 642, 608, 0, 672, 0, 0, 0, 608, 608,
- 0, 0, 0, 0, 84, 84, 0, 0, 0, 174,
- 175, 176, 177, 178, 179, 180, 181, 0, 84, 182,
- 183, 0, 0, 0, 0, 184, 185, 186, 187, 0,
- 84, 84, 0, 0, 0, 102, 0, 0, 84, 188,
- 189, 190, 0, 0, 0, 0, 0, 0, 0, 0,
- 84, 84, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 191, 192, 193, 194, 195, 196, 197,
- 198, 199, 200, 0, 201, 202, 400, 401, 402, 403,
- 404, 405, 203, 273, 408, 409, 0, 0, 0, 0,
- 0, 0, 412, 413, 0, 0, 0, 0, 0, 0,
- 0, 0, 608, 0, 0, 415, 0, 0, 0, 0,
- 0, 0, 84, 84, 0, 0, 970, 0, 0, 0,
- 84, 0, 0, 0, 0, 0, 0, 0, 417, 418,
- 419, 420, 421, 422, 423, 424, 425, 426, 102, 0,
- 0, 0, 0, 0, 0, 0, 102, 102, 0, 0,
- 0, 0, 0, 102, 0, 0, 0, 0, 0, 102,
- 102, 0, 0, 0, 0, 102, 102, 0, 400, 401,
- 402, 403, 404, 405, 406, 0, 408, 409, 84, 102,
- 84, 0, 0, 84, 412, 413, 0, 0, 0, 0,
- 0, 102, 102, 0, 0, 0, 0, 415, 0, 102,
- 0, 0, 783, 0, 0, 0, 0, 0, 0, 0,
- 0, 102, 102, 0, 0, 0, 0, 0, 0, 0,
- 417, 418, 419, 420, 421, 422, 423, 424, 425, 426,
- 400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
- 410, 411, 0, 0, 0, 0, 412, 413, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 415,
- 0, 0, 0, 102, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 102, 102, 0, 0, 0, 0, 0,
- 416, 102, 417, 418, 419, 420, 421, 422, 423, 424,
- 425, 426, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, -607, 4, 0, 5, 6, 7, 8, 9, 10,
- 11, 12, 13, 14, 0, 0, 0, 0, 0, 0,
- 15, 0, 16, 17, 18, 19, 0, 0, 0, 0,
- 0, 20, 21, 22, 23, 24, 25, 26, 0, 102,
- 27, 102, 0, 0, 102, 0, 28, 29, 30, 31,
- 32, 33, 34, 35, 36, 37, 38, 39, 0, 40,
- 41, 42, 0, 0, 43, 0, 0, 44, 45, 0,
- 46, 47, 48, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 49, 50, 0, 0, 0,
- 0, 0, 51, 0, 0, 52, 53, 0, 54, 55,
- 0, 56, 0, 0, 0, 57, 0, 58, 59, 60,
- 0, 61, 62, 63, -288, 64, -607, 0, 0, -607,
- -607, 0, 0, 0, 0, 0, 0, -288, -288, -288,
- -288, -288, -288, 0, -288, 65, 66, 67, 0, 0,
- 0, -288, -288, -288, 0, 0, 0, -607, 0, -607,
- 0, -288, -288, 0, -288, -288, -288, -288, -288, 0,
+ 316, 0, 122, 0, 122, 0, 0, 0, 0, 0,
+ 0, 0, 0, 75, 0, 0, 0, 0, 0, 104,
+ 0, 0, 0, 0, 0, 0, 104, 104, 0, 0,
+ 0, 0, 0, 0, 104, 0, 0, 101, 0, 0,
+ 0, 0, 0, 0, 0, 317, 0, 0, 0, 0,
+ 0, 0, 0, 0, 74, 0, 0, 0, 0, 0,
+ 0, 121, 74, 74, 0, 0, 122, 0, 0, 74,
+ 0, 0, 0, 0, 0, 74, 74, 0, 0, 104,
+ 0, 74, 74, 0, 104, 401, 402, 403, 404, 405,
+ 406, 407, 0, 409, 410, 74, 0, 0, 0, 0,
+ 0, 413, 414, 104, 0, 0, 0, 74, 74, 0,
+ 0, 0, 0, 0, 416, 74, 0, 0, 0, 0,
+ 0, 0, 0, 0, 104, 0, 74, 74, 101, 104,
+ 317, 0, 616, 0, 75, 0, 0, 418, 419, 420,
+ 421, 422, 423, 424, 425, 426, 427, 0, 0, 0,
+ 0, 0, 121, 0, 0, 0, 0, 121, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, -288, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, -288, -288, -288, -288,
- -288, -288, -288, -288, -288, -288, -288, -288, 0, 0,
- 0, 0, -288, -288, -288, 0, 0, -288, 0, 0,
- 0, 0, 0, -288, 0, -288, 0, 0, 0, -288,
- 0, 0, 0, 0, 0, 0, 0, -288, 0, -288,
- 0, 0, -288, -288, 0, 0, -288, -288, -288, -288,
- -288, -288, -288, -288, -288, -288, -288, -288, 0, 0,
- -409, 0, 0, -288, -288, -288, -288, 0, 0, -288,
- -288, -288, -288, -409, -409, -409, -409, -409, -409, 0,
- -409, 0, 0, 0, 0, 0, -409, -409, -409, 0,
- 0, 0, 0, 0, 0, 0, 0, -409, -409, 0,
- -409, -409, -409, -409, -409, 0, 0, 0, 0, 0,
+ 0, 0, 616, 616, 0, 0, 0, 0, 0, 0,
+ 74, 0, 0, 0, 0, 0, 0, 0, 0, 104,
+ 74, 74, 0, 0, 121, 0, 0, 0, 74, 0,
+ 104, 0, 0, 0, 0, 101, 0, 0, 104, 0,
+ 0, 0, 101, 101, 0, 0, 0, 0, 104, 0,
+ 101, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 316, 0, 0, 0, 0, 0, 0, 0, 0,
+ 75, 0, 0, 0, 0, 0, 0, 122, 75, 75,
+ 104, 0, 0, 0, 0, 75, 0, 0, 74, 104,
+ 74, 75, 75, 74, 0, 101, 0, 75, 75, 0,
+ 101, 0, 0, 317, 0, 317, 0, 0, 0, 0,
+ 0, 75, 0, 0, 104, 0, 0, 0, 0, 101,
+ 0, 0, 0, 75, 75, 0, 0, 0, 0, 0,
+ 0, 75, 0, 0, 0, 0, 0, 0, 0, 0,
+ 101, 0, 75, 75, 0, 101, 316, 0, 0, 0,
+ 0, 0, 0, 102, 0, 102, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 317, 122, 0,
+ 0, 0, 0, 122, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 401, 402, 403, 404, 405, 406,
+ 407, 408, 409, 410, -610, -610, 75, 0, 0, 0,
+ 413, 414, 0, 102, 0, 101, 75, 75, 0, 0,
+ 122, 0, 0, 416, 75, 0, 101, 0, 0, 0,
+ 0, 0, 0, 861, 101, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 101, 104, 418, 419, 420, 421,
+ 422, 423, 424, 425, 426, 427, 0, 0, 0, 0,
+ 0, 401, 402, 403, 404, 405, 406, 407, 408, 409,
+ 410, 411, 412, 0, 0, 0, 101, 413, 414, 0,
+ 102, 0, 0, 0, 75, 101, 75, 0, 0, 75,
+ 416, 0, 0, 0, 0, 0, 0, 0, 0, 316,
+ 0, 316, 0, 0, 0, 0, 0, 0, 0, 0,
+ 101, 417, 0, 418, 419, 420, 421, 422, 423, 424,
+ 425, 426, 427, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, -409, -409, -409, -409, -409, -409, -409, -409,
- -409, -409, -409, -409, 0, 0, 0, 0, -409, -409,
- -409, 0, 0, -409, 0, 0, 0, 0, 0, -409,
- 0, -409, 0, 0, 0, -409, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, -409, 0, 0, -409, -409,
- 0, 0, -409, 0, -409, -409, -409, -409, -409, -409,
- -409, -409, -409, -409, 0, 0, -475, 0, -409, -409,
- -409, -409, -409, 0, 273, -409, -409, -409, -409, -475,
- -475, -475, -475, -475, -475, 0, -475, 0, 0, 0,
- 0, 0, 0, -475, -475, 0, 0, 0, 0, 0,
- 0, 0, 0, -475, -475, 0, -475, -475, -475, -475,
- -475, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 490, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, -475, -475,
- -475, -475, -475, -475, -475, -475, -475, -475, -475, -475,
- 0, 0, 0, 0, -475, -475, -475, 0, -475, -475,
- 0, 0, 0, 0, 0, -475, 0, -475, 0, 0,
- 0, -475, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, -475, 0, 0, -475, -475, 0, -475, -475, 0,
- -475, -475, -475, -475, -475, -475, -475, -475, -475, -475,
- 0, 0, -607, 0, 0, -475, -475, -475, -475, 0,
- 0, -475, -475, -475, -475, -607, -607, -607, -607, -607,
- -607, 0, -607, 0, 0, 0, 0, 0, -607, -607,
- -607, 0, 0, 0, 0, 0, 0, 0, 0, -607,
- -607, 0, -607, -607, -607, -607, -607, 0, 0, 0,
+ 0, 104, 873, 0, 0, 0, 0, 0, 317, 104,
+ 616, 0, 0, 316, 0, 0, 616, 0, 0, 0,
+ 0, 102, 616, 616, 0, 0, 0, 0, 104, 104,
+ 401, 402, 403, 404, 405, 406, 407, 408, 409, 410,
+ 411, 412, 104, 0, 0, 0, 413, 414, 0, 0,
+ 0, 0, 0, 0, 104, 104, 0, 0, 0, 416,
+ 0, 0, 104, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 104, 104, 0, 0, 0, 0, 0,
+ 417, 101, 418, 419, 420, 421, 422, 423, 424, 425,
+ 426, 427, 0, 0, 0, 0, 0, 0, 102, 128,
+ 0, 0, 0, 0, 128, 102, 102, 0, 0, 0,
+ 0, 0, 0, 102, 401, 402, 403, 404, 405, 406,
+ 407, 408, 409, 410, 411, 412, 0, 616, 0, 0,
+ 413, 414, 0, 0, 0, 0, 0, 104, 104, 0,
+ 0, 982, 0, 416, 0, 104, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 102, 0,
+ 0, 0, 0, 102, 417, 0, 418, 419, 420, 421,
+ 422, 423, 424, 425, 426, 427, 0, 0, 0, 0,
+ 0, 0, 102, 0, -276, 0, 0, 101, 0, 0,
+ 0, 0, 0, 0, 316, 101, 0, 0, 0, 0,
+ 0, 0, 0, 102, 0, 104, 0, 104, 102, 0,
+ 104, 102, 0, 0, 101, 101, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 101, -291,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 101, 101, -291, -291, -291, -291, -291, -291, 101, -291,
+ 0, 102, 102, 0, 0, 0, -291, -291, -291, 101,
+ 101, 0, 0, 0, 0, 0, -291, -291, 102, -291,
+ -291, -291, -291, -291, 0, 0, 0, 0, 0, 102,
+ 0, 0, 0, 0, 0, 127, -291, 102, 0, 0,
+ 127, 0, 0, 0, 0, 0, 0, 102, 0, 0,
+ 0, -291, -291, -291, -291, -291, -291, -291, -291, -291,
+ -291, -291, -291, 0, 0, 0, 0, -291, -291, -291,
+ 0, 0, -291, 101, 101, 0, 0, 981, -291, 102,
+ -291, 101, 0, 0, -291, 0, 0, 0, 102, 0,
+ 0, 0, -291, 0, -291, 0, 0, -291, -291, 0,
+ 0, -291, -291, -291, -291, -291, -291, -291, -291, -291,
+ -291, -291, -291, 102, 0, 0, 0, 0, -291, -291,
+ -291, -291, 0, 0, -291, -291, -291, -291, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -607, -607, -607, -607, -607, -607,
- -607, -607, -607, -607, -607, -607, 0, 0, 0, 0,
- -607, -607, -607, 0, 0, -607, 0, 0, 0, 0,
- 0, -607, 0, -607, 0, 0, 0, -607, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, -607, 0, 0,
- -607, -607, 0, 0, -607, 0, -607, -607, -607, -607,
- -607, -607, -607, -607, -607, -607, 0, 0, -607, 0,
- -607, -607, -607, -607, -607, 0, 273, -607, -607, -607,
- -607, -607, -607, -607, -607, -607, -607, 0, -607, 0,
- 0, 0, 0, 0, 0, -607, -607, 0, 0, 0,
- 0, 0, 0, 0, 0, -607, -607, 0, -607, -607,
- -607, -607, -607, 0, 0, 0, 0, 0, 0, 0,
+ 0, 101, 0, 101, -609, 4, 101, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 0, 0, 0,
+ 0, 0, 0, 15, 0, 16, 17, 18, 19, 0,
+ 0, 0, 0, 0, 20, 21, 22, 23, 24, 25,
+ 26, 0, 0, 27, 0, 0, 0, 0, 0, 28,
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
+ 39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
+ 44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
+ 0, 0, 0, 0, 102, 51, 0, 0, 52, 53,
+ 0, 54, 55, 0, 56, 0, 0, 0, 57, 0,
+ 58, 59, 60, 0, 61, 62, 63, 0, 64, -609,
+ 0, 0, -609, -609, 0, 401, 402, 403, 404, 405,
+ 406, 407, 408, 409, 410, 411, 412, 0, 65, 66,
+ 67, 413, 414, 0, 0, 0, 0, 0, 0, 0,
+ -609, 0, -609, 0, 416, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 417, 0, 418, 419, 420,
+ 421, 422, 423, 424, 425, 426, 427, 0, 0, 0,
+ 0, 0, 0, 0, 0, -277, 0, 0, 0, 0,
+ 102, 0, 0, 0, 0, 0, 0, 0, 102, 102,
+ 0, 0, 0, 0, 0, 102, 0, 0, 0, 0,
+ 0, 102, 102, 0, 0, 0, 0, 102, 102, 0,
+ 0, 0, 0, 0, 0, -610, -610, -610, -610, 405,
+ 406, 102, -412, -610, -610, 0, 0, 0, 0, 0,
+ 0, 413, 414, 102, 102, -412, -412, -412, -412, -412,
+ -412, 102, -412, 0, 416, 0, 0, 0, -412, -412,
+ -412, 0, 102, 102, 0, 0, 0, 0, 0, -412,
+ -412, 0, -412, -412, -412, -412, -412, 418, 419, 420,
+ 421, 422, 423, 424, 425, 426, 427, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- -607, -607, -607, -607, -607, -607, -607, -607, -607, -607,
- -607, -607, 0, 0, 0, 0, -607, -607, -607, 0,
- 0, -607, 0, 0, 0, 0, 0, -607, 0, -607,
- 0, 0, 0, -607, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, -607, 0, 0, -607, -607, 0, 0,
- -607, 0, -607, -607, -607, -607, -607, -607, -607, -607,
- -607, -607, 0, 0, -584, 0, 0, -607, -607, -607,
- -607, 0, 273, -607, -607, -607, -607, -584, -584, -584,
- 0, -584, -584, 0, -584, 0, 0, 0, 0, 0,
- -584, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, -584, -584, 0, -584, -584, -584, -584, -584, 0,
+ 0, 0, 0, 0, -412, -412, -412, -412, -412, -412,
+ -412, -412, -412, -412, -412, -412, 102, 0, 0, 0,
+ -412, -412, -412, 0, 0, -412, 102, 102, 0, 0,
+ 0, -412, 0, -412, 102, 0, 0, -412, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, -412, 0, 0,
+ -412, -412, 0, 0, -412, 0, -412, -412, -412, -412,
+ -412, -412, -412, -412, -412, -412, 0, 0, 0, 0,
+ -412, -412, -412, -412, -412, -478, 275, -412, -412, -412,
+ -412, 0, 0, 0, 0, 0, 0, 0, -478, -478,
+ -478, -478, -478, -478, 102, -478, 102, 0, 0, 102,
+ 0, 0, -478, -478, 0, 0, 0, 0, 0, 0,
+ 0, 0, -478, -478, 0, -478, -478, -478, -478, -478,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 493, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, -478, -478, -478,
+ -478, -478, -478, -478, -478, -478, -478, -478, -478, 0,
+ 0, 0, 0, -478, -478, -478, 0, -478, -478, 0,
+ 0, 0, 0, 0, -478, 0, -478, 0, 0, 0,
+ -478, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ -478, 0, 0, -478, -478, 0, -478, -478, 0, -478,
+ -478, -478, -478, -478, -478, -478, -478, -478, -478, 0,
+ 0, -609, 0, 0, -478, -478, -478, -478, 0, 0,
+ -478, -478, -478, -478, -609, -609, -609, -609, -609, -609,
+ 0, -609, 0, 0, 0, 0, 0, -609, -609, -609,
+ 0, 0, 0, 0, 0, 0, 0, 0, -609, -609,
+ 0, -609, -609, -609, -609, -609, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, -584, -584, -584, -584,
- -584, -584, -584, -584, -584, -584, -584, -584, 0, 0,
- 0, 0, -584, -584, -584, 0, 788, -584, 0, 0,
- 0, 0, 0, 0, 0, -584, 0, 0, 0, -584,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, -584,
- 0, 0, -584, -584, 0, -103, -584, 0, -584, -584,
- -584, -584, -584, -584, -584, -584, -584, -584, 0, 0,
- -584, 0, -584, -584, -584, 0, -95, 0, 0, -584,
- -584, -584, -584, -584, -584, -584, 0, -584, -584, 0,
- -584, 0, 0, 0, 0, 0, -584, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, -584, -584, 0,
- -584, -584, -584, -584, -584, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, -609, -609, -609, -609, -609, -609, -609,
+ -609, -609, -609, -609, -609, 0, 0, 0, 0, -609,
+ -609, -609, 0, 0, -609, 0, 0, 0, 0, 0,
+ -609, 0, -609, 0, 0, 0, -609, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, -609, 0, 0, -609,
+ -609, 0, 0, -609, 0, -609, -609, -609, -609, -609,
+ -609, -609, -609, -609, -609, 0, 0, -609, 0, -609,
+ -609, -609, -609, -609, 0, 275, -609, -609, -609, -609,
+ -609, -609, -609, -609, -609, -609, 0, -609, 0, 0,
+ 0, 0, 0, 0, -609, -609, 0, 0, 0, 0,
+ 0, 0, 0, 0, -609, -609, 0, -609, -609, -609,
+ -609, -609, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, -584, -584, -584, -584, -584, -584, -584, -584,
- -584, -584, -584, -584, 0, 0, 0, 0, -584, -584,
- -584, 0, 788, -584, 0, 0, 0, 0, 0, 0,
- 0, -584, 0, 0, 0, -584, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, -584, 0, 0, -584, -584,
- 0, -103, -584, 0, -584, -584, -584, -584, -584, -584,
- -584, -584, -584, -584, 0, 0, -297, 0, -584, -584,
- -584, 0, -584, 0, 0, -584, -584, -584, -584, -297,
- -297, -297, 0, -297, -297, 0, -297, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, -609,
+ -609, -609, -609, -609, -609, -609, -609, -609, -609, -609,
+ -609, 0, 0, 0, 0, -609, -609, -609, 0, 0,
+ -609, 0, 0, 0, 0, 0, -609, 0, -609, 0,
+ 0, 0, -609, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, -609, 0, 0, -609, -609, 0, 0, -609,
+ 0, -609, -609, -609, -609, -609, -609, -609, -609, -609,
+ -609, 0, 0, -586, 0, 0, -609, -609, -609, -609,
+ 0, 275, -609, -609, -609, -609, -586, -586, -586, 0,
+ -586, -586, 0, -586, 0, 0, 0, 0, 0, -586,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, -297, -297, 0, -297, -297, -297, -297,
- -297, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ -586, -586, 0, -586, -586, -586, -586, -586, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, -297, -297,
- -297, -297, -297, -297, -297, -297, -297, -297, -297, -297,
- 0, 0, 0, 0, -297, -297, -297, 0, 789, -297,
- 0, 0, 0, 0, 0, 0, 0, -297, 0, 0,
- 0, -297, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, -297, 0, 0, -297, -297, 0, -105, -297, 0,
- -297, -297, -297, -297, -297, -297, -297, -297, -297, -297,
- 0, 0, -297, 0, 0, -297, -297, 0, -97, 0,
- 0, -297, -297, -297, -297, -297, -297, -297, 0, -297,
- -297, 0, -297, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, -297,
- -297, 0, -297, -297, -297, -297, -297, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, -586, -586, -586, -586, -586,
+ -586, -586, -586, -586, -586, -586, -586, 0, 0, 0,
+ 0, -586, -586, -586, 0, 794, -586, 0, 0, 0,
+ 0, 0, 0, 0, -586, 0, 0, 0, -586, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, -586, 0,
+ 0, -586, -586, 0, -107, -586, 0, -586, -586, -586,
+ -586, -586, -586, -586, -586, -586, -586, 0, 0, -586,
+ 0, -586, -586, -586, 0, -99, 0, 0, -586, -586,
+ -586, -586, -586, -586, -586, 0, -586, -586, 0, -586,
+ 0, 0, 0, 0, 0, -586, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, -586, -586, 0, -586,
+ -586, -586, -586, -586, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -297, -297, -297, -297, -297, -297,
- -297, -297, -297, -297, -297, -297, 0, 0, 0, 0,
- -297, -297, -297, 0, 789, -297, 0, 0, 0, 0,
- 0, 0, 0, -297, 0, 0, 0, -297, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, -297, 0, 0,
- -297, -297, 0, -105, -297, 0, -297, -297, -297, -297,
- -297, -297, -297, -297, -297, -297, 0, 0, 0, 0,
- 0, -297, -297, 0, -297, 0, 0, -297, -297, -297,
- -297, 293, 0, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 14, -607, -607, -607, 0, 0, -607, 15,
- 0, 16, 17, 18, 19, 0, 0, 0, 0, 0,
- 20, 21, 22, 23, 24, 25, 26, 0, 0, 27,
- 0, 0, 0, 0, 0, 28, 0, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
- 42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
- 47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
- 0, 51, 0, 0, 52, 53, 0, 54, 55, 0,
- 56, 0, 0, 0, 57, 0, 58, 59, 60, 0,
- 61, 62, 63, 0, 64, -607, 0, 0, -607, -607,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 65, 66, 67, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, -607, 293, -607, 5,
- 6, 7, 8, 9, 10, 11, 12, 13, 14, 0,
- 0, -607, 0, -607, -607, 15, 0, 16, 17, 18,
- 19, 0, 0, 0, 0, 0, 20, 21, 22, 23,
- 24, 25, 26, 0, 0, 27, 0, 0, 0, 0,
- 0, 28, 0, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
- 0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
+ 0, -586, -586, -586, -586, -586, -586, -586, -586, -586,
+ -586, -586, -586, 0, 0, 0, 0, -586, -586, -586,
+ 0, 794, -586, 0, 0, 0, 0, 0, 0, 0,
+ -586, 0, 0, 0, -586, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, -586, 0, 0, -586, -586, 0,
+ -107, -586, 0, -586, -586, -586, -586, -586, -586, -586,
+ -586, -586, -586, 0, 0, -300, 0, -586, -586, -586,
+ 0, -586, 0, 0, -586, -586, -586, -586, -300, -300,
+ -300, 0, -300, -300, 0, -300, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 49, 50, 0, 0, 0, 0, 0, 51, 0, 0,
- 52, 53, 0, 54, 55, 0, 56, 0, 0, 0,
- 57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
- 64, -607, 0, 0, -607, -607, 0, 0, 0, 0,
+ 0, 0, -300, -300, 0, -300, -300, -300, -300, -300,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 65, 66, 67, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, -607, 293, -607, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 0, 0, -607, 0, 0,
- -607, 15, -607, 16, 17, 18, 19, 0, 0, 0,
- 0, 0, 20, 21, 22, 23, 24, 25, 26, 0,
- 0, 27, 0, 0, 0, 0, 0, 28, 0, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
- 40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
- 0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
- 0, 0, 0, 51, 0, 0, 52, 53, 0, 54,
- 55, 0, 56, 0, 0, 0, 57, 0, 58, 59,
- 60, 0, 61, 62, 63, 0, 64, -607, 0, 0,
- -607, -607, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 65, 66, 67, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, -607, 293,
- -607, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 14, 0, 0, -607, 0, 0, -607, 15, 0, 16,
- 17, 18, 19, 0, 0, 0, 0, 0, 20, 21,
- 22, 23, 24, 25, 26, 0, 0, 27, 0, 0,
- 0, 0, 0, 28, 0, 30, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
- 0, 43, 0, 0, 44, 45, 0, 46, 47, 48,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 49, 50, 0, 0, 0, 0, 0, 51,
- 0, 0, 52, 53, 0, 54, 55, 0, 56, 0,
- 0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
- 63, 0, 64, -607, 0, 0, -607, -607, 4, 0,
+ 0, 0, 0, 0, 0, 0, 0, -300, -300, -300,
+ -300, -300, -300, -300, -300, -300, -300, -300, -300, 0,
+ 0, 0, 0, -300, -300, -300, 0, 795, -300, 0,
+ 0, 0, 0, 0, 0, 0, -300, 0, 0, 0,
+ -300, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ -300, 0, 0, -300, -300, 0, -109, -300, 0, -300,
+ -300, -300, -300, -300, -300, -300, -300, -300, -300, 0,
+ 0, -300, 0, 0, -300, -300, 0, -101, 0, 0,
+ -300, -300, -300, -300, -300, -300, -300, 0, -300, -300,
+ 0, -300, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, -300, -300,
+ 0, -300, -300, -300, -300, -300, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, -300, -300, -300, -300, -300, -300, -300,
+ -300, -300, -300, -300, -300, 0, 0, 0, 0, -300,
+ -300, -300, 0, 795, -300, 0, 0, 0, 0, 0,
+ 0, 0, -300, 0, 0, 0, -300, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, -300, 0, 0, -300,
+ -300, 0, -109, -300, 0, -300, -300, -300, -300, -300,
+ -300, -300, -300, -300, -300, 0, 0, 0, 0, 0,
+ -300, -300, 0, -300, 0, 0, -300, -300, -300, -300,
+ 294, 0, 5, 6, 7, 8, 9, 10, 11, 12,
+ 13, 14, -609, -609, -609, 0, 0, -609, 15, 0,
+ 16, 17, 18, 19, 0, 0, 0, 0, 0, 20,
+ 21, 22, 23, 24, 25, 26, 0, 0, 27, 0,
+ 0, 0, 0, 0, 28, 0, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, 0, 40, 41, 42,
+ 0, 0, 43, 0, 0, 44, 45, 0, 46, 47,
+ 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 49, 50, 0, 0, 0, 0, 0,
+ 51, 0, 0, 52, 53, 0, 54, 55, 0, 56,
+ 0, 0, 0, 57, 0, 58, 59, 60, 0, 61,
+ 62, 63, 0, 64, -609, 0, 0, -609, -609, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 65, 66, 67, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, -609, 294, -609, 5, 6,
+ 7, 8, 9, 10, 11, 12, 13, 14, 0, 0,
+ -609, 0, -609, -609, 15, 0, 16, 17, 18, 19,
+ 0, 0, 0, 0, 0, 20, 21, 22, 23, 24,
+ 25, 26, 0, 0, 27, 0, 0, 0, 0, 0,
+ 28, 0, 30, 31, 32, 33, 34, 35, 36, 37,
+ 38, 39, 0, 40, 41, 42, 0, 0, 43, 0,
+ 0, 44, 45, 0, 46, 47, 48, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 49,
+ 50, 0, 0, 0, 0, 0, 51, 0, 0, 52,
+ 53, 0, 54, 55, 0, 56, 0, 0, 0, 57,
+ 0, 58, 59, 60, 0, 61, 62, 63, 0, 64,
+ -609, 0, 0, -609, -609, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 65,
+ 66, 67, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, -609, 294, -609, 5, 6, 7, 8, 9, 10,
+ 11, 12, 13, 14, 0, 0, -609, 0, 0, -609,
+ 15, -609, 16, 17, 18, 19, 0, 0, 0, 0,
+ 0, 20, 21, 22, 23, 24, 25, 26, 0, 0,
+ 27, 0, 0, 0, 0, 0, 28, 0, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39, 0, 40,
+ 41, 42, 0, 0, 43, 0, 0, 44, 45, 0,
+ 46, 47, 48, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 49, 50, 0, 0, 0,
+ 0, 0, 51, 0, 0, 52, 53, 0, 54, 55,
+ 0, 56, 0, 0, 0, 57, 0, 58, 59, 60,
+ 0, 61, 62, 63, 0, 64, -609, 0, 0, -609,
+ -609, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 65, 66, 67, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, -609, 294, -609,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
- 0, 0, 65, 66, 67, 0, 15, 0, 16, 17,
- 18, 19, 0, 0, -607, 0, -607, 20, 21, 22,
+ 0, 0, -609, 0, 0, -609, 15, 0, 16, 17,
+ 18, 19, 0, 0, 0, 0, 0, 20, 21, 22,
23, 24, 25, 26, 0, 0, 27, 0, 0, 0,
- 0, 0, 28, 29, 30, 31, 32, 33, 34, 35,
+ 0, 0, 28, 0, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 0, 40, 41, 42, 0, 0,
43, 0, 0, 44, 45, 0, 46, 47, 48, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 49, 50, 0, 0, 0, 0, 0, 51, 0,
0, 52, 53, 0, 54, 55, 0, 56, 0, 0,
0, 57, 0, 58, 59, 60, 0, 61, 62, 63,
- 0, 64, -607, 0, 0, -607, -607, 0, 0, 0,
+ 0, 64, -609, 0, 0, -609, -609, 4, 0, 5,
+ 6, 7, 8, 9, 10, 11, 12, 13, 14, 0,
+ 0, 65, 66, 67, 0, 15, 0, 16, 17, 18,
+ 19, 0, 0, -609, 0, -609, 20, 21, 22, 23,
+ 24, 25, 26, 0, 0, 27, 0, 0, 0, 0,
+ 0, 28, 29, 30, 31, 32, 33, 34, 35, 36,
+ 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
+ 0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 65, 66, 67, 0, 0, -607, 0, 0, 0,
- 0, 0, 0, -607, 293, -607, 5, 6, 7, 8,
- 9, 10, 11, 12, 13, 14, 0, -607, -607, 0,
- 0, 0, 15, 0, 16, 17, 18, 19, 0, 0,
- 0, 0, 0, 20, 21, 22, 23, 24, 25, 26,
- 0, 0, 27, 0, 0, 0, 0, 0, 28, 0,
- 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
- 0, 40, 41, 42, 0, 0, 43, 0, 0, 44,
- 45, 0, 46, 47, 48, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 49, 50, 0,
- 0, 0, 0, 0, 51, 0, 0, 52, 53, 0,
- 54, 55, 0, 56, 0, 0, 0, 57, 0, 58,
- 59, 60, 0, 61, 62, 63, 0, 64, -607, 0,
- 0, -607, -607, 293, 0, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 0, 0, 65, 66, 67,
- 0, 15, 0, 16, 17, 18, 19, 0, 0, -607,
- 0, -607, 20, 21, 22, 23, 24, 25, 26, 0,
+ 49, 50, 0, 0, 0, 0, 0, 51, 0, 0,
+ 52, 53, 0, 54, 55, 0, 56, 0, 0, 0,
+ 57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
+ 64, -609, 0, 0, -609, -609, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 65, 66, 67, 0, 0, -609, 0, 0, 0, 0,
+ 0, 0, -609, 294, -609, 5, 6, 7, 8, 9,
+ 10, 11, 12, 13, 14, 0, -609, -609, 0, 0,
+ 0, 15, 0, 16, 17, 18, 19, 0, 0, 0,
+ 0, 0, 20, 21, 22, 23, 24, 25, 26, 0,
0, 27, 0, 0, 0, 0, 0, 28, 0, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
- 0, 0, 0, 51, 0, 0, 294, 53, 0, 54,
+ 0, 0, 0, 51, 0, 0, 52, 53, 0, 54,
55, 0, 56, 0, 0, 0, 57, 0, 58, 59,
- 60, 0, 61, 62, 63, 0, 64, -607, 0, 0,
- -607, -607, 293, 0, 5, 6, 7, 8, 9, 10,
+ 60, 0, 61, 62, 63, 0, 64, -609, 0, 0,
+ -609, -609, 294, 0, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 0, 0, 65, 66, 67, 0,
- 15, 0, 16, 17, 18, 19, 0, -607, -607, 0,
- -607, 20, 21, 22, 23, 24, 25, 26, 0, 0,
+ 15, 0, 16, 17, 18, 19, 0, 0, -609, 0,
+ -609, 20, 21, 22, 23, 24, 25, 26, 0, 0,
27, 0, 0, 0, 0, 0, 28, 0, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, 0, 40,
41, 42, 0, 0, 43, 0, 0, 44, 45, 0,
46, 47, 48, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 49, 50, 0, 0, 0,
- 0, 0, 51, 0, 0, 52, 53, 0, 54, 55,
+ 0, 0, 51, 0, 0, 295, 53, 0, 54, 55,
0, 56, 0, 0, 0, 57, 0, 58, 59, 60,
- 0, 61, 62, 63, 0, 64, -607, 0, 0, -607,
- -607, 293, 0, 5, 6, 7, 8, 9, 10, 11,
+ 0, 61, 62, 63, 0, 64, -609, 0, 0, -609,
+ -609, 294, 0, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 0, 0, 65, 66, 67, 0, 15,
- 0, 16, 17, 18, 19, 0, -607, -607, 0, -607,
+ 0, 16, 17, 18, 19, 0, -609, -609, 0, -609,
20, 21, 22, 23, 24, 25, 26, 0, 0, 27,
0, 0, 0, 0, 0, 28, 0, 30, 31, 32,
33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
@@ -3009,258 +3060,270 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
0, 51, 0, 0, 52, 53, 0, 54, 55, 0,
56, 0, 0, 0, 57, 0, 58, 59, 60, 0,
- 61, 62, 63, 0, 64, -607, 0, 0, -607, -607,
+ 61, 62, 63, 0, 64, -609, 0, 0, -609, -609,
+ 294, 0, 5, 6, 7, 8, 9, 10, 11, 12,
+ 13, 14, 0, 0, 65, 66, 67, 0, 15, 0,
+ 16, 17, 18, 19, 0, -609, -609, 0, -609, 20,
+ 21, 22, 23, 24, 25, 26, 0, 0, 27, 0,
+ 0, 0, 0, 0, 28, 0, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, 0, 40, 41, 42,
+ 0, 0, 43, 0, 0, 44, 45, 0, 46, 47,
+ 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 49, 50, 0, 0, 0, 0, 0,
+ 51, 0, 0, 52, 53, 0, 54, 55, 0, 56,
+ 0, 0, 0, 57, 0, 58, 59, 60, 0, 61,
+ 62, 63, 0, 64, -609, 0, 0, -609, -609, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 65, 66, 67, 0, 0, -607,
- 0, 0, 0, 0, 0, 0, -607, 293, -607, 5,
- 6, 7, 8, 9, 10, 11, 12, 13, 14, 0,
- 0, -607, 0, 0, 0, 15, 0, 16, 17, 18,
- 19, 0, 0, 0, 0, 0, 20, 21, 22, 23,
- 24, 25, 26, 0, 0, 27, 0, 0, 0, 0,
- 0, 28, 0, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
- 0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 49, 50, 0, 0, 0, 0, 0, 51, 0, 0,
- 52, 53, 0, 54, 55, 0, 56, 0, 0, 0,
- 57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
- 64, -607, 0, 0, -607, -607, 0, 0, 5, 6,
+ 0, 0, 0, 65, 66, 67, 0, 0, -609, 0,
+ 0, 0, 0, 0, 0, -609, 294, -609, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 0, 0,
- 65, 66, 67, 0, 15, 0, 16, 17, 18, 19,
- 0, 0, -607, 0, -607, 20, 21, 22, 23, 24,
+ -609, 0, 0, 0, 15, 0, 16, 17, 18, 19,
+ 0, 0, 0, 0, 0, 20, 21, 22, 23, 24,
25, 26, 0, 0, 27, 0, 0, 0, 0, 0,
- 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+ 28, 0, 30, 31, 32, 33, 34, 35, 36, 37,
38, 39, 0, 40, 41, 42, 0, 0, 43, 0,
0, 44, 45, 0, 46, 47, 48, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 49,
50, 0, 0, 0, 0, 0, 51, 0, 0, 52,
53, 0, 54, 55, 0, 56, 0, 0, 0, 57,
0, 58, 59, 60, 0, 61, 62, 63, 0, 64,
- 245, 0, 0, 246, 247, 0, 0, 5, 6, 7,
+ -609, 0, 0, -609, -609, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 0, 0, 65,
66, 67, 0, 15, 0, 16, 17, 18, 19, 0,
- 0, 248, 0, 249, 20, 21, 22, 23, 24, 25,
+ 0, -609, 0, -609, 20, 21, 22, 23, 24, 25,
26, 0, 0, 27, 0, 0, 0, 0, 0, 28,
- 0, 30, 31, 32, 33, 34, 35, 36, 37, 38,
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
0, 0, 0, 0, 0, 51, 0, 0, 52, 53,
0, 54, 55, 0, 56, 0, 0, 0, 57, 0,
- 58, 59, 60, 0, 61, 62, 63, 0, 64, 245,
- 0, 0, 246, 247, 0, 0, 5, 6, 7, 8,
- 9, 10, 11, 12, 13, 0, 0, 0, 65, 66,
+ 58, 59, 60, 0, 61, 62, 63, 0, 64, 247,
+ 0, 0, 248, 249, 0, 0, 5, 6, 7, 8,
+ 9, 10, 11, 12, 13, 14, 0, 0, 65, 66,
67, 0, 15, 0, 16, 17, 18, 19, 0, 0,
- 248, 0, 249, 20, 21, 22, 23, 24, 25, 26,
- 0, 0, 27, 0, 0, 0, 0, 0, 0, 0,
- 0, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 250, 0, 251, 20, 21, 22, 23, 24, 25, 26,
+ 0, 0, 27, 0, 0, 0, 0, 0, 28, 0,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
0, 40, 41, 42, 0, 0, 43, 0, 0, 44,
45, 0, 46, 47, 48, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 49, 50, 0,
- 0, 0, 0, 0, 211, 0, 0, 119, 53, 0,
- 54, 55, 0, 0, 0, 0, 0, 57, 0, 58,
- 59, 60, 0, 61, 62, 63, 0, 64, 245, 0,
- 0, 246, 247, 0, 0, 5, 6, 7, 8, 9,
+ 0, 0, 0, 0, 51, 0, 0, 52, 53, 0,
+ 54, 55, 0, 56, 0, 0, 0, 57, 0, 58,
+ 59, 60, 0, 61, 62, 63, 0, 64, 247, 0,
+ 0, 248, 249, 0, 0, 5, 6, 7, 8, 9,
10, 11, 12, 13, 0, 0, 0, 65, 66, 67,
- 0, 15, 0, 108, 109, 18, 19, 0, 0, 248,
- 0, 249, 110, 111, 112, 23, 24, 25, 26, 0,
- 0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 15, 0, 16, 17, 18, 19, 0, 0, 250,
+ 0, 251, 20, 21, 22, 23, 24, 25, 26, 0,
+ 0, 27, 0, 0, 0, 0, 0, 0, 0, 0,
31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
0, 0, 0, 211, 0, 0, 119, 53, 0, 54,
55, 0, 0, 0, 0, 0, 57, 0, 58, 59,
- 60, 0, 61, 62, 63, 0, 64, 245, 0, 0,
- 246, 247, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 65, 262, 67, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 248, 0,
- 249, 131, 132, 133, 134, 135, 136, 137, 138, 139,
- 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
- 150, 151, 152, 153, 154, 0, 0, 0, 155, 156,
- 157, 158, 159, 160, 161, 162, 163, 164, 0, 0,
- 0, 0, 0, 165, 166, 167, 168, 169, 170, 171,
- 172, 36, 37, 173, 39, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 174, 175,
- 176, 177, 178, 179, 180, 181, 0, 0, 182, 183,
- 0, 0, 0, 0, 184, 185, 186, 187, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 188, 189,
- 190, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 60, 0, 61, 62, 63, 0, 64, 247, 0, 0,
+ 248, 249, 0, 0, 5, 6, 7, 8, 9, 10,
+ 11, 12, 13, 0, 0, 0, 65, 66, 67, 0,
+ 15, 0, 108, 109, 18, 19, 0, 0, 250, 0,
+ 251, 110, 111, 112, 23, 24, 25, 26, 0, 0,
+ 113, 0, 0, 0, 0, 0, 0, 0, 0, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39, 0, 40,
+ 41, 42, 0, 0, 43, 0, 0, 44, 45, 0,
+ 46, 47, 48, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 49, 50, 0, 0, 0,
+ 0, 0, 211, 0, 0, 119, 53, 0, 54, 55,
+ 0, 0, 0, 0, 0, 57, 0, 58, 59, 60,
+ 0, 61, 62, 63, 0, 64, 247, 0, 0, 248,
+ 249, 0, 0, 5, 6, 7, 8, 9, 10, 11,
+ 12, 13, 0, 0, 0, 65, 264, 67, 0, 15,
+ 0, 16, 17, 18, 19, 0, 0, 250, 0, 251,
+ 20, 21, 22, 23, 24, 25, 26, 0, 0, 27,
+ 0, 0, 0, 0, 0, 0, 0, 0, 31, 32,
+ 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
+ 42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
+ 47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
+ 0, 211, 0, 0, 119, 53, 0, 54, 55, 0,
+ 0, 0, 0, 0, 57, 0, 58, 59, 60, 0,
+ 61, 62, 63, 0, 64, 247, 0, 0, 248, 249,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 191, 192, 193, 194, 195, 196, 197, 198,
- 199, 200, 0, 201, 202, 0, 0, 0, 0, 0,
- 0, 203, 204, -577, -577, -577, -577, -577, -577, -577,
- -577, -577, 0, 0, 0, 0, 0, 0, 0, -577,
- 0, -577, -577, -577, -577, 0, -577, 0, 0, 0,
- -577, -577, -577, -577, -577, -577, -577, 0, 0, -577,
- 0, 0, 0, 0, 0, 0, 0, 0, -577, -577,
- -577, -577, -577, -577, -577, -577, -577, 0, -577, -577,
- -577, 0, 0, -577, 0, 0, -577, -577, 0, -577,
- -577, -577, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -577, -577, 0, 0, 0, 0,
- 0, -577, 0, 0, -577, -577, 0, -577, -577, 0,
- -577, 0, -577, -577, -577, 0, -577, -577, -577, 0,
- -577, -577, -577, 0, -577, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 65, 66, 67, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 251, 131,
+ 132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
+ 142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
+ 152, 153, 154, 0, 0, 0, 155, 156, 157, 158,
+ 159, 160, 161, 162, 163, 164, 0, 0, 0, 0,
+ 0, 165, 166, 167, 168, 169, 170, 171, 172, 36,
+ 37, 173, 39, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 174, 175, 176, 177,
+ 178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
+ 0, 0, 184, 185, 186, 187, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 188, 189, 190, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -577, -577, -577, 0, -577, 0,
- 0, 0, 0, 0, -577, -578, -578, -578, -578, -578,
- -578, -578, -578, -578, 0, 0, 0, 0, 0, 0,
- 0, -578, 0, -578, -578, -578, -578, 0, -578, 0,
- 0, 0, -578, -578, -578, -578, -578, -578, -578, 0,
- 0, -578, 0, 0, 0, 0, 0, 0, 0, 0,
- -578, -578, -578, -578, -578, -578, -578, -578, -578, 0,
- -578, -578, -578, 0, 0, -578, 0, 0, -578, -578,
- 0, -578, -578, -578, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, -578, -578, 0, 0,
- 0, 0, 0, -578, 0, 0, -578, -578, 0, -578,
- -578, 0, -578, 0, -578, -578, -578, 0, -578, -578,
- -578, 0, -578, -578, -578, 0, -578, 0, 0, 0,
- 0, 0, 0, -580, -580, -580, -580, -580, -580, -580,
- -580, -580, 0, 0, 0, 0, -578, -578, -578, -580,
- -578, -580, -580, -580, -580, 0, -578, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
+ 0, 201, 202, 0, 0, 0, 0, 0, 0, 203,
+ 204, -579, -579, -579, -579, -579, -579, -579, -579, -579,
+ 0, 0, 0, 0, 0, 0, 0, -579, 0, -579,
+ -579, -579, -579, 0, -579, 0, 0, 0, -579, -579,
+ -579, -579, -579, -579, -579, 0, 0, -579, 0, 0,
+ 0, 0, 0, 0, 0, 0, -579, -579, -579, -579,
+ -579, -579, -579, -579, -579, 0, -579, -579, -579, 0,
+ 0, -579, 0, 0, -579, -579, 0, -579, -579, -579,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, -579, -579, 0, 0, 0, 0, 0, -579,
+ 0, 0, -579, -579, 0, -579, -579, 0, -579, 0,
+ -579, -579, -579, 0, -579, -579, -579, 0, -579, -579,
+ -579, 0, -579, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, -579, -579, -579, 0, -579, 0, 0, 0,
+ 0, 0, -579, -580, -580, -580, -580, -580, -580, -580,
+ -580, -580, 0, 0, 0, 0, 0, 0, 0, -580,
+ 0, -580, -580, -580, -580, 0, -580, 0, 0, 0,
-580, -580, -580, -580, -580, -580, -580, 0, 0, -580,
0, 0, 0, 0, 0, 0, 0, 0, -580, -580,
-580, -580, -580, -580, -580, -580, -580, 0, -580, -580,
-580, 0, 0, -580, 0, 0, -580, -580, 0, -580,
-580, -580, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, -580, -580, 0, 0, 0, 0,
- 0, -580, 820, 0, -580, -580, 0, -580, -580, 0,
+ 0, -580, 0, 0, -580, -580, 0, -580, -580, 0,
-580, 0, -580, -580, -580, 0, -580, -580, -580, 0,
-580, -580, -580, 0, -580, 0, 0, 0, 0, 0,
- 0, -103, -581, -581, -581, -581, -581, -581, -581, -581,
- -581, 0, 0, 0, -580, -580, -580, 0, -581, 0,
- -581, -581, -581, -581, -580, 0, 0, 0, 0, -581,
- -581, -581, -581, -581, -581, -581, 0, 0, -581, 0,
- 0, 0, 0, 0, 0, 0, 0, -581, -581, -581,
- -581, -581, -581, -581, -581, -581, 0, -581, -581, -581,
- 0, 0, -581, 0, 0, -581, -581, 0, -581, -581,
- -581, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, -581, -581, 0, 0, 0, 0, 0,
- -581, 821, 0, -581, -581, 0, -581, -581, 0, -581,
- 0, -581, -581, -581, 0, -581, -581, -581, 0, -581,
- -581, -581, 0, -581, 0, 0, 0, 0, 0, 0,
- -105, -582, -582, -582, -582, -582, -582, -582, -582, -582,
- 0, 0, 0, -581, -581, -581, 0, -582, 0, -582,
- -582, -582, -582, -581, 0, 0, 0, 0, -582, -582,
+ 0, -582, -582, -582, -582, -582, -582, -582, -582, -582,
+ 0, 0, 0, 0, -580, -580, -580, -582, -580, -582,
+ -582, -582, -582, 0, -580, 0, 0, 0, -582, -582,
-582, -582, -582, -582, -582, 0, 0, -582, 0, 0,
0, 0, 0, 0, 0, 0, -582, -582, -582, -582,
-582, -582, -582, -582, -582, 0, -582, -582, -582, 0,
0, -582, 0, 0, -582, -582, 0, -582, -582, -582,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -582, -582, 0, 0, 0, 0, 0, -582,
- 0, 0, -582, -582, 0, -582, -582, 0, -582, 0,
+ 826, 0, -582, -582, 0, -582, -582, 0, -582, 0,
-582, -582, -582, 0, -582, -582, -582, 0, -582, -582,
- -582, 0, -582, 0, 0, 0, 0, 0, 0, -583,
- -583, -583, -583, -583, -583, -583, -583, -583, 0, 0,
- 0, 0, -582, -582, -582, -583, 0, -583, -583, -583,
- -583, 0, -582, 0, 0, 0, -583, -583, -583, -583,
- -583, -583, -583, 0, 0, -583, 0, 0, 0, 0,
- 0, 0, 0, 0, -583, -583, -583, -583, -583, -583,
- -583, -583, -583, 0, -583, -583, -583, 0, 0, -583,
- 0, 0, -583, -583, 0, -583, -583, -583, 0, 0,
+ -582, 0, -582, 0, 0, 0, 0, 0, 0, -107,
+ -583, -583, -583, -583, -583, -583, -583, -583, -583, 0,
+ 0, 0, -582, -582, -582, 0, -583, 0, -583, -583,
+ -583, -583, -582, 0, 0, 0, 0, -583, -583, -583,
+ -583, -583, -583, -583, 0, 0, -583, 0, 0, 0,
+ 0, 0, 0, 0, 0, -583, -583, -583, -583, -583,
+ -583, -583, -583, -583, 0, -583, -583, -583, 0, 0,
+ -583, 0, 0, -583, -583, 0, -583, -583, -583, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, -583, -583, 0, 0, 0, 0, 0, -583, 827,
+ 0, -583, -583, 0, -583, -583, 0, -583, 0, -583,
+ -583, -583, 0, -583, -583, -583, 0, -583, -583, -583,
+ 0, -583, 0, 0, 0, 0, 0, 0, -109, -584,
+ -584, -584, -584, -584, -584, -584, -584, -584, 0, 0,
+ 0, -583, -583, -583, 0, -584, 0, -584, -584, -584,
+ -584, -583, 0, 0, 0, 0, -584, -584, -584, -584,
+ -584, -584, -584, 0, 0, -584, 0, 0, 0, 0,
+ 0, 0, 0, 0, -584, -584, -584, -584, -584, -584,
+ -584, -584, -584, 0, -584, -584, -584, 0, 0, -584,
+ 0, 0, -584, -584, 0, -584, -584, -584, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- -583, -583, 0, 0, 0, 0, 0, -583, 0, 0,
- -583, -583, 0, -583, -583, 0, -583, 0, -583, -583,
- -583, 0, -583, -583, -583, 0, -583, -583, -583, 0,
- -583, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ -584, -584, 0, 0, 0, 0, 0, -584, 0, 0,
+ -584, -584, 0, -584, -584, 0, -584, 0, -584, -584,
+ -584, 0, -584, -584, -584, 0, -584, -584, -584, 0,
+ -584, 0, 0, 0, 0, 0, 0, -585, -585, -585,
+ -585, -585, -585, -585, -585, -585, 0, 0, 0, 0,
+ -584, -584, -584, -585, 0, -585, -585, -585, -585, 0,
+ -584, 0, 0, 0, -585, -585, -585, -585, -585, -585,
+ -585, 0, 0, -585, 0, 0, 0, 0, 0, 0,
+ 0, 0, -585, -585, -585, -585, -585, -585, -585, -585,
+ -585, 0, -585, -585, -585, 0, 0, -585, 0, 0,
+ -585, -585, 0, -585, -585, -585, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, -585, -585,
+ 0, 0, 0, 0, 0, -585, 0, 0, -585, -585,
+ 0, -585, -585, 0, -585, 0, -585, -585, -585, 0,
+ -585, -585, -585, 0, -585, -585, -585, 0, -585, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- -583, -583, -583, 0, 0, 0, 0, 0, 0, 0,
- -583, 131, 132, 133, 134, 135, 136, 137, 138, 139,
+ 0, 0, 0, 0, 0, 0, 0, 0, -585, -585,
+ -585, 0, 0, 0, 0, 0, 0, 0, -585, 131,
+ 132, 133, 134, 135, 136, 137, 138, 139, 140, 141,
+ 142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
+ 152, 153, 154, 0, 0, 0, 155, 156, 157, 233,
+ 234, 235, 236, 162, 163, 164, 0, 0, 0, 0,
+ 0, 165, 166, 167, 237, 238, 239, 240, 172, 319,
+ 320, 241, 321, 0, 0, 0, 0, 0, 0, 322,
+ 0, 0, 0, 0, 0, 0, 174, 175, 176, 177,
+ 178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
+ 0, 0, 184, 185, 186, 187, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 188, 189, 190, 0,
+ 0, 0, 0, 323, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
+ 0, 201, 202, 0, 0, 0, 0, 0, 0, 203,
+ 131, 132, 133, 134, 135, 136, 137, 138, 139, 140,
+ 141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
+ 151, 152, 153, 154, 0, 0, 0, 155, 156, 157,
+ 233, 234, 235, 236, 162, 163, 164, 0, 0, 0,
+ 0, 0, 165, 166, 167, 237, 238, 239, 240, 172,
+ 319, 320, 241, 321, 0, 0, 0, 0, 0, 0,
+ 322, 0, 0, 0, 0, 0, 0, 174, 175, 176,
+ 177, 178, 179, 180, 181, 0, 0, 182, 183, 0,
+ 0, 0, 0, 184, 185, 186, 187, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 188, 189, 190,
+ 0, 0, 0, 0, 484, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 191, 192, 193, 194, 195, 196, 197, 198, 199,
+ 200, 0, 201, 202, 0, 0, 0, 0, 0, 0,
+ 203, 131, 132, 133, 134, 135, 136, 137, 138, 139,
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
150, 151, 152, 153, 154, 0, 0, 0, 155, 156,
- 157, 231, 232, 233, 234, 162, 163, 164, 0, 0,
- 0, 0, 0, 165, 166, 167, 235, 236, 237, 238,
- 172, 318, 319, 239, 320, 0, 0, 0, 0, 0,
- 0, 321, 0, 0, 0, 0, 0, 0, 174, 175,
+ 157, 233, 234, 235, 236, 162, 163, 164, 0, 0,
+ 0, 0, 0, 165, 166, 167, 237, 238, 239, 240,
+ 172, 0, 0, 241, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 174, 175,
176, 177, 178, 179, 180, 181, 0, 0, 182, 183,
0, 0, 0, 0, 184, 185, 186, 187, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 188, 189,
- 190, 0, 0, 0, 0, 322, 0, 0, 0, 0,
+ 190, 0, 0, 0, 242, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 191, 192, 193, 194, 195, 196, 197, 198,
199, 200, 0, 201, 202, 0, 0, 0, 0, 0,
0, 203, 131, 132, 133, 134, 135, 136, 137, 138,
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
149, 150, 151, 152, 153, 154, 0, 0, 0, 155,
- 156, 157, 231, 232, 233, 234, 162, 163, 164, 0,
- 0, 0, 0, 0, 165, 166, 167, 235, 236, 237,
- 238, 172, 318, 319, 239, 320, 0, 0, 0, 0,
- 0, 0, 321, 0, 0, 0, 0, 0, 0, 174,
+ 156, 157, 233, 234, 235, 236, 162, 163, 164, 0,
+ 0, 0, 0, 0, 165, 166, 167, 237, 238, 239,
+ 240, 172, 0, 0, 241, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 174,
175, 176, 177, 178, 179, 180, 181, 0, 0, 182,
183, 0, 0, 0, 0, 184, 185, 186, 187, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 188,
- 189, 190, 0, 0, 0, 0, 481, 0, 0, 0,
+ 189, 190, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 191, 192, 193, 194, 195, 196, 197,
198, 199, 200, 0, 201, 202, 0, 0, 0, 0,
- 0, 0, 203, 131, 132, 133, 134, 135, 136, 137,
- 138, 139, 140, 141, 142, 143, 144, 145, 146, 147,
- 148, 149, 150, 151, 152, 153, 154, 0, 0, 0,
- 155, 156, 157, 231, 232, 233, 234, 162, 163, 164,
- 0, 0, 0, 0, 0, 165, 166, 167, 235, 236,
- 237, 238, 172, 0, 0, 239, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 174, 175, 176, 177, 178, 179, 180, 181, 0, 0,
- 182, 183, 0, 0, 0, 0, 184, 185, 186, 187,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 188, 189, 190, 0, 0, 0, 240, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 191, 192, 193, 194, 195, 196,
- 197, 198, 199, 200, 0, 201, 202, 0, 0, 0,
- 0, 0, 0, 203, 131, 132, 133, 134, 135, 136,
- 137, 138, 139, 140, 141, 142, 143, 144, 145, 146,
- 147, 148, 149, 150, 151, 152, 153, 154, 0, 0,
- 0, 155, 156, 157, 231, 232, 233, 234, 162, 163,
- 164, 0, 0, 0, 0, 0, 165, 166, 167, 235,
- 236, 237, 238, 172, 0, 0, 239, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 174, 175, 176, 177, 178, 179, 180, 181, 0,
- 0, 182, 183, 0, 0, 0, 0, 184, 185, 186,
- 187, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 188, 189, 190, 0, 0, 0, 0, 0, 0,
+ 0, 0, 203, 5, 6, 7, 8, 9, 10, 11,
+ 12, 13, 0, 0, 0, 0, 0, 0, 0, 15,
+ 0, 108, 109, 18, 19, 0, 0, 0, 0, 0,
+ 110, 111, 112, 23, 24, 25, 26, 0, 0, 113,
+ 0, 0, 0, 0, 0, 0, 0, 0, 31, 32,
+ 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
+ 42, 0, 0, 43, 0, 0, 44, 45, 0, 116,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 191, 192, 193, 194, 195,
- 196, 197, 198, 199, 200, 0, 201, 202, 0, 0,
- 0, 0, 0, 0, 203, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 0, 0, 0, 0, 0, 0,
- 0, 15, 0, 108, 109, 18, 19, 0, 0, 0,
- 0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
- 0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
- 40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
- 0, 116, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 311, 0, 0, 119, 53, 0, 54,
- 55, 0, 0, 0, 0, 0, 57, 0, 58, 59,
- 60, 0, 61, 62, 63, 0, 64, 0, 0, 5,
- 6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
- 0, 0, 0, 0, 0, 15, 120, 108, 109, 18,
- 19, 0, 0, 0, 312, 0, 110, 111, 112, 23,
- 24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
- 0, 0, 0, 0, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
- 0, 0, 44, 45, 0, 116, 0, 0, 0, 0,
+ 0, 312, 0, 0, 119, 53, 0, 54, 55, 0,
+ 0, 0, 0, 0, 57, 0, 58, 59, 60, 0,
+ 61, 62, 63, 0, 64, 0, 0, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
+ 0, 0, 0, 15, 120, 108, 109, 18, 19, 0,
+ 0, 0, 313, 0, 110, 111, 112, 23, 24, 25,
+ 26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
+ 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
+ 39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
+ 44, 45, 0, 116, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 311, 0, 0,
- 119, 53, 0, 54, 55, 0, 0, 0, 0, 0,
- 57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
- 64, 0, 0, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 14, 0, 0, 0, 0, 0, 0, 15,
- 120, 16, 17, 18, 19, 0, 0, 0, 602, 0,
- 20, 21, 22, 23, 24, 25, 26, 0, 0, 27,
- 0, 0, 0, 0, 0, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
- 42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
- 47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
- 0, 51, 0, 0, 52, 53, 0, 54, 55, 0,
- 56, 0, 0, 0, 57, 0, 58, 59, 60, 0,
- 61, 62, 63, 0, 64, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 312, 0, 0, 119, 53,
+ 0, 54, 55, 0, 0, 0, 0, 0, 57, 0,
+ 58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 14, 0, 0, 0, 65, 66, 67, 15, 0, 16,
- 17, 18, 19, 0, 0, 0, 0, 0, 20, 21,
+ 14, 0, 0, 0, 0, 0, 0, 15, 120, 16,
+ 17, 18, 19, 0, 0, 0, 605, 0, 20, 21,
22, 23, 24, 25, 26, 0, 0, 27, 0, 0,
- 0, 0, 0, 28, 0, 30, 31, 32, 33, 34,
+ 0, 0, 0, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
0, 43, 0, 0, 44, 45, 0, 46, 47, 48,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -3268,126 +3331,126 @@ static const yytype_int16 yytable[] =
0, 0, 52, 53, 0, 54, 55, 0, 56, 0,
0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
63, 0, 64, 0, 0, 0, 0, 0, 0, 5,
- 6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
+ 6, 7, 8, 9, 10, 11, 12, 13, 14, 0,
0, 0, 65, 66, 67, 15, 0, 16, 17, 18,
19, 0, 0, 0, 0, 0, 20, 21, 22, 23,
- 24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
- 0, 0, 0, 0, 31, 32, 33, 258, 35, 36,
+ 24, 25, 26, 0, 0, 27, 0, 0, 0, 0,
+ 0, 28, 0, 30, 31, 32, 33, 34, 35, 36,
37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 49, 50, 0, 0, 0, 0, 0, 211, 0, 0,
- 119, 53, 0, 54, 55, 0, 259, 0, 260, 261,
+ 49, 50, 0, 0, 0, 0, 0, 51, 0, 0,
+ 52, 53, 0, 54, 55, 0, 56, 0, 0, 0,
57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
64, 0, 0, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
- 65, 262, 67, 15, 0, 16, 17, 18, 19, 0,
+ 65, 66, 67, 15, 0, 16, 17, 18, 19, 0,
0, 0, 0, 0, 20, 21, 22, 23, 24, 25,
26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 32, 33, 258, 35, 36, 37, 38,
+ 0, 0, 31, 32, 33, 260, 35, 36, 37, 38,
39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 49, 503,
+ 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
0, 0, 0, 0, 0, 211, 0, 0, 119, 53,
- 0, 54, 55, 0, 259, 0, 260, 261, 57, 0,
+ 0, 54, 55, 0, 261, 0, 262, 263, 57, 0,
58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
0, 0, 0, 0, 0, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 0, 0, 0, 0, 65, 262,
- 67, 15, 0, 108, 109, 18, 19, 0, 0, 0,
- 0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
+ 10, 11, 12, 13, 0, 0, 0, 0, 65, 264,
+ 67, 15, 0, 16, 17, 18, 19, 0, 0, 0,
+ 0, 0, 20, 21, 22, 23, 24, 25, 26, 0,
0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 32, 33, 258, 35, 36, 37, 38, 39, 0,
+ 31, 32, 33, 260, 35, 36, 37, 38, 39, 0,
40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
+ 0, 0, 0, 0, 0, 0, 49, 505, 0, 0,
0, 0, 0, 211, 0, 0, 119, 53, 0, 54,
- 55, 0, 712, 0, 260, 261, 57, 0, 58, 59,
+ 55, 0, 261, 0, 262, 263, 57, 0, 58, 59,
60, 0, 61, 62, 63, 0, 64, 0, 0, 0,
0, 0, 0, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 0, 0, 0, 0, 65, 262, 67, 15,
+ 12, 13, 0, 0, 0, 0, 65, 264, 67, 15,
0, 108, 109, 18, 19, 0, 0, 0, 0, 0,
110, 111, 112, 23, 24, 25, 26, 0, 0, 113,
0, 0, 0, 0, 0, 0, 0, 0, 31, 32,
- 33, 258, 35, 36, 37, 38, 39, 0, 40, 41,
+ 33, 260, 35, 36, 37, 38, 39, 0, 40, 41,
42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 49, 838, 0, 0, 0, 0,
+ 0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
0, 211, 0, 0, 119, 53, 0, 54, 55, 0,
- 712, 0, 260, 261, 57, 0, 58, 59, 60, 0,
+ 716, 0, 262, 263, 57, 0, 58, 59, 60, 0,
61, 62, 63, 0, 64, 0, 0, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 0, 0, 0, 0, 65, 262, 67, 15, 0, 108,
+ 0, 0, 0, 0, 65, 264, 67, 15, 0, 108,
109, 18, 19, 0, 0, 0, 0, 0, 110, 111,
112, 23, 24, 25, 26, 0, 0, 113, 0, 0,
- 0, 0, 0, 0, 0, 0, 31, 32, 33, 258,
+ 0, 0, 0, 0, 0, 0, 31, 32, 33, 260,
35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
0, 43, 0, 0, 44, 45, 0, 46, 47, 48,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 49, 50, 0, 0, 0, 0, 0, 211,
- 0, 0, 119, 53, 0, 54, 55, 0, 259, 0,
- 260, 0, 57, 0, 58, 59, 60, 0, 61, 62,
+ 0, 0, 49, 843, 0, 0, 0, 0, 0, 211,
+ 0, 0, 119, 53, 0, 54, 55, 0, 716, 0,
+ 262, 263, 57, 0, 58, 59, 60, 0, 61, 62,
63, 0, 64, 0, 0, 0, 0, 0, 0, 5,
6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
- 0, 0, 65, 262, 67, 15, 0, 108, 109, 18,
+ 0, 0, 65, 264, 67, 15, 0, 108, 109, 18,
19, 0, 0, 0, 0, 0, 110, 111, 112, 23,
24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
- 0, 0, 0, 0, 31, 32, 33, 258, 35, 36,
+ 0, 0, 0, 0, 31, 32, 33, 260, 35, 36,
37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
49, 50, 0, 0, 0, 0, 0, 211, 0, 0,
- 119, 53, 0, 54, 55, 0, 0, 0, 260, 261,
+ 119, 53, 0, 54, 55, 0, 261, 0, 262, 0,
57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
64, 0, 0, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
- 65, 262, 67, 15, 0, 108, 109, 18, 19, 0,
+ 65, 264, 67, 15, 0, 108, 109, 18, 19, 0,
0, 0, 0, 0, 110, 111, 112, 23, 24, 25,
26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 32, 33, 258, 35, 36, 37, 38,
+ 0, 0, 31, 32, 33, 260, 35, 36, 37, 38,
39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
0, 0, 0, 0, 0, 211, 0, 0, 119, 53,
- 0, 54, 55, 0, 712, 0, 260, 0, 57, 0,
+ 0, 54, 55, 0, 0, 0, 262, 263, 57, 0,
58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
0, 0, 0, 0, 0, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 0, 0, 0, 0, 65, 262,
+ 10, 11, 12, 13, 0, 0, 0, 0, 65, 264,
67, 15, 0, 108, 109, 18, 19, 0, 0, 0,
0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 32, 33, 258, 35, 36, 37, 38, 39, 0,
+ 31, 32, 33, 260, 35, 36, 37, 38, 39, 0,
40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
0, 0, 0, 211, 0, 0, 119, 53, 0, 54,
- 55, 0, 0, 0, 260, 0, 57, 0, 58, 59,
+ 55, 0, 716, 0, 262, 0, 57, 0, 58, 59,
60, 0, 61, 62, 63, 0, 64, 0, 0, 0,
0, 0, 0, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 0, 0, 0, 0, 65, 262, 67, 15,
- 0, 16, 17, 18, 19, 0, 0, 0, 0, 0,
- 20, 21, 22, 23, 24, 25, 26, 0, 0, 113,
+ 12, 13, 0, 0, 0, 0, 65, 264, 67, 15,
+ 0, 108, 109, 18, 19, 0, 0, 0, 0, 0,
+ 110, 111, 112, 23, 24, 25, 26, 0, 0, 113,
0, 0, 0, 0, 0, 0, 0, 0, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
+ 33, 260, 35, 36, 37, 38, 39, 0, 40, 41,
42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
0, 211, 0, 0, 119, 53, 0, 54, 55, 0,
- 596, 0, 0, 0, 57, 0, 58, 59, 60, 0,
+ 0, 0, 262, 0, 57, 0, 58, 59, 60, 0,
61, 62, 63, 0, 64, 0, 0, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 0, 0, 0, 0, 65, 262, 67, 15, 0, 108,
- 109, 18, 19, 0, 0, 0, 0, 0, 110, 111,
- 112, 23, 24, 25, 26, 0, 0, 113, 0, 0,
+ 0, 0, 0, 0, 65, 264, 67, 15, 0, 16,
+ 17, 18, 19, 0, 0, 0, 0, 0, 20, 21,
+ 22, 23, 24, 25, 26, 0, 0, 113, 0, 0,
0, 0, 0, 0, 0, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
0, 43, 0, 0, 44, 45, 0, 46, 47, 48,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 49, 50, 0, 0, 0, 0, 0, 211,
- 0, 0, 119, 53, 0, 54, 55, 0, 259, 0,
+ 0, 0, 119, 53, 0, 54, 55, 0, 599, 0,
0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
63, 0, 64, 0, 0, 0, 0, 0, 0, 5,
6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
- 0, 0, 65, 262, 67, 15, 0, 108, 109, 18,
+ 0, 0, 65, 264, 67, 15, 0, 108, 109, 18,
19, 0, 0, 0, 0, 0, 110, 111, 112, 23,
24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
0, 0, 0, 0, 31, 32, 33, 34, 35, 36,
@@ -3395,11 +3458,11 @@ static const yytype_int16 yytable[] =
0, 0, 44, 45, 0, 46, 47, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
49, 50, 0, 0, 0, 0, 0, 211, 0, 0,
- 119, 53, 0, 54, 55, 0, 596, 0, 0, 0,
+ 119, 53, 0, 54, 55, 0, 261, 0, 0, 0,
57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
64, 0, 0, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
- 65, 262, 67, 15, 0, 108, 109, 18, 19, 0,
+ 65, 264, 67, 15, 0, 108, 109, 18, 19, 0,
0, 0, 0, 0, 110, 111, 112, 23, 24, 25,
26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
@@ -3407,10 +3470,10 @@ static const yytype_int16 yytable[] =
44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
0, 0, 0, 0, 0, 211, 0, 0, 119, 53,
- 0, 54, 55, 0, 881, 0, 0, 0, 57, 0,
+ 0, 54, 55, 0, 599, 0, 0, 0, 57, 0,
58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
0, 0, 0, 0, 0, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 0, 0, 0, 0, 65, 262,
+ 10, 11, 12, 13, 0, 0, 0, 0, 65, 264,
67, 15, 0, 108, 109, 18, 19, 0, 0, 0,
0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -3419,24 +3482,24 @@ static const yytype_int16 yytable[] =
0, 46, 47, 48, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 49, 50, 0, 0,
0, 0, 0, 211, 0, 0, 119, 53, 0, 54,
- 55, 0, 712, 0, 0, 0, 57, 0, 58, 59,
+ 55, 0, 888, 0, 0, 0, 57, 0, 58, 59,
60, 0, 61, 62, 63, 0, 64, 0, 0, 0,
0, 0, 0, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 0, 0, 0, 0, 65, 262, 67, 15,
- 0, 16, 17, 18, 19, 0, 0, 0, 0, 0,
- 20, 21, 22, 23, 24, 25, 26, 0, 0, 27,
+ 12, 13, 0, 0, 0, 0, 65, 264, 67, 15,
+ 0, 108, 109, 18, 19, 0, 0, 0, 0, 0,
+ 110, 111, 112, 23, 24, 25, 26, 0, 0, 113,
0, 0, 0, 0, 0, 0, 0, 0, 31, 32,
33, 34, 35, 36, 37, 38, 39, 0, 40, 41,
42, 0, 0, 43, 0, 0, 44, 45, 0, 46,
47, 48, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 49, 50, 0, 0, 0, 0,
0, 211, 0, 0, 119, 53, 0, 54, 55, 0,
- 0, 0, 0, 0, 57, 0, 58, 59, 60, 0,
+ 716, 0, 0, 0, 57, 0, 58, 59, 60, 0,
61, 62, 63, 0, 64, 0, 0, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 0, 0, 0, 0, 65, 66, 67, 15, 0, 108,
- 109, 18, 19, 0, 0, 0, 0, 0, 110, 111,
- 112, 23, 24, 25, 26, 0, 0, 113, 0, 0,
+ 0, 0, 0, 0, 65, 264, 67, 15, 0, 16,
+ 17, 18, 19, 0, 0, 0, 0, 0, 20, 21,
+ 22, 23, 24, 25, 26, 0, 0, 27, 0, 0,
0, 0, 0, 0, 0, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
0, 43, 0, 0, 44, 45, 0, 46, 47, 48,
@@ -3446,8 +3509,8 @@ static const yytype_int16 yytable[] =
0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
63, 0, 64, 0, 0, 0, 0, 0, 0, 5,
6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
- 0, 0, 65, 262, 67, 15, 0, 16, 17, 18,
- 19, 0, 0, 0, 0, 0, 20, 21, 22, 23,
+ 0, 0, 65, 66, 67, 15, 0, 108, 109, 18,
+ 19, 0, 0, 0, 0, 0, 110, 111, 112, 23,
24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
0, 0, 0, 0, 31, 32, 33, 34, 35, 36,
37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
@@ -3458,49 +3521,38 @@ static const yytype_int16 yytable[] =
57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
64, 0, 0, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
- 65, 262, 67, 15, 0, 108, 109, 18, 19, 0,
- 0, 0, 0, 0, 110, 111, 112, 23, 24, 25,
+ 65, 264, 67, 15, 0, 16, 17, 18, 19, 0,
+ 0, 0, 0, 0, 20, 21, 22, 23, 24, 25,
26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 32, 33, 114, 35, 36, 37, 115,
+ 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
- 44, 45, 0, 116, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 117, 0, 0, 118, 0, 0, 119, 53,
+ 44, 45, 0, 46, 47, 48, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 49, 50,
+ 0, 0, 0, 0, 0, 211, 0, 0, 119, 53,
0, 54, 55, 0, 0, 0, 0, 0, 57, 0,
58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
- 0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
- 0, 0, 0, 0, 0, 0, 0, 15, 120, 108,
- 109, 18, 19, 0, 0, 0, 0, 0, 110, 111,
- 112, 23, 24, 25, 26, 0, 0, 113, 0, 0,
- 0, 0, 0, 0, 0, 0, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
- 0, 43, 0, 0, 44, 45, 0, 223, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 224,
- 0, 0, 52, 53, 0, 54, 55, 0, 56, 0,
- 0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
- 63, 0, 64, 0, 0, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 0, 0, 0, 0, 0, 0,
- 0, 15, 120, 108, 109, 18, 19, 0, 0, 0,
+ 0, 0, 0, 0, 0, 5, 6, 7, 8, 9,
+ 10, 11, 12, 13, 0, 0, 0, 0, 65, 264,
+ 67, 15, 0, 108, 109, 18, 19, 0, 0, 0,
0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
+ 31, 32, 33, 114, 35, 36, 37, 115, 39, 0,
40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
0, 116, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 311, 0, 0, 396, 53, 0, 54,
- 55, 0, 397, 0, 0, 0, 57, 0, 58, 59,
+ 117, 0, 0, 118, 0, 0, 119, 53, 0, 54,
+ 55, 0, 0, 0, 0, 0, 57, 0, 58, 59,
60, 0, 61, 62, 63, 0, 64, 0, 0, 5,
6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
0, 0, 0, 0, 0, 15, 120, 108, 109, 18,
19, 0, 0, 0, 0, 0, 110, 111, 112, 23,
24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
- 0, 0, 0, 0, 31, 32, 33, 114, 35, 36,
- 37, 115, 39, 0, 40, 41, 42, 0, 0, 43,
- 0, 0, 44, 45, 0, 116, 0, 0, 0, 0,
+ 0, 0, 0, 0, 31, 32, 33, 34, 35, 36,
+ 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
+ 0, 0, 44, 45, 0, 225, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 118, 0, 0,
- 119, 53, 0, 54, 55, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 226, 0, 0,
+ 52, 53, 0, 54, 55, 0, 56, 0, 0, 0,
57, 0, 58, 59, 60, 0, 61, 62, 63, 0,
64, 0, 0, 5, 6, 7, 8, 9, 10, 11,
12, 13, 0, 0, 0, 0, 0, 0, 0, 15,
@@ -3511,18 +3563,18 @@ static const yytype_int16 yytable[] =
42, 0, 0, 43, 0, 0, 44, 45, 0, 116,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 311, 0, 0, 396, 53, 0, 54, 55, 0,
- 0, 0, 0, 0, 57, 0, 58, 59, 60, 0,
+ 0, 312, 0, 0, 397, 53, 0, 54, 55, 0,
+ 398, 0, 0, 0, 57, 0, 58, 59, 60, 0,
61, 62, 63, 0, 64, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 0, 0, 0, 0,
0, 0, 0, 15, 120, 108, 109, 18, 19, 0,
0, 0, 0, 0, 110, 111, 112, 23, 24, 25,
26, 0, 0, 113, 0, 0, 0, 0, 0, 0,
- 0, 0, 31, 32, 33, 34, 35, 36, 37, 38,
+ 0, 0, 31, 32, 33, 114, 35, 36, 37, 115,
39, 0, 40, 41, 42, 0, 0, 43, 0, 0,
44, 45, 0, 116, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 946, 0, 0, 119, 53,
+ 0, 0, 0, 0, 0, 118, 0, 0, 119, 53,
0, 54, 55, 0, 0, 0, 0, 0, 57, 0,
58, 59, 60, 0, 61, 62, 63, 0, 64, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
@@ -3531,20 +3583,60 @@ static const yytype_int16 yytable[] =
112, 23, 24, 25, 26, 0, 0, 113, 0, 0,
0, 0, 0, 0, 0, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, 0, 40, 41, 42, 0,
- 0, 43, 0, 0, 44, 45, 0, 223, 0, 0,
+ 0, 43, 0, 0, 44, 45, 0, 116, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 312,
+ 0, 0, 397, 53, 0, 54, 55, 0, 0, 0,
+ 0, 0, 57, 0, 58, 59, 60, 0, 61, 62,
+ 63, 0, 64, 0, 0, 5, 6, 7, 8, 9,
+ 10, 11, 12, 13, 0, 0, 0, 0, 0, 0,
+ 0, 15, 120, 108, 109, 18, 19, 0, 0, 0,
+ 0, 0, 110, 111, 112, 23, 24, 25, 26, 0,
+ 0, 113, 0, 0, 0, 0, 0, 0, 0, 0,
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 0,
+ 40, 41, 42, 0, 0, 43, 0, 0, 44, 45,
+ 0, 116, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 955, 0, 0, 119, 53, 0, 54,
+ 55, 0, 0, 0, 0, 0, 57, 0, 58, 59,
+ 60, 0, 61, 62, 63, 0, 64, 0, 0, 5,
+ 6, 7, 8, 9, 10, 11, 12, 13, 0, 0,
+ 0, 0, 0, 0, 0, 15, 120, 108, 109, 18,
+ 19, 0, 0, 0, 0, 0, 110, 111, 112, 23,
+ 24, 25, 26, 0, 0, 113, 0, 0, 0, 0,
+ 0, 0, 0, 0, 31, 32, 33, 34, 35, 36,
+ 37, 38, 39, 0, 40, 41, 42, 0, 0, 43,
+ 0, 0, 44, 45, 0, 225, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 978, 0, 0,
+ 119, 53, 0, 54, 55, 0, 0, 644, 645, 0,
+ 57, 646, 58, 59, 60, 0, 61, 62, 63, 0,
+ 64, 0, 0, 0, 0, 0, 174, 175, 176, 177,
+ 178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
+ 120, 0, 184, 185, 186, 187, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 188, 189, 190, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
+ 0, 201, 202, 653, 654, 0, 0, 655, 0, 203,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 174, 175, 176, 177, 178, 179, 180, 181,
+ 0, 0, 182, 183, 0, 0, 0, 0, 184, 185,
+ 186, 187, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 188, 189, 190, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 969,
- 0, 0, 119, 53, 0, 54, 55, 0, 0, 656,
- 651, 0, 57, 657, 58, 59, 60, 0, 61, 62,
- 63, 0, 64, 0, 0, 0, 0, 0, 174, 175,
+ 0, 0, 0, 0, 0, 0, 191, 192, 193, 194,
+ 195, 196, 197, 198, 199, 200, 0, 201, 202, 674,
+ 645, 0, 0, 675, 0, 203, 275, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 174, 175,
176, 177, 178, 179, 180, 181, 0, 0, 182, 183,
- 0, 0, 120, 0, 184, 185, 186, 187, 0, 0,
+ 0, 0, 0, 0, 184, 185, 186, 187, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 188, 189,
190, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 191, 192, 193, 194, 195, 196, 197, 198,
- 199, 200, 0, 201, 202, 686, 642, 0, 0, 687,
- 0, 203, 273, 0, 0, 0, 0, 0, 0, 0,
+ 199, 200, 0, 201, 202, 659, 654, 0, 0, 660,
+ 0, 203, 275, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 174, 175, 176, 177, 178, 179,
180, 181, 0, 0, 182, 183, 0, 0, 0, 0,
184, 185, 186, 187, 0, 0, 0, 0, 0, 0,
@@ -3552,7 +3644,7 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 191, 192,
193, 194, 195, 196, 197, 198, 199, 200, 0, 201,
- 202, 689, 651, 0, 0, 690, 0, 203, 273, 0,
+ 202, 691, 645, 0, 0, 692, 0, 203, 275, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
174, 175, 176, 177, 178, 179, 180, 181, 0, 0,
182, 183, 0, 0, 0, 0, 184, 185, 186, 187,
@@ -3560,8 +3652,8 @@ static const yytype_int16 yytable[] =
188, 189, 190, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 191, 192, 193, 194, 195, 196,
- 197, 198, 199, 200, 0, 201, 202, 696, 642, 0,
- 0, 697, 0, 203, 273, 0, 0, 0, 0, 0,
+ 197, 198, 199, 200, 0, 201, 202, 694, 654, 0,
+ 0, 695, 0, 203, 275, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 174, 175, 176, 177,
178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
0, 0, 184, 185, 186, 187, 0, 0, 0, 0,
@@ -3569,16 +3661,16 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
- 0, 201, 202, 699, 651, 0, 0, 700, 0, 203,
- 273, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 201, 202, 701, 645, 0, 0, 702, 0, 203,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 174, 175, 176, 177, 178, 179, 180, 181,
0, 0, 182, 183, 0, 0, 0, 0, 184, 185,
186, 187, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 188, 189, 190, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 191, 192, 193, 194,
- 195, 196, 197, 198, 199, 200, 0, 201, 202, 735,
- 642, 0, 0, 736, 0, 203, 273, 0, 0, 0,
+ 195, 196, 197, 198, 199, 200, 0, 201, 202, 704,
+ 654, 0, 0, 705, 0, 203, 275, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 174, 175,
176, 177, 178, 179, 180, 181, 0, 0, 182, 183,
0, 0, 0, 0, 184, 185, 186, 187, 0, 0,
@@ -3586,8 +3678,8 @@ static const yytype_int16 yytable[] =
190, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 191, 192, 193, 194, 195, 196, 197, 198,
- 199, 200, 0, 201, 202, 738, 651, 0, 0, 739,
- 0, 203, 273, 0, 0, 0, 0, 0, 0, 0,
+ 199, 200, 0, 201, 202, 739, 645, 0, 0, 740,
+ 0, 203, 275, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 174, 175, 176, 177, 178, 179,
180, 181, 0, 0, 182, 183, 0, 0, 0, 0,
184, 185, 186, 187, 0, 0, 0, 0, 0, 0,
@@ -3595,7 +3687,7 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 191, 192,
193, 194, 195, 196, 197, 198, 199, 200, 0, 201,
- 202, 886, 642, 0, 0, 887, 0, 203, 273, 0,
+ 202, 742, 654, 0, 0, 743, 0, 203, 275, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
174, 175, 176, 177, 178, 179, 180, 181, 0, 0,
182, 183, 0, 0, 0, 0, 184, 185, 186, 187,
@@ -3603,8 +3695,8 @@ static const yytype_int16 yytable[] =
188, 189, 190, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 191, 192, 193, 194, 195, 196,
- 197, 198, 199, 200, 0, 201, 202, 889, 651, 0,
- 0, 890, 0, 203, 273, 0, 0, 0, 0, 0,
+ 197, 198, 199, 200, 0, 201, 202, 893, 645, 0,
+ 0, 894, 0, 203, 275, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 174, 175, 176, 177,
178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
0, 0, 184, 185, 186, 187, 0, 0, 0, 0,
@@ -3612,16 +3704,16 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
- 0, 201, 202, 1028, 642, 0, 0, 1029, 0, 203,
- 273, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 201, 202, 896, 654, 0, 0, 897, 0, 203,
+ 275, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 174, 175, 176, 177, 178, 179, 180, 181,
0, 0, 182, 183, 0, 0, 0, 0, 184, 185,
186, 187, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 188, 189, 190, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 191, 192, 193, 194,
- 195, 196, 197, 198, 199, 200, 0, 201, 202, 1040,
- 642, 0, 0, 1041, 0, 203, 273, 0, 0, 0,
+ 195, 196, 197, 198, 199, 200, 0, 201, 202, 1037,
+ 645, 0, 0, 1038, 0, 203, 275, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 174, 175,
176, 177, 178, 179, 180, 181, 0, 0, 182, 183,
0, 0, 0, 0, 184, 185, 186, 187, 0, 0,
@@ -3629,8 +3721,8 @@ static const yytype_int16 yytable[] =
190, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 191, 192, 193, 194, 195, 196, 197, 198,
- 199, 200, 0, 201, 202, 1043, 651, 0, 0, 1044,
- 0, 203, 273, 0, 0, 0, 0, 0, 0, 0,
+ 199, 200, 0, 201, 202, 1049, 645, 0, 0, 1050,
+ 0, 203, 275, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 174, 175, 176, 177, 178, 179,
180, 181, 0, 0, 182, 183, 0, 0, 0, 0,
184, 185, 186, 187, 0, 0, 0, 0, 0, 0,
@@ -3638,612 +3730,602 @@ static const yytype_int16 yytable[] =
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 191, 192,
193, 194, 195, 196, 197, 198, 199, 200, 0, 201,
- 202, 656, 651, 0, 0, 657, 0, 203, 273, 0,
+ 202, 1052, 654, 0, 0, 1053, 0, 203, 275, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
174, 175, 176, 177, 178, 179, 180, 181, 0, 0,
182, 183, 0, 0, 0, 0, 184, 185, 186, 187,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
188, 189, 190, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 855, 0, 0, 0,
- 0, 0, 0, 0, 191, 192, 193, 194, 195, 196,
- 197, 198, 199, 200, 0, 201, 202, 0, 0, 0,
- 0, 0, 0, 203, 400, 401, 402, 403, 404, 405,
- 406, 407, 408, 409, 410, 411, 0, 0, 0, 0,
- 412, 413, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 415, 0, 0, 0, 0, 866, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 416, 0, 417, 418, 419, 420,
- 421, 422, 423, 424, 425, 426, 400, 401, 402, 403,
- 404, 405, 406, 407, 408, 409, 410, 411, 0, 0,
- 0, 0, 412, 413, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 415, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 416, 0, 417, 418,
- 419, 420, 421, 422, 423, 424, 425, 426, 400, 401,
- 402, 403, 404, 405, 406, 407, 408, 409, 410, 411,
- 0, 0, 0, 0, 412, 413, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 415, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
- 417, 418, 419, 420, 421, 422, 423, 424, 425, 426,
- 400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
- 410, 411, 0, 0, 249, 0, 412, 413, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 415,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 416, 0, 417, 418, 419, 420, 421, 422, 423, 424,
- 425, 426, 0, 0, 0, 0, 0, 0, 0, 0,
- -273, 400, 401, 402, 403, 404, 405, 406, 407, 408,
- 409, 410, 411, 0, 0, 0, 0, 412, 413, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 415, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 416, 0, 417, 418, 419, 420, 421, 422, 423,
- 424, 425, 426, 0, 0, 0, 0, 0, 0, 0,
- 0, -274, 400, 401, 402, 403, 404, 405, 406, 407,
- 408, 409, 410, 411, 0, 0, 0, 0, 412, 413,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 415, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 416, 0, 417, 418, 419, 420, 421, 422,
- 423, 424, 425, 426, 0, 0, 0, 0, 0, 0,
- 0, 0, -275, 400, 401, 402, 403, 404, 405, 406,
- 407, 408, 409, 410, 411, 0, 0, 0, 0, 412,
- 413, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 415, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 416, 0, 417, 418, 419, 420, 421,
- 422, 423, 424, 425, 426, 0, 0, 0, 0, 0,
- 0, 0, 0, -276, 400, 401, 402, 403, 404, 405,
- 406, 407, 408, 409, 410, 411, 0, 0, 0, 0,
- 412, 413, 0, 0, 0, 414, 0, 0, 0, 0,
- 0, 0, 0, 415, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 191, 192, 193, 194, 195, 196,
+ 197, 198, 199, 200, 0, 201, 202, 659, 654, 0,
+ 0, 660, 0, 203, 275, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 174, 175, 176, 177,
+ 178, 179, 180, 181, 0, 0, 182, 183, 0, 0,
+ 0, 0, 184, 185, 186, 187, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 188, 189, 190, 0,
+ 0, 401, 402, 403, 404, 405, 406, 407, 408, 409,
+ 410, 411, 412, 0, 0, 0, 0, 413, 414, 0,
+ 191, 192, 193, 194, 195, 196, 197, 198, 199, 200,
+ 416, 201, 202, 0, 0, 0, 0, 0, 0, 203,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 416, 0, 417, 418, 419, 420,
- 421, 422, 423, 424, 425, 426, 400, 401, 402, 403,
- 404, 405, 406, 407, 408, 409, 410, 411, 0, 0,
- 0, 0, 412, 413, 0, 0, 0, 495, 0, 0,
- 0, 0, 0, 0, 0, 415, 0, 0, 0, 0,
+ 0, 417, 0, 418, 419, 420, 421, 422, 423, 424,
+ 425, 426, 427, 0, 0, 0, 0, 0, 0, 0,
+ 0, -278, 401, 402, 403, 404, 405, 406, 407, 408,
+ 409, 410, 411, 412, 0, 0, 0, 0, 413, 414,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 416, 0, 417, 418,
- 419, 420, 421, 422, 423, 424, 425, 426, 400, 401,
- 402, 403, 404, 405, 406, 407, 408, 409, 410, 411,
- 0, 0, 0, 0, 412, 413, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 415, 0, 0,
+ 0, 416, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 416, 0,
- 417, 418, 419, 420, 421, 422, 423, 424, 425, 426,
- 400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
- -608, -608, 0, 0, 0, 0, 412, 413, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 415,
+ 0, 0, 417, 0, 418, 419, 420, 421, 422, 423,
+ 424, 425, 426, 427, 0, 0, 0, 0, 0, 0,
+ 0, 0, -279, 401, 402, 403, 404, 405, 406, 407,
+ 408, 409, 410, 411, 412, 0, 0, 0, 0, 413,
+ 414, 0, 0, 0, 415, 0, 0, 0, 0, 0,
+ 0, 0, 416, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 417, 0, 418, 419, 420, 421, 422,
+ 423, 424, 425, 426, 427, 401, 402, 403, 404, 405,
+ 406, 407, 408, 409, 410, 411, 412, 0, 0, 0,
+ 0, 413, 414, 0, 0, 0, 497, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 417, 418, 419, 420, 421, 422, 423, 424,
- 425, 426
+ 0, 0, 0, 0, 0, 417, 0, 418, 419, 420,
+ 421, 422, 423, 424, 425, 426, 427, 401, 402, 403,
+ 404, 405, 406, 407, 408, 409, 410, 411, 412, 0,
+ 0, 0, 0, 413, 414, 401, 402, 403, 404, 405,
+ 406, 0, 0, 409, 410, 0, 416, 0, 0, 0,
+ 0, 413, 414, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 416, 0, 0, 417, 0, 418,
+ 419, 420, 421, 422, 423, 424, 425, 426, 427, 0,
+ 0, 0, 0, 0, 0, 0, 0, 418, 419, 420,
+ 421, 422, 423, 424, 425, 426, 427
};
static const yytype_int16 yycheck[] =
{
- 2, 16, 17, 89, 220, 20, 27, 69, 475, 27,
- 2, 56, 4, 5, 6, 484, 82, 9, 10, 21,
- 66, 13, 7, 15, 16, 17, 429, 7, 20, 14,
- 14, 118, 4, 52, 87, 88, 269, 772, 312, 54,
- 55, 305, 28, 28, 28, 309, 16, 17, 22, 15,
- 20, 454, 54, 55, 74, 75, 329, 375, 584, 399,
- 52, 16, 17, 748, 56, 20, 469, 587, 540, 5,
- 6, 317, 74, 58, 66, 478, 91, 13, 58, 584,
- 502, 60, 61, 62, 63, 490, 21, 22, 16, 17,
- 82, 25, 20, 10, 659, 660, 16, 26, 15, 54,
- 55, 121, 122, 69, 772, 5, 6, 954, 26, 111,
- 532, 294, 57, 13, 90, 370, 931, 79, 29, 682,
- 56, 367, 2, 25, 4, 117, 90, 119, 691, 51,
- 602, 105, 25, 27, 5, 6, 391, 0, 92, 542,
- 25, 105, 13, 92, 92, 584, 82, 25, 587, 75,
- 103, 25, 330, 25, 142, 333, 56, 335, 28, 337,
- 148, 339, 427, 216, 126, 25, 431, 121, 92, 434,
- 105, 147, 121, 121, 227, 128, 111, 112, 123, 101,
- 102, 103, 82, 147, 1031, 56, 791, 138, 142, 384,
- 455, 386, 797, 90, 129, 115, 122, 121, 118, 119,
- 498, 456, 113, 468, 502, 470, 128, 1022, 142, 138,
- 144, 82, 57, 396, 479, 144, 951, 490, 210, 954,
- 138, 115, 142, 55, 118, 119, 146, 753, 148, 221,
- 222, 439, 440, 121, 296, 288, 90, 802, 9, 10,
- 142, 144, 304, 305, 15, 148, 312, 309, 753, 142,
- 147, 936, 146, 518, 148, 240, 90, 142, 273, 144,
- 240, 314, 277, 142, 142, 267, 540, 269, 142, 90,
- 142, 273, 90, 121, 507, 294, 121, 550, 543, 92,
- 948, 273, 142, 951, 250, 277, 954, 90, 956, 281,
- 282, 121, 92, 147, 286, 92, 1031, 317, 544, 125,
- 722, 293, 294, 273, 221, 222, 711, 277, 780, 301,
- 92, 92, 142, 147, 753, 90, 37, 38, 90, 52,
- 312, 121, 277, 90, 121, 144, 147, 853, 602, 147,
- 296, 58, 59, 772, 51, 861, 1004, 857, 55, 121,
- 121, 681, 142, 322, 147, 142, 117, 367, 394, 277,
- 92, 144, 397, 399, 346, 347, 348, 349, 350, 351,
- 352, 353, 829, 1031, 927, 1033, 453, 1035, 399, 1037,
- 548, 373, 147, 375, 346, 147, 312, 396, 370, 121,
- 147, 60, 785, 18, 63, 20, 119, 92, 92, 1057,
- 92, 16, 17, 439, 440, 20, 55, 92, 121, 391,
- 142, 92, 394, 55, 396, 397, 25, 399, 439, 440,
- 58, 59, 312, 293, 429, 670, 121, 121, 857, 121,
- 142, 301, 20, 721, 722, 951, 121, 429, 107, 54,
- 347, 348, 349, 350, 142, 708, 57, 429, 711, 454,
- 758, 312, 17, 18, 868, 869, 431, 439, 440, 434,
- 221, 222, 454, 115, 469, 138, 118, 119, 927, 429,
- 462, 397, 454, 478, 456, 457, 346, 469, 732, 101,
- 455, 351, 538, 465, 540, 496, 478, 469, 496, 74,
- 75, 473, 715, 498, 454, 470, 478, 502, 145, 115,
- 706, 483, 118, 119, 479, 793, 431, 397, 1024, 469,
- 141, 121, 367, 139, 506, 507, 780, 929, 478, 1035,
- 281, 282, 951, 515, 529, 954, 55, 532, 773, 784,
- 455, 786, 148, 515, 544, 142, 397, 542, 514, 514,
- 514, 101, 524, 518, 61, 470, 602, 64, 65, 505,
- 542, 92, 101, 498, 479, 800, 538, 267, 540, 269,
- 542, 142, 121, 286, 872, 873, 92, 549, 543, 612,
- 61, 294, 835, 64, 65, 121, 101, 762, 763, 764,
- 121, 766, 542, 768, 529, 51, 347, 348, 349, 350,
- 788, 352, 353, 518, 304, 121, 794, 795, 142, 116,
- 117, 846, 1031, 595, 129, 130, 131, 132, 133, 92,
- 655, 92, 538, 658, 540, 90, 839, 51, 543, 630,
- 602, 2, 630, 4, 1017, 116, 117, 142, 9, 10,
- 105, 676, 142, 142, 15, 16, 17, 51, 121, 20,
- 121, 929, 121, 115, 142, 515, 118, 119, 538, 51,
- 540, 99, 15, 13, 524, 16, 63, 649, 273, 142,
- 577, 142, 277, 655, 909, 140, 658, 659, 660, 144,
- 15, 52, 147, 396, 298, 145, 602, 538, 302, 540,
- 732, 145, 646, 139, 676, 66, 15, 669, 670, 681,
- 682, 655, 684, 142, 658, 1003, 457, 142, 15, 691,
- 898, 142, 44, 121, 679, 141, 16, 913, 141, 679,
- 15, 18, 602, 919, 141, 570, 721, 722, 141, 701,
- 139, 646, 798, 715, 780, 26, 702, 702, 702, 740,
- 655, 15, 587, 658, 139, 590, 117, 141, 119, 148,
- 139, 602, 465, 57, 142, 142, 782, 142, 142, 674,
- 473, 676, 788, 789, 939, 940, 941, 942, 794, 795,
- 483, 782, 669, 1018, 142, 15, 758, 788, 93, 14,
- 145, 90, 16, 794, 795, 15, 721, 90, 15, 394,
- 785, 146, 15, 142, 399, 101, 105, 142, 793, 90,
- 142, 773, 105, 785, 701, 142, 506, 507, 780, 781,
- 782, 142, 141, 785, 105, 115, 788, 789, 118, 119,
- 802, 786, 794, 795, 15, 131, 132, 133, 800, 801,
- 812, 140, 15, 815, 213, 785, 549, 140, 147, 210,
- 16, 220, 814, 139, 147, 817, 146, 138, 148, 140,
- 221, 222, 1027, 144, 826, 827, 147, 839, 793, 577,
- 15, 15, 834, 581, 780, 772, 142, 868, 869, 139,
- 126, 786, 898, 126, 846, 847, 55, 139, 257, 15,
- 55, 115, 487, 142, 118, 119, 15, 898, 142, 503,
- 872, 873, 62, 142, 64, 65, 510, 142, 870, 599,
- 780, 142, 273, 875, 142, 144, 277, 521, 144, 141,
- 281, 282, 146, 142, 148, 286, 90, 515, 669, 13,
- 817, 781, 293, 294, 6, 1020, 898, 772, 772, 780,
- 301, 105, 1022, 799, 929, 1019, 908, 909, 971, 115,
- 912, 252, 118, 119, 916, 927, 116, 117, 7, 649,
- 701, 577, 948, 90, 870, 268, -1, 571, 572, 875,
- 951, -1, 62, 26, 64, 65, 140, 346, 105, -1,
- 146, -1, 148, 147, -1, 346, 347, 348, 349, 350,
- 351, 352, 353, 984, -1, -1, 984, 601, 877, 878,
- 870, -1, -1, 90, -1, 875, 912, -1, 377, 370,
- -1, -1, 974, 140, 976, -1, 706, 979, 105, -1,
- 147, -1, 857, -1, 859, 715, 116, 117, 863, 870,
- 391, 1003, 1017, 394, 875, 396, 115, 90, 399, 118,
- 119, -1, 912, -1, -1, 1017, -1, 1019, 1020, -1,
- -1, 948, 105, 140, 951, 1017, -1, 954, -1, 956,
- 147, -1, -1, 1018, 772, -1, 145, 146, 429, 148,
- -1, 912, 951, -1, 678, -1, 817, 1017, 439, 440,
- -1, -1, -1, 37, 38, 138, 681, 140, -1, 26,
- -1, 144, -1, 454, 147, 456, 457, -1, 801, 934,
- 935, -1, -1, -1, 465, 474, 475, 1004, 469, -1,
- -1, 814, 473, 1018, 26, -1, -1, 478, -1, 954,
- -1, 956, 483, 826, 827, -1, -1, 731, 1007, 1008,
- 1009, 834, 1011, 1012, 1031, -1, 1033, -1, 1035, -1,
- 1037, -1, -1, -1, 847, 749, -1, -1, 26, 839,
- -1, 26, -1, 90, 515, 524, 991, -1, -1, 994,
- 1057, 115, 531, 524, 118, 119, 115, -1, 105, 118,
- 119, -1, 1051, 1052, 1053, 1054, 439, 440, 90, 9,
- 10, 542, 1061, -1, -1, 15, 16, 17, 549, -1,
- 20, 1026, 146, 105, 148, -1, 1031, 146, 1033, 148,
- -1, 138, 1037, 140, -1, 908, -1, 144, 471, 472,
- 147, -1, 90, 916, -1, 90, -1, 47, 48, 49,
- 50, -1, 1057, -1, 54, 55, 138, 105, 140, 90,
- 105, -1, 144, -1, 838, 147, 66, 67, 90, -1,
- 948, -1, -1, 951, 105, -1, 954, -1, 956, -1,
- 854, -1, -1, 105, -1, -1, 519, -1, -1, -1,
- 138, -1, 140, 138, -1, 140, 144, -1, -1, 147,
- -1, 974, 147, 976, -1, -1, 979, -1, 90, 140,
- -1, 51, 52, -1, -1, 55, 147, 117, 140, 63,
- 64, 65, -1, 105, -1, 147, 1004, -1, -1, 668,
- 70, 71, 72, 73, 74, 75, 76, 77, 669, 670,
- 80, 81, -1, -1, -1, -1, 86, 87, 88, 89,
- -1, -1, -1, 1031, -1, 1033, -1, 1035, 140, 1037,
- 100, 101, 102, 90, -1, 147, 90, 706, 90, -1,
- 701, -1, 116, 117, -1, -1, -1, -1, 105, 1057,
- -1, 105, -1, 105, 124, 125, 126, 127, 128, 129,
- 130, 131, 132, 133, -1, 135, 136, 51, -1, 53,
- 54, 55, 56, 143, 144, -1, 51, -1, 53, 54,
- 55, 56, -1, 140, -1, 69, 140, 90, 140, -1,
- 147, 221, 222, 147, 69, 147, 2, -1, 4, 5,
- 6, 51, 105, 53, 54, 55, 56, 13, -1, -1,
- -1, -1, 773, 40, 41, 42, 43, 44, -1, 69,
- 781, 782, -1, -1, 785, -1, -1, 788, 789, 259,
- 260, 261, 262, 794, 795, 804, -1, 140, -1, 800,
- 801, -1, 90, 273, 147, -1, 52, 277, -1, -1,
- 56, 281, 282, 814, -1, 90, 817, 105, 142, 51,
- 829, 53, 54, 55, 56, 826, 827, 142, -1, -1,
- 105, -1, -1, 834, -1, -1, 82, 69, -1, -1,
- 63, 64, 65, -1, -1, 846, 847, -1, -1, 63,
- 64, 65, 140, 85, -1, -1, -1, 115, -1, 147,
- 118, 119, 94, -1, -1, 140, -1, -1, 100, 101,
- 102, 103, 147, 119, 63, 64, 65, 347, 348, 349,
- 350, -1, 352, 353, 142, 788, 789, -1, 146, -1,
- 148, 794, 795, 116, 117, -1, 128, 898, -1, 131,
- -1, 371, 116, 117, 913, -1, -1, 908, 909, -1,
- 919, -1, 382, -1, -1, 916, -1, 820, 821, -1,
- 823, 824, -1, -1, 394, -1, -1, 116, 117, 399,
- 400, 401, 402, 403, 404, 405, 406, 407, 408, 409,
- 410, 411, 412, 413, -1, 415, 416, 417, 418, 419,
- 420, 421, 422, 423, 424, 425, 426, -1, -1, 429,
- 63, 64, 65, -1, 210, -1, 63, 64, 65, 439,
- 440, -1, -1, 974, -1, 976, -1, -1, 979, -1,
- -1, 63, 64, 65, 454, -1, 51, 457, 53, 54,
- 55, 56, 63, 64, 65, 898, -1, 467, -1, 469,
- -1, 471, 472, -1, 69, -1, -1, -1, 478, 88,
- 89, -1, -1, 116, 117, -1, 1017, 487, 921, 116,
- 117, 491, 101, -1, -1, 495, -1, -1, 498, 94,
- 500, -1, 502, 503, 116, 117, 101, 102, 103, -1,
- 286, -1, -1, -1, -1, 116, 117, 293, 294, 519,
- 129, 130, 131, 132, 133, 301, -1, -1, -1, 529,
- -1, -1, 532, 128, -1, -1, 312, -1, -1, -1,
- -1, -1, 542, -1, -1, -1, -1, -1, 51, -1,
- 53, 54, 55, 56, -1, -1, -1, -1, 558, 559,
- 2, -1, 4, 5, 6, 7, 69, -1, -1, -1,
- 346, 13, -1, -1, 574, 351, -1, -1, -1, -1,
- -1, -1, -1, 51, -1, 53, 54, 55, 56, -1,
- -1, 94, -1, 593, 370, -1, 596, 100, 101, 102,
- 103, 69, -1, -1, -1, -1, -1, -1, -1, -1,
- 52, -1, -1, -1, 56, 391, -1, -1, 121, -1,
- 396, 397, -1, 399, -1, 128, 94, -1, 131, -1,
- -1, -1, 100, 51, -1, 53, 54, 55, 56, -1,
- 82, 144, -1, 51, -1, 53, 54, 55, 56, -1,
- -1, 69, -1, 51, -1, 53, 54, 55, 56, -1,
- -1, 69, -1, 439, 440, -1, -1, -1, -1, 669,
- -1, 69, -1, -1, -1, -1, 94, 119, -1, -1,
- 456, 681, 100, 101, 102, 103, 94, -1, -1, 465,
- -1, -1, 100, 101, 102, 103, 94, 473, -1, -1,
- -1, 701, 100, 101, 102, 103, -1, 483, -1, -1,
- 128, -1, 712, 131, 51, -1, 53, 54, 55, 56,
- 128, 721, 722, 131, -1, -1, 144, -1, -1, -1,
- 128, -1, 69, 131, -1, -1, 144, -1, -1, 515,
- -1, -1, -1, -1, 142, -1, -1, 51, 524, 53,
- 54, 55, 56, -1, -1, -1, 2, 94, 4, -1,
- -1, -1, 538, 100, 540, 69, -1, 13, 210, -1,
- -1, -1, -1, 549, -1, -1, -1, 777, -1, -1,
- -1, -1, 782, 783, -1, 785, -1, -1, 788, 789,
- 94, -1, -1, 793, 794, 795, -1, 51, -1, 53,
- 54, 55, 56, -1, -1, -1, 52, -1, -1, -1,
- -1, -1, -1, -1, -1, 69, -1, 817, -1, -1,
- 820, 821, -1, 823, 824, -1, 602, -1, -1, -1,
- -1, 85, -1, 833, -1, -1, -1, -1, 838, -1,
- 94, -1, -1, -1, 286, -1, 100, 101, 102, 103,
- -1, 293, 294, -1, -1, 855, -1, -1, -1, 301,
- -1, -1, -1, -1, -1, -1, 866, -1, -1, -1,
- 312, 88, 89, 119, 128, -1, -1, 131, -1, -1,
- -1, 881, -1, -1, 101, -1, -1, -1, -1, -1,
- -1, 891, 892, -1, 670, -1, -1, -1, 898, -1,
- -1, -1, 44, -1, 346, -1, -1, -1, -1, 351,
- -1, 128, 129, 130, 131, 132, 133, 2, -1, 4,
- -1, 921, -1, -1, -1, -1, -1, -1, 370, 929,
+ 2, 27, 69, 284, 89, 87, 88, 28, 66, 271,
+ 2, 10, 4, 5, 6, 487, 15, 9, 10, 21,
+ 7, 13, 52, 15, 16, 17, 7, 22, 20, 82,
+ 16, 17, 4, 14, 20, 215, 478, 543, 313, 400,
+ 5, 6, 222, 222, 56, 14, 752, 28, 13, 15,
+ 440, 441, 54, 55, 16, 17, 430, 306, 20, 28,
+ 52, 310, 21, 22, 56, 590, 504, 778, 376, 75,
+ 587, 58, 74, 75, 66, 75, 2, 58, 4, 259,
+ 118, 455, 16, 17, 52, 330, 20, 25, 295, 318,
+ 82, 56, 54, 55, 371, 685, 938, 535, 472, 605,
+ 27, 29, 963, 69, 662, 663, 696, 481, 500, 111,
+ 105, 25, 504, 0, 26, 392, 122, 82, 16, 17,
+ 57, 331, 20, 26, 334, 117, 336, 119, 338, 91,
+ 340, 60, 61, 62, 63, 79, 218, 25, 269, 368,
+ 271, 25, 587, 51, 90, 590, 105, 229, 593, 25,
+ 103, 119, 111, 112, 144, 25, 54, 55, 138, 25,
+ 25, 61, 797, 60, 64, 65, 63, 347, 803, 55,
+ 129, 545, 90, 92, 305, 128, 121, 16, 17, 1040,
+ 457, 20, 126, 28, 121, 113, 121, 105, 115, 1031,
+ 397, 118, 119, 101, 102, 103, 90, 142, 378, 51,
+ 90, 147, 121, 55, 142, 400, 144, 289, 214, 142,
+ 107, 213, 214, 213, 214, 54, 116, 117, 210, 146,
+ 128, 148, 140, 142, 223, 224, 138, 90, 142, 147,
+ 297, 223, 224, 315, 92, 138, 121, 943, 305, 306,
+ 757, 144, 105, 310, 90, 440, 441, 509, 90, 960,
+ 808, 144, 963, 147, 142, 242, 144, 147, 142, 105,
+ 313, 242, 18, 90, 20, 295, 142, 269, 543, 271,
+ 125, 428, 142, 275, 57, 432, 142, 142, 435, 55,
+ 786, 121, 90, 275, 147, 92, 252, 279, 726, 275,
+ 55, 283, 284, 279, 140, 287, 90, 477, 478, 456,
+ 25, 147, 294, 295, 142, 147, 90, 20, 553, 90,
+ 302, 105, 757, 275, 471, 57, 473, 279, 547, 287,
+ 147, 313, 142, 684, 138, 482, 101, 295, 90, 1040,
+ 605, 297, 115, 725, 726, 118, 119, 395, 863, 147,
+ 123, 551, 400, 145, 934, 279, 140, 527, 313, 348,
+ 349, 350, 351, 147, 534, 347, 348, 349, 350, 351,
+ 352, 353, 354, 147, 521, 148, 147, 397, 294, 92,
+ 90, 385, 374, 387, 376, 347, 302, 508, 509, 371,
+ 92, 279, 440, 441, 92, 147, 398, 61, 121, 546,
+ 64, 65, 141, 835, 323, 139, 673, 55, 121, 142,
+ 392, 37, 38, 395, 794, 397, 398, 799, 400, 121,
+ 800, 801, 92, 121, 101, 101, 454, 791, 863, 142,
+ 865, 347, 867, 92, 869, 101, 352, 147, 430, 397,
+ 142, 9, 10, 398, 715, 92, 275, 15, 430, 121,
+ 279, 121, 116, 117, 430, 131, 132, 133, 440, 441,
+ 142, 432, 121, 455, 435, 763, 658, 719, 121, 661,
+ 51, 463, 934, 455, 121, 457, 458, 90, 430, 455,
+ 472, 602, 498, 432, 92, 456, 468, 679, 142, 481,
+ 472, 142, 105, 142, 476, 142, 472, 736, 541, 481,
+ 543, 671, 473, 455, 486, 481, 517, 456, 936, 92,
+ 468, 482, 779, 121, 51, 92, 508, 509, 476, 142,
+ 472, 786, 793, 51, 473, 905, 518, 140, 486, 481,
+ 121, 652, 142, 482, 147, 92, 518, 587, 121, 806,
+ 51, 711, 711, 615, 121, 527, 517, 99, 500, 117,
+ 521, 507, 504, 545, 936, 58, 59, 15, 517, 541,
+ 92, 543, 605, 545, 121, 142, 395, 92, 1003, 545,
+ 552, 400, 521, 13, 62, 546, 64, 65, 92, 850,
+ 532, 879, 880, 535, 851, 142, 541, 121, 543, 121,
+ 711, 121, 844, 545, 552, 577, 121, 546, 719, 440,
+ 441, 577, 518, 788, 16, 368, 598, 121, 63, 794,
+ 15, 527, 500, 139, 596, 800, 801, 633, 115, 92,
+ 596, 118, 119, 605, 2, 145, 4, 145, 116, 117,
+ 92, 9, 10, 474, 475, 58, 59, 15, 16, 17,
+ 810, 142, 20, 790, 532, 792, 17, 18, 121, 916,
+ 605, 148, 142, 299, 26, 223, 224, 303, 15, 121,
+ 652, 490, 1026, 15, 649, 835, 658, 875, 876, 661,
+ 662, 663, 587, 658, 52, 590, 661, 92, 142, 736,
+ 44, 522, 115, 672, 121, 118, 119, 679, 66, 141,
+ 672, 673, 684, 685, 141, 115, 707, 689, 118, 119,
+ 649, 63, 64, 65, 696, 682, 121, 757, 15, 658,
+ 18, 682, 661, 141, 1012, 283, 284, 706, 90, 141,
+ 905, 121, 122, 844, 706, 139, 15, 719, 677, 804,
+ 679, 139, 141, 105, 90, 62, 707, 64, 65, 117,
+ 788, 119, 139, 786, 90, 90, 794, 795, 707, 105,
+ 920, 920, 800, 801, 116, 117, 926, 926, 142, 105,
+ 105, 1032, 44, 767, 768, 769, 138, 771, 140, 773,
+ 57, 763, 144, 725, 726, 147, 142, 142, 90, 142,
+ 348, 349, 350, 351, 140, 353, 354, 142, 144, 116,
+ 117, 147, 580, 105, 140, 140, 584, 779, 44, 791,
+ 16, 147, 147, 15, 786, 787, 788, 93, 858, 791,
+ 573, 14, 794, 795, 15, 791, 808, 867, 800, 801,
+ 15, 792, 145, 142, 806, 807, 818, 590, 140, 821,
+ 593, 786, 210, 142, 823, 147, 16, 725, 820, 791,
+ 142, 823, 757, 792, 142, 223, 224, 799, 142, 807,
+ 832, 833, 844, 15, 15, 684, 141, 905, 840, 505,
+ 139, 15, 820, 778, 778, 15, 512, 15, 90, 851,
+ 852, 787, 139, 142, 832, 833, 126, 126, 524, 16,
+ 1027, 115, 840, 105, 118, 119, 55, 879, 880, 15,
+ 458, 139, 55, 15, 852, 877, 141, 275, 142, 115,
+ 882, 279, 118, 119, 142, 283, 284, 142, 980, 287,
+ 960, 799, 146, 142, 148, 142, 294, 295, 140, 580,
+ 144, 142, 877, 905, 302, 147, 142, 882, 574, 575,
+ 146, 142, 148, 915, 916, 115, 144, 919, 118, 119,
+ 142, 923, 934, 947, 948, 949, 950, 518, 863, 6,
+ 13, 1029, 778, 794, 795, 1031, 805, 915, 604, 800,
+ 801, 1028, 254, 7, 919, 923, 146, 960, 148, 347,
+ 348, 349, 350, 351, 352, 353, 354, 993, 115, 884,
+ 885, 118, 119, 1033, 936, 826, 827, 580, 829, 830,
+ 778, 957, -1, 371, 1044, -1, -1, 2, -1, 4,
+ -1, 983, -1, 985, -1, -1, 988, -1, 13, 146,
+ -1, 148, -1, -1, 392, 778, -1, 395, -1, 397,
+ 1012, 16, 400, -1, -1, 983, 90, 985, -1, 101,
+ 988, -1, 1036, -1, 1026, 681, 1028, 1029, 63, 64,
+ 65, 105, -1, 957, 1026, 960, 960, 52, 963, 963,
+ 1026, 965, 430, 37, 38, 960, 1027, 129, 130, 131,
+ 132, 133, 440, 441, 905, 63, 64, 65, 51, 26,
+ 53, 54, 55, 56, 1026, -1, 140, 455, 1027, 457,
+ 458, -1, -1, 147, -1, -1, 69, 928, -1, 735,
+ 468, 116, 117, -1, 472, -1, -1, -1, 476, 1013,
+ 863, -1, 865, 481, 672, -1, 869, 753, 486, -1,
+ -1, 1016, 1017, 1018, 119, 1020, 1021, 778, 116, 117,
+ 115, -1, -1, 118, 119, 1040, 1040, 26, 1042, -1,
+ 1044, 115, 1046, 90, 118, 119, -1, -1, 706, -1,
+ 518, -1, 51, -1, 53, 54, 55, 56, 105, 527,
+ -1, 146, 1066, 148, -1, 1060, 1061, 1062, 1063, 142,
+ 69, -1, 146, -1, 148, 1070, -1, 545, -1, 957,
+ 90, 90, 960, -1, 552, 963, -1, 965, 941, 942,
+ -1, 138, -1, 140, -1, 105, 105, 144, -1, -1,
+ 147, 90, 90, 90, -1, 26, 26, 843, -1, 577,
+ 963, -1, 965, -1, -1, 210, 105, 105, 105, 26,
+ -1, -1, -1, 859, -1, -1, -1, -1, 596, -1,
+ 140, 140, -1, 9, 10, 1013, -1, 147, 147, 15,
+ 16, 17, -1, 142, 20, -1, 90, 1000, -1, 138,
+ 1003, 140, 140, 140, -1, 144, -1, -1, 147, 147,
+ 147, 105, 1040, -1, 1042, 823, 1044, -1, 1046, 90,
+ 90, 47, 48, 49, 50, 63, 64, 65, 54, 55,
+ -1, -1, 1035, 90, 105, 105, -1, 1040, 1066, 1042,
+ 66, 67, 287, 1046, -1, -1, 140, -1, 105, 294,
+ 295, -1, -1, 147, 672, 673, 957, 302, -1, 960,
+ -1, -1, 963, 1066, 965, -1, -1, 138, 138, 140,
+ 140, -1, -1, 144, 144, -1, 147, 147, 116, 117,
+ -1, 138, 51, 140, 53, 54, 55, 56, 706, -1,
+ 147, 117, -1, -1, -1, 63, 64, 65, -1, -1,
+ 69, -1, 347, 63, 64, 65, -1, 352, -1, -1,
+ -1, -1, 1013, 63, 64, 65, -1, -1, 63, 64,
+ 65, -1, -1, -1, -1, 94, 371, -1, -1, -1,
+ -1, 100, 101, 102, 103, -1, -1, -1, -1, 1040,
+ -1, 1042, -1, 1044, -1, 1046, -1, 392, 116, 117,
+ -1, -1, 397, -1, -1, 400, 116, 117, -1, 128,
+ 115, 779, 131, 118, 119, 1066, 116, 117, -1, 787,
+ 788, 116, 117, 791, -1, 144, 794, 795, -1, -1,
+ -1, -1, 800, 801, -1, -1, -1, -1, 806, 807,
+ 145, 146, -1, 148, -1, 440, 441, 223, 224, -1,
+ -1, -1, 820, 88, 89, 823, 51, -1, 53, 54,
+ 55, 56, 457, -1, 832, 833, 101, 40, 41, 42,
+ 43, 44, 840, 468, 69, -1, -1, -1, -1, -1,
+ -1, 476, 44, 851, 852, 261, 262, 263, 264, -1,
+ -1, 486, -1, 128, 129, 130, 131, 132, 133, 275,
+ -1, -1, 115, 279, -1, 118, 119, 283, 284, -1,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, -1, -1, -1, -1, 88, 89, -1, 391,
- -1, -1, -1, -1, 396, 397, -1, -1, -1, 101,
- -1, -1, -1, -1, 210, -1, -1, 52, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 82, 83, -1, 518, -1, -1, 88, 89, -1, 142,
+ -1, -1, 527, 146, -1, 148, -1, 905, -1, 101,
+ -1, 51, -1, 53, 54, 55, 56, 915, 916, -1,
+ 115, -1, -1, 118, 119, 923, -1, 552, -1, 69,
122, -1, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, -1, -1, -1, -1, -1, 773, -1, -1,
- 142, -1, -1, -1, 780, 781, 782, -1, -1, -1,
- -1, -1, 788, -1, 456, -1, -1, 1017, 794, 795,
- -1, -1, -1, 465, 800, 801, -1, -1, -1, -1,
- -1, 473, -1, -1, 119, -1, -1, -1, 814, -1,
- 286, 483, -1, -1, -1, -1, -1, 293, 294, -1,
- 826, 827, -1, -1, -1, 301, -1, -1, 834, -1,
- -1, 51, -1, 53, 54, 55, 56, -1, -1, -1,
- 846, 847, -1, 515, -1, -1, 88, 89, -1, 69,
- -1, -1, 524, -1, -1, -1, -1, -1, -1, 101,
- -1, -1, -1, -1, 870, -1, 538, -1, 540, 875,
- 346, -1, -1, -1, 94, 351, -1, 549, -1, -1,
- 100, 101, 102, 103, 126, 127, 128, 129, 130, 131,
- 132, 133, 898, -1, 370, 210, 72, 73, 74, 75,
- 76, 77, 908, 909, 80, 81, 912, -1, 128, -1,
- 916, 131, 88, 89, -1, 391, -1, -1, -1, -1,
- 396, -1, -1, 399, -1, 101, -1, -1, -1, -1,
- 602, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, -1, -1,
- -1, -1, -1, 439, 440, -1, -1, -1, 974, -1,
- 976, 286, -1, 979, -1, -1, -1, -1, 293, 294,
- 456, -1, -1, -1, -1, -1, 301, -1, -1, 465,
- -1, -1, -1, -1, -1, -1, -1, 473, 670, -1,
- 0, -1, -1, -1, -1, -1, -1, 483, -1, -1,
- -1, -1, -1, 13, 14, 15, 16, 17, 18, -1,
- 20, -1, -1, -1, -1, -1, 26, 27, -1, -1,
- -1, 346, -1, -1, -1, -1, 351, 37, 38, 515,
- 40, 41, 42, 43, 44, -1, -1, -1, 524, -1,
- -1, -1, -1, -1, -1, 370, -1, -1, -1, -1,
+ 132, 133, 348, 349, 350, 351, -1, 353, 354, -1,
+ 142, 146, -1, 148, 94, -1, -1, -1, -1, -1,
+ 100, 101, 102, 103, -1, -1, 372, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 383, -1, -1,
+ -1, -1, -1, -1, -1, 983, -1, 985, 128, 395,
+ 988, 131, -1, -1, 400, 401, 402, 403, 404, 405,
+ 406, 407, 408, 409, 410, 411, 412, 413, 414, -1,
+ 416, 417, 418, 419, 420, 421, 422, 423, 424, 425,
+ 426, 427, -1, -1, 430, -1, -1, 51, 1026, 53,
+ 54, 55, 56, -1, 440, 441, -1, 51, -1, 53,
+ 54, 55, 56, -1, -1, 69, -1, -1, 673, 455,
+ -1, -1, 458, -1, 51, 69, 53, 54, 55, 56,
+ -1, -1, -1, -1, 470, -1, 472, -1, 474, 475,
+ 94, -1, 69, -1, -1, 481, 100, -1, -1, -1,
+ 94, -1, -1, -1, 490, -1, 100, 493, -1, -1,
+ -1, 497, -1, -1, 500, -1, 502, 94, 504, 505,
+ 88, 89, -1, 100, 101, 102, 103, 2, -1, 4,
+ 5, 6, -1, 101, -1, -1, 522, 51, 13, 53,
+ 54, 55, 56, -1, 121, -1, 532, -1, -1, 535,
+ -1, 128, -1, -1, 131, 69, -1, -1, -1, 545,
+ -1, 129, 130, 131, 132, 133, -1, 144, 51, -1,
+ 53, 54, 55, 56, 779, 561, 562, 52, -1, -1,
+ 94, 56, 787, 788, -1, -1, 69, -1, -1, 794,
+ -1, 577, -1, -1, -1, 800, 801, -1, -1, -1,
+ -1, 806, 807, -1, -1, -1, -1, 82, -1, -1,
+ 596, 94, -1, 599, -1, 820, -1, 100, 101, 102,
+ 103, -1, -1, -1, 88, 89, -1, 832, 833, -1,
+ -1, -1, -1, -1, -1, 840, -1, 101, -1, -1,
+ -1, -1, -1, -1, 119, 128, 851, 852, 131, -1,
+ -1, -1, -1, -1, 51, -1, 53, 54, 55, 56,
+ -1, 144, 126, 127, 128, 129, 130, 131, 132, 133,
+ -1, -1, 69, -1, -1, -1, 51, -1, 53, 54,
+ 55, 56, -1, -1, -1, -1, 672, -1, -1, -1,
+ -1, -1, -1, -1, 69, -1, -1, 94, 684, -1,
+ 905, 687, 688, 100, 101, 102, 103, -1, -1, -1,
+ 915, 916, -1, 2, 919, 4, 5, 6, 923, 94,
+ 706, -1, -1, -1, 13, -1, 101, 102, 103, -1,
+ 716, 128, -1, -1, 131, 210, -1, -1, -1, 725,
+ 726, -1, -1, -1, 0, 142, -1, -1, -1, -1,
+ -1, -1, -1, 128, -1, -1, -1, 13, 14, 15,
+ 16, 17, 18, 52, 20, -1, -1, 56, -1, -1,
+ 26, 27, -1, -1, -1, -1, -1, -1, 983, -1,
+ 985, 37, 38, 988, 40, 41, 42, 43, 44, -1,
+ -1, -1, -1, 82, -1, -1, -1, 783, -1, -1,
+ -1, -1, 788, 789, -1, 791, -1, -1, 794, 795,
+ -1, -1, 287, 799, 800, 801, -1, -1, -1, 294,
+ 295, -1, -1, -1, -1, -1, -1, 302, -1, -1,
+ 119, -1, -1, -1, 90, -1, -1, 823, 313, -1,
+ 826, 827, -1, 829, 830, -1, -1, -1, -1, 105,
+ -1, -1, -1, 839, -1, -1, -1, 843, -1, 115,
+ -1, -1, 118, 119, -1, -1, -1, -1, -1, -1,
+ -1, -1, 347, -1, 860, 861, -1, 352, -1, -1,
+ -1, -1, 138, 139, -1, -1, 872, 873, 144, 145,
+ 146, 147, 148, -1, -1, -1, 371, -1, -1, -1,
+ -1, -1, 888, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 898, 899, -1, -1, -1, 392, -1, 905,
+ -1, 210, 397, 398, -1, 400, -1, 51, -1, 53,
+ 54, 55, 56, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 928, -1, -1, 69, -1, -1, -1, -1,
+ 936, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 85, -1, -1, -1, 440, 441, -1, -1, -1,
+ 94, -1, -1, -1, -1, -1, 100, 101, 102, 103,
+ -1, -1, 457, -1, 2, -1, 4, 5, 6, -1,
+ -1, -1, -1, 468, -1, 13, -1, -1, 287, -1,
+ -1, 476, -1, -1, 128, 294, 295, 131, -1, -1,
+ -1, 486, -1, 302, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 313, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 52, -1, -1, -1, 56, -1,
+ 1026, -1, -1, 518, -1, -1, -1, -1, -1, -1,
+ -1, -1, 527, -1, -1, 44, -1, -1, 347, -1,
+ -1, -1, -1, 352, 82, -1, 541, -1, 543, -1,
+ -1, -1, -1, -1, -1, -1, -1, 552, -1, -1,
+ -1, -1, 371, 72, 73, 74, 75, 76, 77, 78,
+ 79, 80, 81, 82, 83, -1, -1, -1, -1, 88,
+ 89, 119, -1, 392, -1, -1, -1, -1, 397, 398,
+ -1, 400, 101, 51, -1, 53, 54, 55, 56, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 549, -1, -1, 391, -1, -1, -1,
- -1, 396, -1, -1, 399, -1, -1, -1, -1, -1,
- 90, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 773, -1, -1, -1, 105, -1, -1, 780, 781,
- -1, -1, -1, -1, -1, 115, -1, -1, 118, 119,
- -1, -1, -1, -1, 439, 440, -1, -1, 800, 801,
- -1, -1, -1, -1, -1, -1, -1, -1, 138, 139,
- -1, 456, 814, -1, 144, 145, 146, 147, 148, -1,
- 465, -1, -1, -1, 826, 827, -1, -1, 473, -1,
- -1, -1, 834, -1, -1, -1, -1, -1, 483, -1,
- -1, -1, -1, -1, 846, 847, -1, -1, -1, -1,
+ 605, 69, -1, 122, -1, 124, 125, 126, 127, 128,
+ 129, 130, 131, 132, 133, -1, -1, 85, -1, -1,
+ -1, 440, 441, -1, -1, -1, 94, -1, -1, -1,
+ -1, -1, 100, 101, 102, 103, -1, -1, 457, -1,
+ 2, -1, 4, 5, 6, 7, -1, -1, -1, 468,
+ -1, 13, -1, -1, -1, -1, -1, 476, -1, -1,
+ 128, -1, 210, 131, -1, -1, -1, 486, 673, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 51, 52, 670, -1, 55, -1, 870, -1,
- 515, -1, -1, 875, -1, -1, -1, -1, -1, 524,
- -1, 70, 71, 72, 73, 74, 75, 76, 77, -1,
- -1, 80, 81, -1, -1, -1, -1, 86, 87, 88,
- 89, -1, -1, -1, 549, -1, 908, 909, -1, -1,
- 912, 100, 101, 102, 916, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 124, 125, 126, 127, 128,
- 129, 130, 131, 132, 133, -1, 135, 136, -1, -1,
- -1, -1, -1, -1, 143, 144, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 773, -1, -1,
- -1, -1, 974, -1, 976, 781, 782, 979, -1, -1,
- 51, 52, 788, -1, 55, -1, -1, -1, 794, 795,
- -1, -1, -1, -1, 800, 801, -1, -1, -1, 70,
- 71, 72, 73, 74, 75, 76, 77, -1, 814, 80,
- 81, -1, -1, -1, -1, 86, 87, 88, 89, -1,
- 826, 827, -1, -1, -1, 670, -1, -1, 834, 100,
- 101, 102, -1, -1, -1, -1, -1, -1, -1, -1,
- 846, 847, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 124, 125, 126, 127, 128, 129, 130,
- 131, 132, 133, -1, 135, 136, 72, 73, 74, 75,
- 76, 77, 143, 144, 80, 81, -1, -1, -1, -1,
- -1, -1, 88, 89, -1, -1, -1, -1, -1, -1,
- -1, -1, 898, -1, -1, 101, -1, -1, -1, -1,
- -1, -1, 908, 909, -1, -1, 912, -1, -1, -1,
- 916, -1, -1, -1, -1, -1, -1, -1, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, 773, -1,
- -1, -1, -1, -1, -1, -1, 781, 782, -1, -1,
- -1, -1, -1, 788, -1, -1, -1, -1, -1, 794,
- 795, -1, -1, -1, -1, 800, 801, -1, 72, 73,
- 74, 75, 76, 77, 78, -1, 80, 81, 974, 814,
- 976, -1, -1, 979, 88, 89, -1, -1, -1, -1,
- -1, 826, 827, -1, -1, -1, -1, 101, -1, 834,
- -1, -1, 44, -1, -1, -1, -1, -1, -1, -1,
- -1, 846, 847, -1, -1, -1, -1, -1, -1, -1,
- 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, -1, -1, -1, -1, 88, 89, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 101,
- -1, -1, -1, 898, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 908, 909, -1, -1, -1, -1, -1,
- 122, 916, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 0, 1, -1, 3, 4, 5, 6, 7, 8,
- 9, 10, 11, 12, -1, -1, -1, -1, -1, -1,
- 19, -1, 21, 22, 23, 24, -1, -1, -1, -1,
- -1, 30, 31, 32, 33, 34, 35, 36, -1, 974,
- 39, 976, -1, -1, 979, -1, 45, 46, 47, 48,
- 49, 50, 51, 52, 53, 54, 55, 56, -1, 58,
- 59, 60, -1, -1, 63, -1, -1, 66, 67, -1,
- 69, 70, 71, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 84, 85, -1, -1, -1,
- -1, -1, 91, -1, -1, 94, 95, -1, 97, 98,
- -1, 100, -1, -1, -1, 104, -1, 106, 107, 108,
- -1, 110, 111, 112, 0, 114, 115, -1, -1, 118,
- 119, -1, -1, -1, -1, -1, -1, 13, 14, 15,
- 16, 17, 18, -1, 20, 134, 135, 136, -1, -1,
- -1, 27, 28, 29, -1, -1, -1, 146, -1, 148,
- -1, 37, 38, -1, 40, 41, 42, 43, 44, -1,
+ 52, -1, -1, -1, 56, -1, -1, -1, -1, 518,
+ -1, -1, -1, -1, -1, -1, -1, -1, 527, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 57, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 72, 73, 74, 75,
- 76, 77, 78, 79, 80, 81, 82, 83, -1, -1,
- -1, -1, 88, 89, 90, -1, -1, 93, -1, -1,
- -1, -1, -1, 99, -1, 101, -1, -1, -1, 105,
- -1, -1, -1, -1, -1, -1, -1, 113, -1, 115,
- -1, -1, 118, 119, -1, -1, 122, 123, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, -1, -1,
- 0, -1, -1, 139, 140, 141, 142, -1, -1, 145,
- 146, 147, 148, 13, 14, 15, 16, 17, 18, -1,
- 20, -1, -1, -1, -1, -1, 26, 27, 28, -1,
- -1, -1, -1, -1, -1, -1, -1, 37, 38, -1,
- 40, 41, 42, 43, 44, -1, -1, -1, -1, -1,
+ 82, -1, 541, -1, 543, -1, -1, -1, -1, -1,
+ -1, -1, -1, 552, -1, -1, -1, -1, -1, 287,
+ -1, -1, -1, -1, -1, -1, 294, 295, -1, -1,
+ -1, -1, -1, -1, 302, -1, -1, 119, -1, -1,
+ -1, -1, -1, -1, -1, 313, -1, -1, -1, -1,
+ -1, -1, -1, -1, 779, -1, -1, -1, -1, -1,
+ -1, 786, 787, 788, -1, -1, 605, -1, -1, 794,
+ -1, -1, -1, -1, -1, 800, 801, -1, -1, 347,
+ -1, 806, 807, -1, 352, 72, 73, 74, 75, 76,
+ 77, 78, -1, 80, 81, 820, -1, -1, -1, -1,
+ -1, 88, 89, 371, -1, -1, -1, 832, 833, -1,
+ -1, -1, -1, -1, 101, 840, -1, -1, -1, -1,
+ -1, -1, -1, -1, 392, -1, 851, 852, 210, 397,
+ 398, -1, 400, -1, 673, -1, -1, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133, -1, -1, -1,
+ -1, -1, 877, -1, -1, -1, -1, 882, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 440, 441, -1, -1, -1, -1, -1, -1,
+ 905, -1, -1, -1, -1, -1, -1, -1, -1, 457,
+ 915, 916, -1, -1, 919, -1, -1, -1, 923, -1,
+ 468, -1, -1, -1, -1, 287, -1, -1, 476, -1,
+ -1, -1, 294, 295, -1, -1, -1, -1, 486, -1,
+ 302, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 313, -1, -1, -1, -1, -1, -1, -1, -1,
+ 779, -1, -1, -1, -1, -1, -1, 786, 787, 788,
+ 518, -1, -1, -1, -1, 794, -1, -1, 983, 527,
+ 985, 800, 801, 988, -1, 347, -1, 806, 807, -1,
+ 352, -1, -1, 541, -1, 543, -1, -1, -1, -1,
+ -1, 820, -1, -1, 552, -1, -1, -1, -1, 371,
+ -1, -1, -1, 832, 833, -1, -1, -1, -1, -1,
+ -1, 840, -1, -1, -1, -1, -1, -1, -1, -1,
+ 392, -1, 851, 852, -1, 397, 398, -1, -1, -1,
+ -1, -1, -1, 2, -1, 4, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 605, 877, -1,
+ -1, -1, -1, 882, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 72, 73, 74, 75, 76, 77,
+ 78, 79, 80, 81, 82, 83, 905, -1, -1, -1,
+ 88, 89, -1, 52, -1, 457, 915, 916, -1, -1,
+ 919, -1, -1, 101, 923, -1, 468, -1, -1, -1,
+ -1, -1, -1, 44, 476, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 486, 673, 124, 125, 126, 127,
+ 128, 129, 130, 131, 132, 133, -1, -1, -1, -1,
+ -1, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 83, -1, -1, -1, 518, 88, 89, -1,
+ 119, -1, -1, -1, 983, 527, 985, -1, -1, 988,
+ 101, -1, -1, -1, -1, -1, -1, -1, -1, 541,
+ -1, 543, -1, -1, -1, -1, -1, -1, -1, -1,
+ 552, 122, -1, 124, 125, 126, 127, 128, 129, 130,
+ 131, 132, 133, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 72, 73, 74, 75, 76, 77, 78, 79,
- 80, 81, 82, 83, -1, -1, -1, -1, 88, 89,
- 90, -1, -1, 93, -1, -1, -1, -1, -1, 99,
- -1, 101, -1, -1, -1, 105, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 115, -1, -1, 118, 119,
- -1, -1, 122, -1, 124, 125, 126, 127, 128, 129,
- 130, 131, 132, 133, -1, -1, 0, -1, 138, 139,
- 140, 141, 142, -1, 144, 145, 146, 147, 148, 13,
- 14, 15, 16, 17, 18, -1, 20, -1, -1, -1,
- -1, -1, -1, 27, 28, -1, -1, -1, -1, -1,
- -1, -1, -1, 37, 38, -1, 40, 41, 42, 43,
- 44, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 57, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- -1, -1, -1, -1, 88, 89, 90, -1, 92, 93,
- -1, -1, -1, -1, -1, 99, -1, 101, -1, -1,
- -1, 105, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 115, -1, -1, 118, 119, -1, 121, 122, -1,
- 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- -1, -1, 0, -1, -1, 139, 140, 141, 142, -1,
- -1, 145, 146, 147, 148, 13, 14, 15, 16, 17,
- 18, -1, 20, -1, -1, -1, -1, -1, 26, 27,
- 28, -1, -1, -1, -1, -1, -1, -1, -1, 37,
- 38, -1, 40, 41, 42, 43, 44, -1, -1, -1,
+ -1, 779, 44, -1, -1, -1, -1, -1, 786, 787,
+ 788, -1, -1, 605, -1, -1, 794, -1, -1, -1,
+ -1, 210, 800, 801, -1, -1, -1, -1, 806, 807,
+ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
+ 82, 83, 820, -1, -1, -1, 88, 89, -1, -1,
+ -1, -1, -1, -1, 832, 833, -1, -1, -1, 101,
+ -1, -1, 840, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 851, 852, -1, -1, -1, -1, -1,
+ 122, 673, 124, 125, 126, 127, 128, 129, 130, 131,
+ 132, 133, -1, -1, -1, -1, -1, -1, 287, 877,
+ -1, -1, -1, -1, 882, 294, 295, -1, -1, -1,
+ -1, -1, -1, 302, 72, 73, 74, 75, 76, 77,
+ 78, 79, 80, 81, 82, 83, -1, 905, -1, -1,
+ 88, 89, -1, -1, -1, -1, -1, 915, 916, -1,
+ -1, 919, -1, 101, -1, 923, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 347, -1,
+ -1, -1, -1, 352, 122, -1, 124, 125, 126, 127,
+ 128, 129, 130, 131, 132, 133, -1, -1, -1, -1,
+ -1, -1, 371, -1, 142, -1, -1, 779, -1, -1,
+ -1, -1, -1, -1, 786, 787, -1, -1, -1, -1,
+ -1, -1, -1, 392, -1, 983, -1, 985, 397, -1,
+ 988, 400, -1, -1, 806, 807, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 820, 0,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 832, 833, 13, 14, 15, 16, 17, 18, 840, 20,
+ -1, 440, 441, -1, -1, -1, 27, 28, 29, 851,
+ 852, -1, -1, -1, -1, -1, 37, 38, 457, 40,
+ 41, 42, 43, 44, -1, -1, -1, -1, -1, 468,
+ -1, -1, -1, -1, -1, 877, 57, 476, -1, -1,
+ 882, -1, -1, -1, -1, -1, -1, 486, -1, -1,
+ -1, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 83, -1, -1, -1, -1, 88, 89, 90,
+ -1, -1, 93, 915, 916, -1, -1, 919, 99, 518,
+ 101, 923, -1, -1, 105, -1, -1, -1, 527, -1,
+ -1, -1, 113, -1, 115, -1, -1, 118, 119, -1,
+ -1, 122, 123, 124, 125, 126, 127, 128, 129, 130,
+ 131, 132, 133, 552, -1, -1, -1, -1, 139, 140,
+ 141, 142, -1, -1, 145, 146, 147, 148, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 983, -1, 985, 0, 1, 988, 3, 4, 5,
+ 6, 7, 8, 9, 10, 11, 12, -1, -1, -1,
+ -1, -1, -1, 19, -1, 21, 22, 23, 24, -1,
+ -1, -1, -1, -1, 30, 31, 32, 33, 34, 35,
+ 36, -1, -1, 39, -1, -1, -1, -1, -1, 45,
+ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, -1, 58, 59, 60, -1, -1, 63, -1, -1,
+ 66, 67, -1, 69, 70, 71, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 84, 85,
+ -1, -1, -1, -1, 673, 91, -1, -1, 94, 95,
+ -1, 97, 98, -1, 100, -1, -1, -1, 104, -1,
+ 106, 107, 108, -1, 110, 111, 112, -1, 114, 115,
+ -1, -1, 118, 119, -1, 72, 73, 74, 75, 76,
+ 77, 78, 79, 80, 81, 82, 83, -1, 134, 135,
+ 136, 88, 89, -1, -1, -1, -1, -1, -1, -1,
+ 146, -1, 148, -1, 101, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 122, -1, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133, -1, -1, -1,
+ -1, -1, -1, -1, -1, 142, -1, -1, -1, -1,
+ 779, -1, -1, -1, -1, -1, -1, -1, 787, 788,
+ -1, -1, -1, -1, -1, 794, -1, -1, -1, -1,
+ -1, 800, 801, -1, -1, -1, -1, 806, 807, -1,
+ -1, -1, -1, -1, -1, 72, 73, 74, 75, 76,
+ 77, 820, 0, 80, 81, -1, -1, -1, -1, -1,
+ -1, 88, 89, 832, 833, 13, 14, 15, 16, 17,
+ 18, 840, 20, -1, 101, -1, -1, -1, 26, 27,
+ 28, -1, 851, 852, -1, -1, -1, -1, -1, 37,
+ 38, -1, 40, 41, 42, 43, 44, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, 90, -1, -1, 93, -1, -1, -1, -1,
- -1, 99, -1, 101, -1, -1, -1, 105, -1, -1,
+ 78, 79, 80, 81, 82, 83, 905, -1, -1, -1,
+ 88, 89, 90, -1, -1, 93, 915, 916, -1, -1,
+ -1, 99, -1, 101, 923, -1, -1, 105, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 115, -1, -1,
118, 119, -1, -1, 122, -1, 124, 125, 126, 127,
- 128, 129, 130, 131, 132, 133, -1, -1, 0, -1,
- 138, 139, 140, 141, 142, -1, 144, 145, 146, 147,
- 148, 13, 14, 15, 16, 17, 18, -1, 20, -1,
- -1, -1, -1, -1, -1, 27, 28, -1, -1, -1,
- -1, -1, -1, -1, -1, 37, 38, -1, 40, 41,
- 42, 43, 44, -1, -1, -1, -1, -1, -1, -1,
+ 128, 129, 130, 131, 132, 133, -1, -1, -1, -1,
+ 138, 139, 140, 141, 142, 0, 144, 145, 146, 147,
+ 148, -1, -1, -1, -1, -1, -1, -1, 13, 14,
+ 15, 16, 17, 18, 983, 20, 985, -1, -1, 988,
+ -1, -1, 27, 28, -1, -1, -1, -1, -1, -1,
+ -1, -1, 37, 38, -1, 40, 41, 42, 43, 44,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 57, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82, 83, -1,
+ -1, -1, -1, 88, 89, 90, -1, 92, 93, -1,
+ -1, -1, -1, -1, 99, -1, 101, -1, -1, -1,
+ 105, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 115, -1, -1, 118, 119, -1, 121, 122, -1, 124,
+ 125, 126, 127, 128, 129, 130, 131, 132, 133, -1,
+ -1, 0, -1, -1, 139, 140, 141, 142, -1, -1,
+ 145, 146, 147, 148, 13, 14, 15, 16, 17, 18,
+ -1, 20, -1, -1, -1, -1, -1, 26, 27, 28,
+ -1, -1, -1, -1, -1, -1, -1, -1, 37, 38,
+ -1, 40, 41, 42, 43, 44, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, -1, -1, -1, -1, 88, 89, 90, -1,
- -1, 93, -1, -1, -1, -1, -1, 99, -1, 101,
- -1, -1, -1, 105, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 115, -1, -1, 118, 119, -1, -1,
- 122, -1, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, -1, -1, 0, -1, -1, 139, 140, 141,
- 142, -1, 144, 145, 146, 147, 148, 13, 14, 15,
- -1, 17, 18, -1, 20, -1, -1, -1, -1, -1,
- 26, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 37, 38, -1, 40, 41, 42, 43, 44, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 72, 73, 74, 75, 76, 77, 78,
+ 79, 80, 81, 82, 83, -1, -1, -1, -1, 88,
+ 89, 90, -1, -1, 93, -1, -1, -1, -1, -1,
+ 99, -1, 101, -1, -1, -1, 105, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 115, -1, -1, 118,
+ 119, -1, -1, 122, -1, 124, 125, 126, 127, 128,
+ 129, 130, 131, 132, 133, -1, -1, 0, -1, 138,
+ 139, 140, 141, 142, -1, 144, 145, 146, 147, 148,
+ 13, 14, 15, 16, 17, 18, -1, 20, -1, -1,
+ -1, -1, -1, -1, 27, 28, -1, -1, -1, -1,
+ -1, -1, -1, -1, 37, 38, -1, 40, 41, 42,
+ 43, 44, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 72, 73, 74, 75,
- 76, 77, 78, 79, 80, 81, 82, 83, -1, -1,
- -1, -1, 88, 89, 90, -1, 92, 93, -1, -1,
- -1, -1, -1, -1, -1, 101, -1, -1, -1, 105,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 115,
- -1, -1, 118, 119, -1, 121, 122, -1, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, -1, -1,
- 0, -1, 138, 139, 140, -1, 142, -1, -1, 145,
- 146, 147, 148, 13, 14, 15, -1, 17, 18, -1,
- 20, -1, -1, -1, -1, -1, 26, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 37, 38, -1,
- 40, 41, 42, 43, 44, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 72,
+ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
+ 83, -1, -1, -1, -1, 88, 89, 90, -1, -1,
+ 93, -1, -1, -1, -1, -1, 99, -1, 101, -1,
+ -1, -1, 105, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 115, -1, -1, 118, 119, -1, -1, 122,
+ -1, 124, 125, 126, 127, 128, 129, 130, 131, 132,
+ 133, -1, -1, 0, -1, -1, 139, 140, 141, 142,
+ -1, 144, 145, 146, 147, 148, 13, 14, 15, -1,
+ 17, 18, -1, 20, -1, -1, -1, -1, -1, 26,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 37, 38, -1, 40, 41, 42, 43, 44, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 72, 73, 74, 75, 76, 77, 78, 79,
- 80, 81, 82, 83, -1, -1, -1, -1, 88, 89,
- 90, -1, 92, 93, -1, -1, -1, -1, -1, -1,
- -1, 101, -1, -1, -1, 105, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 115, -1, -1, 118, 119,
- -1, 121, 122, -1, 124, 125, 126, 127, 128, 129,
- 130, 131, 132, 133, -1, -1, 0, -1, 138, 139,
- 140, -1, 142, -1, -1, 145, 146, 147, 148, 13,
- 14, 15, -1, 17, 18, -1, 20, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 37, 38, -1, 40, 41, 42, 43,
- 44, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 72, 73, 74, 75, 76,
+ 77, 78, 79, 80, 81, 82, 83, -1, -1, -1,
+ -1, 88, 89, 90, -1, 92, 93, -1, -1, -1,
+ -1, -1, -1, -1, 101, -1, -1, -1, 105, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 115, -1,
+ -1, 118, 119, -1, 121, 122, -1, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133, -1, -1, 0,
+ -1, 138, 139, 140, -1, 142, -1, -1, 145, 146,
+ 147, 148, 13, 14, 15, -1, 17, 18, -1, 20,
+ -1, -1, -1, -1, -1, 26, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 37, 38, -1, 40,
+ 41, 42, 43, 44, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- -1, -1, -1, -1, 88, 89, 90, -1, 92, 93,
- -1, -1, -1, -1, -1, -1, -1, 101, -1, -1,
- -1, 105, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 115, -1, -1, 118, 119, -1, 121, 122, -1,
- 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- -1, -1, 0, -1, -1, 139, 140, -1, 142, -1,
- -1, 145, 146, 147, 148, 13, 14, 15, -1, 17,
- 18, -1, 20, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 37,
- 38, -1, 40, 41, 42, 43, 44, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 83, -1, -1, -1, -1, 88, 89, 90,
+ -1, 92, 93, -1, -1, -1, -1, -1, -1, -1,
+ 101, -1, -1, -1, 105, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 115, -1, -1, 118, 119, -1,
+ 121, 122, -1, 124, 125, 126, 127, 128, 129, 130,
+ 131, 132, 133, -1, -1, 0, -1, 138, 139, 140,
+ -1, 142, -1, -1, 145, 146, 147, 148, 13, 14,
+ 15, -1, 17, 18, -1, 20, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, 90, -1, 92, 93, -1, -1, -1, -1,
- -1, -1, -1, 101, -1, -1, -1, 105, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 115, -1, -1,
- 118, 119, -1, 121, 122, -1, 124, 125, 126, 127,
- 128, 129, 130, 131, 132, 133, -1, -1, -1, -1,
- -1, 139, 140, -1, 142, -1, -1, 145, 146, 147,
- 148, 1, -1, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 15, -1, -1, 18, 19,
- -1, 21, 22, 23, 24, -1, -1, -1, -1, -1,
- 30, 31, 32, 33, 34, 35, 36, -1, -1, 39,
- -1, -1, -1, -1, -1, 45, -1, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, 56, -1, 58, 59,
- 60, -1, -1, 63, -1, -1, 66, 67, -1, 69,
- 70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
- -1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- 100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
- 110, 111, 112, -1, 114, 115, -1, -1, 118, 119,
+ -1, -1, 37, 38, -1, 40, 41, 42, 43, 44,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 134, 135, 136, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 146, 1, 148, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
- -1, 15, -1, 17, 18, 19, -1, 21, 22, 23,
- 24, -1, -1, -1, -1, -1, 30, 31, 32, 33,
- 34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
- -1, 45, -1, 47, 48, 49, 50, 51, 52, 53,
- 54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
- -1, -1, 66, 67, -1, 69, 70, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, 100, -1, -1, -1,
- 104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
- 114, 115, -1, -1, 118, 119, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82, 83, -1,
+ -1, -1, -1, 88, 89, 90, -1, 92, 93, -1,
+ -1, -1, -1, -1, -1, -1, 101, -1, -1, -1,
+ 105, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 115, -1, -1, 118, 119, -1, 121, 122, -1, 124,
+ 125, 126, 127, 128, 129, 130, 131, 132, 133, -1,
+ -1, 0, -1, -1, 139, 140, -1, 142, -1, -1,
+ 145, 146, 147, 148, 13, 14, 15, -1, 17, 18,
+ -1, 20, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 37, 38,
+ -1, 40, 41, 42, 43, 44, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 134, 135, 136, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 146, 1, 148, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, -1, -1, 15, -1, -1,
- 18, 19, 20, 21, 22, 23, 24, -1, -1, -1,
- -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
- -1, 39, -1, -1, -1, -1, -1, 45, -1, 47,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
- 58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
- -1, 69, 70, 71, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 84, 85, -1, -1,
- -1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
- 98, -1, 100, -1, -1, -1, 104, -1, 106, 107,
- 108, -1, 110, 111, 112, -1, 114, 115, -1, -1,
- 118, 119, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 134, 135, 136, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 146, 1,
- 148, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- 12, -1, -1, 15, -1, -1, 18, 19, -1, 21,
- 22, 23, 24, -1, -1, -1, -1, -1, 30, 31,
- 32, 33, 34, 35, 36, -1, -1, 39, -1, -1,
- -1, -1, -1, 45, -1, 47, 48, 49, 50, 51,
- 52, 53, 54, 55, 56, -1, 58, 59, 60, -1,
- -1, 63, -1, -1, 66, 67, -1, 69, 70, 71,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 84, 85, -1, -1, -1, -1, -1, 91,
- -1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
- -1, -1, 104, -1, 106, 107, 108, -1, 110, 111,
- 112, -1, 114, 115, -1, -1, 118, 119, 1, -1,
+ -1, -1, -1, 72, 73, 74, 75, 76, 77, 78,
+ 79, 80, 81, 82, 83, -1, -1, -1, -1, 88,
+ 89, 90, -1, 92, 93, -1, -1, -1, -1, -1,
+ -1, -1, 101, -1, -1, -1, 105, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 115, -1, -1, 118,
+ 119, -1, 121, 122, -1, 124, 125, 126, 127, 128,
+ 129, 130, 131, 132, 133, -1, -1, -1, -1, -1,
+ 139, 140, -1, 142, -1, -1, 145, 146, 147, 148,
+ 1, -1, 3, 4, 5, 6, 7, 8, 9, 10,
+ 11, 12, 13, 14, 15, -1, -1, 18, 19, -1,
+ 21, 22, 23, 24, -1, -1, -1, -1, -1, 30,
+ 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
+ -1, -1, -1, -1, 45, -1, 47, 48, 49, 50,
+ 51, 52, 53, 54, 55, 56, -1, 58, 59, 60,
+ -1, -1, 63, -1, -1, 66, 67, -1, 69, 70,
+ 71, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 84, 85, -1, -1, -1, -1, -1,
+ 91, -1, -1, 94, 95, -1, 97, 98, -1, 100,
+ -1, -1, -1, 104, -1, 106, 107, 108, -1, 110,
+ 111, 112, -1, 114, 115, -1, -1, 118, 119, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 134, 135, 136, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 146, 1, 148, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11, 12, -1, -1,
+ 15, -1, 17, 18, 19, -1, 21, 22, 23, 24,
+ -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
+ 35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
+ 45, -1, 47, 48, 49, 50, 51, 52, 53, 54,
+ 55, 56, -1, 58, 59, 60, -1, -1, 63, -1,
+ -1, 66, 67, -1, 69, 70, 71, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
+ 85, -1, -1, -1, -1, -1, 91, -1, -1, 94,
+ 95, -1, 97, 98, -1, 100, -1, -1, -1, 104,
+ -1, 106, 107, 108, -1, 110, 111, 112, -1, 114,
+ 115, -1, -1, 118, 119, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 134,
+ 135, 136, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 146, 1, 148, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, 12, -1, -1, 15, -1, -1, 18,
+ 19, 20, 21, 22, 23, 24, -1, -1, -1, -1,
+ -1, 30, 31, 32, 33, 34, 35, 36, -1, -1,
+ 39, -1, -1, -1, -1, -1, 45, -1, 47, 48,
+ 49, 50, 51, 52, 53, 54, 55, 56, -1, 58,
+ 59, 60, -1, -1, 63, -1, -1, 66, 67, -1,
+ 69, 70, 71, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 84, 85, -1, -1, -1,
+ -1, -1, 91, -1, -1, 94, 95, -1, 97, 98,
+ -1, 100, -1, -1, -1, 104, -1, 106, 107, 108,
+ -1, 110, 111, 112, -1, 114, 115, -1, -1, 118,
+ 119, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 134, 135, 136, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 146, 1, 148,
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
- -1, -1, 134, 135, 136, -1, 19, -1, 21, 22,
- 23, 24, -1, -1, 146, -1, 148, 30, 31, 32,
+ -1, -1, 15, -1, -1, 18, 19, -1, 21, 22,
+ 23, 24, -1, -1, -1, -1, -1, 30, 31, 32,
33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
- -1, -1, 45, 46, 47, 48, 49, 50, 51, 52,
+ -1, -1, 45, -1, 47, 48, 49, 50, 51, 52,
53, 54, 55, 56, -1, 58, 59, 60, -1, -1,
63, -1, -1, 66, 67, -1, 69, 70, 71, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 84, 85, -1, -1, -1, -1, -1, 91, -1,
-1, 94, 95, -1, 97, 98, -1, 100, -1, -1,
-1, 104, -1, 106, 107, 108, -1, 110, 111, 112,
- -1, 114, 115, -1, -1, 118, 119, -1, -1, -1,
+ -1, 114, 115, -1, -1, 118, 119, 1, -1, 3,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
+ -1, 134, 135, 136, -1, 19, -1, 21, 22, 23,
+ 24, -1, -1, 146, -1, 148, 30, 31, 32, 33,
+ 34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
+ -1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
+ -1, -1, 66, 67, -1, 69, 70, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 134, 135, 136, -1, -1, 139, -1, -1, -1,
- -1, -1, -1, 146, 1, 148, 3, 4, 5, 6,
- 7, 8, 9, 10, 11, 12, -1, 14, 15, -1,
- -1, -1, 19, -1, 21, 22, 23, 24, -1, -1,
- -1, -1, -1, 30, 31, 32, 33, 34, 35, 36,
- -1, -1, 39, -1, -1, -1, -1, -1, 45, -1,
- 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
- -1, 58, 59, 60, -1, -1, 63, -1, -1, 66,
- 67, -1, 69, 70, 71, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 84, 85, -1,
- -1, -1, -1, -1, 91, -1, -1, 94, 95, -1,
- 97, 98, -1, 100, -1, -1, -1, 104, -1, 106,
- 107, 108, -1, 110, 111, 112, -1, 114, 115, -1,
- -1, 118, 119, 1, -1, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, -1, -1, 134, 135, 136,
- -1, 19, -1, 21, 22, 23, 24, -1, -1, 146,
- -1, 148, 30, 31, 32, 33, 34, 35, 36, -1,
+ 84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
+ 94, 95, -1, 97, 98, -1, 100, -1, -1, -1,
+ 104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
+ 114, 115, -1, -1, 118, 119, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 134, 135, 136, -1, -1, 139, -1, -1, -1, -1,
+ -1, -1, 146, 1, 148, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, 12, -1, 14, 15, -1, -1,
+ -1, 19, -1, 21, 22, 23, 24, -1, -1, -1,
+ -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
-1, 39, -1, -1, -1, -1, -1, 45, -1, 47,
48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
@@ -4254,7 +4336,7 @@ static const yytype_int16 yycheck[] =
108, -1, 110, 111, 112, -1, 114, 115, -1, -1,
118, 119, 1, -1, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, -1, -1, 134, 135, 136, -1,
- 19, -1, 21, 22, 23, 24, -1, 145, 146, -1,
+ 19, -1, 21, 22, 23, 24, -1, -1, 146, -1,
148, 30, 31, 32, 33, 34, 35, 36, -1, -1,
39, -1, -1, -1, -1, -1, 45, -1, 47, 48,
49, 50, 51, 52, 53, 54, 55, 56, -1, 58,
@@ -4276,26 +4358,26 @@ static const yytype_int16 yycheck[] =
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
110, 111, 112, -1, 114, 115, -1, -1, 118, 119,
+ 1, -1, 3, 4, 5, 6, 7, 8, 9, 10,
+ 11, 12, -1, -1, 134, 135, 136, -1, 19, -1,
+ 21, 22, 23, 24, -1, 145, 146, -1, 148, 30,
+ 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
+ -1, -1, -1, -1, 45, -1, 47, 48, 49, 50,
+ 51, 52, 53, 54, 55, 56, -1, 58, 59, 60,
+ -1, -1, 63, -1, -1, 66, 67, -1, 69, 70,
+ 71, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 84, 85, -1, -1, -1, -1, -1,
+ 91, -1, -1, 94, 95, -1, 97, 98, -1, 100,
+ -1, -1, -1, 104, -1, 106, 107, 108, -1, 110,
+ 111, 112, -1, 114, 115, -1, -1, 118, 119, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 134, 135, 136, -1, -1, 139,
- -1, -1, -1, -1, -1, -1, 146, 1, 148, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
- -1, 15, -1, -1, -1, 19, -1, 21, 22, 23,
- 24, -1, -1, -1, -1, -1, 30, 31, 32, 33,
- 34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
- -1, 45, -1, 47, 48, 49, 50, 51, 52, 53,
- 54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
- -1, -1, 66, 67, -1, 69, 70, 71, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, 100, -1, -1, -1,
- 104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
- 114, 115, -1, -1, 118, 119, -1, -1, 3, 4,
+ -1, -1, -1, 134, 135, 136, -1, -1, 139, -1,
+ -1, -1, -1, -1, -1, 146, 1, 148, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, -1, -1,
- 134, 135, 136, -1, 19, -1, 21, 22, 23, 24,
- -1, -1, 146, -1, 148, 30, 31, 32, 33, 34,
+ 15, -1, -1, -1, 19, -1, 21, 22, 23, 24,
+ -1, -1, -1, -1, -1, 30, 31, 32, 33, 34,
35, 36, -1, -1, 39, -1, -1, -1, -1, -1,
- 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
+ 45, -1, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, -1, 58, 59, 60, -1, -1, 63, -1,
-1, 66, 67, -1, 69, 70, 71, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
@@ -4307,7 +4389,7 @@ static const yytype_int16 yycheck[] =
135, 136, -1, 19, -1, 21, 22, 23, 24, -1,
-1, 146, -1, 148, 30, 31, 32, 33, 34, 35,
36, -1, -1, 39, -1, -1, -1, -1, -1, 45,
- -1, 47, 48, 49, 50, 51, 52, 53, 54, 55,
+ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
56, -1, 58, 59, 60, -1, -1, 63, -1, -1,
66, 67, -1, 69, 70, 71, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 84, 85,
@@ -4315,16 +4397,16 @@ static const yytype_int16 yycheck[] =
-1, 97, 98, -1, 100, -1, -1, -1, 104, -1,
106, 107, 108, -1, 110, 111, 112, -1, 114, 115,
-1, -1, 118, 119, -1, -1, 3, 4, 5, 6,
- 7, 8, 9, 10, 11, -1, -1, -1, 134, 135,
+ 7, 8, 9, 10, 11, 12, -1, -1, 134, 135,
136, -1, 19, -1, 21, 22, 23, 24, -1, -1,
146, -1, 148, 30, 31, 32, 33, 34, 35, 36,
- -1, -1, 39, -1, -1, -1, -1, -1, -1, -1,
- -1, 48, 49, 50, 51, 52, 53, 54, 55, 56,
+ -1, -1, 39, -1, -1, -1, -1, -1, 45, -1,
+ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
-1, 58, 59, 60, -1, -1, 63, -1, -1, 66,
67, -1, 69, 70, 71, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 84, 85, -1,
-1, -1, -1, -1, 91, -1, -1, 94, 95, -1,
- 97, 98, -1, -1, -1, -1, -1, 104, -1, 106,
+ 97, 98, -1, 100, -1, -1, -1, 104, -1, 106,
107, 108, -1, 110, 111, 112, -1, 114, 115, -1,
-1, 118, 119, -1, -1, 3, 4, 5, 6, 7,
8, 9, 10, 11, -1, -1, -1, 134, 135, 136,
@@ -4338,26 +4420,21 @@ static const yytype_int16 yycheck[] =
-1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
98, -1, -1, -1, -1, -1, 104, -1, 106, 107,
108, -1, 110, 111, 112, -1, 114, 115, -1, -1,
- 118, 119, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 134, 135, 136, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 146, -1,
- 148, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
- 22, 23, 24, 25, 26, -1, -1, -1, 30, 31,
- 32, 33, 34, 35, 36, 37, 38, 39, -1, -1,
- -1, -1, -1, 45, 46, 47, 48, 49, 50, 51,
- 52, 53, 54, 55, 56, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 70, 71,
- 72, 73, 74, 75, 76, 77, -1, -1, 80, 81,
- -1, -1, -1, -1, 86, 87, 88, 89, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 100, 101,
- 102, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, -1, 135, 136, -1, -1, -1, -1, -1,
- -1, 143, 144, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, -1, -1, -1, -1, -1, -1, -1, 19,
- -1, 21, 22, 23, 24, -1, 26, -1, -1, -1,
+ 118, 119, -1, -1, 3, 4, 5, 6, 7, 8,
+ 9, 10, 11, -1, -1, -1, 134, 135, 136, -1,
+ 19, -1, 21, 22, 23, 24, -1, -1, 146, -1,
+ 148, 30, 31, 32, 33, 34, 35, 36, -1, -1,
+ 39, -1, -1, -1, -1, -1, -1, -1, -1, 48,
+ 49, 50, 51, 52, 53, 54, 55, 56, -1, 58,
+ 59, 60, -1, -1, 63, -1, -1, 66, 67, -1,
+ 69, 70, 71, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 84, 85, -1, -1, -1,
+ -1, -1, 91, -1, -1, 94, 95, -1, 97, 98,
+ -1, -1, -1, -1, -1, 104, -1, 106, 107, 108,
+ -1, 110, 111, 112, -1, 114, 115, -1, -1, 118,
+ 119, -1, -1, 3, 4, 5, 6, 7, 8, 9,
+ 10, 11, -1, -1, -1, 134, 135, 136, -1, 19,
+ -1, 21, 22, 23, 24, -1, -1, 146, -1, 148,
30, 31, 32, 33, 34, 35, 36, -1, -1, 39,
-1, -1, -1, -1, -1, -1, -1, -1, 48, 49,
50, 51, 52, 53, 54, 55, 56, -1, 58, 59,
@@ -4365,61 +4442,78 @@ static const yytype_int16 yycheck[] =
70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- 100, -1, 102, 103, 104, -1, 106, 107, 108, -1,
- 110, 111, 112, -1, 114, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 104, -1, 106, 107, 108, -1,
+ 110, 111, 112, -1, 114, 115, -1, -1, 118, 119,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 134, 135, 136, -1, 138, -1,
- -1, -1, -1, -1, 144, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, -1, -1, -1, -1, -1, -1,
- -1, 19, -1, 21, 22, 23, 24, -1, 26, -1,
- -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
- -1, 39, -1, -1, -1, -1, -1, -1, -1, -1,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
- 58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
- -1, 69, 70, 71, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 84, 85, -1, -1,
- -1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
- 98, -1, 100, -1, 102, 103, 104, -1, 106, 107,
- 108, -1, 110, 111, 112, -1, 114, -1, -1, -1,
- -1, -1, -1, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, -1, -1, -1, -1, 134, 135, 136, 19,
- 138, 21, 22, 23, 24, -1, 144, -1, -1, -1,
+ -1, -1, -1, -1, 134, 135, 136, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 148, 3,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, -1, -1, -1, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, -1, -1, -1, -1,
+ -1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 70, 71, 72, 73,
+ 74, 75, 76, 77, -1, -1, 80, 81, -1, -1,
+ -1, -1, 86, 87, 88, 89, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 100, 101, 102, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
+ -1, 135, 136, -1, -1, -1, -1, -1, -1, 143,
+ 144, 3, 4, 5, 6, 7, 8, 9, 10, 11,
+ -1, -1, -1, -1, -1, -1, -1, 19, -1, 21,
+ 22, 23, 24, -1, 26, -1, -1, -1, 30, 31,
+ 32, 33, 34, 35, 36, -1, -1, 39, -1, -1,
+ -1, -1, -1, -1, -1, -1, 48, 49, 50, 51,
+ 52, 53, 54, 55, 56, -1, 58, 59, 60, -1,
+ -1, 63, -1, -1, 66, 67, -1, 69, 70, 71,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 84, 85, -1, -1, -1, -1, -1, 91,
+ -1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
+ 102, 103, 104, -1, 106, 107, 108, -1, 110, 111,
+ 112, -1, 114, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 134, 135, 136, -1, 138, -1, -1, -1,
+ -1, -1, 144, 3, 4, 5, 6, 7, 8, 9,
+ 10, 11, -1, -1, -1, -1, -1, -1, -1, 19,
+ -1, 21, 22, 23, 24, -1, 26, -1, -1, -1,
30, 31, 32, 33, 34, 35, 36, -1, -1, 39,
-1, -1, -1, -1, -1, -1, -1, -1, 48, 49,
50, 51, 52, 53, 54, 55, 56, -1, 58, 59,
60, -1, -1, 63, -1, -1, 66, 67, -1, 69,
70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
- -1, 91, 92, -1, 94, 95, -1, 97, 98, -1,
+ -1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
100, -1, 102, 103, 104, -1, 106, 107, 108, -1,
110, 111, 112, -1, 114, -1, -1, -1, -1, -1,
- -1, 121, 3, 4, 5, 6, 7, 8, 9, 10,
- 11, -1, -1, -1, 134, 135, 136, -1, 19, -1,
- 21, 22, 23, 24, 144, -1, -1, -1, -1, 30,
- 31, 32, 33, 34, 35, 36, -1, -1, 39, -1,
- -1, -1, -1, -1, -1, -1, -1, 48, 49, 50,
- 51, 52, 53, 54, 55, 56, -1, 58, 59, 60,
- -1, -1, 63, -1, -1, 66, 67, -1, 69, 70,
- 71, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 84, 85, -1, -1, -1, -1, -1,
- 91, 92, -1, 94, 95, -1, 97, 98, -1, 100,
- -1, 102, 103, 104, -1, 106, 107, 108, -1, 110,
- 111, 112, -1, 114, -1, -1, -1, -1, -1, -1,
- 121, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- -1, -1, -1, 134, 135, 136, -1, 19, -1, 21,
- 22, 23, 24, 144, -1, -1, -1, -1, 30, 31,
+ -1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
+ -1, -1, -1, -1, 134, 135, 136, 19, 138, 21,
+ 22, 23, 24, -1, 144, -1, -1, -1, 30, 31,
32, 33, 34, 35, 36, -1, -1, 39, -1, -1,
-1, -1, -1, -1, -1, -1, 48, 49, 50, 51,
52, 53, 54, 55, 56, -1, 58, 59, 60, -1,
-1, 63, -1, -1, 66, 67, -1, 69, 70, 71,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 84, 85, -1, -1, -1, -1, -1, 91,
- -1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
+ 92, -1, 94, 95, -1, 97, 98, -1, 100, -1,
102, 103, 104, -1, 106, 107, 108, -1, 110, 111,
- 112, -1, 114, -1, -1, -1, -1, -1, -1, 3,
+ 112, -1, 114, -1, -1, -1, -1, -1, -1, 121,
+ 3, 4, 5, 6, 7, 8, 9, 10, 11, -1,
+ -1, -1, 134, 135, 136, -1, 19, -1, 21, 22,
+ 23, 24, 144, -1, -1, -1, -1, 30, 31, 32,
+ 33, 34, 35, 36, -1, -1, 39, -1, -1, -1,
+ -1, -1, -1, -1, -1, 48, 49, 50, 51, 52,
+ 53, 54, 55, 56, -1, 58, 59, 60, -1, -1,
+ 63, -1, -1, 66, 67, -1, 69, 70, 71, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 84, 85, -1, -1, -1, -1, -1, 91, 92,
+ -1, 94, 95, -1, 97, 98, -1, 100, -1, 102,
+ 103, 104, -1, 106, 107, 108, -1, 110, 111, 112,
+ -1, 114, -1, -1, -1, -1, -1, -1, 121, 3,
4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
- -1, -1, 134, 135, 136, 19, -1, 21, 22, 23,
- 24, -1, 144, -1, -1, -1, 30, 31, 32, 33,
+ -1, 134, 135, 136, -1, 19, -1, 21, 22, 23,
+ 24, 144, -1, -1, -1, -1, 30, 31, 32, 33,
34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
-1, -1, -1, -1, 48, 49, 50, 51, 52, 53,
54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
@@ -4428,20 +4522,60 @@ static const yytype_int16 yycheck[] =
84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
94, 95, -1, 97, 98, -1, 100, -1, 102, 103,
104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
- 114, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 114, -1, -1, -1, -1, -1, -1, 3, 4, 5,
+ 6, 7, 8, 9, 10, 11, -1, -1, -1, -1,
+ 134, 135, 136, 19, -1, 21, 22, 23, 24, -1,
+ 144, -1, -1, -1, 30, 31, 32, 33, 34, 35,
+ 36, -1, -1, 39, -1, -1, -1, -1, -1, -1,
+ -1, -1, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, -1, 58, 59, 60, -1, -1, 63, -1, -1,
+ 66, 67, -1, 69, 70, 71, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 84, 85,
+ -1, -1, -1, -1, -1, 91, -1, -1, 94, 95,
+ -1, 97, 98, -1, 100, -1, 102, 103, 104, -1,
+ 106, 107, 108, -1, 110, 111, 112, -1, 114, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 134, 135, 136, -1, -1, -1, -1, -1, -1, -1,
- 144, 3, 4, 5, 6, 7, 8, 9, 10, 11,
+ -1, -1, -1, -1, -1, -1, -1, -1, 134, 135,
+ 136, -1, -1, -1, -1, -1, -1, -1, 144, 3,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, -1, -1, -1, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, -1, -1, -1, -1,
+ -1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, -1, -1, -1, -1, -1, -1, 63,
+ -1, -1, -1, -1, -1, -1, 70, 71, 72, 73,
+ 74, 75, 76, 77, -1, -1, 80, 81, -1, -1,
+ -1, -1, 86, 87, 88, 89, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 100, 101, 102, -1,
+ -1, -1, -1, 107, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
+ -1, 135, 136, -1, -1, -1, -1, -1, -1, 143,
+ 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
+ 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
+ 23, 24, 25, 26, -1, -1, -1, 30, 31, 32,
+ 33, 34, 35, 36, 37, 38, 39, -1, -1, -1,
+ -1, -1, 45, 46, 47, 48, 49, 50, 51, 52,
+ 53, 54, 55, 56, -1, -1, -1, -1, -1, -1,
+ 63, -1, -1, -1, -1, -1, -1, 70, 71, 72,
+ 73, 74, 75, 76, 77, -1, -1, 80, 81, -1,
+ -1, -1, -1, 86, 87, 88, 89, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 100, 101, 102,
+ -1, -1, -1, -1, 107, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 124, 125, 126, 127, 128, 129, 130, 131, 132,
+ 133, -1, 135, 136, -1, -1, -1, -1, -1, -1,
+ 143, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, -1, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, -1, -1,
-1, -1, -1, 45, 46, 47, 48, 49, 50, 51,
- 52, 53, 54, 55, 56, -1, -1, -1, -1, -1,
- -1, 63, -1, -1, -1, -1, -1, -1, 70, 71,
+ 52, -1, -1, 55, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 70, 71,
72, 73, 74, 75, 76, 77, -1, -1, 80, 81,
-1, -1, -1, -1, 86, 87, 88, 89, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 100, 101,
- 102, -1, -1, -1, -1, 107, -1, -1, -1, -1,
+ 102, -1, -1, -1, 106, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, -1, 135, 136, -1, -1, -1, -1, -1,
@@ -4450,83 +4584,43 @@ static const yytype_int16 yycheck[] =
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, -1,
-1, -1, -1, -1, 45, 46, 47, 48, 49, 50,
- 51, 52, 53, 54, 55, 56, -1, -1, -1, -1,
- -1, -1, 63, -1, -1, -1, -1, -1, -1, 70,
+ 51, 52, -1, -1, 55, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 70,
71, 72, 73, 74, 75, 76, 77, -1, -1, 80,
81, -1, -1, -1, -1, 86, 87, 88, 89, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 100,
- 101, 102, -1, -1, -1, -1, 107, -1, -1, -1,
+ 101, 102, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, -1, 135, 136, -1, -1, -1, -1,
-1, -1, 143, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, -1, -1, -1,
- 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
- -1, -1, -1, -1, -1, 45, 46, 47, 48, 49,
- 50, 51, 52, -1, -1, 55, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 70, 71, 72, 73, 74, 75, 76, 77, -1, -1,
- 80, 81, -1, -1, -1, -1, 86, 87, 88, 89,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 100, 101, 102, -1, -1, -1, 106, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 124, 125, 126, 127, 128, 129,
- 130, 131, 132, 133, -1, 135, 136, -1, -1, -1,
- -1, -1, -1, 143, 3, 4, 5, 6, 7, 8,
- 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
- 19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
- -1, 30, 31, 32, 33, 34, 35, 36, 37, 38,
- 39, -1, -1, -1, -1, -1, 45, 46, 47, 48,
- 49, 50, 51, 52, -1, -1, 55, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 70, 71, 72, 73, 74, 75, 76, 77, -1,
- -1, 80, 81, -1, -1, -1, -1, 86, 87, 88,
- 89, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 100, 101, 102, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 124, 125, 126, 127, 128,
- 129, 130, 131, 132, 133, -1, 135, 136, -1, -1,
- -1, -1, -1, -1, 143, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, -1, -1, -1, -1, -1, -1,
- -1, 19, -1, 21, 22, 23, 24, -1, -1, -1,
- -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
- -1, 39, -1, -1, -1, -1, -1, -1, -1, -1,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
- 58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
- -1, 69, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
- 98, -1, -1, -1, -1, -1, 104, -1, 106, 107,
- 108, -1, 110, 111, 112, -1, 114, -1, -1, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
- -1, -1, -1, -1, -1, 19, 134, 21, 22, 23,
- 24, -1, -1, -1, 142, -1, 30, 31, 32, 33,
- 34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
- -1, -1, -1, -1, 48, 49, 50, 51, 52, 53,
- 54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
- -1, -1, 66, 67, -1, 69, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, -1, -1, -1, -1,
- 104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
- 114, -1, -1, 3, 4, 5, 6, 7, 8, 9,
- 10, 11, 12, -1, -1, -1, -1, -1, -1, 19,
- 134, 21, 22, 23, 24, -1, -1, -1, 142, -1,
+ 10, 11, -1, -1, -1, -1, -1, -1, -1, 19,
+ -1, 21, 22, 23, 24, -1, -1, -1, -1, -1,
30, 31, 32, 33, 34, 35, 36, -1, -1, 39,
- -1, -1, -1, -1, -1, 45, 46, 47, 48, 49,
+ -1, -1, -1, -1, -1, -1, -1, -1, 48, 49,
50, 51, 52, 53, 54, 55, 56, -1, 58, 59,
60, -1, -1, 63, -1, -1, 66, 67, -1, 69,
- 70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- 100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
- 110, 111, 112, -1, 114, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 104, -1, 106, 107, 108, -1,
+ 110, 111, 112, -1, 114, -1, -1, 3, 4, 5,
+ 6, 7, 8, 9, 10, 11, -1, -1, -1, -1,
+ -1, -1, -1, 19, 134, 21, 22, 23, 24, -1,
+ -1, -1, 142, -1, 30, 31, 32, 33, 34, 35,
+ 36, -1, -1, 39, -1, -1, -1, -1, -1, -1,
+ -1, -1, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, -1, 58, 59, 60, -1, -1, 63, -1, -1,
+ 66, 67, -1, 69, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 91, -1, -1, 94, 95,
+ -1, 97, 98, -1, -1, -1, -1, -1, 104, -1,
+ 106, 107, 108, -1, 110, 111, 112, -1, 114, -1,
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- 12, -1, -1, -1, 134, 135, 136, 19, -1, 21,
- 22, 23, 24, -1, -1, -1, -1, -1, 30, 31,
+ 12, -1, -1, -1, -1, -1, -1, 19, 134, 21,
+ 22, 23, 24, -1, -1, -1, 142, -1, 30, 31,
32, 33, 34, 35, 36, -1, -1, 39, -1, -1,
- -1, -1, -1, 45, -1, 47, 48, 49, 50, 51,
+ -1, -1, -1, 45, 46, 47, 48, 49, 50, 51,
52, 53, 54, 55, 56, -1, 58, 59, 60, -1,
-1, 63, -1, -1, 66, 67, -1, 69, 70, 71,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
@@ -4534,16 +4628,16 @@ static const yytype_int16 yycheck[] =
-1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
-1, -1, 104, -1, 106, 107, 108, -1, 110, 111,
112, -1, 114, -1, -1, -1, -1, -1, -1, 3,
- 4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
+ 4, 5, 6, 7, 8, 9, 10, 11, 12, -1,
-1, -1, 134, 135, 136, 19, -1, 21, 22, 23,
24, -1, -1, -1, -1, -1, 30, 31, 32, 33,
34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
- -1, -1, -1, -1, 48, 49, 50, 51, 52, 53,
+ -1, 45, -1, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
-1, -1, 66, 67, -1, 69, 70, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, 100, -1, 102, 103,
+ 94, 95, -1, 97, 98, -1, 100, -1, -1, -1,
104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
114, -1, -1, -1, -1, -1, -1, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, -1, -1, -1,
@@ -4591,7 +4685,7 @@ static const yytype_int16 yycheck[] =
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 84, 85, -1, -1, -1, -1, -1, 91,
-1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
- 102, -1, 104, -1, 106, 107, 108, -1, 110, 111,
+ 102, 103, 104, -1, 106, 107, 108, -1, 110, 111,
112, -1, 114, -1, -1, -1, -1, -1, -1, 3,
4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
-1, -1, 134, 135, 136, 19, -1, 21, 22, 23,
@@ -4602,7 +4696,7 @@ static const yytype_int16 yycheck[] =
-1, -1, 66, 67, -1, 69, 70, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
84, 85, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, -1, -1, 102, 103,
+ 94, 95, -1, 97, 98, -1, 100, -1, 102, -1,
104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
114, -1, -1, -1, -1, -1, -1, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, -1, -1, -1,
@@ -4614,7 +4708,7 @@ static const yytype_int16 yycheck[] =
66, 67, -1, 69, 70, 71, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 84, 85,
-1, -1, -1, -1, -1, 91, -1, -1, 94, 95,
- -1, 97, 98, -1, 100, -1, 102, -1, 104, -1,
+ -1, 97, 98, -1, -1, -1, 102, 103, 104, -1,
106, 107, 108, -1, 110, 111, 112, -1, 114, -1,
-1, -1, -1, -1, -1, 3, 4, 5, 6, 7,
8, 9, 10, 11, -1, -1, -1, -1, 134, 135,
@@ -4626,7 +4720,7 @@ static const yytype_int16 yycheck[] =
-1, 69, 70, 71, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 84, 85, -1, -1,
-1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
- 98, -1, -1, -1, 102, -1, 104, -1, 106, 107,
+ 98, -1, 100, -1, 102, -1, 104, -1, 106, 107,
108, -1, 110, 111, 112, -1, 114, -1, -1, -1,
-1, -1, -1, 3, 4, 5, 6, 7, 8, 9,
10, 11, -1, -1, -1, -1, 134, 135, 136, 19,
@@ -4638,7 +4732,7 @@ static const yytype_int16 yycheck[] =
70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- 100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
+ -1, -1, 102, -1, 104, -1, 106, 107, 108, -1,
110, 111, 112, -1, 114, -1, -1, -1, -1, -1,
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
-1, -1, -1, -1, 134, 135, 136, 19, -1, 21,
@@ -4697,7 +4791,7 @@ static const yytype_int16 yycheck[] =
70, 71, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 84, 85, -1, -1, -1, -1,
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- -1, -1, -1, -1, 104, -1, 106, 107, 108, -1,
+ 100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
110, 111, 112, -1, 114, -1, -1, -1, -1, -1,
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
-1, -1, -1, -1, 134, 135, 136, 19, -1, 21,
@@ -4729,33 +4823,22 @@ static const yytype_int16 yycheck[] =
36, -1, -1, 39, -1, -1, -1, -1, -1, -1,
-1, -1, 48, 49, 50, 51, 52, 53, 54, 55,
56, -1, 58, 59, 60, -1, -1, 63, -1, -1,
- 66, 67, -1, 69, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 88, -1, -1, 91, -1, -1, 94, 95,
+ 66, 67, -1, 69, 70, 71, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 84, 85,
+ -1, -1, -1, -1, -1, 91, -1, -1, 94, 95,
-1, 97, 98, -1, -1, -1, -1, -1, 104, -1,
106, 107, 108, -1, 110, 111, 112, -1, 114, -1,
- -1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
- -1, -1, -1, -1, -1, -1, -1, 19, 134, 21,
- 22, 23, 24, -1, -1, -1, -1, -1, 30, 31,
- 32, 33, 34, 35, 36, -1, -1, 39, -1, -1,
- -1, -1, -1, -1, -1, -1, 48, 49, 50, 51,
- 52, 53, 54, 55, 56, -1, 58, 59, 60, -1,
- -1, 63, -1, -1, 66, 67, -1, 69, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 91,
- -1, -1, 94, 95, -1, 97, 98, -1, 100, -1,
- -1, -1, 104, -1, 106, 107, 108, -1, 110, 111,
- 112, -1, 114, -1, -1, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, -1, -1, -1, -1, -1, -1,
- -1, 19, 134, 21, 22, 23, 24, -1, -1, -1,
+ -1, -1, -1, -1, -1, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, -1, -1, -1, -1, 134, 135,
+ 136, 19, -1, 21, 22, 23, 24, -1, -1, -1,
-1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
-1, 39, -1, -1, -1, -1, -1, -1, -1, -1,
48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
-1, 69, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
- 98, -1, 100, -1, -1, -1, 104, -1, 106, 107,
+ 88, -1, -1, 91, -1, -1, 94, 95, -1, 97,
+ 98, -1, -1, -1, -1, -1, 104, -1, 106, 107,
108, -1, 110, 111, 112, -1, 114, -1, -1, 3,
4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
-1, -1, -1, -1, -1, 19, 134, 21, 22, 23,
@@ -4766,7 +4849,7 @@ static const yytype_int16 yycheck[] =
-1, -1, 66, 67, -1, 69, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 91, -1, -1,
- 94, 95, -1, 97, 98, -1, -1, -1, -1, -1,
+ 94, 95, -1, 97, 98, -1, 100, -1, -1, -1,
104, -1, 106, 107, 108, -1, 110, 111, 112, -1,
114, -1, -1, 3, 4, 5, 6, 7, 8, 9,
10, 11, -1, -1, -1, -1, -1, -1, -1, 19,
@@ -4778,7 +4861,7 @@ static const yytype_int16 yycheck[] =
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 91, -1, -1, 94, 95, -1, 97, 98, -1,
- -1, -1, -1, -1, 104, -1, 106, 107, 108, -1,
+ 100, -1, -1, -1, 104, -1, 106, 107, 108, -1,
110, 111, 112, -1, 114, -1, -1, 3, 4, 5,
6, 7, 8, 9, 10, 11, -1, -1, -1, -1,
-1, -1, -1, 19, 134, 21, 22, 23, 24, -1,
@@ -4800,11 +4883,51 @@ static const yytype_int16 yycheck[] =
-1, 63, -1, -1, 66, 67, -1, 69, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 91,
- -1, -1, 94, 95, -1, 97, 98, -1, -1, 51,
- 52, -1, 104, 55, 106, 107, 108, -1, 110, 111,
- 112, -1, 114, -1, -1, -1, -1, -1, 70, 71,
+ -1, -1, 94, 95, -1, 97, 98, -1, -1, -1,
+ -1, -1, 104, -1, 106, 107, 108, -1, 110, 111,
+ 112, -1, 114, -1, -1, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, -1, -1, -1, -1, -1, -1,
+ -1, 19, 134, 21, 22, 23, 24, -1, -1, -1,
+ -1, -1, 30, 31, 32, 33, 34, 35, 36, -1,
+ -1, 39, -1, -1, -1, -1, -1, -1, -1, -1,
+ 48, 49, 50, 51, 52, 53, 54, 55, 56, -1,
+ 58, 59, 60, -1, -1, 63, -1, -1, 66, 67,
+ -1, 69, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 91, -1, -1, 94, 95, -1, 97,
+ 98, -1, -1, -1, -1, -1, 104, -1, 106, 107,
+ 108, -1, 110, 111, 112, -1, 114, -1, -1, 3,
+ 4, 5, 6, 7, 8, 9, 10, 11, -1, -1,
+ -1, -1, -1, -1, -1, 19, 134, 21, 22, 23,
+ 24, -1, -1, -1, -1, -1, 30, 31, 32, 33,
+ 34, 35, 36, -1, -1, 39, -1, -1, -1, -1,
+ -1, -1, -1, -1, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, -1, 58, 59, 60, -1, -1, 63,
+ -1, -1, 66, 67, -1, 69, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 91, -1, -1,
+ 94, 95, -1, 97, 98, -1, -1, 51, 52, -1,
+ 104, 55, 106, 107, 108, -1, 110, 111, 112, -1,
+ 114, -1, -1, -1, -1, -1, 70, 71, 72, 73,
+ 74, 75, 76, 77, -1, -1, 80, 81, -1, -1,
+ 134, -1, 86, 87, 88, 89, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 100, 101, 102, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
+ -1, 135, 136, 51, 52, -1, -1, 55, -1, 143,
+ 144, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 70, 71, 72, 73, 74, 75, 76, 77,
+ -1, -1, 80, 81, -1, -1, -1, -1, 86, 87,
+ 88, 89, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 100, 101, 102, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 124, 125, 126, 127,
+ 128, 129, 130, 131, 132, 133, -1, 135, 136, 51,
+ 52, -1, -1, 55, -1, 143, 144, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 70, 71,
72, 73, 74, 75, 76, 77, -1, -1, 80, 81,
- -1, -1, 134, -1, 86, 87, 88, 89, -1, -1,
+ -1, -1, -1, -1, 86, 87, 88, 89, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 100, 101,
102, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
@@ -4910,39 +5033,18 @@ static const yytype_int16 yycheck[] =
80, 81, -1, -1, -1, -1, 86, 87, 88, 89,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
100, 101, 102, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 44, -1, -1, -1,
- -1, -1, -1, -1, 124, 125, 126, 127, 128, 129,
- 130, 131, 132, 133, -1, 135, 136, -1, -1, -1,
- -1, -1, -1, 143, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 101, -1, -1, -1, -1, 44, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 122, -1, 124, 125, 126, 127,
- 128, 129, 130, 131, 132, 133, 72, 73, 74, 75,
- 76, 77, 78, 79, 80, 81, 82, 83, -1, -1,
- -1, -1, 88, 89, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 101, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 122, -1, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- -1, -1, -1, -1, 88, 89, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 101, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 122, -1,
- 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, -1, -1, 148, -1, 88, 89, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 101,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 122, -1, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133, -1, -1, -1, -1, -1, -1, -1, -1,
- 142, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ -1, -1, -1, -1, 124, 125, 126, 127, 128, 129,
+ 130, 131, 132, 133, -1, 135, 136, 51, 52, -1,
+ -1, 55, -1, 143, 144, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 70, 71, 72, 73,
+ 74, 75, 76, 77, -1, -1, 80, 81, -1, -1,
+ -1, -1, 86, 87, 88, 89, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 100, 101, 102, -1,
+ -1, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, -1, -1, -1, -1, 88, 89, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 101, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
+ 101, 135, 136, -1, -1, -1, -1, -1, -1, 143,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 122, -1, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, -1, -1, -1, -1, -1, -1, -1,
@@ -4955,37 +5057,25 @@ static const yytype_int16 yycheck[] =
130, 131, 132, 133, -1, -1, -1, -1, -1, -1,
-1, -1, 142, 72, 73, 74, 75, 76, 77, 78,
79, 80, 81, 82, 83, -1, -1, -1, -1, 88,
- 89, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 89, -1, -1, -1, 93, -1, -1, -1, -1, -1,
-1, -1, 101, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 122, -1, 124, 125, 126, 127, 128,
- 129, 130, 131, 132, 133, -1, -1, -1, -1, -1,
- -1, -1, -1, 142, 72, 73, 74, 75, 76, 77,
- 78, 79, 80, 81, 82, 83, -1, -1, -1, -1,
- 88, 89, -1, -1, -1, 93, -1, -1, -1, -1,
- -1, -1, -1, 101, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 122, -1, 124, 125, 126, 127,
- 128, 129, 130, 131, 132, 133, 72, 73, 74, 75,
- 76, 77, 78, 79, 80, 81, 82, 83, -1, -1,
- -1, -1, 88, 89, -1, -1, -1, 93, -1, -1,
- -1, -1, -1, -1, -1, 101, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 122, -1, 124, 125,
- 126, 127, 128, 129, 130, 131, 132, 133, 72, 73,
- 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
- -1, -1, -1, -1, 88, 89, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 101, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 122, -1,
- 124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, -1, -1, -1, -1, 88, 89, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 101,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 129, 130, 131, 132, 133, 72, 73, 74, 75, 76,
+ 77, 78, 79, 80, 81, 82, 83, -1, -1, -1,
+ -1, 88, 89, -1, -1, -1, 93, -1, -1, -1,
+ -1, -1, -1, -1, 101, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 124, 125, 126, 127, 128, 129, 130, 131,
- 132, 133
+ -1, -1, -1, -1, -1, 122, -1, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133, 72, 73, 74,
+ 75, 76, 77, 78, 79, 80, 81, 82, 83, -1,
+ -1, -1, -1, 88, 89, 72, 73, 74, 75, 76,
+ 77, -1, -1, 80, 81, -1, 101, -1, -1, -1,
+ -1, 88, 89, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 101, -1, -1, 122, -1, 124,
+ 125, 126, 127, 128, 129, 130, 131, 132, 133, -1,
+ -1, -1, -1, -1, -1, -1, -1, 124, 125, 126,
+ 127, 128, 129, 130, 131, 132, 133
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
@@ -5002,9 +5092,9 @@ static const yytype_int16 yystos[] =
154, 159, 161, 163, 164, 165, 168, 169, 172, 173,
175, 176, 177, 179, 180, 189, 203, 220, 241, 242,
252, 253, 254, 258, 259, 260, 266, 267, 268, 270,
- 271, 272, 273, 274, 275, 312, 325, 154, 21, 22,
+ 271, 272, 273, 274, 275, 311, 324, 154, 21, 22,
30, 31, 32, 39, 51, 55, 69, 88, 91, 94,
- 134, 164, 165, 181, 182, 203, 220, 272, 275, 312,
+ 134, 164, 165, 181, 182, 203, 220, 272, 275, 311,
182, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 30, 31, 32, 33, 34,
@@ -5013,92 +5103,93 @@ static const yytype_int16 yystos[] =
76, 77, 80, 81, 86, 87, 88, 89, 100, 101,
102, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 135, 136, 143, 144, 183, 187, 188, 274, 306,
- 204, 91, 163, 167, 180, 189, 220, 272, 273, 275,
- 167, 210, 212, 69, 91, 173, 180, 220, 225, 272,
- 275, 33, 34, 35, 36, 48, 49, 50, 51, 55,
- 106, 183, 184, 185, 268, 115, 118, 119, 146, 148,
- 167, 262, 263, 264, 318, 322, 323, 324, 51, 100,
- 102, 103, 135, 172, 189, 195, 198, 201, 254, 309,
- 311, 195, 195, 144, 192, 193, 196, 197, 325, 192,
- 196, 144, 319, 323, 184, 155, 138, 189, 220, 189,
- 189, 189, 55, 1, 94, 157, 158, 159, 174, 175,
- 325, 205, 207, 190, 201, 309, 325, 189, 308, 309,
- 325, 91, 142, 179, 220, 272, 275, 208, 53, 54,
- 56, 63, 107, 183, 269, 63, 64, 65, 116, 117,
- 255, 256, 61, 255, 62, 255, 63, 255, 63, 255,
- 58, 59, 168, 189, 189, 318, 324, 40, 41, 42,
- 43, 44, 37, 38, 51, 53, 54, 55, 56, 69,
- 94, 100, 101, 102, 103, 128, 131, 144, 278, 279,
- 280, 281, 282, 285, 286, 287, 288, 290, 291, 292,
- 293, 295, 296, 297, 300, 301, 302, 303, 304, 325,
- 279, 280, 28, 239, 121, 142, 94, 100, 176, 121,
- 72, 73, 74, 75, 76, 77, 78, 79, 80, 81,
- 82, 83, 88, 89, 93, 101, 122, 124, 125, 126,
- 127, 128, 129, 130, 131, 132, 133, 90, 105, 140,
- 147, 316, 90, 316, 317, 26, 138, 243, 254, 92,
- 92, 192, 196, 243, 163, 51, 55, 181, 58, 59,
- 279, 125, 276, 90, 140, 316, 219, 307, 90, 147,
- 315, 156, 157, 55, 16, 221, 322, 121, 90, 140,
- 316, 92, 92, 221, 167, 167, 55, 90, 140, 316,
- 25, 107, 142, 265, 318, 115, 264, 20, 246, 322,
- 57, 310, 189, 189, 189, 93, 142, 199, 200, 325,
- 310, 199, 200, 85, 194, 195, 201, 309, 325, 195,
- 163, 318, 320, 163, 160, 138, 157, 90, 316, 92,
- 159, 174, 145, 318, 324, 320, 159, 320, 141, 200,
- 321, 324, 200, 321, 139, 321, 55, 176, 177, 178,
- 142, 90, 140, 316, 144, 237, 290, 63, 255, 257,
- 261, 262, 63, 256, 61, 62, 63, 63, 101, 101,
- 154, 167, 167, 167, 167, 159, 163, 163, 57, 121,
- 294, 85, 290, 295, 121, 156, 189, 142, 305, 325,
- 51, 142, 305, 322, 142, 289, 189, 142, 289, 51,
- 142, 289, 51, 121, 156, 240, 100, 168, 189, 201,
- 202, 174, 142, 179, 142, 161, 162, 168, 180, 189,
- 191, 202, 220, 275, 189, 189, 189, 189, 189, 189,
- 189, 189, 189, 189, 189, 189, 189, 189, 51, 189,
+ 204, 91, 163, 164, 165, 167, 180, 189, 220, 272,
+ 273, 275, 167, 210, 212, 69, 91, 173, 180, 220,
+ 225, 272, 275, 33, 34, 35, 36, 48, 49, 50,
+ 51, 55, 106, 183, 184, 185, 268, 115, 118, 119,
+ 146, 148, 167, 262, 263, 264, 317, 321, 322, 323,
+ 51, 100, 102, 103, 135, 172, 189, 195, 198, 201,
+ 254, 309, 310, 195, 195, 144, 192, 193, 196, 197,
+ 324, 192, 196, 144, 318, 184, 155, 138, 189, 220,
+ 189, 189, 189, 55, 1, 94, 157, 158, 159, 174,
+ 175, 324, 205, 207, 190, 201, 309, 324, 189, 308,
+ 309, 324, 91, 142, 179, 220, 272, 275, 208, 53,
+ 54, 56, 63, 107, 183, 269, 63, 64, 65, 116,
+ 117, 255, 256, 61, 255, 62, 255, 63, 255, 63,
+ 255, 58, 59, 168, 189, 189, 317, 323, 40, 41,
+ 42, 43, 44, 37, 38, 51, 53, 54, 55, 56,
+ 69, 94, 100, 101, 102, 103, 128, 131, 144, 278,
+ 279, 280, 281, 282, 285, 286, 287, 288, 290, 291,
+ 292, 293, 295, 296, 297, 300, 301, 302, 303, 304,
+ 324, 278, 280, 28, 239, 121, 142, 94, 100, 176,
+ 121, 72, 73, 74, 75, 76, 77, 78, 79, 80,
+ 81, 82, 83, 88, 89, 93, 101, 122, 124, 125,
+ 126, 127, 128, 129, 130, 131, 132, 133, 90, 105,
+ 140, 147, 315, 90, 315, 316, 26, 138, 243, 254,
+ 92, 92, 192, 196, 243, 163, 51, 55, 181, 58,
+ 59, 279, 125, 276, 90, 140, 315, 219, 307, 90,
+ 147, 314, 156, 157, 55, 278, 278, 16, 221, 321,
+ 121, 90, 140, 315, 92, 92, 221, 167, 167, 55,
+ 90, 140, 315, 25, 107, 142, 265, 317, 115, 264,
+ 20, 246, 321, 57, 189, 189, 189, 93, 142, 199,
+ 200, 324, 57, 199, 200, 85, 194, 195, 201, 309,
+ 324, 195, 163, 317, 319, 163, 322, 160, 138, 157,
+ 90, 315, 92, 159, 174, 145, 317, 323, 319, 159,
+ 319, 141, 200, 320, 323, 200, 320, 139, 320, 55,
+ 176, 177, 178, 142, 90, 140, 315, 144, 237, 290,
+ 63, 255, 257, 261, 262, 63, 256, 61, 62, 63,
+ 63, 101, 101, 154, 167, 167, 167, 167, 159, 163,
+ 163, 57, 121, 294, 85, 290, 295, 121, 156, 189,
+ 142, 305, 324, 51, 142, 305, 321, 142, 289, 189,
+ 142, 289, 51, 142, 289, 51, 121, 156, 240, 100,
+ 168, 189, 201, 202, 174, 142, 179, 142, 161, 162,
+ 168, 180, 189, 191, 202, 220, 275, 189, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
- 189, 51, 52, 55, 187, 192, 313, 314, 194, 201,
- 51, 52, 55, 187, 192, 313, 51, 55, 313, 245,
- 244, 162, 189, 191, 162, 191, 99, 170, 217, 277,
- 216, 51, 55, 181, 313, 194, 313, 156, 163, 166,
- 15, 13, 248, 325, 157, 16, 51, 55, 194, 51,
- 55, 157, 27, 222, 322, 222, 51, 55, 194, 51,
- 55, 214, 186, 157, 246, 189, 201, 15, 261, 189,
- 189, 319, 100, 189, 198, 309, 189, 311, 320, 145,
- 318, 200, 200, 320, 145, 184, 152, 139, 191, 320,
- 159, 206, 309, 176, 178, 51, 55, 194, 51, 55,
- 290, 209, 63, 157, 262, 189, 189, 51, 100, 226,
- 295, 320, 320, 142, 189, 15, 51, 282, 287, 304,
- 288, 293, 300, 302, 295, 297, 302, 51, 295, 189,
- 15, 79, 126, 231, 232, 325, 189, 200, 320, 178,
- 142, 44, 121, 44, 90, 140, 316, 319, 92, 92,
- 192, 196, 141, 200, 92, 92, 193, 196, 193, 196,
- 231, 231, 171, 322, 167, 156, 141, 15, 320, 183,
- 189, 202, 249, 325, 18, 224, 325, 17, 223, 224,
- 92, 92, 141, 92, 92, 224, 211, 213, 141, 167,
- 184, 139, 15, 200, 221, 261, 189, 199, 85, 309,
- 139, 320, 321, 141, 234, 319, 29, 113, 238, 139,
- 142, 292, 320, 142, 85, 44, 305, 142, 289, 142,
- 289, 142, 289, 142, 289, 289, 44, 228, 230, 233,
- 281, 283, 284, 287, 295, 296, 298, 299, 302, 304,
- 156, 100, 189, 178, 159, 189, 51, 55, 194, 51,
- 55, 57, 123, 162, 191, 168, 191, 170, 92, 162,
- 191, 162, 191, 170, 243, 239, 156, 157, 231, 218,
- 322, 15, 93, 250, 325, 157, 14, 251, 325, 167,
- 15, 92, 15, 157, 157, 222, 189, 157, 320, 200,
- 145, 146, 156, 157, 227, 142, 100, 320, 189, 295,
- 302, 295, 295, 189, 234, 234, 91, 220, 142, 305,
- 305, 142, 229, 220, 142, 229, 142, 229, 15, 189,
- 141, 189, 189, 162, 191, 15, 139, 157, 156, 91,
- 180, 220, 272, 275, 221, 157, 221, 15, 15, 215,
- 224, 246, 247, 51, 235, 236, 291, 15, 139, 295,
- 295, 142, 292, 289, 142, 289, 289, 289, 126, 126,
- 55, 90, 283, 287, 142, 228, 229, 299, 302, 295,
- 298, 302, 295, 139, 15, 55, 90, 140, 316, 157,
- 157, 157, 142, 319, 142, 295, 142, 295, 51, 55,
- 305, 142, 229, 142, 229, 142, 229, 142, 229, 229,
- 51, 55, 194, 51, 55, 248, 223, 15, 236, 295,
- 289, 295, 302, 295, 295, 141, 229, 142, 229, 229,
- 229, 295, 229
+ 189, 51, 189, 189, 189, 189, 189, 189, 189, 189,
+ 189, 189, 189, 189, 51, 52, 55, 187, 192, 312,
+ 313, 194, 201, 51, 52, 55, 187, 192, 312, 51,
+ 55, 312, 245, 244, 162, 189, 191, 162, 191, 99,
+ 170, 217, 277, 216, 51, 55, 181, 312, 194, 312,
+ 156, 163, 166, 15, 13, 248, 324, 121, 121, 157,
+ 16, 51, 55, 194, 51, 55, 157, 27, 222, 321,
+ 222, 51, 55, 194, 51, 55, 214, 186, 157, 246,
+ 189, 201, 15, 189, 189, 318, 100, 189, 198, 309,
+ 189, 310, 319, 145, 317, 200, 200, 319, 145, 184,
+ 152, 139, 191, 319, 159, 206, 309, 176, 178, 51,
+ 55, 194, 51, 55, 290, 209, 63, 157, 262, 189,
+ 189, 51, 100, 226, 295, 319, 319, 142, 172, 189,
+ 15, 51, 282, 287, 304, 288, 293, 300, 302, 295,
+ 297, 302, 51, 295, 172, 189, 15, 79, 126, 231,
+ 232, 324, 189, 200, 319, 178, 142, 44, 121, 44,
+ 90, 140, 315, 318, 92, 92, 192, 196, 141, 200,
+ 92, 92, 193, 196, 193, 196, 231, 231, 171, 321,
+ 167, 156, 141, 15, 319, 183, 189, 202, 249, 324,
+ 18, 224, 324, 17, 223, 224, 92, 92, 141, 92,
+ 92, 224, 211, 213, 141, 167, 184, 139, 15, 200,
+ 221, 189, 199, 85, 309, 139, 319, 320, 141, 234,
+ 318, 29, 113, 238, 139, 142, 292, 319, 142, 85,
+ 44, 44, 305, 142, 289, 142, 289, 142, 289, 142,
+ 289, 289, 44, 44, 228, 230, 233, 281, 283, 284,
+ 287, 295, 296, 298, 299, 302, 304, 156, 100, 189,
+ 178, 159, 189, 51, 55, 194, 51, 55, 57, 123,
+ 162, 191, 168, 191, 170, 92, 162, 191, 162, 191,
+ 170, 243, 239, 156, 157, 231, 218, 321, 15, 93,
+ 250, 324, 157, 14, 251, 324, 167, 15, 92, 15,
+ 157, 157, 222, 189, 157, 319, 200, 145, 146, 156,
+ 157, 227, 142, 100, 319, 189, 189, 295, 302, 295,
+ 295, 189, 189, 234, 234, 91, 220, 142, 305, 305,
+ 142, 229, 220, 142, 229, 142, 229, 15, 189, 141,
+ 189, 189, 162, 191, 15, 139, 157, 156, 91, 180,
+ 220, 272, 275, 221, 157, 221, 15, 15, 215, 224,
+ 246, 247, 51, 235, 236, 291, 15, 139, 295, 295,
+ 142, 292, 289, 142, 289, 289, 289, 126, 126, 55,
+ 90, 283, 287, 142, 228, 229, 299, 302, 295, 298,
+ 302, 295, 139, 15, 55, 90, 140, 315, 157, 157,
+ 157, 142, 318, 142, 295, 142, 295, 51, 55, 305,
+ 142, 229, 142, 229, 142, 229, 142, 229, 229, 51,
+ 55, 194, 51, 55, 248, 223, 15, 236, 295, 289,
+ 295, 302, 295, 295, 141, 229, 142, 229, 229, 229,
+ 295, 229
};
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
@@ -5108,63 +5199,63 @@ static const yytype_int16 yyr1[] =
155, 154, 156, 157, 158, 158, 158, 158, 160, 159,
159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
159, 159, 159, 159, 161, 161, 161, 161, 161, 161,
- 161, 161, 162, 162, 162, 163, 163, 163, 163, 163,
- 163, 164, 166, 165, 167, 168, 168, 169, 169, 171,
- 170, 172, 172, 172, 172, 172, 172, 172, 172, 172,
- 172, 172, 173, 173, 174, 174, 175, 175, 175, 175,
- 175, 175, 175, 175, 175, 175, 176, 176, 177, 177,
- 178, 178, 179, 179, 179, 179, 179, 179, 179, 179,
- 180, 180, 180, 180, 180, 180, 180, 180, 180, 181,
- 181, 182, 182, 182, 183, 183, 183, 183, 183, 184,
- 184, 185, 186, 185, 187, 187, 187, 187, 187, 187,
+ 161, 161, 161, 161, 161, 161, 162, 162, 162, 163,
+ 163, 163, 163, 163, 163, 164, 166, 165, 167, 168,
+ 168, 169, 169, 171, 170, 172, 172, 172, 172, 172,
+ 172, 172, 172, 172, 172, 172, 173, 173, 174, 174,
+ 175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
+ 176, 176, 177, 177, 178, 178, 179, 179, 179, 179,
+ 179, 179, 179, 179, 180, 180, 180, 180, 180, 180,
+ 180, 180, 180, 181, 181, 182, 182, 182, 183, 183,
+ 183, 183, 183, 184, 184, 185, 186, 185, 187, 187,
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
- 187, 187, 187, 187, 188, 188, 188, 188, 188, 188,
+ 187, 187, 187, 187, 187, 187, 187, 187, 188, 188,
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
- 188, 188, 188, 188, 189, 189, 189, 189, 189, 189,
+ 188, 188, 188, 188, 188, 188, 188, 188, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
189, 189, 189, 189, 189, 189, 189, 189, 189, 189,
- 189, 189, 189, 189, 189, 190, 190, 190, 190, 191,
- 191, 192, 192, 192, 193, 193, 194, 194, 194, 194,
- 194, 195, 195, 195, 195, 195, 197, 196, 198, 199,
- 199, 200, 200, 201, 201, 201, 201, 202, 202, 202,
- 203, 203, 203, 203, 203, 203, 203, 203, 203, 204,
- 203, 205, 206, 203, 207, 203, 203, 203, 203, 203,
- 203, 203, 203, 203, 203, 203, 203, 203, 208, 209,
- 203, 203, 203, 210, 211, 203, 212, 213, 203, 203,
- 203, 214, 215, 203, 216, 203, 217, 218, 203, 219,
- 203, 203, 203, 203, 203, 203, 203, 220, 221, 221,
- 221, 222, 222, 223, 223, 224, 224, 225, 225, 226,
- 226, 226, 226, 226, 226, 226, 226, 227, 226, 228,
- 228, 228, 228, 229, 229, 230, 230, 230, 230, 230,
+ 189, 189, 189, 189, 189, 189, 189, 189, 189, 190,
+ 190, 190, 190, 191, 191, 192, 192, 192, 193, 193,
+ 194, 194, 194, 194, 194, 195, 195, 195, 195, 195,
+ 197, 196, 198, 199, 199, 200, 201, 201, 201, 201,
+ 202, 202, 202, 203, 203, 203, 203, 203, 203, 203,
+ 203, 203, 204, 203, 205, 206, 203, 207, 203, 203,
+ 203, 203, 203, 203, 203, 203, 203, 203, 203, 203,
+ 203, 208, 209, 203, 203, 203, 210, 211, 203, 212,
+ 213, 203, 203, 203, 214, 215, 203, 216, 203, 217,
+ 218, 203, 219, 203, 203, 203, 203, 203, 203, 203,
+ 220, 221, 221, 221, 222, 222, 223, 223, 224, 224,
+ 225, 225, 226, 226, 226, 226, 226, 226, 226, 226,
+ 227, 226, 228, 228, 228, 228, 229, 229, 230, 230,
230, 230, 230, 230, 230, 230, 230, 230, 230, 230,
- 231, 231, 233, 232, 232, 232, 234, 234, 235, 235,
- 236, 236, 237, 237, 238, 238, 240, 239, 241, 241,
- 241, 241, 242, 242, 242, 242, 242, 242, 242, 242,
- 242, 244, 243, 245, 243, 246, 247, 247, 248, 248,
- 249, 249, 249, 250, 250, 251, 251, 252, 252, 252,
- 252, 253, 253, 254, 254, 254, 254, 255, 255, 256,
- 257, 256, 256, 256, 258, 258, 259, 259, 260, 261,
- 261, 262, 262, 263, 263, 264, 265, 264, 266, 266,
- 267, 267, 268, 269, 269, 269, 269, 269, 269, 270,
- 270, 271, 271, 271, 271, 272, 272, 272, 272, 272,
- 273, 273, 274, 274, 274, 274, 274, 274, 274, 274,
- 275, 275, 276, 277, 276, 278, 278, 279, 279, 279,
- 280, 280, 281, 282, 282, 283, 283, 284, 284, 285,
- 285, 286, 286, 287, 287, 288, 288, 288, 288, 289,
- 289, 290, 290, 290, 290, 290, 290, 290, 290, 290,
- 290, 290, 290, 290, 290, 290, 291, 291, 291, 291,
- 291, 292, 292, 293, 294, 293, 295, 295, 296, 297,
- 298, 299, 299, 300, 300, 301, 301, 302, 302, 303,
- 303, 304, 305, 305, 306, 307, 306, 308, 308, 309,
- 309, 310, 310, 311, 311, 311, 311, 312, 312, 312,
- 313, 313, 313, 313, 314, 314, 314, 315, 315, 316,
- 316, 317, 317, 318, 318, 319, 319, 320, 321, 321,
- 321, 322, 322, 322, 323, 324, 324, 325
+ 230, 230, 230, 231, 231, 233, 232, 232, 232, 234,
+ 234, 235, 235, 236, 236, 237, 237, 238, 238, 240,
+ 239, 241, 241, 241, 241, 242, 242, 242, 242, 242,
+ 242, 242, 242, 242, 244, 243, 245, 243, 246, 247,
+ 247, 248, 248, 249, 249, 249, 250, 250, 251, 251,
+ 252, 252, 252, 252, 253, 253, 254, 254, 254, 254,
+ 255, 255, 256, 257, 256, 256, 256, 258, 258, 259,
+ 259, 260, 261, 261, 262, 262, 263, 263, 264, 265,
+ 264, 266, 266, 267, 267, 268, 269, 269, 269, 269,
+ 269, 269, 270, 270, 271, 271, 271, 271, 272, 272,
+ 272, 272, 272, 273, 273, 274, 274, 274, 274, 274,
+ 274, 274, 274, 275, 275, 276, 277, 276, 278, 278,
+ 279, 279, 279, 280, 280, 281, 282, 282, 283, 283,
+ 284, 284, 285, 285, 286, 286, 287, 287, 288, 288,
+ 288, 288, 289, 289, 290, 290, 290, 290, 290, 290,
+ 290, 290, 290, 290, 290, 290, 290, 290, 290, 291,
+ 291, 291, 291, 291, 292, 292, 293, 294, 293, 295,
+ 295, 296, 297, 298, 299, 299, 300, 300, 301, 301,
+ 302, 302, 303, 303, 304, 305, 305, 306, 307, 306,
+ 308, 308, 309, 309, 310, 310, 310, 310, 310, 311,
+ 311, 311, 312, 312, 312, 312, 313, 313, 313, 314,
+ 314, 315, 315, 316, 316, 317, 317, 318, 318, 319,
+ 320, 320, 320, 321, 321, 322, 322, 323, 323, 324
};
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
@@ -5174,63 +5265,63 @@ static const yytype_int8 yyr2[] =
0, 5, 4, 2, 1, 1, 3, 2, 0, 4,
2, 3, 3, 3, 3, 3, 4, 1, 3, 3,
3, 3, 3, 1, 3, 3, 6, 5, 5, 5,
- 5, 3, 1, 3, 1, 1, 3, 3, 3, 2,
- 1, 2, 0, 5, 1, 1, 1, 1, 4, 0,
- 5, 2, 3, 4, 5, 4, 5, 2, 2, 2,
- 2, 2, 1, 3, 1, 3, 1, 2, 3, 5,
- 2, 4, 2, 4, 1, 3, 1, 3, 2, 3,
- 1, 2, 1, 4, 3, 3, 3, 3, 2, 1,
- 1, 4, 3, 3, 3, 3, 2, 1, 1, 1,
- 1, 2, 1, 3, 1, 1, 1, 1, 1, 1,
- 1, 1, 0, 4, 1, 1, 1, 1, 1, 1,
+ 5, 4, 6, 4, 6, 3, 1, 3, 1, 1,
+ 3, 3, 3, 2, 1, 2, 0, 5, 1, 1,
+ 1, 1, 4, 0, 5, 2, 3, 4, 5, 4,
+ 5, 2, 2, 2, 2, 2, 1, 3, 1, 3,
+ 1, 2, 3, 5, 2, 4, 2, 4, 1, 3,
+ 1, 3, 2, 3, 1, 2, 1, 4, 3, 3,
+ 3, 3, 2, 1, 1, 4, 3, 3, 3, 3,
+ 2, 1, 1, 1, 1, 2, 1, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 0, 4, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 3, 3, 6, 5, 5, 5,
- 5, 4, 3, 3, 2, 2, 3, 2, 2, 3,
- 3, 3, 3, 3, 3, 4, 4, 2, 2, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 3, 3, 2, 2, 3, 3, 3, 3, 6, 6,
- 4, 6, 4, 6, 1, 1, 2, 4, 2, 1,
- 3, 3, 5, 3, 1, 1, 1, 2, 2, 4,
- 2, 1, 2, 2, 4, 1, 0, 2, 2, 2,
- 1, 1, 3, 1, 2, 3, 4, 3, 4, 2,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
- 4, 0, 0, 5, 0, 3, 3, 3, 2, 3,
- 3, 1, 2, 4, 3, 2, 1, 2, 0, 0,
- 5, 6, 6, 0, 0, 7, 0, 0, 7, 5,
- 4, 0, 0, 9, 0, 6, 0, 0, 8, 0,
- 5, 4, 4, 1, 1, 1, 1, 1, 1, 1,
- 2, 1, 1, 1, 5, 1, 2, 1, 1, 1,
- 4, 6, 3, 5, 2, 4, 1, 0, 4, 4,
- 2, 2, 1, 2, 0, 6, 8, 4, 6, 4,
- 3, 6, 2, 4, 6, 2, 4, 2, 4, 1,
- 1, 1, 0, 4, 1, 4, 1, 4, 1, 3,
- 1, 1, 4, 1, 3, 3, 0, 5, 2, 4,
- 5, 5, 2, 4, 4, 3, 3, 3, 2, 1,
- 4, 0, 5, 0, 5, 5, 1, 1, 6, 1,
- 1, 1, 1, 2, 1, 2, 1, 1, 1, 1,
- 1, 1, 2, 1, 1, 2, 3, 1, 2, 1,
- 0, 4, 1, 2, 2, 3, 2, 3, 1, 1,
- 2, 1, 2, 1, 2, 1, 0, 4, 2, 3,
- 1, 4, 2, 1, 1, 1, 1, 1, 2, 2,
- 3, 1, 1, 2, 2, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 3, 3,
+ 6, 5, 5, 5, 5, 4, 3, 3, 2, 2,
+ 3, 2, 2, 3, 3, 3, 3, 3, 3, 4,
+ 4, 2, 2, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 2, 2, 3, 3,
+ 3, 3, 6, 6, 4, 6, 4, 6, 1, 1,
+ 2, 4, 2, 1, 3, 3, 5, 3, 1, 1,
+ 1, 2, 2, 4, 2, 1, 2, 2, 4, 1,
+ 0, 2, 2, 2, 1, 2, 1, 2, 3, 4,
+ 3, 4, 2, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 0, 4, 0, 0, 5, 0, 3, 3,
+ 3, 2, 3, 3, 1, 2, 4, 3, 2, 1,
+ 2, 0, 0, 5, 6, 6, 0, 0, 7, 0,
+ 0, 7, 5, 4, 0, 0, 9, 0, 6, 0,
+ 0, 8, 0, 5, 4, 4, 1, 1, 1, 1,
+ 1, 1, 1, 2, 1, 1, 1, 5, 1, 2,
+ 1, 1, 1, 4, 6, 3, 5, 2, 4, 1,
+ 0, 4, 4, 2, 2, 1, 2, 0, 6, 8,
+ 4, 6, 4, 3, 6, 2, 4, 6, 2, 4,
+ 2, 4, 1, 1, 1, 0, 4, 1, 4, 1,
+ 4, 1, 3, 1, 1, 4, 1, 3, 3, 0,
+ 5, 2, 4, 5, 5, 2, 4, 4, 3, 3,
+ 3, 2, 1, 4, 0, 5, 0, 5, 5, 1,
+ 1, 6, 1, 1, 1, 1, 2, 1, 2, 1,
+ 1, 1, 1, 1, 1, 2, 1, 1, 2, 3,
+ 1, 2, 1, 0, 4, 1, 2, 2, 3, 2,
+ 3, 1, 1, 2, 1, 2, 1, 2, 1, 0,
+ 4, 2, 3, 1, 4, 2, 1, 1, 1, 1,
+ 1, 2, 2, 3, 1, 1, 2, 2, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 0, 0, 4, 1, 1, 3, 5, 3,
- 1, 2, 2, 2, 1, 2, 1, 1, 3, 1,
- 3, 1, 1, 2, 1, 4, 2, 2, 1, 2,
- 0, 6, 8, 4, 6, 4, 6, 2, 4, 6,
- 2, 4, 2, 4, 1, 0, 1, 1, 1, 1,
- 1, 1, 1, 1, 0, 4, 1, 3, 2, 2,
- 2, 1, 3, 1, 3, 1, 1, 2, 1, 1,
- 1, 2, 2, 1, 1, 0, 4, 1, 2, 1,
- 3, 1, 2, 3, 3, 3, 2, 1, 1, 1,
+ 1, 1, 1, 1, 1, 0, 0, 4, 1, 1,
+ 3, 5, 3, 1, 2, 2, 2, 1, 2, 1,
+ 1, 3, 1, 3, 1, 1, 2, 1, 4, 2,
+ 2, 1, 2, 0, 6, 8, 4, 6, 4, 6,
+ 2, 4, 6, 2, 4, 2, 4, 1, 0, 1,
+ 1, 1, 1, 1, 1, 1, 1, 0, 4, 1,
+ 3, 2, 2, 2, 1, 3, 1, 3, 1, 1,
+ 2, 1, 1, 1, 2, 2, 1, 1, 0, 4,
+ 1, 2, 1, 3, 3, 3, 2, 3, 2, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 0, 1, 0, 1, 2, 0, 1,
- 1, 1, 1, 1, 1, 1, 2, 0
+ 1, 1, 1, 1, 1, 0, 1, 0, 2, 2,
+ 0, 1, 1, 1, 1, 1, 1, 1, 2, 0
};
@@ -5932,93 +6023,93 @@ yyreduce:
switch (yyn)
{
case 2:
-#line 1565 "mrbgems/mruby-compiler/core/parse.y"
+#line 1591 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_BEG;
if (!p->locals) p->locals = cons(0,0);
}
-#line 5941 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6032 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 3:
-#line 1570 "mrbgems/mruby-compiler/core/parse.y"
+#line 1596 "mrbgems/mruby-compiler/core/parse.y"
{
p->tree = new_scope(p, (yyvsp[0].nd));
NODE_LINENO(p->tree, (yyvsp[0].nd));
}
-#line 5950 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6041 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 4:
-#line 1577 "mrbgems/mruby-compiler/core/parse.y"
+#line 1603 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 5958 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6049 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 5:
-#line 1583 "mrbgems/mruby-compiler/core/parse.y"
+#line 1609 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, 0);
}
-#line 5966 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6057 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 6:
-#line 1587 "mrbgems/mruby-compiler/core/parse.y"
+#line 1613 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 5975 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6066 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 7:
-#line 1592 "mrbgems/mruby-compiler/core/parse.y"
+#line 1618 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), newline_node((yyvsp[0].nd)));
}
-#line 5983 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6074 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 8:
-#line 1596 "mrbgems/mruby-compiler/core/parse.y"
+#line 1622 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, 0);
}
-#line 5991 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6082 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 10:
-#line 1603 "mrbgems/mruby-compiler/core/parse.y"
+#line 1629 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = local_switch(p);
nvars_block(p);
}
-#line 6000 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6091 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 11:
-#line 1608 "mrbgems/mruby-compiler/core/parse.y"
+#line 1634 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "BEGIN not supported");
local_resume(p, (yyvsp[-3].nd));
nvars_unnest(p);
(yyval.nd) = 0;
}
-#line 6011 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6102 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 12:
-#line 1620 "mrbgems/mruby-compiler/core/parse.y"
+#line 1646 "mrbgems/mruby-compiler/core/parse.y"
{
if ((yyvsp[-2].nd)) {
(yyval.nd) = new_rescue(p, (yyvsp[-3].nd), (yyvsp[-2].nd), (yyvsp[-1].nd));
NODE_LINENO((yyval.nd), (yyvsp[-3].nd));
}
else if ((yyvsp[-1].nd)) {
- yywarn(p, "else without rescue is useless");
+ yywarning(p, "else without rescue is useless");
(yyval.nd) = push((yyvsp[-3].nd), (yyvsp[-1].nd));
}
else {
@@ -6033,291 +6124,345 @@ yyreduce:
}
}
}
-#line 6037 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6128 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 13:
-#line 1644 "mrbgems/mruby-compiler/core/parse.y"
+#line 1670 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 6045 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6136 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 14:
-#line 1650 "mrbgems/mruby-compiler/core/parse.y"
+#line 1676 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, 0);
}
-#line 6053 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6144 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 15:
-#line 1654 "mrbgems/mruby-compiler/core/parse.y"
+#line 1680 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 6062 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6153 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 16:
-#line 1659 "mrbgems/mruby-compiler/core/parse.y"
+#line 1685 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), newline_node((yyvsp[0].nd)));
}
-#line 6070 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6161 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 17:
-#line 1663 "mrbgems/mruby-compiler/core/parse.y"
+#line 1689 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_begin(p, (yyvsp[0].nd));
}
-#line 6078 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6169 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 18:
-#line 1668 "mrbgems/mruby-compiler/core/parse.y"
+#line 1694 "mrbgems/mruby-compiler/core/parse.y"
{p->lstate = EXPR_FNAME;}
-#line 6084 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6175 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 19:
-#line 1669 "mrbgems/mruby-compiler/core/parse.y"
+#line 1695 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_alias(p, (yyvsp[-2].id), (yyvsp[0].id));
}
-#line 6092 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6183 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 20:
-#line 1673 "mrbgems/mruby-compiler/core/parse.y"
+#line 1699 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 6100 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6191 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 21:
-#line 1677 "mrbgems/mruby-compiler/core/parse.y"
+#line 1703 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_if(p, cond((yyvsp[0].nd)), (yyvsp[-2].nd), 0);
}
-#line 6108 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6199 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 22:
-#line 1681 "mrbgems/mruby-compiler/core/parse.y"
+#line 1707 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_unless(p, cond((yyvsp[0].nd)), (yyvsp[-2].nd), 0);
}
-#line 6116 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6207 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 23:
-#line 1685 "mrbgems/mruby-compiler/core/parse.y"
+#line 1711 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_while(p, cond((yyvsp[0].nd)), (yyvsp[-2].nd));
}
-#line 6124 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6215 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 24:
-#line 1689 "mrbgems/mruby-compiler/core/parse.y"
+#line 1715 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_until(p, cond((yyvsp[0].nd)), (yyvsp[-2].nd));
}
-#line 6132 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6223 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 25:
-#line 1693 "mrbgems/mruby-compiler/core/parse.y"
+#line 1719 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_mod_rescue(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6140 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6231 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 26:
-#line 1697 "mrbgems/mruby-compiler/core/parse.y"
+#line 1723 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "END not supported");
(yyval.nd) = new_postexe(p, (yyvsp[-1].nd));
}
-#line 6149 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6240 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 28:
-#line 1703 "mrbgems/mruby-compiler/core/parse.y"
+#line 1729 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_masgn(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6157 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6248 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 29:
-#line 1707 "mrbgems/mruby-compiler/core/parse.y"
+#line 1733 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_asgn(p, (yyvsp[-2].nd), new_array(p, (yyvsp[0].nd)));
}
-#line 6165 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6256 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 30:
-#line 1711 "mrbgems/mruby-compiler/core/parse.y"
+#line 1737 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_masgn(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6173 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6264 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 31:
-#line 1715 "mrbgems/mruby-compiler/core/parse.y"
+#line 1741 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_masgn(p, (yyvsp[-2].nd), new_array(p, (yyvsp[0].nd)));
}
-#line 6181 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6272 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 32:
-#line 1719 "mrbgems/mruby-compiler/core/parse.y"
+#line 1745 "mrbgems/mruby-compiler/core/parse.y"
{
node *lhs = new_lvar(p, (yyvsp[0].id));
void_expr_error(p, (yyvsp[-2].nd));
assignable(p, lhs);
(yyval.nd) = new_asgn(p, lhs, (yyvsp[-2].nd));
}
-#line 6192 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6283 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 34:
-#line 1729 "mrbgems/mruby-compiler/core/parse.y"
+#line 1755 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_asgn(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6200 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6291 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 35:
-#line 1733 "mrbgems/mruby-compiler/core/parse.y"
+#line 1759 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, (yyvsp[-2].nd), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6208 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6299 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 36:
-#line 1737 "mrbgems/mruby-compiler/core/parse.y"
+#line 1763 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-5].nd), intern_op(aref), (yyvsp[-3].nd), '.'), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6216 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6307 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 37:
-#line 1741 "mrbgems/mruby-compiler/core/parse.y"
+#line 1767 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, (yyvsp[-3].num)), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6224 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6315 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 38:
-#line 1745 "mrbgems/mruby-compiler/core/parse.y"
+#line 1771 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, (yyvsp[-3].num)), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6232 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6323 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 39:
-#line 1749 "mrbgems/mruby-compiler/core/parse.y"
+#line 1775 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "constant re-assignment");
(yyval.nd) = 0;
}
-#line 6241 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6332 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 40:
-#line 1754 "mrbgems/mruby-compiler/core/parse.y"
+#line 1780 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, tCOLON2), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6249 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6340 "mrbgems/mruby-compiler/core/y.tab.c"
break;
case 41:
-#line 1758 "mrbgems/mruby-compiler/core/parse.y"
+#line 1784 "mrbgems/mruby-compiler/core/parse.y"
+ {
+ (yyval.nd) = (yyvsp[-3].nd);
+ endless_method_name(p, (yyvsp[-3].nd));
+ void_expr_error(p, (yyvsp[0].nd));
+ defn_setup(p, (yyval.nd), (yyvsp[-2].nd), (yyvsp[0].nd));
+ nvars_unnest(p);
+ p->in_def--;
+ }
+#line 6353 "mrbgems/mruby-compiler/core/y.tab.c"
+ break;
+
+ case 42:
+#line 1793 "mrbgems/mruby-compiler/core/parse.y"
+ {
+ (yyval.nd) = (yyvsp[-5].nd);
+ endless_method_name(p, (yyvsp[-5].nd));
+ void_expr_error(p, (yyvsp[-2].nd));
+ void_expr_error(p, (yyvsp[0].nd));
+ defn_setup(p, (yyval.nd), (yyvsp[-4].nd), new_mod_rescue(p, (yyvsp[-2].nd), (yyvsp[0].nd)));
+ nvars_unnest(p);
+ p->in_def--;
+ }
+#line 6367 "mrbgems/mruby-compiler/core/y.tab.c"
+ break;
+
+ case 43:
+#line 1803 "mrbgems/mruby-compiler/core/parse.y"
+ {
+ (yyval.nd) = (yyvsp[-3].nd);
+ void_expr_error(p, (yyvsp[0].nd));
+ defs_setup(p, (yyval.nd), (yyvsp[-2].nd), (yyvsp[0].nd));
+ nvars_unnest(p);
+ p->in_def--;
+ p->in_single--;
+ }
+#line 6380 "mrbgems/mruby-compiler/core/y.tab.c"
+ break;
+
+ case 44:
+#line 1812 "mrbgems/mruby-compiler/core/parse.y"
+ {
+ (yyval.nd) = (yyvsp[-5].nd);
+ void_expr_error(p, (yyvsp[-2].nd));
+ void_expr_error(p, (yyvsp[0].nd));
+ defs_setup(p, (yyval.nd), (yyvsp[-4].nd), new_mod_rescue(p, (yyvsp[-2].nd), (yyvsp[0].nd)));
+ nvars_unnest(p);
+ p->in_def--;
+ p->in_single--;
+ }
+#line 6394 "mrbgems/mruby-compiler/core/y.tab.c"
+ break;
+
+ case 45:
+#line 1822 "mrbgems/mruby-compiler/core/parse.y"
{
backref_error(p, (yyvsp[-2].nd));
(yyval.nd) = new_begin(p, 0);
}
-#line 6258 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6403 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 43:
-#line 1766 "mrbgems/mruby-compiler/core/parse.y"
+ case 47:
+#line 1830 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_mod_rescue(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6266 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6411 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 46:
-#line 1775 "mrbgems/mruby-compiler/core/parse.y"
+ case 50:
+#line 1839 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_and(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6274 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6419 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 47:
-#line 1779 "mrbgems/mruby-compiler/core/parse.y"
+ case 51:
+#line 1843 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_or(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6282 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6427 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 48:
-#line 1783 "mrbgems/mruby-compiler/core/parse.y"
+ case 52:
+#line 1847 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, cond((yyvsp[0].nd)), "!");
}
-#line 6290 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6435 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 49:
-#line 1787 "mrbgems/mruby-compiler/core/parse.y"
+ case 53:
+#line 1851 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, cond((yyvsp[0].nd)), "!");
}
-#line 6298 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6443 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 51:
-#line 1795 "mrbgems/mruby-compiler/core/parse.y"
+ case 55:
+#line 1859 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_def(p, (yyvsp[0].id), nint(p->cmdarg_stack), local_switch(p));
p->cmdarg_stack = 0;
p->in_def++;
nvars_block(p);
}
-#line 6309 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6454 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 52:
-#line 1804 "mrbgems/mruby-compiler/core/parse.y"
+ case 56:
+#line 1868 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_FNAME;
}
-#line 6317 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6462 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 53:
-#line 1808 "mrbgems/mruby-compiler/core/parse.y"
+ case 57:
+#line 1872 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_sdef(p, (yyvsp[-3].nd), (yyvsp[0].id), nint(p->cmdarg_stack), local_switch(p));
p->cmdarg_stack = 0;
@@ -6326,1054 +6471,1054 @@ yyreduce:
nvars_block(p);
p->lstate = EXPR_ENDFN; /* force for args */
}
-#line 6330 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6475 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 54:
-#line 1819 "mrbgems/mruby-compiler/core/parse.y"
+ case 58:
+#line 1883 "mrbgems/mruby-compiler/core/parse.y"
{
if (!(yyvsp[0].nd)) (yyval.nd) = new_nil(p);
else {
(yyval.nd) = (yyvsp[0].nd);
}
}
-#line 6341 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6486 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 58:
-#line 1833 "mrbgems/mruby-compiler/core/parse.y"
+ case 62:
+#line 1897 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), (yyvsp[-2].num));
}
-#line 6349 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6494 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 59:
-#line 1839 "mrbgems/mruby-compiler/core/parse.y"
+ case 63:
+#line 1903 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
nvars_nest(p);
}
-#line 6358 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6503 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 60:
-#line 1846 "mrbgems/mruby-compiler/core/parse.y"
+ case 64:
+#line 1910 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_block(p, (yyvsp[-2].nd), (yyvsp[-1].nd));
local_unnest(p);
nvars_unnest(p);
}
-#line 6368 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6513 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 61:
-#line 1854 "mrbgems/mruby-compiler/core/parse.y"
+ case 65:
+#line 1918 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_fcall(p, (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 6376 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6521 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 62:
-#line 1858 "mrbgems/mruby-compiler/core/parse.y"
+ case 66:
+#line 1922 "mrbgems/mruby-compiler/core/parse.y"
{
args_with_block(p, (yyvsp[-1].nd), (yyvsp[0].nd));
(yyval.nd) = new_fcall(p, (yyvsp[-2].id), (yyvsp[-1].nd));
}
-#line 6385 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6530 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 63:
-#line 1863 "mrbgems/mruby-compiler/core/parse.y"
+ case 67:
+#line 1927 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), (yyvsp[-2].num));
}
-#line 6393 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6538 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 64:
-#line 1867 "mrbgems/mruby-compiler/core/parse.y"
+ case 68:
+#line 1931 "mrbgems/mruby-compiler/core/parse.y"
{
args_with_block(p, (yyvsp[-1].nd), (yyvsp[0].nd));
(yyval.nd) = new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), (yyvsp[-1].nd), (yyvsp[-3].num));
}
-#line 6402 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6547 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 65:
-#line 1872 "mrbgems/mruby-compiler/core/parse.y"
+ case 69:
+#line 1936 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), tCOLON2);
}
-#line 6410 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6555 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 66:
-#line 1876 "mrbgems/mruby-compiler/core/parse.y"
+ case 70:
+#line 1940 "mrbgems/mruby-compiler/core/parse.y"
{
args_with_block(p, (yyvsp[-1].nd), (yyvsp[0].nd));
(yyval.nd) = new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), (yyvsp[-1].nd), tCOLON2);
}
-#line 6419 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6564 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 67:
-#line 1881 "mrbgems/mruby-compiler/core/parse.y"
+ case 71:
+#line 1945 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_super(p, (yyvsp[0].nd));
}
-#line 6427 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6572 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 68:
-#line 1885 "mrbgems/mruby-compiler/core/parse.y"
+ case 72:
+#line 1949 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_yield(p, (yyvsp[0].nd));
}
-#line 6435 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6580 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 69:
-#line 1889 "mrbgems/mruby-compiler/core/parse.y"
+ case 73:
+#line 1953 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_return(p, ret_args(p, (yyvsp[0].nd)));
}
-#line 6443 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6588 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 70:
-#line 1893 "mrbgems/mruby-compiler/core/parse.y"
+ case 74:
+#line 1957 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_break(p, ret_args(p, (yyvsp[0].nd)));
}
-#line 6451 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6596 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 71:
-#line 1897 "mrbgems/mruby-compiler/core/parse.y"
+ case 75:
+#line 1961 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_next(p, ret_args(p, (yyvsp[0].nd)));
}
-#line 6459 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6604 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 72:
-#line 1903 "mrbgems/mruby-compiler/core/parse.y"
+ case 76:
+#line 1967 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 6467 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6612 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 73:
-#line 1907 "mrbgems/mruby-compiler/core/parse.y"
+ case 77:
+#line 1971 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 6475 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6620 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 75:
-#line 1914 "mrbgems/mruby-compiler/core/parse.y"
+ case 79:
+#line 1978 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 6483 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6628 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 76:
-#line 1920 "mrbgems/mruby-compiler/core/parse.y"
+ case 80:
+#line 1984 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 6491 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6636 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 77:
-#line 1924 "mrbgems/mruby-compiler/core/parse.y"
+ case 81:
+#line 1988 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1(push((yyvsp[-1].nd),(yyvsp[0].nd)));
}
-#line 6499 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6644 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 78:
-#line 1928 "mrbgems/mruby-compiler/core/parse.y"
+ case 82:
+#line 1992 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list2((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6507 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6652 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 79:
-#line 1932 "mrbgems/mruby-compiler/core/parse.y"
+ case 83:
+#line 1996 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[-4].nd), (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6515 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6660 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 80:
-#line 1936 "mrbgems/mruby-compiler/core/parse.y"
+ case 84:
+#line 2000 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list2((yyvsp[-1].nd), new_nil(p));
}
-#line 6523 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6668 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 81:
-#line 1940 "mrbgems/mruby-compiler/core/parse.y"
+ case 85:
+#line 2004 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[-3].nd), new_nil(p), (yyvsp[0].nd));
}
-#line 6531 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6676 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 82:
-#line 1944 "mrbgems/mruby-compiler/core/parse.y"
+ case 86:
+#line 2008 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list2(0, (yyvsp[0].nd));
}
-#line 6539 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6684 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 83:
-#line 1948 "mrbgems/mruby-compiler/core/parse.y"
+ case 87:
+#line 2012 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3(0, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 6547 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6692 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 84:
-#line 1952 "mrbgems/mruby-compiler/core/parse.y"
+ case 88:
+#line 2016 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list2(0, new_nil(p));
}
-#line 6555 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6700 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 85:
-#line 1956 "mrbgems/mruby-compiler/core/parse.y"
+ case 89:
+#line 2020 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3(0, new_nil(p), (yyvsp[0].nd));
}
-#line 6563 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6708 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 87:
-#line 1963 "mrbgems/mruby-compiler/core/parse.y"
+ case 91:
+#line 2027 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_masgn(p, (yyvsp[-1].nd), NULL);
}
-#line 6571 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6716 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 88:
-#line 1969 "mrbgems/mruby-compiler/core/parse.y"
+ case 92:
+#line 2033 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[-1].nd));
}
-#line 6579 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6724 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 89:
-#line 1973 "mrbgems/mruby-compiler/core/parse.y"
+ case 93:
+#line 2037 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[-1].nd));
}
-#line 6587 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6732 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 90:
-#line 1979 "mrbgems/mruby-compiler/core/parse.y"
+ case 94:
+#line 2043 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 6595 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6740 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 91:
-#line 1983 "mrbgems/mruby-compiler/core/parse.y"
+ case 95:
+#line 2047 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 6603 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6748 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 92:
-#line 1989 "mrbgems/mruby-compiler/core/parse.y"
+ case 96:
+#line 2053 "mrbgems/mruby-compiler/core/parse.y"
{
assignable(p, (yyvsp[0].nd));
}
-#line 6611 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6756 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 93:
-#line 1993 "mrbgems/mruby-compiler/core/parse.y"
+ case 97:
+#line 2057 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), intern_op(aref), (yyvsp[-1].nd), '.');
}
-#line 6619 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6764 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 94:
-#line 1997 "mrbgems/mruby-compiler/core/parse.y"
+ case 98:
+#line 2061 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, (yyvsp[-1].num));
}
-#line 6627 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6772 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 95:
-#line 2001 "mrbgems/mruby-compiler/core/parse.y"
+ case 99:
+#line 2065 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, tCOLON2);
}
-#line 6635 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6780 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 96:
-#line 2005 "mrbgems/mruby-compiler/core/parse.y"
+ case 100:
+#line 2069 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, (yyvsp[-1].num));
}
-#line 6643 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6788 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 97:
-#line 2009 "mrbgems/mruby-compiler/core/parse.y"
+ case 101:
+#line 2073 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "dynamic constant assignment");
(yyval.nd) = new_colon2(p, (yyvsp[-2].nd), (yyvsp[0].id));
}
-#line 6653 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6798 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 98:
-#line 2015 "mrbgems/mruby-compiler/core/parse.y"
+ case 102:
+#line 2079 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "dynamic constant assignment");
(yyval.nd) = new_colon3(p, (yyvsp[0].id));
}
-#line 6663 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6808 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 99:
-#line 2021 "mrbgems/mruby-compiler/core/parse.y"
+ case 103:
+#line 2085 "mrbgems/mruby-compiler/core/parse.y"
{
backref_error(p, (yyvsp[0].nd));
(yyval.nd) = 0;
}
-#line 6672 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6817 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 100:
-#line 2028 "mrbgems/mruby-compiler/core/parse.y"
+ case 104:
+#line 2092 "mrbgems/mruby-compiler/core/parse.y"
{
assignable(p, (yyvsp[0].nd));
}
-#line 6680 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6825 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 101:
-#line 2032 "mrbgems/mruby-compiler/core/parse.y"
+ case 105:
+#line 2096 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), intern_op(aref), (yyvsp[-1].nd), '.');
}
-#line 6688 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6833 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 102:
-#line 2036 "mrbgems/mruby-compiler/core/parse.y"
+ case 106:
+#line 2100 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, (yyvsp[-1].num));
}
-#line 6696 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6841 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 103:
-#line 2040 "mrbgems/mruby-compiler/core/parse.y"
+ case 107:
+#line 2104 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, tCOLON2);
}
-#line 6704 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6849 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 104:
-#line 2044 "mrbgems/mruby-compiler/core/parse.y"
+ case 108:
+#line 2108 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, (yyvsp[-1].num));
}
-#line 6712 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6857 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 105:
-#line 2048 "mrbgems/mruby-compiler/core/parse.y"
+ case 109:
+#line 2112 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "dynamic constant assignment");
(yyval.nd) = new_colon2(p, (yyvsp[-2].nd), (yyvsp[0].id));
}
-#line 6722 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6867 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 106:
-#line 2054 "mrbgems/mruby-compiler/core/parse.y"
+ case 110:
+#line 2118 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "dynamic constant assignment");
(yyval.nd) = new_colon3(p, (yyvsp[0].id));
}
-#line 6732 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6877 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 107:
-#line 2060 "mrbgems/mruby-compiler/core/parse.y"
+ case 111:
+#line 2124 "mrbgems/mruby-compiler/core/parse.y"
{
backref_error(p, (yyvsp[0].nd));
(yyval.nd) = 0;
}
-#line 6741 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6886 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 108:
-#line 2065 "mrbgems/mruby-compiler/core/parse.y"
+ case 112:
+#line 2129 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "can't assign to numbered parameter");
}
-#line 6749 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6894 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 109:
-#line 2071 "mrbgems/mruby-compiler/core/parse.y"
+ case 113:
+#line 2135 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "class/module name must be CONSTANT");
}
-#line 6757 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6902 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 111:
-#line 2078 "mrbgems/mruby-compiler/core/parse.y"
+ case 115:
+#line 2142 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = cons(nint(1), nsym((yyvsp[0].id)));
}
-#line 6765 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6910 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 112:
-#line 2082 "mrbgems/mruby-compiler/core/parse.y"
+ case 116:
+#line 2146 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = cons(nint(0), nsym((yyvsp[0].id)));
}
-#line 6773 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6918 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 113:
-#line 2086 "mrbgems/mruby-compiler/core/parse.y"
+ case 117:
+#line 2150 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[-2].nd));
(yyval.nd) = cons((yyvsp[-2].nd), nsym((yyvsp[0].id)));
}
-#line 6782 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6927 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 117:
-#line 2096 "mrbgems/mruby-compiler/core/parse.y"
+ case 121:
+#line 2160 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_ENDFN;
(yyval.id) = (yyvsp[0].id);
}
-#line 6791 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6936 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 118:
-#line 2101 "mrbgems/mruby-compiler/core/parse.y"
+ case 122:
+#line 2165 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_ENDFN;
(yyval.id) = (yyvsp[0].id);
}
-#line 6800 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6945 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 121:
-#line 2112 "mrbgems/mruby-compiler/core/parse.y"
+ case 125:
+#line 2176 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_undef(p, (yyvsp[0].id));
}
-#line 6808 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6953 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 122:
-#line 2115 "mrbgems/mruby-compiler/core/parse.y"
+ case 126:
+#line 2179 "mrbgems/mruby-compiler/core/parse.y"
{p->lstate = EXPR_FNAME;}
-#line 6814 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6959 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 123:
-#line 2116 "mrbgems/mruby-compiler/core/parse.y"
+ case 127:
+#line 2180 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-3].nd), nsym((yyvsp[0].id)));
}
-#line 6822 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6967 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 124:
-#line 2121 "mrbgems/mruby-compiler/core/parse.y"
+ case 128:
+#line 2185 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(or); }
-#line 6828 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6973 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 125:
-#line 2122 "mrbgems/mruby-compiler/core/parse.y"
+ case 129:
+#line 2186 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(xor); }
-#line 6834 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6979 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 126:
-#line 2123 "mrbgems/mruby-compiler/core/parse.y"
+ case 130:
+#line 2187 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(and); }
-#line 6840 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6985 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 127:
-#line 2124 "mrbgems/mruby-compiler/core/parse.y"
+ case 131:
+#line 2188 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(cmp); }
-#line 6846 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6991 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 128:
-#line 2125 "mrbgems/mruby-compiler/core/parse.y"
+ case 132:
+#line 2189 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(eq); }
-#line 6852 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 6997 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 129:
-#line 2126 "mrbgems/mruby-compiler/core/parse.y"
+ case 133:
+#line 2190 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(eqq); }
-#line 6858 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7003 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 130:
-#line 2127 "mrbgems/mruby-compiler/core/parse.y"
+ case 134:
+#line 2191 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(match); }
-#line 6864 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7009 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 131:
-#line 2128 "mrbgems/mruby-compiler/core/parse.y"
+ case 135:
+#line 2192 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(nmatch); }
-#line 6870 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7015 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 132:
-#line 2129 "mrbgems/mruby-compiler/core/parse.y"
+ case 136:
+#line 2193 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(gt); }
-#line 6876 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7021 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 133:
-#line 2130 "mrbgems/mruby-compiler/core/parse.y"
+ case 137:
+#line 2194 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(ge); }
-#line 6882 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7027 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 134:
-#line 2131 "mrbgems/mruby-compiler/core/parse.y"
+ case 138:
+#line 2195 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(lt); }
-#line 6888 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7033 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 135:
-#line 2132 "mrbgems/mruby-compiler/core/parse.y"
+ case 139:
+#line 2196 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(le); }
-#line 6894 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7039 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 136:
-#line 2133 "mrbgems/mruby-compiler/core/parse.y"
+ case 140:
+#line 2197 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(neq); }
-#line 6900 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7045 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 137:
-#line 2134 "mrbgems/mruby-compiler/core/parse.y"
+ case 141:
+#line 2198 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(lshift); }
-#line 6906 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7051 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 138:
-#line 2135 "mrbgems/mruby-compiler/core/parse.y"
+ case 142:
+#line 2199 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(rshift); }
-#line 6912 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7057 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 139:
-#line 2136 "mrbgems/mruby-compiler/core/parse.y"
+ case 143:
+#line 2200 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(add); }
-#line 6918 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7063 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 140:
-#line 2137 "mrbgems/mruby-compiler/core/parse.y"
+ case 144:
+#line 2201 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(sub); }
-#line 6924 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7069 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 141:
-#line 2138 "mrbgems/mruby-compiler/core/parse.y"
+ case 145:
+#line 2202 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(mul); }
-#line 6930 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7075 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 142:
-#line 2139 "mrbgems/mruby-compiler/core/parse.y"
+ case 146:
+#line 2203 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(mul); }
-#line 6936 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7081 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 143:
-#line 2140 "mrbgems/mruby-compiler/core/parse.y"
+ case 147:
+#line 2204 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(div); }
-#line 6942 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7087 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 144:
-#line 2141 "mrbgems/mruby-compiler/core/parse.y"
+ case 148:
+#line 2205 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(mod); }
-#line 6948 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7093 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 145:
-#line 2142 "mrbgems/mruby-compiler/core/parse.y"
+ case 149:
+#line 2206 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(pow); }
-#line 6954 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7099 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 146:
-#line 2143 "mrbgems/mruby-compiler/core/parse.y"
+ case 150:
+#line 2207 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(pow); }
-#line 6960 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7105 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 147:
-#line 2144 "mrbgems/mruby-compiler/core/parse.y"
+ case 151:
+#line 2208 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(not); }
-#line 6966 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7111 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 148:
-#line 2145 "mrbgems/mruby-compiler/core/parse.y"
+ case 152:
+#line 2209 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(neg); }
-#line 6972 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7117 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 149:
-#line 2146 "mrbgems/mruby-compiler/core/parse.y"
+ case 153:
+#line 2210 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(plus); }
-#line 6978 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7123 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 150:
-#line 2147 "mrbgems/mruby-compiler/core/parse.y"
+ case 154:
+#line 2211 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(minus); }
-#line 6984 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7129 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 151:
-#line 2148 "mrbgems/mruby-compiler/core/parse.y"
+ case 155:
+#line 2212 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(aref); }
-#line 6990 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7135 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 152:
-#line 2149 "mrbgems/mruby-compiler/core/parse.y"
+ case 156:
+#line 2213 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(aset); }
-#line 6996 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7141 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 153:
-#line 2150 "mrbgems/mruby-compiler/core/parse.y"
+ case 157:
+#line 2214 "mrbgems/mruby-compiler/core/parse.y"
{ (yyval.id) = intern_op(tick); }
-#line 7002 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7147 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 194:
-#line 2168 "mrbgems/mruby-compiler/core/parse.y"
+ case 198:
+#line 2232 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_asgn(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7010 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7155 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 195:
-#line 2172 "mrbgems/mruby-compiler/core/parse.y"
+ case 199:
+#line 2236 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, (yyvsp[-2].nd), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 7018 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7163 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 196:
-#line 2176 "mrbgems/mruby-compiler/core/parse.y"
+ case 200:
+#line 2240 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-5].nd), intern_op(aref), (yyvsp[-3].nd), '.'), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 7026 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7171 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 197:
-#line 2180 "mrbgems/mruby-compiler/core/parse.y"
+ case 201:
+#line 2244 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, (yyvsp[-3].num)), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 7034 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7179 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 198:
-#line 2184 "mrbgems/mruby-compiler/core/parse.y"
+ case 202:
+#line 2248 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, (yyvsp[-3].num)), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 7042 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7187 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 199:
-#line 2188 "mrbgems/mruby-compiler/core/parse.y"
+ case 203:
+#line 2252 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_op_asgn(p, new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), 0, tCOLON2), (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 7050 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7195 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 200:
-#line 2192 "mrbgems/mruby-compiler/core/parse.y"
+ case 204:
+#line 2256 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "constant re-assignment");
(yyval.nd) = new_begin(p, 0);
}
-#line 7059 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7204 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 201:
-#line 2197 "mrbgems/mruby-compiler/core/parse.y"
+ case 205:
+#line 2261 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "constant re-assignment");
(yyval.nd) = new_begin(p, 0);
}
-#line 7068 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7213 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 202:
-#line 2202 "mrbgems/mruby-compiler/core/parse.y"
+ case 206:
+#line 2266 "mrbgems/mruby-compiler/core/parse.y"
{
backref_error(p, (yyvsp[-2].nd));
(yyval.nd) = new_begin(p, 0);
}
-#line 7077 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7222 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 203:
-#line 2207 "mrbgems/mruby-compiler/core/parse.y"
+ case 207:
+#line 2271 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot2(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7085 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7230 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 204:
-#line 2211 "mrbgems/mruby-compiler/core/parse.y"
+ case 208:
+#line 2275 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot2(p, (yyvsp[-1].nd), new_nil(p));
}
-#line 7093 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7238 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 205:
-#line 2215 "mrbgems/mruby-compiler/core/parse.y"
+ case 209:
+#line 2279 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot2(p, new_nil(p), (yyvsp[0].nd));
}
-#line 7101 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7246 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 206:
-#line 2219 "mrbgems/mruby-compiler/core/parse.y"
+ case 210:
+#line 2283 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot3(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7109 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7254 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 207:
-#line 2223 "mrbgems/mruby-compiler/core/parse.y"
+ case 211:
+#line 2287 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot3(p, (yyvsp[-1].nd), new_nil(p));
}
-#line 7117 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7262 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 208:
-#line 2227 "mrbgems/mruby-compiler/core/parse.y"
+ case 212:
+#line 2291 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dot3(p, new_nil(p), (yyvsp[0].nd));
}
-#line 7125 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7270 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 209:
-#line 2231 "mrbgems/mruby-compiler/core/parse.y"
+ case 213:
+#line 2295 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "+", (yyvsp[0].nd));
}
-#line 7133 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7278 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 210:
-#line 2235 "mrbgems/mruby-compiler/core/parse.y"
+ case 214:
+#line 2299 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "-", (yyvsp[0].nd));
}
-#line 7141 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7286 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 211:
-#line 2239 "mrbgems/mruby-compiler/core/parse.y"
+ case 215:
+#line 2303 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "*", (yyvsp[0].nd));
}
-#line 7149 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7294 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 212:
-#line 2243 "mrbgems/mruby-compiler/core/parse.y"
+ case 216:
+#line 2307 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "/", (yyvsp[0].nd));
}
-#line 7157 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7302 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 213:
-#line 2247 "mrbgems/mruby-compiler/core/parse.y"
+ case 217:
+#line 2311 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "%", (yyvsp[0].nd));
}
-#line 7165 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7310 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 214:
-#line 2251 "mrbgems/mruby-compiler/core/parse.y"
+ case 218:
+#line 2315 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "**", (yyvsp[0].nd));
}
-#line 7173 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7318 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 215:
-#line 2255 "mrbgems/mruby-compiler/core/parse.y"
+ case 219:
+#line 2319 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = call_uni_op(p, call_bin_op(p, (yyvsp[-2].nd), "**", (yyvsp[0].nd)), "-@");
+ (yyval.nd) = new_negate(p, call_bin_op(p, (yyvsp[-2].nd), "**", (yyvsp[0].nd)));
}
-#line 7181 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7326 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 216:
-#line 2259 "mrbgems/mruby-compiler/core/parse.y"
+ case 220:
+#line 2323 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = call_uni_op(p, call_bin_op(p, (yyvsp[-2].nd), "**", (yyvsp[0].nd)), "-@");
+ (yyval.nd) = new_negate(p, call_bin_op(p, (yyvsp[-2].nd), "**", (yyvsp[0].nd)));
}
-#line 7189 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7334 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 217:
-#line 2263 "mrbgems/mruby-compiler/core/parse.y"
+ case 221:
+#line 2327 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, (yyvsp[0].nd), "+@");
}
-#line 7197 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7342 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 218:
-#line 2267 "mrbgems/mruby-compiler/core/parse.y"
+ case 222:
+#line 2331 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = call_uni_op(p, (yyvsp[0].nd), "-@");
+ (yyval.nd) = new_negate(p, (yyvsp[0].nd));
}
-#line 7205 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7350 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 219:
-#line 2271 "mrbgems/mruby-compiler/core/parse.y"
+ case 223:
+#line 2335 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "|", (yyvsp[0].nd));
}
-#line 7213 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7358 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 220:
-#line 2275 "mrbgems/mruby-compiler/core/parse.y"
+ case 224:
+#line 2339 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "^", (yyvsp[0].nd));
}
-#line 7221 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7366 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 221:
-#line 2279 "mrbgems/mruby-compiler/core/parse.y"
+ case 225:
+#line 2343 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "&", (yyvsp[0].nd));
}
-#line 7229 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7374 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 222:
-#line 2283 "mrbgems/mruby-compiler/core/parse.y"
+ case 226:
+#line 2347 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "<=>", (yyvsp[0].nd));
}
-#line 7237 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7382 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 223:
-#line 2287 "mrbgems/mruby-compiler/core/parse.y"
+ case 227:
+#line 2351 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), ">", (yyvsp[0].nd));
}
-#line 7245 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7390 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 224:
-#line 2291 "mrbgems/mruby-compiler/core/parse.y"
+ case 228:
+#line 2355 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), ">=", (yyvsp[0].nd));
}
-#line 7253 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7398 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 225:
-#line 2295 "mrbgems/mruby-compiler/core/parse.y"
+ case 229:
+#line 2359 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "<", (yyvsp[0].nd));
}
-#line 7261 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7406 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 226:
-#line 2299 "mrbgems/mruby-compiler/core/parse.y"
+ case 230:
+#line 2363 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "<=", (yyvsp[0].nd));
}
-#line 7269 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7414 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 227:
-#line 2303 "mrbgems/mruby-compiler/core/parse.y"
+ case 231:
+#line 2367 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "==", (yyvsp[0].nd));
}
-#line 7277 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7422 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 228:
-#line 2307 "mrbgems/mruby-compiler/core/parse.y"
+ case 232:
+#line 2371 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "===", (yyvsp[0].nd));
}
-#line 7285 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7430 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 229:
-#line 2311 "mrbgems/mruby-compiler/core/parse.y"
+ case 233:
+#line 2375 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "!=", (yyvsp[0].nd));
}
-#line 7293 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7438 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 230:
-#line 2315 "mrbgems/mruby-compiler/core/parse.y"
+ case 234:
+#line 2379 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "=~", (yyvsp[0].nd));
}
-#line 7301 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7446 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 231:
-#line 2319 "mrbgems/mruby-compiler/core/parse.y"
+ case 235:
+#line 2383 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "!~", (yyvsp[0].nd));
}
-#line 7309 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7454 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 232:
-#line 2323 "mrbgems/mruby-compiler/core/parse.y"
+ case 236:
+#line 2387 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, cond((yyvsp[0].nd)), "!");
}
-#line 7317 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7462 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 233:
-#line 2327 "mrbgems/mruby-compiler/core/parse.y"
+ case 237:
+#line 2391 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, cond((yyvsp[0].nd)), "~");
}
-#line 7325 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7470 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 234:
-#line 2331 "mrbgems/mruby-compiler/core/parse.y"
+ case 238:
+#line 2395 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), "<<", (yyvsp[0].nd));
}
-#line 7333 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7478 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 235:
-#line 2335 "mrbgems/mruby-compiler/core/parse.y"
+ case 239:
+#line 2399 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_bin_op(p, (yyvsp[-2].nd), ">>", (yyvsp[0].nd));
}
-#line 7341 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7486 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 236:
-#line 2339 "mrbgems/mruby-compiler/core/parse.y"
+ case 240:
+#line 2403 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_and(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7349 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7494 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 237:
-#line 2343 "mrbgems/mruby-compiler/core/parse.y"
+ case 241:
+#line 2407 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_or(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7357 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7502 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 238:
-#line 2347 "mrbgems/mruby-compiler/core/parse.y"
+ case 242:
+#line 2411 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_if(p, cond((yyvsp[-5].nd)), (yyvsp[-3].nd), (yyvsp[0].nd));
}
-#line 7365 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7510 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 239:
-#line 2351 "mrbgems/mruby-compiler/core/parse.y"
+ case 243:
+#line 2415 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_if(p, cond((yyvsp[-5].nd)), (yyvsp[-3].nd), (yyvsp[0].nd));
}
-#line 7373 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7518 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 240:
-#line 2355 "mrbgems/mruby-compiler/core/parse.y"
+ case 244:
+#line 2419 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-3].nd);
endless_method_name(p, (yyvsp[-3].nd));
@@ -7382,11 +7527,11 @@ yyreduce:
nvars_unnest(p);
p->in_def--;
}
-#line 7386 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7531 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 241:
-#line 2364 "mrbgems/mruby-compiler/core/parse.y"
+ case 245:
+#line 2428 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-5].nd);
endless_method_name(p, (yyvsp[-5].nd));
@@ -7396,11 +7541,11 @@ yyreduce:
nvars_unnest(p);
p->in_def--;
}
-#line 7400 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7545 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 242:
-#line 2374 "mrbgems/mruby-compiler/core/parse.y"
+ case 246:
+#line 2438 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-3].nd);
void_expr_error(p, (yyvsp[0].nd));
@@ -7409,11 +7554,11 @@ yyreduce:
p->in_def--;
p->in_single--;
}
-#line 7413 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7558 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 243:
-#line 2383 "mrbgems/mruby-compiler/core/parse.y"
+ case 247:
+#line 2447 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-5].nd);
void_expr_error(p, (yyvsp[-2].nd));
@@ -7423,481 +7568,465 @@ yyreduce:
p->in_def--;
p->in_single--;
}
-#line 7427 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7572 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 244:
-#line 2393 "mrbgems/mruby-compiler/core/parse.y"
+ case 248:
+#line 2457 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 7435 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7580 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 246:
-#line 2400 "mrbgems/mruby-compiler/core/parse.y"
+ case 250:
+#line 2464 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7444 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7589 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 247:
-#line 2405 "mrbgems/mruby-compiler/core/parse.y"
+ case 251:
+#line 2469 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = push((yyvsp[-3].nd), new_kw_hash(p, (yyvsp[-1].nd)));
+ (yyval.nd) = push((yyvsp[-3].nd), new_hash(p, (yyvsp[-1].nd)));
}
-#line 7452 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7597 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 248:
-#line 2409 "mrbgems/mruby-compiler/core/parse.y"
+ case 252:
+#line 2473 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = cons(new_kw_hash(p, (yyvsp[-1].nd)), 0);
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7461 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7606 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 249:
-#line 2416 "mrbgems/mruby-compiler/core/parse.y"
+ case 253:
+#line 2480 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 7469 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7614 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 250:
-#line 2420 "mrbgems/mruby-compiler/core/parse.y"
+ case 254:
+#line 2484 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[-2].nd));
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = new_mod_rescue(p, (yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7479 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7624 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 251:
-#line 2428 "mrbgems/mruby-compiler/core/parse.y"
+ case 255:
+#line 2492 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 7487 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7632 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 252:
-#line 2432 "mrbgems/mruby-compiler/core/parse.y"
+ case 256:
+#line 2496 "mrbgems/mruby-compiler/core/parse.y"
{
-#if 1
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- (yyval.nd) = cons(push((yyvsp[-3].nd), new_splat(p, new_lvar(p, r))),
- new_block_arg(p, new_lvar(p, b)));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- (yyval.nd) = cons(list2(push((yyvsp[-3].nd), new_splat(p, new_lvar(p, r))),
- new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k))))),
- new_block_arg(p, new_lvar(p, b)));
-#endif
+ (yyval.nd) = new_callargs(p, push((yyvsp[-3].nd), new_splat(p, new_lvar(p, r))),
+ new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k)))),
+ new_block_arg(p, new_lvar(p, b)));
}
-#line 7507 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7645 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 253:
-#line 2448 "mrbgems/mruby-compiler/core/parse.y"
+ case 257:
+#line 2505 "mrbgems/mruby-compiler/core/parse.y"
{
-#if 1
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- if (local_var_p(p, r) && local_var_p(p, b)) {
- (yyval.nd) = cons(list1(new_splat(p, new_lvar(p, r))),
- new_block_arg(p, new_lvar(p, b)));
- }
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
if (local_var_p(p, r) && local_var_p(p, k) && local_var_p(p, b)) {
- (yyval.nd) = cons(list2(new_splat(p, new_lvar(p, r)),
- new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k))))),
- new_block_arg(p, new_lvar(p, b)));
+ (yyval.nd) = new_callargs(p, list1(new_splat(p, new_lvar(p, r))),
+ new_kw_hash(p, list1(cons(new_kw_rest_args(p, 0), new_lvar(p, k)))),
+ new_block_arg(p, new_lvar(p, b)));
}
-#endif
else {
yyerror(p, "unexpected argument forwarding ...");
(yyval.nd) = 0;
}
}
-#line 7535 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7664 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 258:
-#line 2480 "mrbgems/mruby-compiler/core/parse.y"
+ case 262:
+#line 2528 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons((yyvsp[-1].nd),0);
+ (yyval.nd) = new_callargs(p,(yyvsp[-1].nd),0,0);
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7544 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7673 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 259:
-#line 2485 "mrbgems/mruby-compiler/core/parse.y"
+ case 263:
+#line 2533 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons(push((yyvsp[-3].nd), new_kw_hash(p, (yyvsp[-1].nd))), 0);
+ (yyval.nd) = new_callargs(p,(yyvsp[-3].nd),new_kw_hash(p,(yyvsp[-1].nd)),0);
NODE_LINENO((yyval.nd), (yyvsp[-3].nd));
}
-#line 7553 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7682 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 260:
-#line 2490 "mrbgems/mruby-compiler/core/parse.y"
+ case 264:
+#line 2538 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons(list1(new_kw_hash(p, (yyvsp[-1].nd))), 0);
+ (yyval.nd) = new_callargs(p,0,new_kw_hash(p,(yyvsp[-1].nd)),0);
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7562 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7691 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 261:
-#line 2497 "mrbgems/mruby-compiler/core/parse.y"
+ case 265:
+#line 2545 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
- (yyval.nd) = cons(list1((yyvsp[0].nd)), 0);
+ (yyval.nd) = new_callargs(p, list1((yyvsp[0].nd)), 0, 0);
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 7572 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7701 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 262:
-#line 2503 "mrbgems/mruby-compiler/core/parse.y"
+ case 266:
+#line 2551 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons((yyvsp[-1].nd), (yyvsp[0].nd));
+ (yyval.nd) = new_callargs(p, (yyvsp[-1].nd), 0, (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7581 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7710 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 263:
-#line 2508 "mrbgems/mruby-compiler/core/parse.y"
+ case 267:
+#line 2556 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons(list1(new_kw_hash(p, (yyvsp[-1].nd))), (yyvsp[0].nd));
+ (yyval.nd) = new_callargs(p, 0, new_kw_hash(p, (yyvsp[-1].nd)), (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7590 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7719 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 264:
-#line 2513 "mrbgems/mruby-compiler/core/parse.y"
+ case 268:
+#line 2561 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons(push((yyvsp[-3].nd), new_kw_hash(p, (yyvsp[-1].nd))), (yyvsp[0].nd));
+ (yyval.nd) = new_callargs(p, (yyvsp[-3].nd), new_kw_hash(p, (yyvsp[-1].nd)), (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[-3].nd));
}
-#line 7599 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7728 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 265:
-#line 2518 "mrbgems/mruby-compiler/core/parse.y"
+ case 269:
+#line 2566 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = cons(0, (yyvsp[0].nd));
+ (yyval.nd) = new_callargs(p, 0, 0, (yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 7608 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7737 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 266:
-#line 2524 "mrbgems/mruby-compiler/core/parse.y"
+ case 270:
+#line 2572 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.stack) = p->cmdarg_stack;
CMDARG_PUSH(1);
}
-#line 7617 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7746 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 267:
-#line 2529 "mrbgems/mruby-compiler/core/parse.y"
+ case 271:
+#line 2577 "mrbgems/mruby-compiler/core/parse.y"
{
p->cmdarg_stack = (yyvsp[-1].stack);
(yyval.nd) = (yyvsp[0].nd);
}
-#line 7626 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7755 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 268:
-#line 2536 "mrbgems/mruby-compiler/core/parse.y"
+ case 272:
+#line 2584 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_block_arg(p, (yyvsp[0].nd));
}
-#line 7634 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7763 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 269:
-#line 2542 "mrbgems/mruby-compiler/core/parse.y"
+ case 273:
+#line 2590 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 7642 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7771 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 270:
-#line 2546 "mrbgems/mruby-compiler/core/parse.y"
+ case 274:
+#line 2594 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 7650 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7779 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 273:
-#line 2556 "mrbgems/mruby-compiler/core/parse.y"
+ case 276:
+#line 2603 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
- (yyval.nd) = cons((yyvsp[0].nd), 0);
+ (yyval.nd) = list1((yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 7660 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7789 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 274:
-#line 2562 "mrbgems/mruby-compiler/core/parse.y"
+ case 277:
+#line 2609 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
- (yyval.nd) = cons(new_splat(p, (yyvsp[0].nd)), 0);
+ (yyval.nd) = list1(new_splat(p, (yyvsp[0].nd)));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 7670 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7799 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 275:
-#line 2568 "mrbgems/mruby-compiler/core/parse.y"
+ case 278:
+#line 2615 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7679 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7808 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 276:
-#line 2573 "mrbgems/mruby-compiler/core/parse.y"
+ case 279:
+#line 2620 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = push((yyvsp[-3].nd), new_splat(p, (yyvsp[0].nd)));
}
-#line 7688 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7817 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 277:
-#line 2580 "mrbgems/mruby-compiler/core/parse.y"
+ case 280:
+#line 2627 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 7697 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7826 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 278:
-#line 2585 "mrbgems/mruby-compiler/core/parse.y"
+ case 281:
+#line 2632 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = push((yyvsp[-3].nd), new_splat(p, (yyvsp[0].nd)));
}
-#line 7706 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7835 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 279:
-#line 2590 "mrbgems/mruby-compiler/core/parse.y"
+ case 282:
+#line 2637 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = list1(new_splat(p, (yyvsp[0].nd)));
}
-#line 7715 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7844 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 287:
-#line 2604 "mrbgems/mruby-compiler/core/parse.y"
+ case 290:
+#line 2651 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_nvar(p, (yyvsp[0].num));
}
-#line 7723 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7852 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 288:
-#line 2608 "mrbgems/mruby-compiler/core/parse.y"
+ case 291:
+#line 2655 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_fcall(p, (yyvsp[0].id), 0);
}
-#line 7731 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7860 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 289:
-#line 2612 "mrbgems/mruby-compiler/core/parse.y"
+ case 292:
+#line 2659 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.stack) = p->cmdarg_stack;
p->cmdarg_stack = 0;
}
-#line 7740 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7869 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 290:
-#line 2618 "mrbgems/mruby-compiler/core/parse.y"
+ case 293:
+#line 2665 "mrbgems/mruby-compiler/core/parse.y"
{
p->cmdarg_stack = (yyvsp[-2].stack);
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 7749 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7878 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 291:
-#line 2623 "mrbgems/mruby-compiler/core/parse.y"
+ case 294:
+#line 2670 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.stack) = p->cmdarg_stack;
p->cmdarg_stack = 0;
}
-#line 7758 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7887 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 292:
-#line 2627 "mrbgems/mruby-compiler/core/parse.y"
+ case 295:
+#line 2674 "mrbgems/mruby-compiler/core/parse.y"
{p->lstate = EXPR_ENDARG;}
-#line 7764 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7893 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 293:
-#line 2628 "mrbgems/mruby-compiler/core/parse.y"
+ case 296:
+#line 2675 "mrbgems/mruby-compiler/core/parse.y"
{
p->cmdarg_stack = (yyvsp[-3].stack);
(yyval.nd) = (yyvsp[-2].nd);
}
-#line 7773 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7902 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 294:
-#line 2632 "mrbgems/mruby-compiler/core/parse.y"
+ case 297:
+#line 2679 "mrbgems/mruby-compiler/core/parse.y"
{p->lstate = EXPR_ENDARG;}
-#line 7779 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7908 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 295:
-#line 2633 "mrbgems/mruby-compiler/core/parse.y"
+ case 298:
+#line 2680 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_nil(p);
}
-#line 7787 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7916 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 296:
-#line 2637 "mrbgems/mruby-compiler/core/parse.y"
+ case 299:
+#line 2684 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 7795 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7924 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 297:
-#line 2641 "mrbgems/mruby-compiler/core/parse.y"
+ case 300:
+#line 2688 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_colon2(p, (yyvsp[-2].nd), (yyvsp[0].id));
}
-#line 7803 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7932 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 298:
-#line 2645 "mrbgems/mruby-compiler/core/parse.y"
+ case 301:
+#line 2692 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_colon3(p, (yyvsp[0].id));
}
-#line 7811 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7940 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 299:
-#line 2649 "mrbgems/mruby-compiler/core/parse.y"
+ case 302:
+#line 2696 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_array(p, (yyvsp[-1].nd));
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7820 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7949 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 300:
-#line 2654 "mrbgems/mruby-compiler/core/parse.y"
+ case 303:
+#line 2701 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_hash(p, (yyvsp[-1].nd));
NODE_LINENO((yyval.nd), (yyvsp[-1].nd));
}
-#line 7829 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7958 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 301:
-#line 2659 "mrbgems/mruby-compiler/core/parse.y"
+ case 304:
+#line 2706 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_return(p, 0);
}
-#line 7837 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7966 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 302:
-#line 2663 "mrbgems/mruby-compiler/core/parse.y"
+ case 305:
+#line 2710 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_yield(p, (yyvsp[0].nd));
}
-#line 7845 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7974 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 303:
-#line 2667 "mrbgems/mruby-compiler/core/parse.y"
+ case 306:
+#line 2714 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, cond((yyvsp[-1].nd)), "!");
}
-#line 7853 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7982 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 304:
-#line 2671 "mrbgems/mruby-compiler/core/parse.y"
+ case 307:
+#line 2718 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = call_uni_op(p, new_nil(p), "!");
}
-#line 7861 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7990 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 305:
-#line 2675 "mrbgems/mruby-compiler/core/parse.y"
+ case 308:
+#line 2722 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = new_fcall(p, (yyvsp[-1].id), cons(0, (yyvsp[0].nd)));
+ (yyval.nd) = new_fcall(p, (yyvsp[-1].id), new_callargs(p, 0, 0, (yyvsp[0].nd)));
}
-#line 7869 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 7998 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 307:
-#line 2680 "mrbgems/mruby-compiler/core/parse.y"
+ case 310:
+#line 2727 "mrbgems/mruby-compiler/core/parse.y"
{
call_with_block(p, (yyvsp[-1].nd), (yyvsp[0].nd));
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 7878 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8007 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 308:
-#line 2685 "mrbgems/mruby-compiler/core/parse.y"
+ case 311:
+#line 2732 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
(yyval.num) = p->lpar_beg;
p->lpar_beg = ++p->paren_nest;
}
-#line 7888 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8017 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 309:
-#line 2691 "mrbgems/mruby-compiler/core/parse.y"
+ case 312:
+#line 2738 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.stack) = p->cmdarg_stack;
p->cmdarg_stack = 0;
}
-#line 7897 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8026 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 310:
-#line 2696 "mrbgems/mruby-compiler/core/parse.y"
+ case 313:
+#line 2743 "mrbgems/mruby-compiler/core/parse.y"
{
p->lpar_beg = (yyvsp[-3].num);
(yyval.nd) = new_lambda(p, (yyvsp[-2].nd), (yyvsp[0].nd));
@@ -7905,149 +8034,149 @@ yyreduce:
p->cmdarg_stack = (yyvsp[-1].stack);
CMDARG_LEXPOP();
}
-#line 7909 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8038 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 311:
-#line 2707 "mrbgems/mruby-compiler/core/parse.y"
+ case 314:
+#line 2754 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_if(p, cond((yyvsp[-4].nd)), (yyvsp[-2].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-5].num));
}
-#line 7918 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8047 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 312:
-#line 2715 "mrbgems/mruby-compiler/core/parse.y"
+ case 315:
+#line 2762 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_unless(p, cond((yyvsp[-4].nd)), (yyvsp[-2].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-5].num));
}
-#line 7927 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8056 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 313:
-#line 2719 "mrbgems/mruby-compiler/core/parse.y"
+ case 316:
+#line 2766 "mrbgems/mruby-compiler/core/parse.y"
{COND_PUSH(1);}
-#line 7933 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8062 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 314:
-#line 2719 "mrbgems/mruby-compiler/core/parse.y"
+ case 317:
+#line 2766 "mrbgems/mruby-compiler/core/parse.y"
{COND_POP();}
-#line 7939 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8068 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 315:
-#line 2722 "mrbgems/mruby-compiler/core/parse.y"
+ case 318:
+#line 2769 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_while(p, cond((yyvsp[-4].nd)), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-6].num));
}
-#line 7948 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8077 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 316:
-#line 2726 "mrbgems/mruby-compiler/core/parse.y"
+ case 319:
+#line 2773 "mrbgems/mruby-compiler/core/parse.y"
{COND_PUSH(1);}
-#line 7954 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8083 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 317:
-#line 2726 "mrbgems/mruby-compiler/core/parse.y"
+ case 320:
+#line 2773 "mrbgems/mruby-compiler/core/parse.y"
{COND_POP();}
-#line 7960 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8089 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 318:
-#line 2729 "mrbgems/mruby-compiler/core/parse.y"
+ case 321:
+#line 2776 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_until(p, cond((yyvsp[-4].nd)), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-6].num));
}
-#line 7969 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8098 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 319:
-#line 2736 "mrbgems/mruby-compiler/core/parse.y"
+ case 322:
+#line 2783 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_case(p, (yyvsp[-3].nd), (yyvsp[-1].nd));
}
-#line 7977 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8106 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 320:
-#line 2740 "mrbgems/mruby-compiler/core/parse.y"
+ case 323:
+#line 2787 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_case(p, 0, (yyvsp[-1].nd));
}
-#line 7985 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8114 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 321:
-#line 2744 "mrbgems/mruby-compiler/core/parse.y"
+ case 324:
+#line 2791 "mrbgems/mruby-compiler/core/parse.y"
{COND_PUSH(1);}
-#line 7991 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8120 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 322:
-#line 2746 "mrbgems/mruby-compiler/core/parse.y"
+ case 325:
+#line 2793 "mrbgems/mruby-compiler/core/parse.y"
{COND_POP();}
-#line 7997 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8126 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 323:
-#line 2749 "mrbgems/mruby-compiler/core/parse.y"
+ case 326:
+#line 2796 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_for(p, (yyvsp[-7].nd), (yyvsp[-4].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-8].num));
}
-#line 8006 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8135 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 324:
-#line 2755 "mrbgems/mruby-compiler/core/parse.y"
+ case 327:
+#line 2802 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "class definition in method body");
(yyval.nd) = local_switch(p);
nvars_block(p);
}
-#line 8017 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8146 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 325:
-#line 2763 "mrbgems/mruby-compiler/core/parse.y"
+ case 328:
+#line 2810 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_class(p, (yyvsp[-4].nd), (yyvsp[-3].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-5].num));
local_resume(p, (yyvsp[-2].nd));
nvars_unnest(p);
}
-#line 8028 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8157 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 326:
-#line 2771 "mrbgems/mruby-compiler/core/parse.y"
+ case 329:
+#line 2818 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.num) = p->in_def;
p->in_def = 0;
}
-#line 8037 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8166 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 327:
-#line 2776 "mrbgems/mruby-compiler/core/parse.y"
+ case 330:
+#line 2823 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = cons(local_switch(p), nint(p->in_single));
nvars_block(p);
p->in_single = 0;
}
-#line 8047 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8176 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 328:
-#line 2783 "mrbgems/mruby-compiler/core/parse.y"
+ case 331:
+#line 2830 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_sclass(p, (yyvsp[-5].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-7].num));
@@ -8056,44 +8185,44 @@ yyreduce:
p->in_def = (yyvsp[-4].num);
p->in_single = intn((yyvsp[-2].nd)->cdr);
}
-#line 8060 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8189 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 329:
-#line 2793 "mrbgems/mruby-compiler/core/parse.y"
+ case 332:
+#line 2840 "mrbgems/mruby-compiler/core/parse.y"
{
if (p->in_def || p->in_single)
yyerror(p, "module definition in method body");
(yyval.nd) = local_switch(p);
nvars_block(p);
}
-#line 8071 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8200 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 330:
-#line 2801 "mrbgems/mruby-compiler/core/parse.y"
+ case 333:
+#line 2848 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_module(p, (yyvsp[-3].nd), (yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-4].num));
local_resume(p, (yyvsp[-2].nd));
nvars_unnest(p);
}
-#line 8082 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8211 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 331:
-#line 2811 "mrbgems/mruby-compiler/core/parse.y"
+ case 334:
+#line 2858 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-3].nd);
defn_setup(p, (yyval.nd), (yyvsp[-2].nd), (yyvsp[-1].nd));
nvars_unnest(p);
p->in_def--;
}
-#line 8093 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8222 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 332:
-#line 2821 "mrbgems/mruby-compiler/core/parse.y"
+ case 335:
+#line 2868 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-3].nd);
defs_setup(p, (yyval.nd), (yyvsp[-2].nd), (yyvsp[-1].nd));
@@ -8101,451 +8230,451 @@ yyreduce:
p->in_def--;
p->in_single--;
}
-#line 8105 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8234 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 333:
-#line 2829 "mrbgems/mruby-compiler/core/parse.y"
+ case 336:
+#line 2876 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_break(p, 0);
}
-#line 8113 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8242 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 334:
-#line 2833 "mrbgems/mruby-compiler/core/parse.y"
+ case 337:
+#line 2880 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_next(p, 0);
}
-#line 8121 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8250 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 335:
-#line 2837 "mrbgems/mruby-compiler/core/parse.y"
+ case 338:
+#line 2884 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_redo(p);
}
-#line 8129 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8258 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 336:
-#line 2841 "mrbgems/mruby-compiler/core/parse.y"
+ case 339:
+#line 2888 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_retry(p);
}
-#line 8137 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8266 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 337:
-#line 2847 "mrbgems/mruby-compiler/core/parse.y"
+ case 340:
+#line 2894 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
if (!(yyval.nd)) (yyval.nd) = new_nil(p);
}
-#line 8146 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8275 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 344:
-#line 2866 "mrbgems/mruby-compiler/core/parse.y"
+ case 347:
+#line 2913 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_if(p, cond((yyvsp[-3].nd)), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8154 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8283 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 346:
-#line 2873 "mrbgems/mruby-compiler/core/parse.y"
+ case 349:
+#line 2920 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8162 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8291 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 347:
-#line 2879 "mrbgems/mruby-compiler/core/parse.y"
+ case 350:
+#line 2926 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1(list1((yyvsp[0].nd)));
}
-#line 8170 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8299 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 349:
-#line 2886 "mrbgems/mruby-compiler/core/parse.y"
+ case 352:
+#line 2933 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[0].nd),0,0);
}
-#line 8178 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8307 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 350:
-#line 2890 "mrbgems/mruby-compiler/core/parse.y"
+ case 353:
+#line 2937 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[-3].nd), new_arg(p, (yyvsp[0].id)), 0);
}
-#line 8186 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8315 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 351:
-#line 2894 "mrbgems/mruby-compiler/core/parse.y"
+ case 354:
+#line 2941 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[-5].nd), new_arg(p, (yyvsp[-2].id)), (yyvsp[0].nd));
}
-#line 8194 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8323 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 352:
-#line 2898 "mrbgems/mruby-compiler/core/parse.y"
+ case 355:
+#line 2945 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, 0);
(yyval.nd) = list3((yyvsp[-2].nd), nint(-1), 0);
}
-#line 8203 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8332 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 353:
-#line 2903 "mrbgems/mruby-compiler/core/parse.y"
+ case 356:
+#line 2950 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3((yyvsp[-4].nd), nint(-1), (yyvsp[0].nd));
}
-#line 8211 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8340 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 354:
-#line 2907 "mrbgems/mruby-compiler/core/parse.y"
+ case 357:
+#line 2954 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3(0, new_arg(p, (yyvsp[0].id)), 0);
}
-#line 8219 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8348 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 355:
-#line 2911 "mrbgems/mruby-compiler/core/parse.y"
+ case 358:
+#line 2958 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3(0, new_arg(p, (yyvsp[-2].id)), (yyvsp[0].nd));
}
-#line 8227 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8356 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 356:
-#line 2915 "mrbgems/mruby-compiler/core/parse.y"
+ case 359:
+#line 2962 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, 0);
(yyval.nd) = list3(0, nint(-1), 0);
}
-#line 8236 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8365 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 357:
-#line 2920 "mrbgems/mruby-compiler/core/parse.y"
+ case 360:
+#line 2967 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, 0);
}
-#line 8244 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8373 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 358:
-#line 2924 "mrbgems/mruby-compiler/core/parse.y"
+ case 361:
+#line 2971 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list3(0, nint(-1), (yyvsp[0].nd));
}
-#line 8252 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8381 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 359:
-#line 2930 "mrbgems/mruby-compiler/core/parse.y"
+ case 362:
+#line 2977 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, (yyvsp[-3].nd), (yyvsp[-1].nd), (yyvsp[0].id));
}
-#line 8260 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8389 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 360:
-#line 2934 "mrbgems/mruby-compiler/core/parse.y"
+ case 363:
+#line 2981 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, (yyvsp[-1].nd), 0, (yyvsp[0].id));
}
-#line 8268 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8397 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 361:
-#line 2938 "mrbgems/mruby-compiler/core/parse.y"
+ case 364:
+#line 2985 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, (yyvsp[-1].nd), (yyvsp[0].id));
}
-#line 8276 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8405 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 362:
-#line 2942 "mrbgems/mruby-compiler/core/parse.y"
+ case 365:
+#line 2989 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, 0, (yyvsp[0].id));
}
-#line 8284 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8413 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 363:
-#line 2948 "mrbgems/mruby-compiler/core/parse.y"
+ case 366:
+#line 2995 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8292 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8421 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 364:
-#line 2952 "mrbgems/mruby-compiler/core/parse.y"
+ case 367:
+#line 2999 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, 0, 0);
}
-#line 8300 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8429 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 365:
-#line 2958 "mrbgems/mruby-compiler/core/parse.y"
+ case 368:
+#line 3005 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), (yyvsp[-3].nd), (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 8308 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8437 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 366:
-#line 2962 "mrbgems/mruby-compiler/core/parse.y"
+ case 369:
+#line 3009 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-7].nd), (yyvsp[-5].nd), (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8316 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8445 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 367:
-#line 2966 "mrbgems/mruby-compiler/core/parse.y"
+ case 370:
+#line 3013 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-3].nd), (yyvsp[-1].nd), 0, 0, (yyvsp[0].nd));
}
-#line 8324 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8453 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 368:
-#line 2970 "mrbgems/mruby-compiler/core/parse.y"
+ case 371:
+#line 3017 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), (yyvsp[-3].nd), 0, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8332 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8461 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 369:
-#line 2974 "mrbgems/mruby-compiler/core/parse.y"
+ case 372:
+#line 3021 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-3].nd), 0, (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 8340 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8469 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 370:
-#line 2978 "mrbgems/mruby-compiler/core/parse.y"
+ case 373:
+#line 3025 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-2].nd), 0, 0, 0, (yyvsp[0].nd));
}
-#line 8348 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8477 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 371:
-#line 2982 "mrbgems/mruby-compiler/core/parse.y"
+ case 374:
+#line 3029 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), 0, (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8356 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8485 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 372:
-#line 2986 "mrbgems/mruby-compiler/core/parse.y"
+ case 375:
+#line 3033 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-1].nd), 0, 0, 0, (yyvsp[0].nd));
}
-#line 8364 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8493 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 373:
-#line 2990 "mrbgems/mruby-compiler/core/parse.y"
+ case 376:
+#line 3037 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-3].nd), (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 8372 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8501 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 374:
-#line 2994 "mrbgems/mruby-compiler/core/parse.y"
+ case 377:
+#line 3041 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-5].nd), (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8380 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8509 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 375:
-#line 2998 "mrbgems/mruby-compiler/core/parse.y"
+ case 378:
+#line 3045 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-1].nd), 0, 0, (yyvsp[0].nd));
}
-#line 8388 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8517 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 376:
-#line 3002 "mrbgems/mruby-compiler/core/parse.y"
+ case 379:
+#line 3049 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-3].nd), 0, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8396 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8525 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 377:
-#line 3006 "mrbgems/mruby-compiler/core/parse.y"
+ case 380:
+#line 3053 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 8404 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8533 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 378:
-#line 3010 "mrbgems/mruby-compiler/core/parse.y"
+ case 381:
+#line 3057 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8412 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8541 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 379:
-#line 3014 "mrbgems/mruby-compiler/core/parse.y"
+ case 382:
+#line 3061 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, 0, 0, (yyvsp[0].nd));
}
-#line 8420 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8549 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 380:
-#line 3020 "mrbgems/mruby-compiler/core/parse.y"
+ case 383:
+#line 3067 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_blk(p, 0);
(yyval.nd) = 0;
}
-#line 8429 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8558 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 381:
-#line 3025 "mrbgems/mruby-compiler/core/parse.y"
+ case 384:
+#line 3072 "mrbgems/mruby-compiler/core/parse.y"
{
p->cmd_start = TRUE;
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8438 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8567 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 382:
-#line 3031 "mrbgems/mruby-compiler/core/parse.y"
+ case 385:
+#line 3078 "mrbgems/mruby-compiler/core/parse.y"
{local_add_blk(p, 0);}
-#line 8444 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8573 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 383:
-#line 3032 "mrbgems/mruby-compiler/core/parse.y"
+ case 386:
+#line 3079 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 8452 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8581 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 384:
-#line 3036 "mrbgems/mruby-compiler/core/parse.y"
+ case 387:
+#line 3083 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_blk(p, 0);
(yyval.nd) = 0;
}
-#line 8461 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8590 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 385:
-#line 3041 "mrbgems/mruby-compiler/core/parse.y"
+ case 388:
+#line 3088 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-2].nd);
}
-#line 8469 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8598 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 386:
-#line 3048 "mrbgems/mruby-compiler/core/parse.y"
+ case 389:
+#line 3095 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 8477 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8606 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 387:
-#line 3052 "mrbgems/mruby-compiler/core/parse.y"
+ case 390:
+#line 3099 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 8485 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8614 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 390:
-#line 3062 "mrbgems/mruby-compiler/core/parse.y"
+ case 393:
+#line 3109 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, (yyvsp[0].id));
new_bv(p, (yyvsp[0].id));
}
-#line 8494 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8623 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 392:
-#line 3070 "mrbgems/mruby-compiler/core/parse.y"
+ case 395:
+#line 3117 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-2].nd);
}
-#line 8502 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8631 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 393:
-#line 3074 "mrbgems/mruby-compiler/core/parse.y"
+ case 396:
+#line 3121 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8510 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8639 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 394:
-#line 3080 "mrbgems/mruby-compiler/core/parse.y"
+ case 397:
+#line 3127 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 8518 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8647 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 395:
-#line 3084 "mrbgems/mruby-compiler/core/parse.y"
+ case 398:
+#line 3131 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 8526 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8655 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 396:
-#line 3090 "mrbgems/mruby-compiler/core/parse.y"
+ case 399:
+#line 3137 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
nvars_nest(p);
}
-#line 8535 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8664 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 397:
-#line 3097 "mrbgems/mruby-compiler/core/parse.y"
+ case 400:
+#line 3144 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_block(p,(yyvsp[-2].nd),(yyvsp[-1].nd));
local_unnest(p);
nvars_unnest(p);
}
-#line 8545 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8674 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 398:
-#line 3105 "mrbgems/mruby-compiler/core/parse.y"
+ case 401:
+#line 3152 "mrbgems/mruby-compiler/core/parse.y"
{
if (typen((yyvsp[-1].nd)->car) == NODE_YIELD) {
yyerror(p, "block given to yield");
@@ -8555,159 +8684,159 @@ yyreduce:
}
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 8559 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8688 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 399:
-#line 3115 "mrbgems/mruby-compiler/core/parse.y"
+ case 402:
+#line 3162 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), (yyvsp[-2].num));
}
-#line 8567 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8696 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 400:
-#line 3119 "mrbgems/mruby-compiler/core/parse.y"
+ case 403:
+#line 3166 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), (yyvsp[-1].nd), (yyvsp[-3].num));
call_with_block(p, (yyval.nd), (yyvsp[0].nd));
}
-#line 8576 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8705 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 401:
-#line 3124 "mrbgems/mruby-compiler/core/parse.y"
+ case 404:
+#line 3171 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-4].nd), (yyvsp[-2].id), (yyvsp[-1].nd), (yyvsp[-3].num));
call_with_block(p, (yyval.nd), (yyvsp[0].nd));
}
-#line 8585 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8714 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 402:
-#line 3131 "mrbgems/mruby-compiler/core/parse.y"
+ case 405:
+#line 3178 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_fcall(p, (yyvsp[-1].id), (yyvsp[0].nd));
}
-#line 8593 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8722 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 403:
-#line 3135 "mrbgems/mruby-compiler/core/parse.y"
+ case 406:
+#line 3182 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), (yyvsp[-2].num));
}
-#line 8601 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8730 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 404:
-#line 3139 "mrbgems/mruby-compiler/core/parse.y"
+ case 407:
+#line 3186 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), (yyvsp[-1].id), (yyvsp[0].nd), tCOLON2);
}
-#line 8609 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8738 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 405:
-#line 3143 "mrbgems/mruby-compiler/core/parse.y"
+ case 408:
+#line 3190 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), (yyvsp[0].id), 0, tCOLON2);
}
-#line 8617 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8746 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 406:
-#line 3147 "mrbgems/mruby-compiler/core/parse.y"
+ case 409:
+#line 3194 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), MRB_SYM_2(p->mrb, call), (yyvsp[0].nd), (yyvsp[-1].num));
}
-#line 8625 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8754 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 407:
-#line 3151 "mrbgems/mruby-compiler/core/parse.y"
+ case 410:
+#line 3198 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-2].nd), MRB_SYM_2(p->mrb, call), (yyvsp[0].nd), tCOLON2);
}
-#line 8633 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8762 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 408:
-#line 3155 "mrbgems/mruby-compiler/core/parse.y"
+ case 411:
+#line 3202 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_super(p, (yyvsp[0].nd));
}
-#line 8641 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8770 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 409:
-#line 3159 "mrbgems/mruby-compiler/core/parse.y"
+ case 412:
+#line 3206 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_zsuper(p);
}
-#line 8649 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8778 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 410:
-#line 3163 "mrbgems/mruby-compiler/core/parse.y"
+ case 413:
+#line 3210 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_call(p, (yyvsp[-3].nd), intern_op(aref), (yyvsp[-1].nd), '.');
}
-#line 8657 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8786 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 411:
-#line 3169 "mrbgems/mruby-compiler/core/parse.y"
+ case 414:
+#line 3216 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
nvars_nest(p);
(yyval.num) = p->lineno;
}
-#line 8667 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8796 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 412:
-#line 3176 "mrbgems/mruby-compiler/core/parse.y"
+ case 415:
+#line 3223 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_block(p,(yyvsp[-2].nd),(yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-3].num));
local_unnest(p);
nvars_unnest(p);
}
-#line 8678 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8807 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 413:
-#line 3183 "mrbgems/mruby-compiler/core/parse.y"
+ case 416:
+#line 3230 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
nvars_nest(p);
(yyval.num) = p->lineno;
}
-#line 8688 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8817 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 414:
-#line 3190 "mrbgems/mruby-compiler/core/parse.y"
+ case 417:
+#line 3237 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_block(p,(yyvsp[-2].nd),(yyvsp[-1].nd));
SET_LINENO((yyval.nd), (yyvsp[-3].num));
local_unnest(p);
nvars_unnest(p);
}
-#line 8699 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8828 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 415:
-#line 3201 "mrbgems/mruby-compiler/core/parse.y"
+ case 418:
+#line 3248 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = cons(cons((yyvsp[-3].nd), (yyvsp[-1].nd)), (yyvsp[0].nd));
}
-#line 8707 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8836 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 416:
-#line 3207 "mrbgems/mruby-compiler/core/parse.y"
+ case 419:
+#line 3254 "mrbgems/mruby-compiler/core/parse.y"
{
if ((yyvsp[0].nd)) {
(yyval.nd) = cons(cons(0, (yyvsp[0].nd)), 0);
@@ -8716,383 +8845,415 @@ yyreduce:
(yyval.nd) = 0;
}
}
-#line 8720 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8849 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 418:
-#line 3221 "mrbgems/mruby-compiler/core/parse.y"
+ case 421:
+#line 3268 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1(list3((yyvsp[-4].nd), (yyvsp[-3].nd), (yyvsp[-1].nd)));
if ((yyvsp[0].nd)) (yyval.nd) = append((yyval.nd), (yyvsp[0].nd));
}
-#line 8729 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8858 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 420:
-#line 3229 "mrbgems/mruby-compiler/core/parse.y"
+ case 423:
+#line 3276 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 8737 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8866 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 423:
-#line 3237 "mrbgems/mruby-compiler/core/parse.y"
+ case 426:
+#line 3284 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8745 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8874 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 425:
-#line 3244 "mrbgems/mruby-compiler/core/parse.y"
+ case 428:
+#line 3291 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8753 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8882 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 432:
-#line 3258 "mrbgems/mruby-compiler/core/parse.y"
+ case 435:
+#line 3305 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = concat_string(p, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8761 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8890 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 435:
-#line 3266 "mrbgems/mruby-compiler/core/parse.y"
+ case 438:
+#line 3313 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8769 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8898 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 436:
-#line 3270 "mrbgems/mruby-compiler/core/parse.y"
+ case 439:
+#line 3317 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = new_dstr(p, push((yyvsp[-1].nd), (yyvsp[0].nd)));
+ node *n = (yyvsp[-1].nd);
+ if (intn((yyvsp[0].nd)->cdr->cdr) > 0) {
+ n = push(n, (yyvsp[0].nd));
+ }
+ else {
+ cons_free((yyvsp[0].nd));
+ }
+ (yyval.nd) = new_dstr(p, n);
}
-#line 8777 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8913 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 438:
-#line 3277 "mrbgems/mruby-compiler/core/parse.y"
+ case 441:
+#line 3331 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = append((yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8785 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8921 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 439:
-#line 3283 "mrbgems/mruby-compiler/core/parse.y"
+ case 442:
+#line 3337 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 8793 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8929 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 440:
-#line 3287 "mrbgems/mruby-compiler/core/parse.y"
+ case 443:
+#line 3341 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = p->lex_strterm;
p->lex_strterm = NULL;
}
-#line 8802 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8938 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 441:
-#line 3293 "mrbgems/mruby-compiler/core/parse.y"
+ case 444:
+#line 3347 "mrbgems/mruby-compiler/core/parse.y"
{
p->lex_strterm = (yyvsp[-2].nd);
(yyval.nd) = list2((yyvsp[-3].nd), (yyvsp[-1].nd));
}
-#line 8811 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8947 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 442:
-#line 3298 "mrbgems/mruby-compiler/core/parse.y"
+ case 445:
+#line 3352 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1(new_literal_delim(p));
}
-#line 8819 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8955 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 443:
-#line 3302 "mrbgems/mruby-compiler/core/parse.y"
+ case 446:
+#line 3356 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1(new_literal_delim(p));
}
-#line 8827 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8963 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 444:
-#line 3308 "mrbgems/mruby-compiler/core/parse.y"
+ case 447:
+#line 3362 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8835 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8971 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 445:
-#line 3312 "mrbgems/mruby-compiler/core/parse.y"
+ case 448:
+#line 3366 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = new_dxstr(p, push((yyvsp[-1].nd), (yyvsp[0].nd)));
+ node *n = (yyvsp[-1].nd);
+ if (intn((yyvsp[0].nd)->cdr->cdr) > 0) {
+ n = push(n, (yyvsp[0].nd));
+ }
+ else {
+ cons_free((yyvsp[0].nd));
+ }
+ (yyval.nd) = new_dxstr(p, n);
}
-#line 8843 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8986 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 446:
-#line 3318 "mrbgems/mruby-compiler/core/parse.y"
+ case 449:
+#line 3379 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 8851 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 8994 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 447:
-#line 3322 "mrbgems/mruby-compiler/core/parse.y"
+ case 450:
+#line 3383 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_dregx(p, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 8859 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9002 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 451:
-#line 3335 "mrbgems/mruby-compiler/core/parse.y"
+ case 454:
+#line 3396 "mrbgems/mruby-compiler/core/parse.y"
{
parser_heredoc_info * inf = parsing_heredoc_inf(p);
inf->doc = push(inf->doc, new_str(p, "", 0));
heredoc_end(p);
}
-#line 8869 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9012 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 452:
-#line 3341 "mrbgems/mruby-compiler/core/parse.y"
+ case 455:
+#line 3402 "mrbgems/mruby-compiler/core/parse.y"
{
heredoc_end(p);
}
-#line 8877 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9020 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 455:
-#line 3351 "mrbgems/mruby-compiler/core/parse.y"
+ case 458:
+#line 3412 "mrbgems/mruby-compiler/core/parse.y"
{
parser_heredoc_info * inf = parsing_heredoc_inf(p);
inf->doc = push(inf->doc, (yyvsp[0].nd));
heredoc_treat_nextline(p);
}
-#line 8887 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9030 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 456:
-#line 3357 "mrbgems/mruby-compiler/core/parse.y"
+ case 459:
+#line 3418 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = p->lex_strterm;
p->lex_strterm = NULL;
}
-#line 8896 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9039 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 457:
-#line 3363 "mrbgems/mruby-compiler/core/parse.y"
+ case 460:
+#line 3424 "mrbgems/mruby-compiler/core/parse.y"
{
parser_heredoc_info * inf = parsing_heredoc_inf(p);
p->lex_strterm = (yyvsp[-2].nd);
inf->doc = push(push(inf->doc, (yyvsp[-3].nd)), (yyvsp[-1].nd));
}
-#line 8906 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9049 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 458:
-#line 3371 "mrbgems/mruby-compiler/core/parse.y"
+ case 461:
+#line 3432 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_words(p, list1((yyvsp[0].nd)));
}
-#line 8914 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9057 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 459:
-#line 3375 "mrbgems/mruby-compiler/core/parse.y"
+ case 462:
+#line 3436 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = new_words(p, push((yyvsp[-1].nd), (yyvsp[0].nd)));
+ node *n = (yyvsp[-1].nd);
+ if (intn((yyvsp[0].nd)->cdr->cdr) > 0) {
+ n = push(n, (yyvsp[0].nd));
+ }
+ else {
+ cons_free((yyvsp[0].nd));
+ }
+ (yyval.nd) = new_words(p, n);
}
-#line 8922 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9072 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 460:
-#line 3382 "mrbgems/mruby-compiler/core/parse.y"
+ case 463:
+#line 3450 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_ENDARG;
(yyval.nd) = new_sym(p, (yyvsp[0].id));
}
-#line 8931 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9081 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 461:
-#line 3387 "mrbgems/mruby-compiler/core/parse.y"
+ case 464:
+#line 3455 "mrbgems/mruby-compiler/core/parse.y"
{
+ node *n = (yyvsp[-1].nd);
p->lstate = EXPR_ENDARG;
- (yyval.nd) = new_dsym(p, new_dstr(p, push((yyvsp[-1].nd), (yyvsp[0].nd))));
+ if (intn((yyvsp[0].nd)->cdr->cdr) > 0) {
+ n = push(n, (yyvsp[0].nd));
+ }
+ else {
+ cons_free((yyvsp[0].nd));
+ }
+ (yyval.nd) = new_dsym(p, new_dstr(p, n));
}
-#line 8940 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9097 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 462:
-#line 3394 "mrbgems/mruby-compiler/core/parse.y"
+ case 465:
+#line 3469 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = (yyvsp[0].id);
}
-#line 8948 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9105 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 467:
-#line 3404 "mrbgems/mruby-compiler/core/parse.y"
+ case 470:
+#line 3479 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = new_strsym(p, (yyvsp[0].nd));
}
-#line 8956 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9113 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 468:
-#line 3408 "mrbgems/mruby-compiler/core/parse.y"
+ case 471:
+#line 3483 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = new_strsym(p, (yyvsp[0].nd));
}
-#line 8964 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9121 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 469:
-#line 3414 "mrbgems/mruby-compiler/core/parse.y"
+ case 472:
+#line 3489 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_symbols(p, list1((yyvsp[0].nd)));
}
-#line 8972 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9129 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 470:
-#line 3418 "mrbgems/mruby-compiler/core/parse.y"
+ case 473:
+#line 3493 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = new_symbols(p, push((yyvsp[-1].nd), (yyvsp[0].nd)));
+ node *n = (yyvsp[-1].nd);
+ if (intn((yyvsp[0].nd)->cdr->cdr) > 0) {
+ n = push(n, (yyvsp[0].nd));
+ }
+ (yyval.nd) = new_symbols(p, n);
}
-#line 8980 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9141 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 473:
-#line 3426 "mrbgems/mruby-compiler/core/parse.y"
+ case 476:
+#line 3505 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = negate_lit(p, (yyvsp[0].nd));
+ (yyval.nd) = new_negate(p, (yyvsp[0].nd));
}
-#line 8988 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9149 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 474:
-#line 3430 "mrbgems/mruby-compiler/core/parse.y"
+ case 477:
+#line 3509 "mrbgems/mruby-compiler/core/parse.y"
{
- (yyval.nd) = negate_lit(p, (yyvsp[0].nd));
+ (yyval.nd) = new_negate(p, (yyvsp[0].nd));
}
-#line 8996 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9157 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 475:
-#line 3436 "mrbgems/mruby-compiler/core/parse.y"
+ case 478:
+#line 3515 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_lvar(p, (yyvsp[0].id));
}
-#line 9004 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9165 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 476:
-#line 3440 "mrbgems/mruby-compiler/core/parse.y"
+ case 479:
+#line 3519 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_ivar(p, (yyvsp[0].id));
}
-#line 9012 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9173 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 477:
-#line 3444 "mrbgems/mruby-compiler/core/parse.y"
+ case 480:
+#line 3523 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_gvar(p, (yyvsp[0].id));
}
-#line 9020 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9181 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 478:
-#line 3448 "mrbgems/mruby-compiler/core/parse.y"
+ case 481:
+#line 3527 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_cvar(p, (yyvsp[0].id));
}
-#line 9028 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9189 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 479:
-#line 3452 "mrbgems/mruby-compiler/core/parse.y"
+ case 482:
+#line 3531 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_const(p, (yyvsp[0].id));
}
-#line 9036 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9197 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 480:
-#line 3458 "mrbgems/mruby-compiler/core/parse.y"
+ case 483:
+#line 3537 "mrbgems/mruby-compiler/core/parse.y"
{
assignable(p, (yyvsp[0].nd));
}
-#line 9044 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9205 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 481:
-#line 3462 "mrbgems/mruby-compiler/core/parse.y"
+ case 484:
+#line 3541 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "can't assign to numbered parameter");
}
-#line 9052 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9213 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 482:
-#line 3468 "mrbgems/mruby-compiler/core/parse.y"
+ case 485:
+#line 3547 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = var_reference(p, (yyvsp[0].nd));
}
-#line 9060 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9221 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 483:
-#line 3472 "mrbgems/mruby-compiler/core/parse.y"
+ case 486:
+#line 3551 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_nil(p);
}
-#line 9068 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9229 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 484:
-#line 3476 "mrbgems/mruby-compiler/core/parse.y"
+ case 487:
+#line 3555 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_self(p);
}
-#line 9076 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9237 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 485:
-#line 3480 "mrbgems/mruby-compiler/core/parse.y"
+ case 488:
+#line 3559 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_true(p);
}
-#line 9084 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9245 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 486:
-#line 3484 "mrbgems/mruby-compiler/core/parse.y"
+ case 489:
+#line 3563 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_false(p);
}
-#line 9092 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9253 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 487:
-#line 3488 "mrbgems/mruby-compiler/core/parse.y"
+ case 490:
+#line 3567 "mrbgems/mruby-compiler/core/parse.y"
{
const char *fn = mrb_sym_name_len(p->mrb, p->filename_sym, NULL);
if (!fn) {
@@ -9100,607 +9261,584 @@ yyreduce:
}
(yyval.nd) = new_str(p, fn, strlen(fn));
}
-#line 9104 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9265 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 488:
-#line 3496 "mrbgems/mruby-compiler/core/parse.y"
+ case 491:
+#line 3575 "mrbgems/mruby-compiler/core/parse.y"
{
char buf[16];
dump_int(p->lineno, buf);
(yyval.nd) = new_int(p, buf, 10, 0);
}
-#line 9115 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9276 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 489:
-#line 3503 "mrbgems/mruby-compiler/core/parse.y"
+ case 492:
+#line 3582 "mrbgems/mruby-compiler/core/parse.y"
{
-#ifdef MRB_UTF8_STRING
- const char *enc = "UTF-8";
-#else
- const char *enc = "ASCII-8BIT";
-#endif
- (yyval.nd) = new_str(p, enc, strlen(enc));
+ (yyval.nd) = new_fcall(p, MRB_SYM_2(p->mrb, __ENCODING__), 0);
}
-#line 9128 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9284 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 492:
-#line 3518 "mrbgems/mruby-compiler/core/parse.y"
+ case 495:
+#line 3592 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 9136 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9292 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 493:
-#line 3522 "mrbgems/mruby-compiler/core/parse.y"
+ case 496:
+#line 3596 "mrbgems/mruby-compiler/core/parse.y"
{
p->lstate = EXPR_BEG;
p->cmd_start = TRUE;
}
-#line 9145 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9301 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 494:
-#line 3527 "mrbgems/mruby-compiler/core/parse.y"
+ case 497:
+#line 3601 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 9153 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9309 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 497:
-#line 3543 "mrbgems/mruby-compiler/core/parse.y"
+ case 500:
+#line 3617 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
p->lstate = EXPR_BEG;
p->cmd_start = TRUE;
}
-#line 9163 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9319 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 498:
-#line 3549 "mrbgems/mruby-compiler/core/parse.y"
+ case 501:
+#line 3623 "mrbgems/mruby-compiler/core/parse.y"
{
-#if 1
- /* til real keyword args implemented */
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- local_add_f(p, r);
- (yyval.nd) = new_args(p, (yyvsp[-3].nd), 0, r, 0,
- new_args_tail(p, 0, 0, b));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- local_add_f(p, r); local_add_f(p, k);
+ local_add_f(p, r);
(yyval.nd) = new_args(p, (yyvsp[-3].nd), 0, r, 0,
new_args_tail(p, 0, new_kw_rest_args(p, nsym(k)), b));
-#endif
}
-#line 9185 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9332 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 499:
-#line 3567 "mrbgems/mruby-compiler/core/parse.y"
+ case 502:
+#line 3632 "mrbgems/mruby-compiler/core/parse.y"
{
-#if 1
- /* til real keyword args implemented */
- mrb_sym r = intern_op(mul);
- mrb_sym b = intern_op(and);
- local_add_f(p, r);
- (yyval.nd) = new_args(p, 0, 0, r, 0,
- new_args_tail(p, 0, 0, b));
-#else
mrb_sym r = intern_op(mul);
mrb_sym k = intern_op(pow);
mrb_sym b = intern_op(and);
- local_add_f(p, r); local_add_f(p, k);
+ local_add_f(p, r);
(yyval.nd) = new_args(p, 0, 0, r, 0,
new_args_tail(p, 0, new_kw_rest_args(p, nsym(k)), b));
-#endif
}
-#line 9207 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9345 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 501:
-#line 3588 "mrbgems/mruby-compiler/core/parse.y"
+ case 504:
+#line 3644 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 9215 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9353 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 502:
-#line 3594 "mrbgems/mruby-compiler/core/parse.y"
+ case 505:
+#line 3650 "mrbgems/mruby-compiler/core/parse.y"
{
local_nest(p);
}
-#line 9223 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9361 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 503:
-#line 3600 "mrbgems/mruby-compiler/core/parse.y"
+ case 506:
+#line 3656 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = new_kw_arg(p, (yyvsp[-1].id), cons((yyvsp[0].nd), locals_node(p)));
local_unnest(p);
}
-#line 9233 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9371 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 504:
-#line 3606 "mrbgems/mruby-compiler/core/parse.y"
+ case 507:
+#line 3662 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_kw_arg(p, (yyvsp[0].id), 0);
local_unnest(p);
}
-#line 9242 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9380 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 505:
-#line 3613 "mrbgems/mruby-compiler/core/parse.y"
+ case 508:
+#line 3669 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_kw_arg(p, (yyvsp[-1].id), cons((yyvsp[0].nd), locals_node(p)));
local_unnest(p);
}
-#line 9251 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9389 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 506:
-#line 3618 "mrbgems/mruby-compiler/core/parse.y"
+ case 509:
+#line 3674 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_kw_arg(p, (yyvsp[0].id), 0);
local_unnest(p);
}
-#line 9260 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9398 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 507:
-#line 3625 "mrbgems/mruby-compiler/core/parse.y"
+ case 510:
+#line 3681 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 9268 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9406 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 508:
-#line 3629 "mrbgems/mruby-compiler/core/parse.y"
+ case 511:
+#line 3685 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9276 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9414 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 509:
-#line 3635 "mrbgems/mruby-compiler/core/parse.y"
+ case 512:
+#line 3691 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 9284 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9422 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 510:
-#line 3639 "mrbgems/mruby-compiler/core/parse.y"
+ case 513:
+#line 3695 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9292 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9430 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 513:
-#line 3649 "mrbgems/mruby-compiler/core/parse.y"
+ case 516:
+#line 3705 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_kw_rest_args(p, nsym((yyvsp[0].id)));
}
-#line 9300 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9438 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 514:
-#line 3653 "mrbgems/mruby-compiler/core/parse.y"
+ case 517:
+#line 3709 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_kw_rest_args(p, 0);
}
-#line 9308 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9446 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 515:
-#line 3659 "mrbgems/mruby-compiler/core/parse.y"
+ case 518:
+#line 3715 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, (yyvsp[-3].nd), (yyvsp[-1].nd), (yyvsp[0].id));
}
-#line 9316 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9454 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 516:
-#line 3663 "mrbgems/mruby-compiler/core/parse.y"
+ case 519:
+#line 3719 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, (yyvsp[-1].nd), 0, (yyvsp[0].id));
}
-#line 9324 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9462 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 517:
-#line 3667 "mrbgems/mruby-compiler/core/parse.y"
+ case 520:
+#line 3723 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, (yyvsp[-1].nd), (yyvsp[0].id));
}
-#line 9332 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9470 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 518:
-#line 3671 "mrbgems/mruby-compiler/core/parse.y"
+ case 521:
+#line 3727 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, 0, (yyvsp[0].id));
}
-#line 9340 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9478 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 519:
-#line 3677 "mrbgems/mruby-compiler/core/parse.y"
+ case 522:
+#line 3733 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
}
-#line 9348 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9486 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 520:
-#line 3681 "mrbgems/mruby-compiler/core/parse.y"
+ case 523:
+#line 3737 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args_tail(p, 0, 0, 0);
}
-#line 9356 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9494 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 521:
-#line 3687 "mrbgems/mruby-compiler/core/parse.y"
+ case 524:
+#line 3743 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), (yyvsp[-3].nd), (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 9364 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9502 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 522:
-#line 3691 "mrbgems/mruby-compiler/core/parse.y"
+ case 525:
+#line 3747 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-7].nd), (yyvsp[-5].nd), (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9372 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9510 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 523:
-#line 3695 "mrbgems/mruby-compiler/core/parse.y"
+ case 526:
+#line 3751 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-3].nd), (yyvsp[-1].nd), 0, 0, (yyvsp[0].nd));
}
-#line 9380 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9518 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 524:
-#line 3699 "mrbgems/mruby-compiler/core/parse.y"
+ case 527:
+#line 3755 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), (yyvsp[-3].nd), 0, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9388 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9526 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 525:
-#line 3703 "mrbgems/mruby-compiler/core/parse.y"
+ case 528:
+#line 3759 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-3].nd), 0, (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 9396 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9534 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 526:
-#line 3707 "mrbgems/mruby-compiler/core/parse.y"
+ case 529:
+#line 3763 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-5].nd), 0, (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9404 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9542 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 527:
-#line 3711 "mrbgems/mruby-compiler/core/parse.y"
+ case 530:
+#line 3767 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, (yyvsp[-1].nd), 0, 0, 0, (yyvsp[0].nd));
}
-#line 9412 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9550 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 528:
-#line 3715 "mrbgems/mruby-compiler/core/parse.y"
+ case 531:
+#line 3771 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-3].nd), (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 9420 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9558 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 529:
-#line 3719 "mrbgems/mruby-compiler/core/parse.y"
+ case 532:
+#line 3775 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-5].nd), (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9428 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9566 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 530:
-#line 3723 "mrbgems/mruby-compiler/core/parse.y"
+ case 533:
+#line 3779 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-1].nd), 0, 0, (yyvsp[0].nd));
}
-#line 9436 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9574 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 531:
-#line 3727 "mrbgems/mruby-compiler/core/parse.y"
+ case 534:
+#line 3783 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, (yyvsp[-3].nd), 0, (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9444 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9582 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 532:
-#line 3731 "mrbgems/mruby-compiler/core/parse.y"
+ case 535:
+#line 3787 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, (yyvsp[-1].id), 0, (yyvsp[0].nd));
}
-#line 9452 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9590 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 533:
-#line 3735 "mrbgems/mruby-compiler/core/parse.y"
+ case 536:
+#line 3791 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, (yyvsp[-3].id), (yyvsp[-1].nd), (yyvsp[0].nd));
}
-#line 9460 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9598 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 534:
-#line 3739 "mrbgems/mruby-compiler/core/parse.y"
+ case 537:
+#line 3795 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_args(p, 0, 0, 0, 0, (yyvsp[0].nd));
}
-#line 9468 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9606 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 535:
-#line 3743 "mrbgems/mruby-compiler/core/parse.y"
+ case 538:
+#line 3799 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, intern_op(and));
(yyval.nd) = new_args(p, 0, 0, 0, 0, 0);
}
-#line 9477 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9615 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 536:
-#line 3750 "mrbgems/mruby-compiler/core/parse.y"
+ case 539:
+#line 3806 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "formal argument cannot be a constant");
(yyval.nd) = 0;
}
-#line 9486 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9624 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 537:
-#line 3755 "mrbgems/mruby-compiler/core/parse.y"
+ case 540:
+#line 3811 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "formal argument cannot be an instance variable");
(yyval.nd) = 0;
}
-#line 9495 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9633 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 538:
-#line 3760 "mrbgems/mruby-compiler/core/parse.y"
+ case 541:
+#line 3816 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "formal argument cannot be a global variable");
(yyval.nd) = 0;
}
-#line 9504 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9642 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 539:
-#line 3765 "mrbgems/mruby-compiler/core/parse.y"
+ case 542:
+#line 3821 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "formal argument cannot be a class variable");
(yyval.nd) = 0;
}
-#line 9513 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9651 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 540:
-#line 3770 "mrbgems/mruby-compiler/core/parse.y"
+ case 543:
+#line 3826 "mrbgems/mruby-compiler/core/parse.y"
{
yyerror(p, "formal argument cannot be a numbered parameter");
(yyval.nd) = 0;
}
-#line 9522 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9660 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 541:
-#line 3777 "mrbgems/mruby-compiler/core/parse.y"
+ case 544:
+#line 3833 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = 0;
}
-#line 9530 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9668 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 542:
-#line 3781 "mrbgems/mruby-compiler/core/parse.y"
+ case 545:
+#line 3837 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, (yyvsp[0].id));
(yyval.id) = (yyvsp[0].id);
}
-#line 9539 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9677 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 543:
-#line 3788 "mrbgems/mruby-compiler/core/parse.y"
+ case 546:
+#line 3844 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_arg(p, (yyvsp[0].id));
}
-#line 9547 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9685 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 544:
-#line 3792 "mrbgems/mruby-compiler/core/parse.y"
+ case 547:
+#line 3848 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = local_switch(p);
}
-#line 9555 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9693 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 545:
-#line 3796 "mrbgems/mruby-compiler/core/parse.y"
+ case 548:
+#line 3852 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = new_masgn_param(p, (yyvsp[-1].nd), p->locals->car);
local_resume(p, (yyvsp[-2].nd));
local_add_f(p, 0);
}
-#line 9565 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9703 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 546:
-#line 3804 "mrbgems/mruby-compiler/core/parse.y"
+ case 549:
+#line 3860 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 9573 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9711 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 547:
-#line 3808 "mrbgems/mruby-compiler/core/parse.y"
+ case 550:
+#line 3864 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9581 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9719 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 548:
-#line 3814 "mrbgems/mruby-compiler/core/parse.y"
+ case 551:
+#line 3870 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, (yyvsp[-1].id));
local_nest(p);
(yyval.id) = (yyvsp[-1].id);
}
-#line 9591 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9729 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 549:
-#line 3822 "mrbgems/mruby-compiler/core/parse.y"
+ case 552:
+#line 3878 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = cons(nsym((yyvsp[-1].id)), cons((yyvsp[0].nd), locals_node(p)));
local_unnest(p);
}
-#line 9601 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9739 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 550:
-#line 3830 "mrbgems/mruby-compiler/core/parse.y"
+ case 553:
+#line 3886 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = cons(nsym((yyvsp[-1].id)), cons((yyvsp[0].nd), locals_node(p)));
local_unnest(p);
}
-#line 9611 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9749 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 551:
-#line 3838 "mrbgems/mruby-compiler/core/parse.y"
+ case 554:
+#line 3894 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 9619 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9757 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 552:
-#line 3842 "mrbgems/mruby-compiler/core/parse.y"
+ case 555:
+#line 3898 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9627 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9765 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 553:
-#line 3848 "mrbgems/mruby-compiler/core/parse.y"
+ case 556:
+#line 3904 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
}
-#line 9635 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9773 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 554:
-#line 3852 "mrbgems/mruby-compiler/core/parse.y"
+ case 557:
+#line 3908 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9643 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9781 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 557:
-#line 3862 "mrbgems/mruby-compiler/core/parse.y"
+ case 560:
+#line 3918 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, (yyvsp[0].id));
(yyval.id) = (yyvsp[0].id);
}
-#line 9652 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9790 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 558:
-#line 3867 "mrbgems/mruby-compiler/core/parse.y"
+ case 561:
+#line 3923 "mrbgems/mruby-compiler/core/parse.y"
{
local_add_f(p, intern_op(mul));
(yyval.id) = -1;
}
-#line 9661 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9799 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 561:
-#line 3878 "mrbgems/mruby-compiler/core/parse.y"
+ case 564:
+#line 3934 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = (yyvsp[0].id);
}
-#line 9669 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9807 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 562:
-#line 3884 "mrbgems/mruby-compiler/core/parse.y"
+ case 565:
+#line 3940 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = (yyvsp[0].id);
}
-#line 9677 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9815 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 563:
-#line 3888 "mrbgems/mruby-compiler/core/parse.y"
+ case 566:
+#line 3944 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.id) = 0;
}
-#line 9685 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9823 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 564:
-#line 3894 "mrbgems/mruby-compiler/core/parse.y"
+ case 567:
+#line 3950 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[0].nd);
if (!(yyval.nd)) (yyval.nd) = new_nil(p);
}
-#line 9694 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9832 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 565:
-#line 3898 "mrbgems/mruby-compiler/core/parse.y"
+ case 568:
+#line 3954 "mrbgems/mruby-compiler/core/parse.y"
{p->lstate = EXPR_BEG;}
-#line 9700 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9838 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 566:
-#line 3899 "mrbgems/mruby-compiler/core/parse.y"
+ case 569:
+#line 3955 "mrbgems/mruby-compiler/core/parse.y"
{
if ((yyvsp[-1].nd) == 0) {
yyerror(p, "can't define singleton method for ().");
@@ -9723,55 +9861,63 @@ yyreduce:
}
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 9727 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9865 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 568:
-#line 3925 "mrbgems/mruby-compiler/core/parse.y"
+ case 571:
+#line 3981 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = (yyvsp[-1].nd);
}
-#line 9735 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9873 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 569:
-#line 3931 "mrbgems/mruby-compiler/core/parse.y"
+ case 572:
+#line 3987 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = list1((yyvsp[0].nd));
NODE_LINENO((yyval.nd), (yyvsp[0].nd));
}
-#line 9744 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9882 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 570:
-#line 3936 "mrbgems/mruby-compiler/core/parse.y"
+ case 573:
+#line 3992 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = push((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9752 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9890 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 573:
-#line 3946 "mrbgems/mruby-compiler/core/parse.y"
+ case 574:
+#line 3998 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[-2].nd));
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = cons((yyvsp[-2].nd), (yyvsp[0].nd));
}
-#line 9762 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9900 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 574:
-#line 3952 "mrbgems/mruby-compiler/core/parse.y"
+ case 575:
+#line 4004 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = cons(new_sym(p, (yyvsp[-2].id)), (yyvsp[0].nd));
}
-#line 9771 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9909 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 575:
-#line 3957 "mrbgems/mruby-compiler/core/parse.y"
+ case 576:
+#line 4009 "mrbgems/mruby-compiler/core/parse.y"
+ {
+ (yyval.nd) = cons(new_sym(p, (yyvsp[-1].id)), label_reference(p, (yyvsp[-1].id)));
+ }
+#line 9917 "mrbgems/mruby-compiler/core/y.tab.c"
+ break;
+
+ case 577:
+#line 4013 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
if (typen((yyvsp[-2].nd)->car) == NODE_DSTR) {
@@ -9781,67 +9927,67 @@ yyreduce:
(yyval.nd) = cons(new_sym(p, new_strsym(p, (yyvsp[-2].nd))), (yyvsp[0].nd));
}
}
-#line 9785 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9931 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 576:
-#line 3967 "mrbgems/mruby-compiler/core/parse.y"
+ case 578:
+#line 4023 "mrbgems/mruby-compiler/core/parse.y"
{
void_expr_error(p, (yyvsp[0].nd));
(yyval.nd) = cons(new_kw_rest_args(p, 0), (yyvsp[0].nd));
}
-#line 9794 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9940 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 589:
-#line 3994 "mrbgems/mruby-compiler/core/parse.y"
+ case 591:
+#line 4050 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.num) = '.';
}
-#line 9802 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9948 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 590:
-#line 3998 "mrbgems/mruby-compiler/core/parse.y"
+ case 592:
+#line 4054 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.num) = 0;
}
-#line 9810 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9956 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 592:
-#line 4005 "mrbgems/mruby-compiler/core/parse.y"
+ case 594:
+#line 4061 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.num) = tCOLON2;
}
-#line 9818 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9964 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 601:
-#line 4026 "mrbgems/mruby-compiler/core/parse.y"
+ case 603:
+#line 4082 "mrbgems/mruby-compiler/core/parse.y"
{yyerrok;}
-#line 9824 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9970 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 604:
-#line 4032 "mrbgems/mruby-compiler/core/parse.y"
+ case 605:
+#line 4087 "mrbgems/mruby-compiler/core/parse.y"
{
p->lineno += (yyvsp[0].num);
p->column = 0;
}
-#line 9833 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9979 "mrbgems/mruby-compiler/core/y.tab.c"
break;
- case 607:
-#line 4043 "mrbgems/mruby-compiler/core/parse.y"
+ case 609:
+#line 4099 "mrbgems/mruby-compiler/core/parse.y"
{
(yyval.nd) = 0;
}
-#line 9841 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9987 "mrbgems/mruby-compiler/core/y.tab.c"
break;
-#line 9845 "mrbgems/mruby-compiler/core/y.tab.c"
+#line 9991 "mrbgems/mruby-compiler/core/y.tab.c"
default: break;
}
@@ -10073,7 +10219,7 @@ yyreturn:
#endif
return yyresult;
}
-#line 4047 "mrbgems/mruby-compiler/core/parse.y"
+#line 4103 "mrbgems/mruby-compiler/core/parse.y"
#define pylval (*((YYSTYPE*)(p->ylval)))
@@ -10117,7 +10263,7 @@ yyerror_c(parser_state *p, const char *msg, char c)
}
static void
-yywarn(parser_state *p, const char *s)
+yywarning(parser_state *p, const char *s)
{
char* c;
size_t n;
@@ -10145,12 +10291,6 @@ yywarn(parser_state *p, const char *s)
}
static void
-yywarning(parser_state *p, const char *s)
-{
- yywarn(p, s);
-}
-
-static void
yywarning_s(parser_state *p, const char *msg, const char *s)
{
char buf[256];
@@ -12255,10 +12395,10 @@ parser_yylex(parser_state *p)
if (last_state == EXPR_FNAME) goto gvar;
tokfix(p);
{
- unsigned long n = strtoul(tok(p), NULL, 10);
- if (n > INT_MAX) {
- yyerror(p, "capture group index must be <= " MRB_STRINGIZE(INT_MAX));
- return 0;
+ mrb_int n = mrb_int_read(tok(p), NULL, NULL);
+ if (n > INT32_MAX) {
+ yywarning(p, "capture group index too big; always nil");
+ return keyword_nil;
}
pylval.nd = new_nth_ref(p, (int)n);
}
@@ -12543,6 +12683,7 @@ parser_update_cxt(parser_state *p, mrbc_context *cxt)
int i = 0;
if (!cxt) return;
+ if (!p->tree) return;
if (intn(p->tree->car) != NODE_SCOPE) return;
n0 = n = p->tree->cdr->car;
while (n) {
@@ -12563,53 +12704,39 @@ MRB_API void
mrb_parser_parse(parser_state *p, mrbc_context *c)
{
struct mrb_jmpbuf buf1;
- p->jmp = &buf1;
+ struct mrb_jmpbuf *prev = p->mrb->jmp;
+ p->mrb->jmp = &buf1;
- MRB_TRY(p->jmp) {
+ MRB_TRY(p->mrb->jmp) {
int n = 1;
p->cmd_start = TRUE;
p->in_def = p->in_single = 0;
p->nerr = p->nwarn = 0;
p->lex_strterm = NULL;
-
parser_init_cxt(p, c);
- if (p->mrb->jmp) {
- n = yyparse(p);
- }
- else {
- struct mrb_jmpbuf buf2;
-
- p->mrb->jmp = &buf2;
- MRB_TRY(p->mrb->jmp) {
- n = yyparse(p);
- }
- MRB_CATCH(p->mrb->jmp) {
- p->nerr++;
- }
- MRB_END_EXC(p->mrb->jmp);
- p->mrb->jmp = 0;
- }
+ n = yyparse(p);
if (n != 0 || p->nerr > 0) {
p->tree = 0;
+ p->mrb->jmp = prev;
return;
}
- if (!p->tree) {
- p->tree = new_nil(p);
- }
parser_update_cxt(p, c);
if (c && c->dump_result) {
mrb_parser_dump(p->mrb, p->tree, 0);
}
}
- MRB_CATCH(p->jmp) {
- yyerror(p, "memory allocation error");
+ MRB_CATCH(p->mrb->jmp) {
p->nerr++;
- p->tree = 0;
- return;
+ if (p->mrb->exc == NULL) {
+ yyerror(p, "memory allocation error");
+ p->nerr++;
+ p->tree = 0;
+ }
}
MRB_END_EXC(p->jmp);
+ p->mrb->jmp = prev;
}
MRB_API parser_state*
@@ -12994,8 +13121,13 @@ dump_args(mrb_state *mrb, node *n, int offset)
}
n = n->cdr;
if (n->car) {
+ mrb_sym rest = sym(n->car);
+
dump_prefix(n, offset+1);
- printf("rest=*%s\n", mrb_sym_name(mrb, sym(n->car)));
+ if (rest == MRB_OPSYM(mul))
+ printf("rest=*\n");
+ else
+ printf("rest=*%s\n", mrb_sym_name(mrb, rest));
}
n = n->cdr;
if (n->car) {
@@ -13272,9 +13404,16 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
printf("args:\n");
dump_recur(mrb, tree->car, offset+2);
if (tree->cdr) {
- dump_prefix(tree, offset+1);
- printf("block:\n");
- mrb_parser_dump(mrb, tree->cdr, offset+2);
+ if (tree->cdr->car) {
+ dump_prefix(tree, offset+1);
+ printf("kwargs:\n");
+ mrb_parser_dump(mrb, tree->cdr->car, offset+2);
+ }
+ if (tree->cdr->cdr) {
+ dump_prefix(tree, offset+1);
+ printf("block:\n");
+ mrb_parser_dump(mrb, tree->cdr->cdr, offset+2);
+ }
}
}
break;
@@ -13415,7 +13554,17 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
break;
case NODE_ZSUPER:
- printf("NODE_ZSUPER\n");
+ printf("NODE_ZSUPER:\n");
+ if (tree) {
+ dump_prefix(tree, offset+1);
+ printf("args:\n");
+ dump_recur(mrb, tree->car, offset+2);
+ if (tree->cdr) {
+ dump_prefix(tree, offset+1);
+ printf("block:\n");
+ mrb_parser_dump(mrb, tree->cdr, offset+2);
+ }
+ }
break;
case NODE_RETURN:
@@ -13741,7 +13890,10 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
break;
case NODE_KW_REST_ARGS:
- printf("NODE_KW_REST_ARGS %s\n", mrb_sym_name(mrb, sym(tree)));
+ if (tree)
+ printf("NODE_KW_REST_ARGS %s\n", mrb_sym_name(mrb, sym(tree)));
+ else
+ printf("NODE_KW_REST_ARGS\n");
break;
default:
@@ -13750,3 +13902,19 @@ mrb_parser_dump(mrb_state *mrb, node *tree, int offset)
}
#endif
}
+
+typedef mrb_bool mrb_parser_foreach_top_variable_func(mrb_state *mrb, mrb_sym sym, void *user);
+void mrb_parser_foreach_top_variable(mrb_state *mrb, struct mrb_parser_state *p, mrb_parser_foreach_top_variable_func *func, void *user);
+
+void
+mrb_parser_foreach_top_variable(mrb_state *mrb, struct mrb_parser_state *p, mrb_parser_foreach_top_variable_func *func, void *user)
+{
+ const mrb_ast_node *n = p->tree;
+ if ((intptr_t)n->car == NODE_SCOPE) {
+ n = n->cdr->car;
+ for (; n; n = n->cdr) {
+ mrb_sym sym = sym(n->car);
+ if (sym && !func(mrb, sym, user)) break;
+ }
+ }
+}