blob: 8b6ac5d039532bf69f2f8b9f792373eac392fc15 [file] [log] [blame] [edit]
/**
#### When-expression
See [When-expression](control-flow.html#when-expression)
*/
when
: "when" ("(" expression ")")? "{"
whenEntry*
"}"
;
whenEntry
: whenCondition{","} "->" controlStructureBody SEMI
: "else" "->" controlStructureBody SEMI
;
whenCondition
: expression
: ("in" | "!in") expression
: ("is" | "!is") type
;