mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
34b94129d2
CRuby's Hash#deconstruct_keys simply returns self regardless of arguments. The mruby-hash-ext version filtered keys, which was unnecessary since the compiler accesses individual keys via [] after calling deconstruct_keys. The Ruby implementation in mrblib/hash.rb (returning self) is sufficient and CRuby-compatible. Co-authored-by: Claude <noreply@anthropic.com>