Avoid error on splat assignment without name by pocke · Pull Request #330 · soutaro/steep
This pull request fixes an error on a mass assignment that has a split without a name. Problem Steep raises an error on a split node without a name. # test.rb * = [1,2,3] *, a = [1,2,3] p a $ ste...