|
NAME
SYNTAX
DESCRIPTION
In cases where there is no immediately preceding statement, for instance when the break appears as a guard in an option of a selection or repetition structure, the break is executed as if it were a skip , taking one execution step to reach the target state. If the repetition structure is the last statement in a proctype body, the target state for the break is the process's end-state, where the process remains until it is removed from the system. EXAMPLES
L1: do :: t1 -> t2 /* reaches L1 immediately after executing t2 */ :: t3 -> break /* reaches L2 immediately after executing t3 */ :: break /* optionally jumps to L2 in one step */ od; L2: ... NOTES
SEE ALSO
|