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

def ==(other)

def ==(other)
  return false unless other.class == self.class
  other.number == number &&
    other.location == location &&
    other.data == data
end