Creates classes and module that were missing were defined due to the file
order being different than the declaration order.
# File lib/rdoc/parser/c.rb, line 508
def do_missing
return if @missing_dependencies.empty?
@enclosure_dependencies.tsort.each do |in_module|
arguments = @missing_dependencies.delete in_module
next unless arguments # dependency on existing class
handle_class_module(*arguments)
end
end