From: headius@... Date: 2016-10-21T14:44:47+00:00 Subject: [ruby-core:77704] [Ruby trunk Bug#12860] Splatting an argument does not obey left-to-right execution order Issue #12860 has been updated by Charles Nutter. It is worth mentioning that if the splatted value is not an array, we can see that `to_a` does get called before `shift`. That makes this even more unintuitive, since the calls happen in proper order but the assembly of the args list happens in the wrong order. ```ruby a = Object.new a.instance_variable_set :@ary, [1, 2] def a.to_a p :to_a @ary end def a.shift p :shift @ary.shift end def f(*x) p x end f(*a, a.shift) ``` All implementations I tested output `to_a` before `shift`. However, as with the plain array, MRI delays the application of the splat until *after* the shift call. ---------------------------------------- Bug #12860: Splatting an argument does not obey left-to-right execution order https://bugs.ruby-lang.org/issues/12860#change-60986 * Author: Charles Nutter * Status: Open * Priority: Normal * Assignee: * ruby -v: 2.3.1 * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- Ruby evaluates arguments left to right, but it does not appear to handle construction of the eventual argument list from left to right. Take this example: ```ruby def foo(*args) p args end ary = [1,2] foo(*ary, ary.shift) ``` With left-to-right execution, the `ary` value should be splatted (1, 2), and THEN shifted (1) producing `args == [1, 2, 1]`. However, on MRI, the shift occurs *before* the splat, so `args == [2, 1]`. This is counter-intuitive. At the moment in time the splat is encountered, `ary` is still `[1, 2]`. So the first two arguments should be (1, 2). THEN the shift happens, producing a third argument of (1). This affects JRuby running Rails because they have a small piece of code that depends on this unusual behavior: https://github.com/rails/rails/blob/master/activesupport/lib/active_support/callbacks.rb#L411-L425 This code appears to have been introduced into Rails recently, and I will file a separate issue to change it to be more explicit about ordering. -- https://bugs.ruby-lang.org/ Unsubscribe: