class Cucumber::Ast::Table::Cell
:nodoc:
def ==(o)
def ==(o) SurplusCell === o || value == o.value end
def accept(visitor)
def accept(visitor) return if Cucumber.wants_to_quit visitor.visit_table_cell_value(value, status) 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:
For testing only
def to_sexp #:nodoc: [:cell, @value] end