# File lib/parser/lexer/stack_state.rb, line 20
    def pop
      bit_value = @stack & 1
      @stack  >>= 1

      bit_value == 1
    end