class Cucumber::Core::Gherkin::AstBuilder::DataTableBuilder

def result

def result
  Ast::DataTable.new(
    rows,
    location
  )
end

def rows

def rows
  attributes[:rows] = attributes[:rows].map { |r| r[:cells].map { |c| c[:value] } }
end