arglists()
public
The call_seq or the param_seq
with method name, if there is no call_seq.
Use this for displaying a method’s argument lists.
# File lib/rdoc/any_method.rb, line 88
def arglists
if @call_seq then
@call_seq
elsif @params then
"#{name}#{param_seq}"
end
end