Method: Parser::Lexer::StackState#lexpop
- Defined in:
- lib/parser/lexer/stack_state.rb
permalink #lexpop ⇒ Object
29 30 31 32 |
# File 'lib/parser/lexer/stack_state.rb', line 29 def lexpop @stack = ((@stack >> 1) | (@stack & 1)) @stack[0] == 1 end |