fully_documented?()
public
Does this context and its methods and constants all have documentation?
(Yes, fully documented doesn’t mean everything.)
# File lib/rdoc/context.rb, line 945
def fully_documented?
documented? and
attributes.all? { |a| a.documented? } and
method_list.all? { |m| m.documented? } and
constants.all? { |c| c.documented? }
end