class Cucumber::Formatter::Pretty

def print_multiline_argument(test_step, result, indent)

def print_multiline_argument(test_step, result, indent)
  step = step_source(test_step).step
  if !step.doc_string.nil?
    print_doc_string(step.doc_string.content, result.to_sym, indent)
  elsif !step.data_table.nil?
    print_data_table(step.data_table, result.to_sym, indent)
  end
end