module Cucumber::Core::Gherkin::AstBuilder::MultilineArgument

def from(argument, parent_location)

def from(argument, parent_location)
  return Ast::EmptyMultilineArgument.new unless argument
  argument = rubify(argument)
  case argument
  when ::Gherkin::Formatter::Model::DocString
    Ast::DocString.new(argument.value, argument.content_type, parent_location.on_line(argument.line_range))
  when Array
    location = parent_location.on_line(argument.first.line..argument.last.line)
    Ast::DataTable.new(argument.map{|row| row.cells}, location)
  else
    raise ArgumentError, "Don't know how to convert #{argument.inspect} into a MultilineArgument"
  end
end