mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* expand tabs.
This commit is contained in:
parent
1ff26dc4c7
commit
d4929f5185
1 changed files with 6 additions and 6 deletions
12
compile.c
12
compile.c
|
@ -6855,20 +6855,20 @@ iseq_compile_each0(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *node, in
|
|||
break;
|
||||
}
|
||||
case NODE_CDECL:{
|
||||
CHECK(COMPILE(ret, "lvalue", node->nd_value));
|
||||
CHECK(COMPILE(ret, "lvalue", node->nd_value));
|
||||
|
||||
if (!popped) {
|
||||
ADD_INSN(ret, line, dup);
|
||||
}
|
||||
if (!popped) {
|
||||
ADD_INSN(ret, line, dup);
|
||||
}
|
||||
|
||||
if (node->nd_vid) {
|
||||
ADD_INSN1(ret, line, putspecialobject,
|
||||
INT2FIX(VM_SPECIAL_OBJECT_CONST_BASE));
|
||||
ADD_INSN1(ret, line, setconstant, ID2SYM(node->nd_vid));
|
||||
ADD_INSN1(ret, line, setconstant, ID2SYM(node->nd_vid));
|
||||
}
|
||||
else {
|
||||
compile_cpath(ret, iseq, node->nd_else);
|
||||
ADD_INSN1(ret, line, setconstant, ID2SYM(node->nd_else->nd_mid));
|
||||
ADD_INSN1(ret, line, setconstant, ID2SYM(node->nd_else->nd_mid));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue