method
body_extension
v2_6_3 -
Show latest stable
- Class:
Net::IMAP::ResponseParser
body_extension()private
No documentation available.
# File lib/net/imap.rb, line 2793
def body_extension
token = lookahead
case token.symbol
when T_LPAR
shift_token
result = body_extensions
match(T_RPAR)
return result
when T_NUMBER
return number
else
return nstring
end
end