class Parser::Lexer::StackState

def push(bit)

def push(bit)
  bit_value = bit ? 1 : 0
  @stack = (@stack << 1) | bit_value
  bit
end