Class: Net::IMAP::ResponseParser
- Inherits:
-
Object
- Object
- Net::IMAP::ResponseParser
- Defined in:
- lib/ntlm/imap.rb
Instance Method Summary collapse
Instance Method Details
#continue_req ⇒ Object
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 |