You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The spec does not mandate the order of effects in a compound assignment such as x, y, z = f(). The Java and Go implementations, like Python, evaluate f() before the LHS expressions, as this is the only practical strategy. The spec should require it, and the implementations should have tests.
The text was updated successfully, but these errors were encountered:
The spec does not mandate the order of effects in a compound assignment such as
x, y, z = f()
. The Java and Go implementations, like Python, evaluate f() before the LHS expressions, as this is the only practical strategy. The spec should require it, and the implementations should have tests.The text was updated successfully, but these errors were encountered: