xxxxxxxxxx
customControlFlow: {
if (condition1) {
// ...
break customControlFlow; // Breaks out of the custom control flow
}
if (condition2) {
// ...
break customControlFlow; // Breaks out of the custom control flow
}
// ...
}