mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
4cb9e9f553
Enhanced NODE_HASH dump to detect and display the double-splat operator (**) in a readable format. When a hash contains **other_hash syntax, the parser represents ** as MRB_OPSYM(pow). Instead of dumping this complex operator node, now displays a clean "**" for better readability. This makes hash dumps with splat operations much easier to understand and debug. Co-authored-by: Claude <noreply@anthropic.com>