Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions lib/rdoc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,6 @@ def self.home
autoload :Alias, "#{__dir__}/rdoc/code_object/alias"
autoload :AnyMethod, "#{__dir__}/rdoc/code_object/any_method"
autoload :MethodAttr, "#{__dir__}/rdoc/code_object/method_attr"
autoload :GhostMethod, "#{__dir__}/rdoc/code_object/ghost_method"
autoload :MetaMethod, "#{__dir__}/rdoc/code_object/meta_method"
autoload :Attr, "#{__dir__}/rdoc/code_object/attr"

autoload :Constant, "#{__dir__}/rdoc/code_object/constant"
Expand Down
2 changes: 0 additions & 2 deletions lib/rdoc/code_object.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
# * RDoc::MethodAttr
# * RDoc::Attr
# * RDoc::AnyMethod
# * RDoc::GhostMethod
# * RDoc::MetaMethod
# * RDoc::Alias
# * RDoc::Constant
# * RDoc::Require
Expand Down
6 changes: 0 additions & 6 deletions lib/rdoc/code_object/ghost_method.rb

This file was deleted.

6 changes: 0 additions & 6 deletions lib/rdoc/code_object/meta_method.rb

This file was deleted.

2 changes: 1 addition & 1 deletion lib/rdoc/parser/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def parse_comment_tomdoc(container, comment, line_no, start_line)

name, = signature.split %r%[ \(]%, 2

meth = RDoc::GhostMethod.new comment.text, name
meth = RDoc::AnyMethod.new comment.text, name
record_location(meth)
meth.line = start_line
meth.call_seq = signature
Expand Down
Loading