# File lib/parser/lexer/stack_state.rb, line 13 def push(bit) bit_value = bit ? 1 : 0 @stack = (@stack << 1) | bit_value bit end