- Enclosing class:
- Relooper
public static class Relooper.LoopBlock
extends Relooper.Block
Loop: A block that represents a basic loop, comprised of
two internal sub-blocks:
Inner: A block that will appear inside the loop, i.e.,
when execution reaches the end of that block, flow
will return to the beginning. Typically a loop will
contain a conditional break defining where it is exited.
When we exit, we reach the Next block, below.
Next: A block that will appear just outside the loop,
in other words, that will be reached when the loop is
exited.