imapsync/W/Mail-IMAPClient-3.34/blib/lib/Mail/IMAPClient/Thread.grammar
Nick Bebout 8f266abab8 1.569
2013-10-17 19:11:27 -05:00

18 lines
303 B
Text

# Atoms:
NUMBER: /\d+/
# Rules:
threadmember: NUMBER { $return = $item{NUMBER} ; } |
thread { $return = $item{thread} ; }
thread: "(" threadmember(s) ")"
{
$return = $item{'threadmember(s)'}||undef;
}
# Start:
start: /^\* THREAD /i thread(s?) {
$return=$item{'thread(s?)'}||undef;
}