# File lib/new_relic/agent/threading/backtrace_node.rb, line 73
        def dump_string
          result = "#<BacktraceRoot:#{object_id}>"
          child_results = @children.map { |c| c.dump_string(2) }.join("\n")
          result << "\n" unless child_results.empty?
          result << child_results
        end