method
body_extension
v1_8_7_330 -
Show latest stable
- Class:
Net::IMAP::ResponseParser
body_extension()private
No documentation available.
# File lib/net/imap.rb, line 2449
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