This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
parse_method_parameters(method)
private
Capture the method’s parameters. Along the way, look for a comment
containing
# yields: ....
and add this as the block_params for the method
# File lib/rdoc/parsers/parse_rb.rb, line 2016
def parse_method_parameters(method)
res = parse_method_or_yield_parameters(method)
res = "(" + res + ")" unless res[0] == ?(
method.params = res unless method.params
if method.block_params.nil?
skip_tkspace(false)
read_documentation_modifiers(method, METHOD_MODIFIERS)
end
end