summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/show_source.rb
diff options
context:
space:
mode:
authorJeremy Evans <[email protected]>2023-11-08 15:56:53 -0800
committerJeremy Evans <[email protected]>2023-12-09 13:15:47 -0800
commita950f230788d51e13d16596e37cb77e4cc6e2311 (patch)
tree0110843746e7703e38e660dbe52da776656eade7 /lib/irb/cmd/show_source.rb
parentc0b6ea7c8b5dc6e48ecf6e14e1dbd135d079f0fc (diff)
Ensure f(**kw, &block) calls kw.to_hash before block.to_proc
Previously, block.to_proc was called first, by vm_caller_setup_arg_block. kw.to_hash was called later inside CALLER_SETUP_ARG or setup_parameters_complex. This adds a splatkw instruction that is inserted before sends with ARGS_BLOCKARG and KW_SPLAT and without KW_SPLAT_MUT. This is not needed in the KW_SPLAT_MUT case, because then you know the value is a hash, and you don't need to call to_hash on it. The splatkw instruction checks whether the second to top block is a hash, and if not, replaces it with the value of calling to_hash on it (using rb_to_hash_type). As it is always before a send with ARGS_BLOCKARG and KW_SPLAT, second to top is the keyword splat, and top is the passed block.
Diffstat (limited to 'lib/irb/cmd/show_source.rb')
0 files changed, 0 insertions, 0 deletions