1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* expand tabs.

This commit is contained in:
git 2019-06-16 22:48:23 +09:00
parent 44caca11cf
commit 11f8c89171

View file

@ -6859,22 +6859,22 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *node, in
if (node->nd_vid) {
ADD_INSN1(ret, line, putspecialobject,
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
base_id = node->nd_vid;
base_id = node->nd_vid;
}
else {
compile_cpath(ret, iseq, node->nd_else);
base_id = node->nd_else->nd_mid;
base_id = node->nd_else->nd_mid;
}
CHECK(COMPILE(ret, "lvalue", node->nd_value));
CHECK(COMPILE(ret, "lvalue", node->nd_value));
if (popped) {
if (popped) {
ADD_INSN(ret, line, swap);
} else {
ADD_INSN(ret, line, dup);
} else {
ADD_INSN(ret, line, dup);
ADD_INSN1(ret, line, reverse, INT2FIX(3));
}
}
ADD_INSN1(ret, line, setconstant, ID2SYM(base_id));
ADD_INSN1(ret, line, setconstant, ID2SYM(base_id));
break;
}
case NODE_CVASGN:{