PHP 8.2.31
Preview: include.rb Size: 2.11 KB
/proc/thread-self/root/opt/alt/ruby19/lib64/ruby/1.9.1/rdoc/include.rb

require 'rdoc/code_object'

##
# A Module include in a class with \#include

class RDoc::Include < RDoc::CodeObject

  ##
  # Name of included module

  attr_accessor :name

  ##
  # Creates a new Include for +name+ with +comment+

  def initialize(name, comment)
    super()
    @name = name
    self.comment = comment
    @module = nil   # cache for module if found
  end

  ##
  # Includes are sorted by name

  def <=> other
    return unless self.class === other

    name <=> other.name
  end

  def == other # :nodoc:
    self.class == other.class and
      self.name == other.name
  end

  ##
  # Full name based on #module

  def full_name
    m = self.module
    RDoc::ClassModule === m ? m.full_name : @name
  end

  def inspect # :nodoc:
    "#<%s:0x%x %s.include %s>" % [
      self.class,
      object_id,
      parent_name, @name,
    ]
  end

  ##
  # Attempts to locate the included module object.  Returns the name if not
  # known.
  #
  # The scoping rules of Ruby to resolve the name of an included module are:
  # - first look into the children of the current context;
  # - if not found, look into the children of included modules,
  #   in reverse inclusion order;
  # - if still not found, go up the hierarchy of names.

  def module
    return @module if @module

    # search the current context
    return @name unless parent
    full_name = parent.child_name(@name)
    @module = RDoc::TopLevel.modules_hash[full_name]
    return @module if @module
    return @name if @name =~ /^::/

    # search the includes before this one, in reverse order
    searched = parent.includes.take_while { |i| i != self }.reverse
    searched.each do |i|
      inc = i.module
      next if String === inc
      full_name = inc.child_name(@name)
      @module = RDoc::TopLevel.modules_hash[full_name]
      return @module if @module
    end

    # go up the hierarchy of names
    p = parent.parent
    while p
      full_name = p.child_name(@name)
      @module = RDoc::TopLevel.modules_hash[full_name]
      return @module if @module
      p = p.parent
    end

    @name
  end

  def to_s # :nodoc:
    "include #@name in: #{parent}"
  end

end

Directory Contents

Dirs: 5 × Files: 35

Name Size Perms Modified Actions
generator DIR
- drwxr-xr-x 2024-03-03 22:48:11
Edit Download
markup DIR
- drwxr-xr-x 2024-03-03 22:48:11
Edit Download
parser DIR
- drwxr-xr-x 2024-03-03 22:48:11
Edit Download
ri DIR
- drwxr-xr-x 2024-03-03 22:48:11
Edit Download
stats DIR
- drwxr-xr-x 2024-03-03 22:48:11
Edit Download
2.12 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
171 B lrw-r--r-- 2011-02-02 00:32:30
Edit Download
4.54 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
2.88 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
14.49 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
6.56 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
535 B lrw-r--r-- 2010-04-01 07:45:16
Edit Download
1.50 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
28.14 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
5.82 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
2.52 KB lrw-r--r-- 2012-02-14 07:55:37
Edit Download
794 B lrw-r--r-- 2011-05-15 11:55:52
Edit Download
1.30 KB lrw-r--r-- 2011-02-02 00:32:30
Edit Download
141 B lrw-r--r-- 2010-04-01 07:45:16
Edit Download
2.11 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
2.58 KB lrw-r--r-- 2011-06-29 21:17:31
Edit Download
20.96 KB lrw-r--r-- 2011-08-26 23:58:26
Edit Download
126 B lrw-r--r-- 2010-04-01 07:45:16
Edit Download
7.57 KB lrw-r--r-- 2011-05-15 11:55:52
Edit Download
1.58 KB lrw-r--r-- 2011-02-02 00:32:30
Edit Download
1.24 KB lrw-r--r-- 2011-02-02 00:32:30
Edit Download
18.79 KB lrw-r--r-- 2011-05-14 00:39:16
Edit Download
5.39 KB lrw-r--r-- 2011-08-26 23:58:26
Edit Download
11.97 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
963 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
230 B lrw-r--r-- 2010-04-01 07:45:16
Edit Download
4.50 KB lrw-r--r-- 2011-06-16 04:59:24
Edit Download
26.07 KB lrw-r--r-- 2011-08-24 00:02:17
Edit Download
10.14 KB lrw-r--r-- 2010-12-20 03:22:49
Edit Download
359 B lrw-r--r-- 2011-02-02 00:32:30
Edit Download
9.52 KB lrw-r--r-- 2011-05-14 00:39:16
Edit Download
7.50 KB lrw-r--r-- 2011-05-14 00:39:16
Edit Download
7.22 KB lrw-r--r-- 2011-08-05 21:21:55
Edit Download
1015 B lrw-r--r-- 2010-12-20 03:22:49
Edit Download
10.10 KB lrw-r--r-- 2011-06-29 21:17:31
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).