method
update_extends
ruby latest stable - Class:
RDoc ::ClassModule
update_extends()public
Deletes from #extends those whose module has been removed from the documentation.
# File lib/rdoc/class_module.rb, line 791
def update_extends
extends.reject! do |ext|
mod = ext.module
!(String === mod) && @store.modules_hash[mod.full_name].nil?
end
extends.uniq!
end