Flowdock
method

unget_tk

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: RDoc::RubyParser
unget_tk(tk) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/parsers/parse_rb.rb, line 1506
    def unget_tk(tk)
      @tokens.unshift tk
      @unget_read.unshift @read.pop

      # Remove this token from any listeners
      @token_listeners.each do |obj|
        obj.pop_token
      end if @token_listeners
    end
Register or log in to add new notes.