expect

Macro expect 

Source
macro_rules! expect {
    ($ctx:expr, $( $token:pat )|+ , $( $msg:expr ),+ ) => { ... };
    ($ctx:expr, $( $token:pat )|+ ) => { ... };
}
Expand description

Eat any one of the specified tokens and raise a syntax error if none is found.