Object
# File lib/ruby-prof/aggregate_call_info.rb, line 47 def called aggregate(:called) end
# File lib/ruby-prof/aggregate_call_info.rb, line 25 def children call_infos.inject(Array.new) do |result, call_info| result.concat(call_info.children) end end
# File lib/ruby-prof/aggregate_call_info.rb, line 43 def children_time aggregate_without_recursion(:children_time) end
# File lib/ruby-prof/aggregate_call_info.rb, line 21 def line call_infos.first.line end
# File lib/ruby-prof/aggregate_call_info.rb, line 17 def parent call_infos.first.parent end
# File lib/ruby-prof/aggregate_call_info.rb, line 35 def self_time aggregate_without_recursion(:self_time) end
# File lib/ruby-prof/aggregate_call_info.rb, line 13 def target call_infos.first.target end
# File lib/ruby-prof/aggregate_call_info.rb, line 51 def to_s "#{call_infos.first.target.full_name}" end
Generated with the Darkfish Rdoc Generator 2.