class Cucumber::Core::Ast::ExamplesTable::Row

def initialize(data, number, location, language, comments)

def initialize(data, number, location, language, comments)
  raise ArgumentError, data.to_s unless data.is_a?(Hash)
  @data = data
  @number = number
  @location = location
  @language = language
  @comments = comments
end