[prototype runtime] Use the original Module#name to avoid generating incorrect module name by pocke · Pull Request #526 · ruby/rbs
Problem rbs prototype runtime command generates RBS with incorrect module names if Module#name is re-defined. For example: # test.rb module X module M def self.name() 'FakeNameM' end...