Method: ANTLR3::TokenSource#next

Defined in:
lib/antlr3/token.rb

#nextObject

Raises:

  • (StopIteration)


313
314
315
316
317
# File 'lib/antlr3/token.rb', line 313

def next
  token = next_token()
  raise StopIteration if token.nil? || token.type == EOF
  return token
end