# File lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb, line 44
        def visit_node(node)
          return unless enabled? && node

          trace = strip_newrelic_frames(caller)
          trace = trace.first(40) if trace.length > 40
          node[:backtrace] = trace
        end