Yields AnyMethod and Attr entries matching the list of names in
methods.
# File lib/rdoc/context.rb, line 1023
def methods_matching(methods, singleton = false, &block)
(@method_list + @attributes).each do |m|
yield m if methods.include?(m.name) and m.singleton == singleton
end
each_ancestor do |parent|
parent.methods_matching(methods, singleton, &block)
end
end