Support `class << self` syntax in `rbs prototype rb` by pocke · Pull Request #157 · ruby/rbs
Currently rbs prototype rb command ignores class <<self syntax. # test.rb class C class << self def m() end end def m() end end $ ruby exe/rbs prototype rb test.rb class C d...