Skip to Content Skip to Search

A normal class, neither singleton nor anonymous

Methods
A
D

Instance Public methods

ancestors()

The ancestors of this class including modules. Unlike Module#ancestors, this class is not included in the result. The result will contain both RDoc::ClassModules and Strings.

# File ruby/lib/rdoc/normal_class.rb, line 12
def ancestors
  if String === superclass then
    super << superclass
  elsif superclass then
    ancestors = super
    ancestors << superclass
    ancestors.concat superclass.ancestors
  else
    super
  end
end

definition()

The definition of this class, class MyClassName

# File ruby/lib/rdoc/normal_class.rb, line 31
def definition
  "class #{full_name}"
end

direct_ancestors()

# File ruby/lib/rdoc/normal_class.rb, line 35
def direct_ancestors
  superclass ? super + [superclass] : super
end