# File lib/rdoc/stats.rb, line 255
def report_attributes cm
return if cm.attributes.empty?
report = []
cm.each_attribute do |attr|
next if attr.documented?
report << " #{attr.definition} :#{attr.name} " "# in file #{attr.file.full_name}"
end
report
end