Method: Connect::Dsl#next_token

Defined in:
lib/connect/lexer.rb

#next_tokenObject



48
49
50
51
52
53
54
# File 'lib/connect/lexer.rb', line 48

def next_token
  return if @ss.eos?
  
  # skips empty actions
  until token = _next_token or @ss.eos?; end
  token
end