New Control Syntax
Scala 3 has a new "quiet" syntax for control expressions that does not rely on
enclosing the condition in parentheses, and also allows to drop parentheses or braces
around the generators of a for-expression. Examples:
if x < 0 then
"negative"
else if x == 0
"zero"
else
"positive"
if x < 0 then -x else x
while x >= 0 do x = f(x)
for x <- xs if x > 0
yield x * x
for
x <- xs
y <- ys
do
println(x + y)
The rules in detail are:
- The condition of an
if-expression can be written without enclosing parentheses if it is followed by athenor some indented code on a following line. - The condition of a
while-loop can be written without enclosing parentheses if it is followed by ado. - The enumerators of a
for-expression can be written without enclosing parentheses or braces if they are followed by ayieldordo. - A
doin afor-expression expresses afor-loop.
Rewrites
The Dotty compiler can rewrite source code from old syntax and new syntax and back.
When invoked with options -rewrite -new-syntax it will rewrite from old to new syntax, dropping parentheses and braces in conditions and enumerators. When invoked with with options -rewrite -old-syntax it will rewrite in the reverse direction, inserting parentheses and braces as needed.