rdoc icon indicating copy to clipboard operation
rdoc copied to clipboard

Endless methods break ability to track namespacing

Open zenspider opened this issue 9 months ago • 1 comments

Semi-related to #885 ... endless methods absolutely break class/namespace tracking:

class C
  def initialize = nil # :nodoc:
end

class D
  def initialize = nil # :nodoc:
end

class E
  def initialize = nil # :nodoc:
end

__END__

The following items are not documented:

In files:
* wtf.rb

  class C
  end


In files:
* wtf.rb

  class C::D
  end


In files:
* wtf.rb

  class C::D::E
  end

zenspider avatar May 26 '25 23:05 zenspider

This is fixed with RDOC_USE_PRISM_PARSER.

halostatue avatar Jun 01 '25 16:06 halostatue