method
response_cond
v1_8_7_72 -
Show latest stable
- Class:
Net::IMAP::ResponseParser
response_cond()private
No documentation available.
# File lib/net/imap.rb, line 2008
def response_cond
token = match(T_ATOM)
name = token.value.upcase
match(T_SPACE)
return UntaggedResponse.new(name, resp_text, @str)
end