macro_rules! expect { ($ctx:expr, $( $token:pat )|+ , $( $msg:expr ),+ ) => { ... }; ($ctx:expr, $( $token:pat )|+ ) => { ... }; }
Eat any one of the specified tokens and raise a syntax error if none is found.