Sha256: 658f64e479f0620ef1d5909eea6b53fd4b541db40a8d4f7fa08b64d09aa54c48

Contents?: true

Size: 668 Bytes

Versions: 7

Compression:

Stored size: 668 Bytes

Contents

module YARD::CodeObjects
  register_separator NSEP, :module

  # Represents a Ruby module.
  class ModuleObject < NamespaceObject
    # Returns the inheritance tree of mixins.
    #
    # @param [Boolean] include_mods if true, will include mixed in
    #   modules (which is likely what is wanted).
    # @return [Array<NamespaceObject>] a list of namespace objects
    def inheritance_tree(include_mods = false)
      return [self] unless include_mods
      [self] + mixins(:instance, :class).map do |m|
        next if m == self
        next m unless m.respond_to?(:inheritance_tree)
        m.inheritance_tree(true)
      end.compact.flatten.uniq
    end
  end
end

Version data entries

7 entries across 6 versions & 2 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/lib/yard/code_objects/module_object.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/lib/yard/code_objects/module_object.rb
yard-0.9.5 lib/yard/code_objects/module_object.rb
yard-0.9.4 lib/yard/code_objects/module_object.rb
yard-0.9.3 lib/yard/code_objects/module_object.rb
yard-0.9.2 lib/yard/code_objects/module_object.rb
yard-0.9.1 lib/yard/code_objects/module_object.rb