Skip to content

Commit f4b9877

Browse files
committed
[Misc #19304] Pretend global methods to be in Object
Show global methods, which are defined as public in `Kernel`, like as defined in `Object`.
1 parent 9c03b6e commit f4b9877

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

lib/rdoc/context.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,10 @@ def methods_by_type section = nil
10261026

10271027
each_method do |method|
10281028
next if section and not method.section == section
1029-
methods[method.type][method.visibility] << method
1029+
if (visibility = method.visibility) == :module_function
1030+
visibility = :public
1031+
end
1032+
methods[method.type][visibility] << method
10301033
end
10311034

10321035
methods
@@ -1259,6 +1262,10 @@ def upgrade_to_class mod, class_type, enclosing
12591262
klass
12601263
end
12611264

1265+
def pretend_object? # :nodoc:
1266+
false
1267+
end
1268+
12621269
autoload :Section, "#{__dir__}/context/section"
12631270

12641271
end

lib/rdoc/normal_module.rb

+15
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ def inspect # :nodoc:
1515
]
1616
end
1717

18+
def initialize(name, *args) # :nodoc:
19+
super
20+
@pretend_object = name == "Kernel"
21+
end
22+
1823
##
1924
# The definition of this module, <tt>module MyModuleName</tt>
2025

@@ -29,6 +34,16 @@ def module?
2934
true
3035
end
3136

37+
##
38+
# Show public methods in Object class?
39+
40+
def pretend_object?
41+
if @pretend_object
42+
(@current_line_visibility || @visibility) == :public
43+
end
44+
end
45+
46+
##
3247
def pretty_print q # :nodoc:
3348
q.group 2, "[module #{full_name}:", "]" do
3449
q.breakable

lib/rdoc/parser/ruby.rb

+14-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def get_visibility_information tk, single # :nodoc:
219219
:public
220220
when 'module_function' then
221221
singleton = true
222-
:public
222+
:module_function
223223
else
224224
raise RDoc::Error, "Invalid visibility: #{tk.name}"
225225
end
@@ -1462,6 +1462,9 @@ def parse_method(container, single, tk, comment)
14621462
meth.add_tokens [token, newline, indent]
14631463
meth.add_tokens @token_stream
14641464

1465+
if !meth.singleton and container.pretend_object?
1466+
container = @top_level.object_class
1467+
end
14651468
parse_method_params_and_body container, single, meth, added_container
14661469

14671470
comment.normalize
@@ -1500,6 +1503,9 @@ def parse_method_params_and_body container, single, meth, added_container
15001503
meth.visibility = :public
15011504
end
15021505
end
1506+
if meth.visibility == :module_function
1507+
meth.visibility = :public
1508+
end
15031509

15041510
parse_statements container, single, meth
15051511
end
@@ -2339,7 +2345,14 @@ def update_visibility container, vis_type, vis, singleton # :nodoc:
23392345
container.set_visibility_for args, vis, singleton
23402346
end
23412347

2348+
# Move public methods from Kernel to Object
2349+
if container.pretend_object?
2350+
old_methods = container.methods_hash
2351+
container = @top_level.object_class
2352+
end
2353+
23422354
new_methods.each do |method|
2355+
old_methods&.delete(method.pretty_name)
23432356
case method
23442357
when RDoc::AnyMethod then
23452358
container.add_method method

test/rdoc/test_rdoc_parser_ruby.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2747,7 +2747,7 @@ def test_parse_statements_identifier_module_function
27472747
assert_equal false, foo.singleton, 'instance method singleton'
27482748

27492749
assert_equal 'foo', s_foo.name, 'module function name'
2750-
assert_equal :public, s_foo.visibility, 'module function visibility'
2750+
assert_equal :module_function, s_foo.visibility, 'module function visibility'
27512751
assert_equal true, s_foo.singleton, 'module function singleton'
27522752
end
27532753

0 commit comments

Comments
 (0)