This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
do_includes()
private
Look for includes of the form:
rb_include_module(rb_cArray,rb_mEnumerable);
# File lib/rdoc/parsers/parse_c.rb, line 721
def do_includes
@body.scan(/rb_include_module\s*\(\s*(\w+?),\s*(\w+?)\s*\)/) do |c,m|
if cls = @classes[c]
m = @known_classes[m] || m
cls.add_include(Include.new(m, ""))
end
end
end