module RDoc::Parser::RubyTools
def get_tk_until(*tokens)
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
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