mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
6f4c585bd7
Formerly, `__send__(*args)` modified `args` with `Array#shift`. This bug affects optcarrot. This changeset avoids the array destruction by using `args = args[1, len-1]`.