mutant v0.11.9 Release Notes

Release Date: 2022-05-01 // almost 2 years ago
  • Add explicit mutation handler for xstr nodes.

    Fix crash with certain block argument edge cases such as foo { |(*)| }.

    Fix mutation from foo { |(a, b)| } to foo { |(_a, b)| } and foo { |(a, _b)| } instead of the less useful mutation to only foo { |_a| }.

    Add foo { |(a, b)| } -> foo { |a, b| } mutation.

    Remove useless loop { code } -> loop { nil } mutation.