class Cucumber::MultilineArgument::DataTable::Cell

:nodoc:

def ==(o)

def ==(o)
  SurplusCell === o || value == o.value
end

def eql?(o)

def eql?(o)
  self == o
end

def hash

def hash
  0
end

def initialize(value, table, line)

def initialize(value, table, line)
  @value, @table, @line = value, table, 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