Class: Net::IMAP::ResponseParser

Inherits:
Object
  • Object
show all
Defined in:
lib/ntlm/imap.rb

Instance Method Summary collapse

Instance Method Details

#continue_reqObject



7
8
9
10
11
12
13
14
15
# 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