Structure Continue Statement

next:
        while(...) {
                ...
                goto next;
                ...
        }

        while(...) {
                ...
                continue;
                ...
        }

Motivation

Continue statements are translated by compilers as simple jumps. This refactoring recovers the original statement. It requires that the refactoring corresponding to the loop structure is previously applied.

Mechanics