class Net::IMAP::ResponseParser

Public Instance Methods

continue_req() click to toggle source
# File lib/ntlm/imap.rb, line 7
def continue_req
  match(T_PLUS)
  if lookahead.symbol == T_CRLF
    return ContinuationRequest.new(ResponseText.new(nil, ''), @str)
  else
    match(T_SPACE)
    return ContinuationRequest.new(resp_text, @str)
  end
end