Support `extend self` by prototype rb by pocke · Pull Request #492 · ruby/rbs
This pull request adds support for extend self by prototype rb. For example, module M; extend self; end will be converted to module M; extend ::M; end. self that is in arguments of extend is conver...