switch_statement

switch_statement 
      ::= 
      "switch" "(" expression ")" "{" 
      { ( "case" expression ":" ) 
      | ( "default" ":" ) 
      | statement } 
      "}" 

[rule list]
This rule is called by

-> statement

Semantic, examples ...

coming soon ...