class DefaultDisplay

Public Instance Methods

full_params(method) click to toggle source
# File lib/fastri/ri_service.rb, line 17
def full_params(method)
  method.params.split(/\n/).each do |p|
    p.sub!(/^#{method.name}\(/,'(')
    unless p =~ /\b\.\b/
      p = method.full_name + p
    end
    @formatter.wrap(p) 
    @formatter.break_to_newline
  end
end