blob: 07391728509c9c0516e09e3e1909f1779a4ceb22 [file] [log] [blame] [edit]
/**
## Control structures
See [Control structures](control-flow.html)
*/
if
: "if" "(" expression ")" expression SEMI? ("else" expression)?
;
try
: "try" block catchBlock* finallyBlock?
;
catchBlock
: "catch" "(" annotations SimpleName ":" userType ")" block
;
finallyBlock
: "finally" block
;
loop
: for
: while
: doWhile
;
for
: "for" "(" annotations (multipleVariableDeclarations | variableDeclarationEntry) "in" expression ")" expression
;
while
: "while" "(" expression ")" expression
;
doWhile
: "do" expression "while" "(" expression ")"
;