# File lib/ruby-prof/method_info.rb, line 29 def total_time @total_time ||= begin call_infos.inject(0) do |sum, call_info| sum += call_info.total_time unless call_info.recursive sum end end end