Bug #14415
closedEmpty keyword hashes get assigned to ordinal args.
Description
Spreading empty arrays works, even when they go through a variable, or are disguised:
args = [] # => []
->{}.call *[] # => nil
->{}.call *args # => nil
->{}.call *([]) # => nil
->{}.call *([];) # => nil
->{}.call *(;[]) # => nil
->{}.call *[*[]] # => nil
->{}.call *([];[]) # => nil
->{}.call *[*args] # => nil
Spreading empty keywords does not, when going through a variable, or sufficiently disguised:
kws = {} # => {}
->{}.call **{} # => nil
->{}.call **kws rescue $! # => #<ArgumentError: wrong number of arguments (given 1, expected 0)>
->{}.call **({}) # => nil
->{}.call **({};) # => nil
->{}.call **(;{}) rescue $! # => #<ArgumentError: wrong number of arguments (given 1, expected 0)>
->{}.call **{**{}} # => nil
->{}.call **({};{}) rescue $! # => #<ArgumentError: wrong number of arguments (given 1, expected 0)>
->{}.call **{**kws} rescue $! # => #<ArgumentError: wrong number of arguments (given 1, expected 0)>
It seems that **{}
gets optimized out of the code, as expected. Likely due to https://bugs.ruby-lang.org/issues/10719
But **empty_kws
still gets incorrectly passed as a hash, despite an attempt to fix it in https://bugs.ruby-lang.org/issues/13717
->a{a}.call **{} rescue $! # => #<ArgumentError: wrong number of arguments (given 0, expected 1)>
->a{a}.call **kws # => {}
->a{a}.call **(;{}) # => {}
(;{}) # => {}
Further confusion, it's missing a
, not b
:
->a,b:{}.call **{b:1} rescue $! # => #<ArgumentError: missing keyword: b>
Treating keywords as a special form of hash makes them very difficult to reason about.
Arrays manage to pull off destructuring and spreading with no issue, as we saw above.
I just want hashes to work like arrays with named matching instead of ordinal matching.
For each example below, try looking at the LHS and predicting what the result will be.
->a,b:,**c{[a,b,c]}.call 1, b:2 # => [1, 2, {}]
->a,b:,**c{[a,b,c]}.call 1, b:2, 3=>4 rescue $! # => #<ArgumentError: wrong number of arguments (given 2, expected 1; required keyword: b)>
->a,b:,**c{[a,b,c]}.call 1=>2, b:3 rescue $! # => #<ArgumentError: missing keyword: b>
->a,b:,**c{[a,b,c]}.call 1=>2, **{b:3} rescue $! # => #<ArgumentError: missing keyword: b>
->a,b:,**c{[a,b,c]}.call({1=>2}, b: 3) # => [{1=>2}, 3, {}]
->a,b:,**c{[a,b,c]}.call({1=>2}, {b: 3}) # => [{1=>2}, 3, {}]
->*a {a }.call 1, b:2, c:3, 4=>5 # => [1, {:b=>2, :c=>3, 4=>5}]
->*a,b:,**c{[a,b,c]}.call 1, b:2, c:3, 4=>5 # => [[1, {4=>5}], 2, {:c=>3}]
Keywords are getting in the way of beautiful hash spreading!
[*[1,2], *[:c, :d]] # => [1, 2, :c, :d]
{**{1=>2}, **{c: :d}} rescue $! # => #<TypeError: wrong argument type Integer (expected Symbol)>
[1,2,**{a:3}] # => [1, 2, {:a=>3}]
[1,2,**{}] # => [1, 2]
[1,2,**kws] # => [1, 2, {}]
Note that the latest JS's behaviour is congruent with my expected outputs:
$ node -v
# >> v8.9.4
$ node -p '
(({a, c, ...rest}) => [a, c, rest])
({a: 1, b: 2, c: 3, d: 4})
'
# >> [ 1, 3, { b: 2, d: 4 } ]
$ node -p '
const a=1, b=2, e={f: 5, g: 6}
;({...{a, b}, ...{c: 3, d: 4}, ...e})
'
# >> { a: 1, b: 2, c: 3, d: 4, f: 5, g: 6 }