1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rdoc/normal_class.rb
drbrain 46580b5147 Import RDoc 2.5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-01 07:45:16 +00:00

55 lines
1.2 KiB
Ruby

require 'rdoc/class_module'
##
# A normal class, neither singleton nor anonymous
class RDoc::NormalClass < RDoc::ClassModule
##
# Ancestor ClassModules
def ancestors
includes + [superclass]
end
def inspect # :nodoc:
superclass = @superclass ? " < #{@superclass}" : nil
"<%s:0x%x class %s%s includes: %p attributes: %p methods: %p aliases: %p>" % [
self.class, object_id,
full_name, superclass, @includes, @attributes, @method_list, @aliases
]
end
def pretty_print q # :nodoc:
superclass = @superclass ? " < #{@superclass}" : nil
q.group 2, "[class #{full_name}#{superclass} ", "]" do
q.breakable
q.text "includes:"
q.breakable
q.seplist @includes do |inc| q.pp inc end
q.breakable
q.text "attributes:"
q.breakable
q.seplist @attributes do |inc| q.pp inc end
q.breakable
q.text "methods:"
q.breakable
q.seplist @method_list do |inc| q.pp inc end
q.breakable
q.text "aliases:"
q.breakable
q.seplist @aliases do |inc| q.pp inc end
q.breakable
q.text "comment:"
q.breakable
q.pp comment
end
end
end