Flowdock
method

get_tk_until

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: RubyTools
get_tk_until(*tokens) public

No documentation

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

Hide source
# File lib/rdoc/parser/ruby_tools.rb, line 65
  def get_tk_until(*tokens)
    read = []

    loop do
      tk = get_tk
      case tk when *tokens then unget_tk tk; break end
      read << tk
    end

    read
  end
Register or log in to add new notes.