3ad4f18e1a
Also drop obsolete comments and inline some trivial rules
23 lines
359 B
Plaintext
23 lines
359 B
Plaintext
/**
|
|
#### 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
|
|
;
|