For example:
for* … {
  for** ... {
    for ... {
      …
      if … { break for* }
      ...
      if … { continue for** }
      ...
    }
  }
}
repeat {
  do {
    for … {
      if … { break do }
      if … { continue repeat }
    }
    …
  }
} while …