This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
extract_call_seq(comment, meth)
public
Look for a ‘call-seq’ in the comment, and override the normal parameter
stuff
# File lib/rdoc/parser/ruby.rb, line 234
def extract_call_seq(comment, meth)
if comment.sub!(/:?call-seq:(.*?)(^\s*#?\s*$|\z)/, '') then
seq = $1
seq.gsub!(/^\s*\#\s*/, '')
meth.call_seq = seq
end
meth
end