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
For example, this loop is not recognized because the condition is not rewritten first to an expression, since it has side-effects with the x++. Special cases have to be detected for expressions with increment side-effects.
int whileWithContinue(int x) {
while (x++ < 10) {
if (x % 2 == 0) {
continue;
}
else {
println(x);
}
}
return x;
}
The text was updated successfully, but these errors were encountered:
For example, this loop is not recognized because the condition is not rewritten first to an expression, since it has side-effects with the
x++
. Special cases have to be detected for expressions with increment side-effects.The text was updated successfully, but these errors were encountered: