Find methods matching ‘name’ in ourselves and
in any classes we contain
# File lib/rdoc/ri/cache.rb, line 85
def recursively_find_methods_matching(name, is_class_method)
res = local_methods_matching(name, is_class_method)
@inferior_classes.each do |c|
res.concat(c.recursively_find_methods_matching(name, is_class_method))
end
res
end