Method: Kleene::NFA#handle_token!

Defined in:
lib/kleene/nfa.rb

#handle_token!(input_token) ⇒ Object

process another input token



172
173
174
# File 'lib/kleene/nfa.rb', line 172

def handle_token!(input_token)
  @current_states = next_states(@current_states, input_token)
end