blob: e8d01b7895795b30861f204a74de7b7249c4b7a6 [file] [log] [blame] [edit]
/**
#### Pattern matching
See [When-expression](control-flow.html#when-expression)
*/
when
: "when" ("(" expression ")")? "{"
whenEntry*
"}"
;
// TODO : consider empty after ->
whenEntry
: whenCondition{","} "->" controlStructureBody SEMI
: "else" "->" controlStructureBody SEMI
;
whenCondition
: expression
: ("in" | "!in") expression
: ("is" | "!is") isRHS
;