# File lib/cucumber/formatter/profile.rb, line 21
      def step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background)
        duration = Time.now - @step_duration
        super

        if step_match.step_definition
          description = format_step(keyword, step_match, status, nil)
          @step_definition_durations[step_match.step_definition] << [duration, description, @step.file_colon_line]
        end
      end