switch_stmt

Function switch_stmt 

Source
pub fn switch_stmt(p: &mut Parser<'_>) -> CompletedMarker
Expand description

A switch statement such as

switch (a) {
    case foo:
        bar();
}