mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
get rid of shadowing variables
Mostly by renaming the shadowing variable. If a shadowing variable was deleted, the shadowed one can be used instead.
This commit is contained in:
@@ -2113,7 +2113,7 @@ RETRY_TRY_BLOCK:
|
||||
else {
|
||||
struct RArray *ary = mrb_ary_ptr(v);
|
||||
int len = ary->len;
|
||||
int i;
|
||||
int idx;
|
||||
|
||||
if (len > pre + post) {
|
||||
regs[a++] = mrb_ary_new_from_values(mrb, len - pre - post, ary->ptr+pre);
|
||||
@@ -2123,11 +2123,11 @@ RETRY_TRY_BLOCK:
|
||||
}
|
||||
else {
|
||||
regs[a++] = mrb_ary_new_capa(mrb, 0);
|
||||
for (i=0; i+pre<len; i++) {
|
||||
regs[a+i] = ary->ptr[pre+i];
|
||||
for (idx=0; idx+pre<len; i++) {
|
||||
regs[a+i] = ary->ptr[pre+idx];
|
||||
}
|
||||
while (i < post) {
|
||||
SET_NIL_VALUE(regs[a+i]);
|
||||
while (idx < post) {
|
||||
SET_NIL_VALUE(regs[a+idx]);
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user