Method: ANTLR3::CommonTokenStream#token_class

Defined in:
lib/antlr3/streams.rb

#token_classObject



838
839
840
841
842
843
# File 'lib/antlr3/streams.rb', line 838

def token_class
  @token_source.token_class
rescue NoMethodError
  @position == -1 and fill_buffer
  @tokens.empty? ? CommonToken : @tokens.first.class
end