Support `class << self` syntax in `rbs prototype rb` by pocke · Pull Request #157 · ruby/rbs

Currently rbs prototype rb command ignores class &lt;&lt;self syntax. # test.rb class C class &lt;&lt; self def m() end end def m() end end $ ruby exe/rbs prototype rb test.rb class C d...