With statement

The with statement is used to declare a * binding to the statement's scope. The * binding holds the value of the parenthesized expression.

with (o) {
    *.x += 10;
    *.y += 5;
}

Syntax

    WithStatementω :
      with ParenListExpression Substatementω