class Cucumber::MultilineArgument::DataTable::Cell

:nodoc:

def ==(other)

def ==(other)
  other.class == SurplusCell || value == other.value
end

def eql?(other)

def eql?(other)
  self == other
end

def hash

def hash
  0
end

def initialize(value, table, line)

def initialize(value, table, line)
  @value = value
  @table = table
  @line = line
end

def inspect!

def inspect!
  @value = "(i) #{value.inspect}"
end

def to_sexp # :nodoc:

:nodoc:
For testing only
def to_sexp # :nodoc:
  [:cell, @value]
end